/* Higher Self Clarity Reading — sales page styles */
/* Inherits the parent site palette: navy, cream, restrained gold */

:root {
  --bg: #111829;
  --bg-soft: #1a2236;
  --surface: #ffffff;
  --surface-soft: #f6f3ec;
  --ink: #1a1f2e;
  --ink-soft: #4a5063;
  --ink-muted: #7a7f8c;
  --line: rgba(26, 31, 46, 0.10);
  --gold: #b48250;
  --gold-soft: rgba(180, 130, 80, 0.12);
  --gold-deep: #8a5e35;
  --sage: #6f8a6a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(17, 24, 41, 0.05);
  --shadow-md: 0 6px 18px rgba(17, 24, 41, 0.08);
  --shadow-lg: 0 18px 40px rgba(17, 24, 41, 0.10);
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface-soft);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ink); text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand strong { display: block; font-weight: 600; font-size: 1.0rem; line-height: 1.2; color: var(--ink); }
.brand small { display: block; font-size: 0.78rem; color: var(--ink-muted); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }

.site-header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  flex-wrap: wrap;
}
.site-header nav a {
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink-soft);
}
.site-header nav a:hover { color: var(--gold-deep); }

.button {
  display: inline-block;
  padding: 12px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--ink);
  transition: transform 0.15s ease, background 0.15s ease;
  text-align: center;
  cursor: pointer;
}
.button:hover { background: var(--bg); transform: translateY(-1px); }
.button-small { padding: 9px 16px; font-size: 0.85rem; }
.button-full { display: block; width: 100%; }

/* Hero */
.hero {
  padding: 56px 0 24px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.hero-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.hero-points span {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(180, 130, 80, 0.08);
  color: var(--gold-deep);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.text-link {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.text-link:hover { color: var(--gold-deep); }
.small-note {
  font-size: 0.86rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Offer card */
.offer-card {
  background: var(--bg);
  color: #f0eee8;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(180, 130, 80, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.card-kicker {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.price {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 500;
  margin: 0 0 6px;
  color: #fff;
}
.price-note {
  font-size: 0.85rem;
  color: rgba(240, 238, 232, 0.6);
  margin: 0 0 24px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 0.95rem;
  color: rgba(240, 238, 232, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.check-list li:first-child { border-top: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.microcopy {
  font-size: 0.78rem;
  color: rgba(240, 238, 232, 0.5);
  margin: 12px 0 0;
  text-align: center;
}

/* Trust strip */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-grid > div { display: flex; flex-direction: column; }
.trust-grid strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.trust-grid span { font-size: 0.92rem; color: var(--ink-soft); }

/* Sections */
.section { padding: 72px 0; }
.section h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.0rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.section p { color: var(--ink-soft); margin: 0 0 14px; }
.section ul { color: var(--ink-soft); padding-left: 22px; }
.section ul li { margin-bottom: 8px; }

.check-list.two-col {
  columns: 2;
  column-gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list.two-col li {
  padding: 10px 0 10px 26px;
  position: relative;
  break-inside: avoid;
}
.check-list.two-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--gold-soft);
}

/* PDF mockup */
.mockup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0 16px;
  perspective: 1200px;
}
.mockup-document {
  background: var(--surface);
  border-radius: 6px;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--line);
  aspect-ratio: 8.5 / 11;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mockup-document::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180, 130, 80, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.mockup-cover {
  text-align: center;
}
.mockup-cover-mark {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg);
}
.mockup-cover-mark img { width: 100%; height: 100%; object-fit: cover; }
.mockup-cover-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 500;
}
.mockup-cover-sub {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.mockup-cover-foot {
  font-size: 0.74rem;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
.mockup-document-interior {
  background: #fbfaf6;
  filter: blur(0.4px);
  opacity: 0.9;
}
.mockup-page {
  width: 100%;
}
.mockup-page-h {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--ink);
  margin: 14px 0 8px;
  font-weight: 500;
}
.mockup-page-h:first-child { margin-top: 0; }
.mockup-page-line {
  height: 6px;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 70%, transparent 100%);
  opacity: 0.15;
  border-radius: 3px;
  margin-bottom: 4px;
}
.mockup-page-line.short { width: 60%; }
.mockup-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 16px 0 0;
}

/* Process list */
.process-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.process-list li {
  position: relative;
  padding: 0 0 22px 56px;
  counter-increment: step;
  color: var(--ink-soft);
}
.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
}
.process-list strong { color: var(--ink); display: block; margin-bottom: 4px; font-weight: 500; }
.process-list li:last-child { padding-bottom: 0; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { margin-bottom: 16px; }
.credential-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 8px;
}
.credential-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.credential-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* Distinction / comparison */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.comparison-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.comparison-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 500;
}
.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comparison-card li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.comparison-card li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 700;
}

/* Disclaimer */
.disclaimer-section { background: var(--surface); border-top: 1px solid var(--line); }

/* FAQ */
details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
details:first-of-type { border-top: 1px solid var(--line); }
details summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.2s ease;
  line-height: 1;
}
details[open] summary::after { content: "−"; }
details p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* Legal pages */
.legal-main h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
}
.legal-meta {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-style: italic;
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.legal-main h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 28px 0 10px;
  color: var(--ink);
}
.legal-main p, .legal-main li {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.legal-main a { color: var(--gold-deep); }
.legal-back {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

/* Site footer */
.site-footer {
  background: var(--bg);
  color: rgba(240, 238, 232, 0.85);
  padding: 48px 0 24px;
  margin-top: 48px;
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-brand strong, .footer-brand small { color: #f0eee8; }
.footer-brand small { color: rgba(240, 238, 232, 0.6); }
.site-footer p { color: rgba(240, 238, 232, 0.7); font-size: 0.92rem; margin: 12px 0 0; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a {
  color: rgba(240, 238, 232, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(240, 238, 232, 0.5);
}

/* Mobile */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .mockup { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .comparison { grid-template-columns: 1fr; }
  .check-list.two-col { columns: 1; }
  .nav-wrap { flex-wrap: wrap; gap: 12px; }
  .site-header nav { order: 3; width: 100%; margin-left: 0; justify-content: flex-start; gap: 16px; }
  .site-header .button-small { margin-left: auto; }
  .footer-grid { flex-direction: column; }
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 16px; }
}

@media (max-width: 480px) {
  .brand small { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
}

/* Intake form */
.intake-form { margin-top: 24px; }
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-size: 0.95rem; color: var(--ink); font-weight: 500; margin-bottom: 6px; }
.form-row .req { color: var(--gold); }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="file"],
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.96rem;
  line-height: 1.5;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-row input[type="file"] {
  padding: 9px 12px;
  background: var(--surface-soft);
  cursor: pointer;
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-hint { font-size: 0.84rem; color: var(--ink-muted); margin: 6px 0 0; }
.form-row-half { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-half > div { display: flex; flex-direction: column; }
.radio-group { display: flex; flex-wrap: wrap; gap: 14px; }
.radio { display: flex; align-items: center; gap: 6px; font-size: 0.95rem; color: var(--ink-soft); font-weight: 400; }
.radio input[type="radio"] { width: 16px; height: 16px; accent-color: var(--gold); }
.form-consent { margin-top: 8px; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); font-weight: 400; line-height: 1.5; }
.checkbox input[type="checkbox"] { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.checkbox a { color: var(--gold-deep); }
.form-actions { margin-top: 28px; }
.form-actions .button { background: var(--ink); border-color: var(--ink); }
.form-actions .button:disabled { opacity: 0.5; cursor: not-allowed; }
.form-row input.invalid,
.form-row textarea.invalid {
  border-color: #c84a4a;
  background: #fff8f7;
}
.form-status { padding: 14px 18px; border-radius: 10px; margin-top: 20px; font-size: 0.95rem; }
.form-status.error { background: #fff0ee; color: #a23a3a; border: 1px solid #f0c5c0; }
.form-status.success { background: #f0f8f0; color: #2a6a2a; border: 1px solid #c5e0c0; }
.form-status a { color: var(--gold-deep); }

@media (max-width: 600px) {
  .form-row-half { grid-template-columns: 1fr; }
}
