/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--sage-light); }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --cream: oklch(97% 0.008 80);
  --cream-deep: oklch(93% 0.015 80);
  --cream-border: oklch(89% 0.018 80);
  --forest: oklch(22% 0.038 165);
  --forest-mid: oklch(32% 0.04 165);
  --sage: oklch(60% 0.075 160);
  --sage-light: oklch(91% 0.028 155);
  --sage-mid: oklch(72% 0.06 158);
  --sage-pale: oklch(94.5% 0.018 155);
  --plum: oklch(28% 0.04 310);
  --plum-mid: oklch(60% 0.07 310);
  --plum-accent: oklch(72% 0.06 310);
  --plum-pale: oklch(93% 0.02 310);
  --rule: oklch(85% 0.012 80);
  --text: oklch(22% 0.012 60);
  --text-mid: oklch(48% 0.01 60);
  --text-light: oklch(62% 0.008 60);
}

/* ─── Typography ────────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}
.eyebrow-light { color: var(--plum-accent); }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn-cta, .btn-ghost {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-cta {
  background: var(--forest);
  color: var(--cream);
  border: 1px solid var(--forest);
}
.btn-cta:hover { background: var(--forest-mid); }
.btn-cta-cream {
  background: var(--cream);
  color: var(--forest);
  border: 1px solid var(--cream-border);
}
.btn-cta-cream:hover { background: var(--cream-deep); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--rule);
}
.btn-ghost:hover { background: var(--sage-pale); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid oklch(100% 0 0 / 0.35);
}
.btn-ghost-light:hover { background: oklch(100% 0 0 / 0.08); }
.btn-small { padding: 10px 20px; font-size: 11px; }

/* ─── Image Placeholder ─────────────────────────────────────────────────────── */
.img-placeholder {
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder-inner { text-align: center; padding: 32px; }
.img-placeholder-icon {
  width: 56px;
  height: 70px;
  margin: 0 auto 14px;
  background-image: repeating-linear-gradient(45deg, var(--sage-light) 0px, var(--sage-light) 1px, transparent 1px, transparent 9px);
  border: 1px solid var(--rule);
}
.img-placeholder-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Top Banner ────────────────────────────────────────────────────────────── */
#top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--forest);
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 40px;
}
#top-banner.hidden { display: none; }
.banner-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-mid);
}
.banner-divider {
  width: 1px;
  height: 12px;
  background: oklch(100% 0 0 / 0.15);
  flex-shrink: 0;
}
.banner-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.banner-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--sage-mid);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: color 0.2s;
}
.banner-link:hover { color: var(--sage-mid); }
.banner-dismiss {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: oklch(100% 0 0 / 0.4);
  font-size: 16px;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.banner-dismiss:hover { color: oklch(100% 0 0 / 0.7); }

/* ─── Nav ───────────────────────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 99;
  background: oklch(97% 0.008 80 / 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, backdrop-filter 0.3s;
  padding: 0 60px;
}
#main-nav.no-banner { top: 0; }
#main-nav.scrolled {
  border-bottom-color: var(--rule);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--forest);
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover { color: var(--forest); border-bottom-color: var(--sage); }

/* ─── Hero A ────────────────────────────────────────────────────────────────── */
#top {
  background: var(--cream);
  padding-top: 152px;
  position: relative;
  overflow: hidden;
  min-height: 660px;
}
.hero-flank {
  position: absolute;
  bottom: 0;
  width: 20%;
  height: 88%;
  overflow: hidden;
}
.hero-flank-left { left: 0; }
.hero-flank-right { right: 0; }
.hero-flank .img-placeholder { width: 100%; height: 100%; }
.hero-flank-left .img-placeholder { background: var(--sage-pale); }
.hero-flank-right .img-placeholder { background: var(--sage-light); }
.hero-center {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 0 auto;
  padding: 56px 24px 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-tagline-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 70px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin-bottom: 0;
}
.hero-tagline-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--sage);
  margin-bottom: 28px;
}
.hero-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 24px;
}
.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-credentials {
  display: flex;
  gap: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.hero-cred-item { text-align: center; }
.hero-cred-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
}
.hero-cred-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 2px;
  letter-spacing: 0.06em;
}

/* ─── Ticker ────────────────────────────────────────────────────────────────── */
.ticker {
  background: var(--forest);
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--sage-mid);
  padding: 0 40px;
  flex-shrink: 0;
}
.ticker-sep { color: oklch(100% 0 0 / 0.2); margin: 0 8px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}

/* ─── Dream Outcome ─────────────────────────────────────────────────────────── */
.dream-banner {
  background: var(--sage-pale);
  padding: 28px 80px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dream-banner-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
}
.dream-banner-text em.green { color: var(--sage); }
.dream-quote {
  background: var(--forest);
  padding: 28px 80px;
  text-align: center;
}
.dream-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  color: var(--sage-mid);
  line-height: 1.5;
}
.dream-quote-attr {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 10px;
}
.dream-paths { display: grid; grid-template-columns: 1fr 1fr; min-height: 46vh; }
.path-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 80px;
  transition: background 0.35s;
  cursor: pointer;
  text-decoration: none;
}
.path-card-1 {
  background: var(--cream-deep);
  border-right: 1px solid var(--rule);
}
.path-card-2 { background: var(--sage-pale); }
.path-card-1:hover { background: var(--plum); }
.path-card-2:hover { background: var(--forest); }
.path-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
  transition: color 0.3s;
}
.path-card-1:hover .path-eyebrow { color: var(--plum-accent); }
.path-card-2:hover .path-eyebrow { color: var(--sage-mid); }
.path-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.06;
  color: var(--forest);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.path-card-1:hover .path-headline,
.path-card-2:hover .path-headline { color: var(--cream); }
.path-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 380px;
  margin-bottom: 32px;
  font-weight: 300;
  transition: color 0.3s;
}
.path-card-1:hover .path-body,
.path-card-2:hover .path-body { color: oklch(80% 0.008 80); }
.path-btn {
  display: inline-block;
  padding: 11px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--forest);
  color: var(--cream);
  border: 1px solid var(--forest);
  align-self: flex-start;
  transition: all 0.3s;
}
.path-card-1:hover .path-btn { background: var(--cream); color: var(--plum); border-color: var(--cream); }
.path-card-2:hover .path-btn { background: var(--cream); color: var(--forest); border-color: var(--cream); }

/* ─── In Their Words ────────────────────────────────────────────────────────── */
.testimonials {
  padding: 120px 80px;
  background: var(--cream);
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 72px;
  line-height: 1.3;
  max-width: 580px;
}
.testimonials-featured {
  border-top: 1px solid var(--rule);
  padding-top: 64px;
  margin-bottom: 72px;
}
.testimonials-featured.no-border {
  border-top: 0;
}
.testimonials-featured-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  line-height: 1.4;
  margin-bottom: 28px;
}
.testimonials-featured-attr {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.testimonial-card {
  padding: 40px 40px 40px 0;
}
.testimonial-card:not(:first-child) {
  border-left: 1px solid var(--rule);
  padding-left: 40px;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.55;
  margin-bottom: 20px;
}
.testimonial-attr {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  font-style: italic;
}

/* ─── Scorecard ─────────────────────────────────────────────────────────────── */
.scorecard-section {
  padding: 120px 80px;
  background: var(--cream-deep);
}
.container-narrow { max-width: 760px; margin: 0 auto; }
.scorecard-intro { text-align: center; margin-bottom: 72px; }
.scorecard-intro .eyebrow { display: block; margin-bottom: 20px; }
.scorecard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.08;
  margin-bottom: 24px;
}
.scorecard-intro-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.9;
  font-weight: 300;
}
.scorecard-dots {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
}
.scorecard-dot {
  width: 26px;
  height: 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  background: var(--cream);
  color: var(--text-light);
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: all 0.15s;
}
.scorecard-dot.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.scorecard-dot.answered { background: var(--sage); color: var(--cream); border-color: var(--sage); }
.progress-track { height: 2px; background: var(--rule); margin-bottom: 48px; }
.progress-fill { height: 100%; background: var(--sage); transition: width 0.4s; }
.scorecard-card {
  background: var(--cream);
  padding: 52px 56px;
  margin-bottom: 2px;
}
.scorecard-card .eyebrow { display: block; margin-bottom: 14px; }
.scorecard-question-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 40px;
  line-height: 1.35;
}
.scorecard-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.scorecard-option {
  padding: 16px 8px;
  text-align: center;
  background: var(--cream-deep);
  border: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-mid);
  transition: all 0.15s;
  cursor: pointer;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scorecard-option:hover { background: var(--sage-pale); border-color: var(--sage); }
.scorecard-option.selected {
  background: var(--sage-pale);
  border-color: var(--sage);
  color: var(--forest);
  font-weight: 500;
}
.option-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--rule);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scorecard-option.selected .option-radio {
  border-color: var(--sage);
  background: var(--sage);
}
.option-radio-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cream);
  display: none;
}
.scorecard-option.selected .option-radio-dot { display: block; }
.scorecard-nav-btns {
  display: flex;
  justify-content: space-between;
  padding: 18px 0 32px;
}
.scorecard-prev, .scorecard-next {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: none;
  cursor: pointer;
  border: none;
}
.scorecard-prev:disabled { color: var(--rule); cursor: default; }
.scorecard-submit-area { text-align: center; }
.scorecard-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 10px;
}

/* ─── Results ───────────────────────────────────────────────────────────────── */
#scorecard-results { display: none; }
#scorecard-results.visible { display: block; }
.results-eyebrow { display: block; text-align: center; margin-bottom: 48px; }
.results-main {
  background: var(--cream);
  padding: 64px 72px;
  margin-bottom: 1px;
  text-align: center;
}
.results-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.results-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.results-score-denom {
  font-size: 40px;
  color: var(--text-light);
}
.results-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--forest);
  margin: 16px 0 28px;
  line-height: 1.06;
}
.results-progress-track { height: 3px; background: var(--sage-light); margin: 0 0 36px; border-radius: 2px; }
.results-progress-fill { height: 100%; border-radius: 2px; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.results-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 16px;
  font-weight: 300;
  text-align: left;
}
.results-ctas { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.results-breakdown {
  background: var(--cream);
  padding: 48px 72px;
  border-top: 1px solid var(--rule);
  margin-bottom: 1px;
}
.results-breakdown-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 32px;
}
.domain-row { margin-bottom: 20px; }
.domain-row-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}
.domain-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-mid);
}
.domain-score {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-light);
}
.domain-track { height: 3px; background: var(--sage-light); border-radius: 2px; }
.domain-fill { height: 100%; border-radius: 2px; }
.results-flags {
  background: var(--sage-pale);
  padding: 48px 72px;
  border-top: 1px solid var(--rule);
  margin-bottom: 1px;
}
.results-flags-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 28px;
}
.flag-item { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--rule); }
.flag-item:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.flag-domain {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.flag-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}
.results-retake-area { text-align: center; margin-top: 20px; }
.results-retake-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  background: none;
  cursor: pointer;
  letter-spacing: 0.04em;
}

/* ─── Longer View ───────────────────────────────────────────────────────────── */
.longer-view {
  padding: 140px 80px;
  background: var(--plum);
  position: relative;
  overflow: hidden;
}
.longer-view::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 70% 50%, oklch(34% 0.05 310) 0%, transparent 55%);
  pointer-events: none;
}
.longer-view-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.longer-view-inner .eyebrow-light { display: block; margin-bottom: 32px; }
.longer-view-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 48px;
}
.longer-view-rule {
  width: 40px;
  height: 1px;
  background: var(--plum-accent);
  margin: 0 auto 48px;
}
.longer-view-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.85;
  color: oklch(82% 0.016 80);
  margin-bottom: 32px;
  font-style: italic;
}
.longer-view-footer {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: oklch(68% 0.01 80);
  font-weight: 300;
}

/* ─── The Difference ────────────────────────────────────────────────────────── */
.difference-section {
  padding: 120px 80px;
  background: var(--cream);
}
.difference-inner { max-width: 1280px; margin: 0 auto; }
.difference-intro { max-width: 680px; margin-bottom: 72px; }
.difference-intro .eyebrow { margin-bottom: 20px; display: block; }
.difference-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.06;
  margin-bottom: 20px;
}
.difference-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}
.table-wrap { overflow-x: auto; }
.difference-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.difference-table col.highlight-col { background: var(--sage-pale); }
.difference-table th {
  padding: 0 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: bottom;
}
.difference-table th:first-child { padding-left: 0; padding-right: 16px; }
.col-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-mid);
  display: block;
  line-height: 1.3;
}
.col-label.highlighted { font-weight: 500; color: var(--forest); }
.col-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}
.difference-table td {
  padding: 20px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.difference-table td:first-child { padding-left: 0; padding-right: 16px; }
.row-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.cell-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}
.cell-text.highlighted { color: var(--text); font-weight: 400; }
.cell-tick { font-family: 'DM Sans', sans-serif; font-size: 16px; color: var(--text-light); }
.cell-tick.yes { color: var(--sage); }
.cell-tick.no { color: var(--rule); }
.difference-footer { max-width: 760px; margin: 56px 0 40px; }
.difference-footer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
}

/* ─── Consultations ─────────────────────────────────────────────────────────── */
.consultations-section {
  padding: 120px 80px;
  background: var(--cream-deep);
}
.consultations-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.consultations-intro .eyebrow { margin-bottom: 20px; display: block; }
.consultations-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.06;
  margin-bottom: 36px;
}
.consultations-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
}
.consultations-cred {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}
.consultations-cards { display: flex; flex-direction: column; gap: 1px; }
.consult-card {
  background: var(--cream);
  padding: 36px 40px;
  border-left: 3px solid transparent;
}
.consult-card.primary { border-left-color: var(--sage); }
.consult-card.tertiary { background: var(--sage-pale); }
.consult-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.consult-card-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
}
.consult-card-dur {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.06em;
}
.consult-card-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

/* ─── About ─────────────────────────────────────────────────────────────────── */
.about-section {
  padding: 120px 80px;
  background: var(--forest);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.about-portrait { aspect-ratio: 3/4; }
.about-portrait img { max-width: 100%; }
.about-content { padding-top: 8px; }
.about-content .eyebrow-light { margin-bottom: 20px; display: block; }
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 36px;
}
.about-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: oklch(78% 0.008 80);
  font-weight: 300;
  margin-bottom: 20px;
}
.about-coda {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--plum-accent);
  line-height: 1.6;
}

/* ─── Journal ───────────────────────────────────────────────────────────────── */
.journal-section {
  padding: 120px 80px;
  background: var(--cream);
}
.journal-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 96px;
  align-items: center;
  text-align: center;
}
.journal-intro .eyebrow { margin-bottom: 20px; display: block; }
.journal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.06;
  margin-bottom: 24px;
}
.journal-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
  margin: 0 auto 36px;
  max-width: 420px;
}
.journal-letters {
  background: var(--sage-pale);
  padding: 56px 52px;
  border-top: 3px solid var(--sage);
}
.journal-letters-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
}
.journal-letter-item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.journal-letter-item:last-child { border-bottom: none; }
.journal-letter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.3;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--forest); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 80px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  border-bottom: 1px solid oklch(100% 0 0 / 0.1);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-brand-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.8;
}
.footer-col-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: oklch(72% 0.008 80);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--cream); }
.footer-book-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 12px;
}
.footer-book-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.footer-book-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--sage-mid);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.footer-book-link:hover { color: var(--sage-mid); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 80px;
  text-align: center;
}
.footer-legal {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-light);
}

/* ─── Waitlist Modal ────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: oklch(0% 0 0 / 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  background: var(--cream);
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
}
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  color: oklch(100% 0 0 / 0.45);
  z-index: 1;
  transition: color 0.2s;
  padding: 0;
}
.modal-close:hover { color: var(--cream); }
.modal-header {
  background: var(--forest);
  padding: 48px 48px 36px;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 14px;
}
.modal-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.modal-body { padding: 40px 48px; }
.modal-body-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 28px;
}
.waitlist-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-required { color: var(--sage); }
.form-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--cream-deep);
  border: 1px solid var(--rule);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus { border-color: var(--sage); background: var(--cream); }
.form-input::placeholder { color: var(--text-light); }
.form-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: oklch(52% 0.10 30);
  margin-top: -4px;
}
.modal-disclaimer {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--text-light);
  margin-top: 14px;
  letter-spacing: 0.02em;
}
.modal-success { text-align: center; padding: 16px 0 8px; }
.modal-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage-pale);
  border: 1px solid var(--sage);
  font-size: 22px;
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.modal-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.1;
}
.modal-success-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
}

/* ─── Footer Legal Links ────────────────────────────────────────────────────── */
.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.footer-legal-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.footer-legal-link:hover { color: oklch(72% 0.008 80); }
.footer-legal-sep { font-size: 11px; color: oklch(40% 0 0 / 0.4); }

/* ─── Legal Modal ───────────────────────────────────────────────────────────── */
.legal-modal-overlay { z-index: 1001; }
.legal-modal-card { max-width: 640px; }
.legal-modal-close { color: var(--text-light); }
.legal-modal-close:hover { color: var(--text); }
.legal-modal-header {
  padding: 40px 48px 28px;
  border-bottom: 1px solid var(--rule);
}
.legal-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
}
.legal-modal-body {
  padding: 32px 48px 48px;
  max-height: 60vh;
  overflow-y: auto;
}
.legal-modal-content {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
  white-space: pre-wrap;
}

/* ─── Tablet (≤1024px) ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 64px 48px 40px;
    gap: 40px;
  }
  .footer-bottom { padding: 24px 48px; }
  .testimonials-grid { gap: 0; }
  .difference-section { padding: 100px 48px; }
  .consultations-section { padding: 100px 48px; }
  .about-section { padding: 100px 48px; }
  .journal-section { padding: 100px 48px; }
  .testimonials { padding: 100px 48px; }
  .scorecard-section { padding: 100px 48px; }
  .longer-view { padding: 100px 48px; }
  .dream-paths .path-card { padding: 56px 48px; }
  .path-headline { font-size: 38px; }
}

/* ─── Mobile (≤768px) ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Banner */
  #top-banner { gap: 12px; padding: 11px 40px 11px 16px; }
  .banner-label,
  .banner-divider,
  .banner-text { display: none }

  /* Nav */
  #main-nav { padding: 0 24px; }
  .nav-link,
  #main-nav .btn-cta { display: none; }

  /* Hero */
  #top { padding-top: 130px; min-height: auto; }
  .hero-center { padding: 40px 24px 60px; }
  .hero-tagline-1,
  .hero-tagline-2 { font-size: 50px; }
  .hero-credentials { gap: 20px; }

  /* Ticker */
  .ticker-item { font-size: 15px; padding: 0 28px; }

  /* Dream paths */
  .dream-paths { grid-template-columns: 1fr; }
  .path-card { padding: 44px 24px; }
  .path-card-1 { border-right: none; border-bottom: 1px solid var(--rule); }
  .path-headline { font-size: 32px; }
  .path-body { max-width: none; }

  /* Testimonials */
  .testimonials { padding: 80px 24px; }
  .testimonials-lead { font-size: 20px; margin-bottom: 48px; }
  .testimonials-featured-quote { font-size: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 32px 0 !important; border-left: none !important; border-top: 1px solid var(--rule); }
  .testimonial-card:first-child { padding-top: 0; }
  .testimonial-card:last-child { border-bottom: 1px solid var(--rule); }

  /* Scorecard */
  .scorecard-section { padding: 80px 24px; }
  .scorecard-intro { margin-bottom: 48px; }
  .scorecard-title { font-size: 38px; }
  .scorecard-card { padding: 32px 24px; }
  .scorecard-question-text { font-size: 22px; }
  .results-main,
  .results-breakdown,
  .results-flags { padding: 40px 24px; }
  .results-headline { font-size: 32px; }
  .results-score { font-size: 72px; }

  /* Longer view */
  .longer-view { padding: 80px 24px; }
  .longer-view-title { font-size: 38px; }
  .longer-view-body { font-size: 18px; }

  /* Difference */
  .difference-section { padding: 80px 24px; }
  .difference-intro { margin-bottom: 48px; }
  .difference-title { font-size: 38px; }
  .difference-table { min-width: 700px; }
  .cell-text { font-size: 13px; }

  /* Consultations */
  .consultations-section { padding: 80px 24px; }
  .consultations-inner { grid-template-columns: 1fr; gap: 48px; }
  .consultations-title { font-size: 38px; }

  /* About */
  .about-section { padding: 80px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { aspect-ratio: 4/3; max-width: 400px; }
  .about-name { font-size: 36px; }

  /* Journal */
  .journal-section { padding: 80px 24px; }
  .journal-inner { grid-template-columns: 1fr; gap: 40px; }
  .journal-title { font-size: 38px; }
  .journal-body { max-width: none; }
  .journal-letters { padding: 40px 28px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 48px 24px 36px; gap: 32px; }
  .footer-bottom { padding: 20px 24px; }
}

/* ─── Small mobile (≤480px) ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Banner — just the link */
  .banner-link { font-size: 10px; }

  /* Nav — tighten */
  .nav-logo { font-size: 20px; }
  .btn-cta.btn-small { font-size: 10px; padding: 9px 14px; }

  /* Hero */
  #top { padding-top: 120px; }
  .hero-tagline-1,
  .hero-tagline-2 { font-size: 50px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-cta,
  .hero-ctas .btn-ghost { text-align: center; }
  .hero-credentials { flex-wrap: wrap; justify-content: center; gap: 16px 24px; }

  /* Scorecard options — stack horizontally */
  .scorecard-options { grid-template-columns: 1fr; gap: 2px; }
  .scorecard-option {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
  }
  .scorecard-dots { gap: 3px; }
  .scorecard-dot { width: 24px; height: 24px; }

  /* Footer — single column */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  /* Section font sizes */
  .consultations-title,
  .difference-title,
  .journal-title,
  .longer-view-title { font-size: 32px; }
  .about-name { font-size: 30px; }
  .scorecard-title { font-size: 32px; }
  .path-headline { font-size: 28px; }
  .testimonials-featured-quote { font-size: 20px; }

  /* Modal */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-card { max-width: 100%; }
  .modal-header { padding: 36px 28px 28px; }
  .modal-title { font-size: 28px; }
  .modal-body { padding: 28px; }
}
