/* ===== SITE F: TEMPLATE 2 — STRUCTURED PRECISION ===== */
/* Fonts: Newsreader (serif/headings) + Outfit (sans/body) */

:root {
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --sage: #7A8C6E;
  --sage-light: #E8EDE5;
  --sage-dark: #2A332E;
  --sage-deep: #1E2621;
  --gold: #C5943A;
  --gold-dim: #A67C2E;
  --gold-pale: #E8D5A8;
  --text: #1A1A1A;
  --text-mid: #4A4A44;
  --text-light: #8A8A80;
  --border: #E0DDD6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ===== GALLERY BANNER ===== */
.gallery-banner {
  background: var(--sage-dark);
  color: rgba(232,237,229,0.5);
  text-align: center;
  padding: 6px 20px;
  font-size: 11px;
  letter-spacing: 0.03em;
}
.gallery-banner a { color: rgba(232,237,229,0.65); text-decoration: none; }
.gallery-banner a:hover { color: #fff; }

/* ===== STATIONERY WATERMARK ===== */
.watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65vh;
  height: 65vh;
  max-width: 600px;
  max-height: 600px;
  pointer-events: none;
  z-index: 10;
}
.watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.08;
  filter: saturate(0.2) brightness(1.2);
  transition: opacity 0.6s ease, filter 0.6s ease;
}
.watermark.on-dark img {
  opacity: 0.15;
  filter: saturate(0.4) brightness(2.5);
}

/* ===== NAVIGATION ===== */
.top-nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  height: 60px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li > a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 14px;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links > li > a:hover { color: var(--text); }
.nav-cta {
  background: none !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 4px !important;
  padding: 7px 20px !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  letter-spacing: 0.04em !important;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: #fff !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: 0.4; }
.dropdown-menu {
  display: block; opacity: 0; visibility: hidden; pointer-events: none;
  position: absolute; top: calc(100% - 2px); left: 0;
  padding-top: 8px; z-index: 200;
  transition: opacity 0.15s, visibility 0.15s;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.dropdown-menu-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  padding: 6px 0;
  min-width: 220px;
}
.dropdown-menu a {
  display: block; padding: 9px 20px;
  font-size: 13px; color: var(--text-mid);
  text-decoration: none; transition: all 0.12s;
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--text); }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 60px - 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  background: var(--white);
}
.hero-word {
  font-family: var(--serif);
  font-size: 9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 32px;
  opacity: 0;
  animation: revealWord 1.4s ease 0.2s forwards;
}
.hero-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.8s forwards;
}
.hero-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.02em;
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1s forwards;
}
.hero-cta {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.2s forwards;
}
.hero-cta:hover { background: var(--gold); color: #fff; }
.hero-trust {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  opacity: 0;
  animation: fadeIn 0.8s ease 1.5s forwards;
}
.hero-brand-small {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.1s forwards;
}

@keyframes revealWord {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== SPLIT SECTIONS ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.split-content {
  padding: 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.split-content p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.split-content p:last-child { margin-bottom: 0; }
.split-field { background: var(--sage-light); }
.split-field.sage { background: var(--sage-light); }
.split-field.cream { background: var(--off-white); }
.split-field.warm {
  background: linear-gradient(135deg, var(--sage-light) 0%, rgba(197,148,58,0.08) 100%);
}

/* Quote in split */
.split-quote {
  padding: 80px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-quote blockquote {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--sage-dark);
  line-height: 1.45;
  max-width: 380px;
}
.split-quote cite {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 16px;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 56px 40px;
  display: flex;
  justify-content: center;
  gap: 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.pillar-item {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-mid);
}
.pillar-item em {
  font-style: italic;
  color: var(--gold);
}

/* ===== TIMELINE: PROGRAM ROADMAP ===== */
.timeline-section {
  padding: 120px 40px;
  background: var(--white);
}
.timeline-section > h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 72px;
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold-pale);
}
.tl-item {
  position: relative;
  padding: 0 0 56px 40px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  z-index: 1;
}
.tl-item.active::before {
  background: var(--gold);
}
.tl-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.tl-item h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--text);
}
.tl-grade {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.tl-item p {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 440px;
}
.tl-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(197,148,58,0.3);
  transition: border-color 0.2s;
}
.tl-cta:hover { border-color: var(--gold); }

/* ===== HOW THIS WORKS ===== */
.how-section {
  padding: 120px 40px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.how-inner {
  max-width: 640px;
  margin: 0 auto;
}
.how-inner h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.how-lead {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 64px;
  max-width: 480px;
}
.how-step {
  display: flex;
  gap: 28px;
  align-items: baseline;
  margin-bottom: 48px;
}
.how-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  flex-shrink: 0;
  width: 56px;
  text-align: right;
  line-height: 1;
  padding-top: 4px;
}
.how-step h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.how-step p { font-size: 15px; color: var(--text-mid); margin: 0; }
.how-outcome {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
}

/* ===== DARK SAGE IMMERSIVE ===== */
.dark-sage {
  background: var(--sage-dark);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px;
  position: relative;
}
.dark-sage::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197,148,58,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.dark-sage-content { position: relative; z-index: 1; max-width: 500px; }
.dark-sage h2 {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--gold-pale);
  margin-bottom: 16px;
  line-height: 1.15;
}
.dark-sage .sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,237,229,0.3);
  margin-bottom: 36px;
}
.dark-sage p {
  font-size: 16px;
  color: rgba(232,237,229,0.45);
  line-height: 1.8;
}
.dark-sage .closing {
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(232,237,229,0.6);
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 140px 40px;
  background: var(--white);
}
.philosophy-inner {
  max-width: 540px;
  margin: 0 auto;
}
.philosophy h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 20px;
}
.philosophy p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.philosophy p:last-child { margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.faq-inner {
  max-width: 600px;
  margin: 0 auto;
}
.faq-section > .faq-inner > h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 64px;
}
.faq-pair {
  margin-bottom: 56px;
}
.faq-pair h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.faq-pair p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===== FINAL CTA (homepage) ===== */
.final-cta {
  padding: 160px 40px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.final-cta h2 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 40px;
}
.cta-btn {
  display: inline-block;
  padding: 14px 48px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.cta-btn:hover { background: var(--gold-dim); }
.cta-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

/* ===== FOOTER ===== */
footer {
  background: var(--sage-deep);
  color: rgba(232,237,229,0.5);
  padding: 44px 40px 24px;
}
.footer-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,237,229,0.4);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 12px;
  color: rgba(232,237,229,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(232,237,229,0.7); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(232,237,229,0.06);
  padding-top: 16px;
  font-size: 10px;
  color: rgba(232,237,229,0.2);
}

/* ===== INTERIOR PAGE STYLES ===== */

/* Interior hero - split layout */
.page-hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 50vh; }
.page-hero-content { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.page-hero-field { background: var(--sage-light); }
.page-grade-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-hero-content h1 { font-family: var(--serif); font-size: 2.75rem; font-weight: 300; line-height: 1.15; margin-bottom: 16px; }
.page-hero-content .tagline { font-size: 1rem; color: var(--text-mid); margin-bottom: 28px; line-height: 1.7; }
.page-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  min-height: 48px;
  min-width: 200px;
  transition: all 0.2s;
}
.page-cta:hover { background: var(--gold); color: #fff; }

/* Content sections */
.interior-section { padding: 100px 72px; border-bottom: 1px solid var(--border); max-width: none; }
.interior-section .body-text { max-width: 640px; }
.interior-section h2 { font-family: var(--serif); font-size: 2rem; font-weight: 300; margin-bottom: 16px; }
.interior-section p { font-size: 16px; color: var(--text-mid); line-height: 1.8; max-width: 560px; margin-bottom: 16px; }
.interior-section p:last-child { margin-bottom: 0; }

/* Dark sage interior */
.dark-sage-interior { background: var(--sage-dark); padding: 100px 72px; color: rgba(232,237,229,0.65); }
.dark-sage-interior h2 { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--gold-pale); margin-bottom: 16px; max-width: 560px; }
.dark-sage-interior p { max-width: 540px; line-height: 1.8; margin-bottom: 16px; }
.dark-sage-interior p:last-child { margin-bottom: 0; }

/* Session blocks - left aligned */
.session-blocks { max-width: 720px; }
.session-block-2 { padding: 32px 0; border-bottom: 1px solid var(--border); }
.session-block-2:last-child { border-bottom: none; }
.session-block-2 h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; }
.session-block-2 ul { list-style: none; padding: 0; }
.session-block-2 li { padding: 4px 0 4px 20px; position: relative; font-size: 15px; color: var(--text-mid); }
.session-block-2 li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 12px; top: 7px; }

/* Pricing */
.pricing-section-2 { padding: 100px 72px; background: var(--off-white); border-bottom: 1px solid var(--border); }
.pricing-section-2 h2 { font-family: var(--serif); font-size: 2rem; font-weight: 300; margin-bottom: 48px; }
.price-cards-row { display: flex; gap: 32px; flex-wrap: wrap; }
.price-card-2 { max-width: 560px; padding: 56px 48px; border: 1px solid var(--gold); background: var(--white); }
.price-card-2 .price-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.price-card-2 .price { font-family: var(--serif); font-size: 4rem; font-weight: 300; color: var(--text); margin-bottom: 4px; }
.price-card-2 .price-note { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 32px; }
.price-card-2 .includes-item { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text-mid); }
.price-card-2 .includes-item:last-child { border-bottom: none; }

/* Service cards */
.service-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); max-width: 900px; }
.service-card-2 { background: var(--white); padding: 40px 32px; }
.service-card-2 h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 8px; }
.service-card-2 .s-price { font-size: 1.75rem; font-weight: 300; color: var(--gold); margin-bottom: 16px; font-family: var(--serif); }
.service-card-2 p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.service-card-2 ul { list-style: none; padding: 0; margin-top: 12px; }
.service-card-2 li { padding: 4px 0 4px 16px; position: relative; font-size: 14px; color: var(--text-mid); }
.service-card-2 li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 11px; top: 6px; }

/* Outcomes */
.outcomes-list { list-style: none; padding: 0; max-width: 560px; }
.outcomes-list li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text-mid); }
.outcomes-list li:last-child { border-bottom: none; }
.outcomes-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

/* Next steps */
.next-section { padding: 80px 72px; border-top: 1px solid var(--border); }
.next-section h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; margin-bottom: 24px; }
.next-links-2 { display: flex; gap: 16px; flex-wrap: wrap; }
.next-link-2 { padding: 10px 24px; border: 1px solid var(--border); font-size: 13px; color: var(--text-mid); text-decoration: none; transition: all 0.2s; letter-spacing: 0.02em; }
.next-link-2:hover { border-color: var(--gold); color: var(--gold); }

/* Counselor grid */
.counselor-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; max-width: 800px; }
.counselor-card-2 { display: flex; gap: 24px; align-items: flex-start; }
.counselor-photo-2 { width: 100px; height: 100px; border-radius: 50%; background: var(--sage-light); flex-shrink: 0; }
.counselor-info-2 h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 4px; }
.counselor-info-2 .c-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 8px; }
.counselor-info-2 p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* Final CTA interior */
.final-cta-2 { padding: 140px 72px; text-align: center; border-top: 1px solid var(--border); background: var(--white); }
.final-cta-2 h2 { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; margin-bottom: 16px; }
.final-cta-2 p { color: var(--text-light); margin-bottom: 36px; }
.cta-btn-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  min-height: 48px;
  min-width: 200px;
  transition: background 0.2s;
}
.cta-btn-2:hover { background: var(--gold-dim); }

/* About page trust blocks */
.trust-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 720px; border: 1px solid var(--border); }
.trust-block { padding: 40px 36px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.trust-block:nth-child(even) { border-right: none; }
.trust-block:nth-last-child(-n+2) { border-bottom: none; }
.trust-block h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 8px; color: var(--text); }
.trust-block p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* What families wished — list */
.wished-list { list-style: none; padding: 0; max-width: 560px; }
.wished-list li { padding: 14px 0 14px 28px; position: relative; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.wished-list li:last-child { border-bottom: none; }
.wished-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); top: 16px; }
.wished-list strong { color: var(--text); font-weight: 500; }

/* Services beyond sessions — quick guidance */
.quick-guidance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 720px; }
.quick-card { padding: 36px 32px; border: 1px solid var(--border); background: var(--white); }
.quick-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 8px; }
.quick-card .q-price { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--gold); margin-bottom: 12px; }
.quick-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* Essay card */
.essay-card { max-width: 560px; padding: 56px 48px; border: 1px solid var(--gold); background: var(--off-white); }
.essay-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; margin-bottom: 8px; }
.essay-card .e-price { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--gold); margin-bottom: 8px; }
.essay-card .e-note { font-size: 12px; color: var(--text-light); letter-spacing: 0.06em; margin-bottom: 24px; text-transform: uppercase; }
.essay-card ul { list-style: none; padding: 0; }
.essay-card li { padding: 8px 0 8px 20px; position: relative; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text-mid); }
.essay-card li:last-child { border-bottom: none; }
.essay-card li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 12px; top: 10px; }

/* Timeline numbered (junior/senior interior) */
.numbered-steps { max-width: 560px; }
.numbered-step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.numbered-step:last-child { border-bottom: none; }
.step-num { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--gold-pale); flex-shrink: 0; width: 40px; line-height: 1.1; }
.step-content h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark, #1C1816);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV PANEL ===== */
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  padding: 64px 28px 40px;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  max-height: 100vh;
  overflow-y: auto;
}
.mobile-nav-panel.open { display: flex; }
.mobile-nav-panel a {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark, #1A1816);
  text-decoration: none;
  min-height: 48px;
}
.mobile-nav-panel a:last-child { border-bottom: none; }
.mobile-nav-panel .mob-cta {
  margin-top: 20px;
  background: var(--sage-dark, #3D5C3A);
  color: #fff !important;
  border-radius: 6px;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 15px;
  justify-content: center;
  border-bottom: none;
}
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}
.mob-overlay.open { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-word { font-size: 6rem; }
  .split { grid-template-columns: 1fr; }
  .split-field { min-height: 160px; }
  .split-content { padding: 60px 32px; }
  .split-quote { padding: 48px 32px; }
  .timeline { padding-left: 32px; }
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-field { min-height: 160px; }
  .page-hero-content, .interior-section, .dark-sage-interior, .pricing-section-2, .next-section, .final-cta-2 { padding-left: 24px; padding-right: 24px; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .counselor-grid-2 { grid-template-columns: 1fr; }
  .trust-blocks { grid-template-columns: 1fr; }
  .trust-block { border-right: none; }
  .trust-block:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .trust-block:last-child { border-bottom: none; }
  .quick-guidance-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Hamburger */
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }

  /* Hero */
  .hero { min-height: 70vh; }
  .hero-word { font-size: 3.5rem; }
  .hero-trust { position: static; margin-top: 40px; }
  .hero-sub { font-size: 1rem; padding: 0 20px; }
  .watermark { width: 50vh; height: 50vh; opacity: 0.05; }

  /* Split sections */
  .pillars { flex-direction: column; gap: 16px; text-align: center; padding: 0 20px; }
  .split-content { padding: 48px 20px; }
  .split-content h2 { font-size: 1.75rem; }
  .split-field { min-height: 100px; }

  /* Timeline */
  .timeline-section, .how-section, .philosophy, .faq-section, .final-cta { padding-left: 20px; padding-right: 20px; }

  /* Dark sage */
  .dark-sage { min-height: auto; padding: 60px 20px; }
  .dark-sage h2 { font-size: 1.75rem; }

  /* How steps */
  .how-step { flex-direction: column; gap: 8px; }
  .how-num { width: auto; text-align: left; font-size: 2rem; }

  /* Interior */
  .dark-sage-interior, .pricing-section-2, .interior-section { padding-left: 20px; padding-right: 20px; }
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-field { display: none; }
  .page-hero-content { padding: 60px 20px 40px; }
  .page-hero-content h1 { font-size: 1.75rem; }
  .price-card-2 { padding: 28px 20px; }
  .price-card-2 .price { font-size: 2.75rem; }

  /* CTA full width */
  .final-cta-btn, .cta-btn-2, a[class*="cta"] {
    display: block;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* Footer */
  .footer-row { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 480px) {
  .hero-word { font-size: 2.5rem; }
  .final-cta h2 { font-size: 1.75rem; }
  .timeline-section > h2 { font-size: 1.75rem; }
  .price-card-2 { padding: 24px 16px; }
  .price-card-2 .price { font-size: 2.25rem; }
}
.hamburger { position: relative; z-index: 1000; }

/* Fix: raise nav above panel so hamburger X is visible */
.top-nav { z-index: 1000; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
