/* ── ROOT FONT SIZE ── */
html { font-size: 18px; }

/* ── TOKENS ── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #132030;
  --navy-light:  #1a2d42;
  --accent:      #7fa8c9;
  --accent-warm: #c4a882;
  --cream:       #f0ebe3;
  --cream-dim:   rgba(240,235,227,0.7);
  --cream-faint: rgba(240,235,227,0.55);
  --white:       #ffffff;
  --muted:       #6a8aaa;
  --border:      rgba(127,168,201,0.12);
  --seam:        rgba(196,168,130,0.22);
  --nav-h:       4.65rem; /* nav padding 1.8rem × 2 + ~0.88rem text */
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── NOISE TEXTURE OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── NAV BACKGROUND LAYER — sits below canvas (z-199) so kintsugi shows above bg but below text ── */
#nav-bg {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 198;
  background: transparent;
  backdrop-filter: none;
  transition: all 0.4s ease;
  pointer-events: none;
}
#nav-bg.scrolled {
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem 5rem;
  transition: padding 0.4s ease;
}
#nav.scrolled {
  padding: 1rem 5rem;
}
.nav-brand {
  display: flex; align-items: center;
  text-decoration: none; color: var(--cream);
}
.nav-name {
  font-size: 0.88rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.nav-right { display: flex; align-items: baseline; gap: 2.5rem; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.3s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  background: var(--accent-warm); padding: 0.6rem 1.3rem; transition: all 0.3s;
  cursor: pointer; vertical-align: middle; line-height: normal;
}
.nav-cta:hover { background: var(--cream); color: var(--navy); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; padding-bottom: 0.9rem; }
.nav-dropdown-trigger {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: color 0.3s;
  user-select: none; text-decoration: none;
}
.nav-dropdown.nav-open .nav-dropdown-trigger { color: var(--cream); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  list-style: none; padding: 0.5rem 0; min-width: 160px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(-4px);
}
.nav-dropdown.nav-open .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu li a:hover {
  color: var(--cream);
  background: rgba(196,168,130,0.08);
}

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active { display: block; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; background: var(--navy);
  z-index: 1000; display: flex; flex-direction: column;
  align-items: center; justify-content: center; pointer-events: none;
  gap: 1rem;
}
.loader-inner {
  display: inline-block; /* sizes to name width — line inherits this */
}
.loader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--cream); opacity: 0; animation: loaderFadeIn 1.1s ease 0.3s forwards;
  white-space: nowrap;
}
.loader-title {
  font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted);
  opacity: 0; animation: loaderFadeIn 0.9s ease 2.6s forwards;
}
.loader-line {
  display: block; width: 0; height: 1px;
  background: var(--accent-warm);
  box-shadow: 0 0 6px rgba(196,168,130,0.7), 0 0 16px rgba(196,168,130,0.3);
  margin-top: 0.9rem;
  animation: loaderLine 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
}
@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderLine {
  from { width: 0; opacity: 0; }
  to   { width: 100%; opacity: 1; }
}
#loader.fade-out { animation: loaderOut 0.7s ease forwards; }
@keyframes loaderOut {
  from { opacity: 1; }
  to   { opacity: 0; pointer-events: none; }
}

/* ── ACCEPTING BADGE ── */
.accepting-badge {
  display: inline-block;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-dim); border: 1px solid var(--seam);
  padding: 0.45rem 1rem; margin-bottom: 2.2rem;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.65); }
}

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: flex-end; position: relative; overflow: hidden;
  padding: 10rem 7rem 4rem;
  background: var(--navy);
}
#hero::before {
  content: ''; position: absolute; top: -20%; left: 30%;
  width: 70%; height: 80%;
  background: radial-gradient(ellipse, rgba(52,87,132,0.24) 0%, transparent 70%);
  pointer-events: none;
}

/* ── PAGE HERO GRADIENT (matches home hero glow) ── */
.page-hero, .services-hero, .service-detail-hero, .how-hero,
.faq-hero, .reading-hero, .post-hero, .contact-page-hero {
  position: relative;
}
.page-hero::before, .services-hero::before, .service-detail-hero::before,
.how-hero::before, .faq-hero::before, .reading-hero::before,
.post-hero::before, .contact-page-hero::before {
  content: ''; position: absolute; top: -20vh; left: 30%;
  width: 70%; height: 80vh;
  background: radial-gradient(ellipse, rgba(52,87,132,0.24) 0%, transparent 70%);
  pointer-events: none;
}
.hero-meta {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.1s forwards;
  display: flex; align-items: center; gap: 1.5rem;
}
.hero-meta::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--muted); flex-shrink: 0;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 10vw, 12rem); font-weight: 300;
  line-height: 1.0; color: var(--white); max-width: 14ch;
  opacity: 0; animation: fadeUp 1s ease 0.25s forwards; letter-spacing: -0.01em;
}
.hero-anchor {
  display: block;
  font-size: clamp(2rem, 4vw, 4.5rem);
  color: var(--white); font-weight: 300;
}
.hero-fade-wrap {
  display: block;
  min-height: 1.15em;
  margin: 0.15em 0;
}
.hero-fade-wrap em {
  font-style: italic;
  color: var(--accent-warm);
  font-size: clamp(2.8rem, 5.5vw, 6.5rem);
  transition: opacity 1.2s ease;
}
.hero-begin {
  font-style: normal;
}
.hero-again {
  margin-left: 0.25em;
  font-style: italic;
  color: var(--accent-warm);
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-again.visible {
  opacity: 1;
}
.hero-closing {
  font-style: normal;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.5rem);
}
.hero-bottom {
  display: flex; flex-direction: column; align-items: flex-start;
  margin-top: 6.5rem; gap: 2rem;
  opacity: 0; animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-sub { font-size: 1rem; line-height: 1.85; color: var(--cream-dim); white-space: nowrap; }
.hero-actions { display: flex; gap: 1.2rem; align-items: center; }
.btn {
  display: inline-block; text-decoration: none;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1rem 2rem; transition: all 0.3s ease;
  cursor: pointer; border: none; font-family: 'Cormorant Garamond', serif; font-weight: 400;
}
.btn-primary { background: var(--accent-warm); color: var(--navy); }
.btn-primary:hover { background: var(--cream); }
.btn-ghost { border: 1px solid var(--border); color: var(--muted); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 7rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  opacity: 0; animation: fadeUp 0.8s ease 1.1s forwards;
}
.hero-scroll span {
  font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out 1.5s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ── PHOTO SLOTS (placeholders — images drop in via assets/) ── */
.profile-photo-inline {
  width: 100%; margin: 3rem 0;
  aspect-ratio: 3/2; object-fit: cover; object-position: center;
  display: block; filter: saturate(0.65) brightness(0.88);
}
.contact-photo-strip { width: 100%; overflow: hidden; }
.contact-photo-strip-img {
  width: 100%; height: 400px;
  object-fit: cover; object-position: center 30%;
  display: block; filter: saturate(0.65) brightness(0.82);
}
.how-photo-break { margin: 5rem 0; overflow: hidden; }
.how-photo-img {
  width: 100%; height: 360px;
  object-fit: cover; object-position: center;
  display: block; filter: saturate(0.65) brightness(0.82);
}
/* Hero: uncomment background-image in #hero once assets/hero-bg.jpg exists */

/* ── KINTSUGI HERO CANVAS ── */
/* Absolute inside #hero — hero has no explicit z-index so canvas at z-201 participates in root stacking context, above nav (z-200) */
#crack-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 199; mix-blend-mode: lighten; display: block; }
.hero-title, .hero-bottom { position: relative; z-index: 1; }
.crack-thread-canvas { display: block; width: 100%; height: 120px; pointer-events: none; mix-blend-mode: lighten; position: relative; z-index: 199; }

/* ── SECTION BASE ── */
.section    { padding: 10rem 7rem; }
.section-sm { padding: 6rem 7rem; }
.section-label {
  display: block;
  font-size: 0.82rem; letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--cream-dim); margin-bottom: 1.4rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem); font-weight: 300;
  line-height: 1.1; color: var(--white);
}
.section-title em { font-style: italic; color: var(--accent); }

/* ── SERVICES TEASER (HOME) ── */
.services-teaser { background: var(--navy-mid); padding: 10rem 7rem; }
.services-teaser-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem;
}
.text-link {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); text-decoration: none; cursor: pointer;
  transition: color 0.3s; flex-shrink: 0;
}
.text-link:hover { color: var(--cream); }
.services-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
}
.service-card {
  background: var(--navy-mid); padding: 2.8rem 2.2rem;
  cursor: pointer; transition: background 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover { background: var(--navy-light); }
.service-card-icon { width: 38px; height: 38px; margin-bottom: 1.8rem; color: var(--accent); }
.service-card-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-full-icon { width: 34px; height: 34px; margin-bottom: 1.2rem; color: var(--accent); }
.service-full-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card-num { display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: rgba(127,168,201,0.08); line-height: 1; margin-bottom: 1.4rem;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; color: var(--white);
  margin-bottom: 1rem; line-height: 1.2;
}
.service-card p { font-size: 0.88rem; line-height: 1.75; color: var(--muted); }
.service-card-arrow {
  margin-top: auto; padding-top: 1.8rem; font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-warm);
}

/* ── TEAM TEASER (HOME) ── */
.team-section { background: var(--navy); padding: 5rem 7rem 10rem; }
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.team-card {
  background: var(--navy-mid); padding: 2.5rem 2rem 3rem;
  border: 1px solid var(--border); transition: border-color 0.3s;
  overflow: hidden;
}
.team-card:hover { border-color: rgba(127,168,201,0.3); }
.team-card-top { margin-bottom: 1.8rem; }
.team-avatar-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: var(--navy-light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300; margin-bottom: 1.5rem;
}
.team-avatar-img {
  width: calc(100% + 4rem); margin: 1.5rem -2rem 1.8rem;
  aspect-ratio: 4/5;
  object-fit: cover; object-position: top center;
  display: block;
  filter: saturate(0.72) brightness(0.95);
}
.team-member-photo {
  width: 100%; margin-bottom: 2.5rem;
  aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  filter: saturate(0.68) brightness(0.92);
  display: block;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; color: var(--white); margin-bottom: 0.3rem;
}
.team-title { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.team-license { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; }
.team-bio { font-size: 0.95rem; line-height: 1.85; color: var(--cream-dim); }
.team-placeholder-note {
  margin-top: 1.5rem; padding: 1rem 1.2rem;
  background: rgba(127,168,201,0.05); border-left: 2px solid var(--accent);
  font-size: 0.8rem; font-style: italic; color: var(--muted);
}
.team-section-footer { margin-top: 4rem; text-align: center; }

/* ── APPROACH (HOME) ── */
.approach-section {
  background: var(--navy-light); padding: 8rem 7rem;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--seam); border-bottom: 1px solid var(--seam);
}
.approach-simple { max-width: 640px; }
.approach-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.4;
  margin: 1.4rem 0 1.2rem;
  border: none; padding: 0;
}
.approach-subtext {
  font-size: 0.92rem; color: var(--cream-dim);
  line-height: 1.7; margin-bottom: 1.8rem;
}
/* keep pillar-bar for any other potential use */
.pillar-bar { width: 2px; min-height: 56px; background: linear-gradient(to bottom, var(--accent-warm), transparent); flex-shrink: 0; margin-top: 4px; }

/* ── POPULATIONS (HOME) ── */
.populations-section { background: var(--navy); padding: 10rem 7rem; }
.populations-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; border: 1px solid var(--border); margin-top: 4rem;
}
.pop-item {
  padding: 1.8rem 2.2rem; border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 1.1rem; transition: background 0.3s;
}
.pop-item:nth-child(2n) { border-right: none; }
.pop-item:nth-last-child(-n+2) { border-bottom: none; }
.pop-item:hover { background: rgba(127,168,201,0.04); }
.pop-arrow { color: var(--accent); font-size: 0.8rem; flex-shrink: 0; }
.pop-item span { font-size: 0.92rem; color: var(--cream-dim); }

/* ── SECTION CTA ── */
.section-cta { background: var(--navy-mid); padding: 7rem; text-align: center; border-top: 1px solid var(--seam); }
.section-cta .section-title { margin-bottom: 2.5rem; }
.section-cta p { font-size: 1rem; color: var(--cream-dim); max-width: 500px; margin: 0 auto 3rem; line-height: 1.85; }

/* ── TEAM PAGE ── */
.page-hero {
  padding: 12rem 7rem 6rem; background: var(--navy); border-bottom: 1px solid var(--seam);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem); font-weight: 300; line-height: 1.05;
  color: var(--white); max-width: 22ch; margin-bottom: 2rem;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p { font-size: 1.05rem; line-height: 1.85; color: var(--cream-dim); max-width: 580px; }
/* ── PROFILE EDITORIAL LAYOUT ── */
.profile-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-top: var(--nav-h);
}
.profile-photo-col {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
}
.profile-content-col {
  background: var(--navy);
}
.profile-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  filter: saturate(0.68) brightness(0.92);
}
.profile-content-inner {
  padding: 5rem 5rem 10rem 6rem;
  max-width: 640px;
}
.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white); margin: 0.6rem 0 0.4rem;
}
.profile-name em { font-style: normal; color: var(--white); }
.profile-role {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.4rem; margin-top: 0.8rem;
}
.profile-vcard-link, .mobile-only { display: none !important; }
.profile-vcard-link {
  margin-top: 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.profile-vcard-link:hover { color: var(--cream); }
.profile-supervision {
  font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-top: 1rem; margin-bottom: 0;
}
.profile-supervision a { color: var(--muted); text-decoration: underline; }
.profile-bio {
  margin-top: 2rem;
}
.profile-bio p {
  font-size: 1rem; line-height: 1.9; color: var(--cream-dim); margin-bottom: 1.4rem;
}
.profile-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--white);
  margin-top: 3rem; margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .profile-editorial { grid-template-columns: 1fr; }
  .profile-photo-col { position: relative; height: 70vw; }
  .profile-content-inner { padding: 4rem 2.5rem; }
  .profile-vcard-link { display: inline-block; }
  .mobile-only { display: block; }
}

.team-member-full { display: grid; grid-template-columns: 1fr 1.5fr; border-bottom: 1px solid var(--seam); }
.team-member-sidebar {
  padding: 5rem 3rem 6rem 4rem; background: var(--navy-mid);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.photo-placeholder {
  width: 160px; height: 200px;
  background: var(--navy-light); border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.7rem; margin-bottom: 2.5rem;
  color: var(--muted); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.photo-placeholder svg { opacity: 0.25; }
.team-member-sidebar h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 0.4rem;
}
.team-member-sidebar .role {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.25rem;
}
.team-member-sidebar .license { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }
.inline-accepting {
  display: block;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-dim); margin-top: 0.65rem;
}
.team-member-content { padding: 6rem 7rem 6rem 5rem; }
.team-member-content p {
  font-size: 1rem; line-height: 1.9; color: var(--cream-dim); margin-bottom: 1.4rem;
}
.cv-section { margin-top: 4.5rem; }
.cv-group-label {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-warm); margin-bottom: 1.5rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--border);
}
.cv-group { margin-bottom: 3.5rem; }
.cv-entry {
  padding: 1.4rem 0 1.4rem 1.5rem;
  border-left: 1px solid var(--border); margin-bottom: 0.5rem;
  position: relative; transition: border-color 0.3s;
}
.cv-entry::before {
  content: ''; position: absolute; left: -1px; top: 0; bottom: 0; width: 1px;
  background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform 0.4s ease;
}
.cv-entry:hover::before { transform: scaleY(1); }
.cv-entry .year {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 0.4rem;
}
.cv-entry h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 400; color: var(--white); margin-bottom: 0.3rem; line-height: 1.3;
}
.cv-entry p { font-size: 0.83rem; line-height: 1.65; color: var(--muted); }

/* ── SERVICES OVERVIEW PAGE ── */
.services-hero { padding: 12rem 7rem 6rem; background: var(--navy); border-bottom: 1px solid var(--seam); }
.services-hero .section-title { max-width: 700px; margin-bottom: 2rem; }
.services-hero p { font-size: 1.05rem; line-height: 1.85; color: var(--cream-dim); max-width: 600px; }
.service-full { display: block; border-bottom: 1px solid var(--seam); }

/* ── SERVICES ACCORDION ── */
.accordion-services { border-top: 1px solid var(--seam); }
.accordion-item { border-bottom: 1px solid var(--seam); }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 3rem 7rem; gap: 2rem;
  background: none; border: none; cursor: pointer; text-align: left;
  color: var(--cream); transition: background 0.25s;
}
.accordion-trigger:hover,
.accordion-item.open .accordion-trigger { background: rgba(196,168,130,0.04); }
.accordion-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 300; line-height: 1.2; color: var(--white);
}
.accordion-name em { font-style: italic; color: var(--accent); }
.accordion-tagline {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.55rem;
}
.accordion-icon {
  width: 20px; height: 20px; flex-shrink: 0; position: relative;
}
.accordion-icon::before,
.accordion-icon::after {
  content: ''; position: absolute; background: var(--accent-warm);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.accordion-icon::before { width: 16px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.accordion-icon::after  { width: 1px; height: 16px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.accordion-item.open .accordion-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item.open .accordion-body { max-height: 600px; }
.accordion-body-inner {
  padding: 0 7rem 3.5rem; max-width: 720px;
}
.accordion-body-inner p {
  font-size: 1rem; line-height: 1.9; color: var(--cream-dim); margin-bottom: 1.2rem;
}
@media (max-width: 768px) {
  .accordion-trigger { padding: 2rem 2.5rem; }
  .accordion-body-inner { padding: 0 2.5rem 2.5rem; }
}
.service-full:nth-child(even) { background: var(--navy-mid); }
.service-full-content { padding: 6rem 7rem; max-width: 860px; }
.service-num { display: none; }
.service-full-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300;
  color: var(--white); margin-bottom: 2rem; line-height: 1.2;
}
.service-full-content h2 em { font-style: italic; color: var(--accent); }
.service-full-content p { font-size: 1rem; line-height: 1.9; color: var(--cream-dim); margin-bottom: 1.3rem; }
.service-aside-title {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.8rem;
}
.service-aside-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.service-aside-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.9rem; color: var(--cream-dim); line-height: 1.6;
}
.service-aside-list li::before { content: '—'; color: var(--accent); flex-shrink: 0; margin-top: 0.05rem; }
.service-modalities { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.service-modalities p {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.8rem;
}
.modal-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.modal-tag { font-size: 0.72rem; padding: 0.4rem 0.9rem; border: 1px solid var(--border); color: var(--muted); }
.service-learn-more {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 2rem; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); cursor: pointer; text-decoration: none; transition: color 0.3s;
}
.service-learn-more:hover { color: var(--cream); }

/* ── SERVICE DETAIL SUBPAGES ── */
.service-detail-hero { padding: 12rem 7rem 6rem; background: var(--navy); border-bottom: 1px solid var(--seam); }
.service-detail-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 300; line-height: 1.05;
  color: var(--white); max-width: 18ch; margin-bottom: 2.5rem;
}
.service-detail-hero h1 em { font-style: italic; color: var(--accent); }
.service-detail-hero .lead { font-size: 1.1rem; line-height: 1.85; color: var(--cream-dim); max-width: 640px; }
.service-detail-body { display: block; }
.service-detail-main { padding: 7rem 7rem 7rem 7rem; }
.service-detail-main p { font-size: 1rem; line-height: 1.9; color: var(--cream-dim); margin-bottom: 1.4rem; }
.service-detail-main h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300; color: var(--white); margin-top: 3rem; margin-bottom: 1.2rem;
}
.service-detail-main ul {
  list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.4rem;
}
.service-detail-main ul li {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.95rem; color: var(--cream-dim); line-height: 1.65;
}
.service-detail-main ul li::before { content: '—'; color: var(--accent); flex-shrink: 0; }
.service-detail-sidebar { padding: 7rem 5rem; }
.sidebar-block { margin-bottom: 3rem; }
.sidebar-label {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-warm); margin-bottom: 1.2rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--border);
}
.sidebar-provider-name { font-size: 0.95rem; color: var(--cream); margin-bottom: 0.15rem; }
.sidebar-provider-role { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.8rem; }
.telehealth-note {
  padding: 1rem 1.2rem;
  background: rgba(127,168,201,0.05); border-left: 2px solid rgba(127,168,201,0.25);
  font-size: 0.82rem; color: var(--muted); line-height: 1.65;
}
.modality-pill {
  display: inline-block; font-size: 0.72rem;
  padding: 0.35rem 0.85rem; border: 1px solid var(--border);
  color: var(--muted); margin: 0 0.4rem 0.5rem 0;
}

/* ── FAQ PAGE ── */
.faq-hero { padding: 12rem 7rem 5rem; background: var(--navy); border-bottom: 1px solid var(--seam); }
.faq-body { padding: 6rem 7rem; background: var(--navy); }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--navy); overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 2.2rem 2.5rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background 0.3s;
}
.faq-question:hover { background: rgba(127,168,201,0.04); }
.faq-q-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400; color: var(--white); line-height: 1.3; text-align: left;
}
.faq-toggle {
  width: 24px; height: 24px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem; color: var(--accent); transition: all 0.3s;
}
.faq-item.open .faq-toggle { background: var(--accent); color: var(--navy); border-color: var(--accent); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 2.5rem 2.2rem; font-size: 0.95rem; line-height: 1.85; color: var(--cream-dim); }
.faq-answer-inner strong { color: var(--cream); font-weight: 500; }
.faq-item.open .faq-answer { max-height: 1000px; }
.faq-group-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); max-width: 860px; margin: 0 auto;
  padding: 3.5rem 0 1.2rem;
}
.faq-group-label:first-child { padding-top: 0; }
.faq-answer-inner ul { margin: 0.8rem 0 0 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-answer-inner ul li { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.75; }

/* ── READING ROOM (BLOG) ── */
.reading-hero { padding: 12rem 7rem 5rem; background: var(--navy); border-bottom: 1px solid var(--seam); }
.reading-hero .section-title { max-width: 600px; margin-bottom: 2rem; }
.reading-hero p { font-size: 1rem; line-height: 1.85; color: var(--cream-dim); max-width: 560px; }
.reading-body { padding: 5rem 7rem 8rem; background: var(--navy); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 0; }
.blog-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  padding: 2.5rem; cursor: pointer; transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover { border-color: rgba(127,168,201,0.3); transform: translateY(-3px); }
.blog-card-date { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--white); margin-bottom: 1rem; line-height: 1.25;
}
.blog-card p { font-size: 0.9rem; line-height: 1.75; color: var(--cream-dim); margin-bottom: 1.5rem; }
.blog-read-more {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); transition: color 0.3s;
}
.blog-placeholder {
  text-align: center; padding: 8rem 2rem;
  border: 1px solid var(--border);
}
.blog-placeholder-num {
  font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300;
  color: rgba(127,168,201,0.07); line-height: 1; margin-bottom: 2rem;
}
.blog-placeholder h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--white); margin-bottom: 1rem;
}
.blog-placeholder p { font-size: 0.95rem; color: var(--muted); max-width: 380px; margin: 0 auto; line-height: 1.8; }

/* ── POST VIEW (legacy SPA) ── */
.post-view { max-width: 820px; padding: 12rem 7rem 8rem; }
.post-back {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 3rem;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); cursor: pointer; background: none; border: none; padding: 0;
  transition: color 0.3s; font-family: 'Cormorant Garamond', serif;
}
.post-back:hover { color: var(--cream); }
.post-date { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 300;
  color: var(--white); line-height: 1.1; margin-bottom: 4rem;
}

/* ── BLOG POST PAGES ── */
.post-hero {
  padding: 12rem 7rem 6rem; background: var(--navy); border-bottom: 1px solid var(--seam);
}
.post-hero .section-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem); max-width: 22ch; margin-bottom: 1.5rem;
}
.post-meta {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.5rem;
}
.post-body {
  display: flex; justify-content: center;
  padding: 6rem 2rem 8rem; background: var(--navy);
}
.post-content {
  width: 100%; max-width: 680px;
}
.post-content p { font-size: 1.05rem; line-height: 1.95; color: var(--cream-dim); margin-bottom: 1.6rem; }
.post-lead {
  font-size: 1.2rem !important; line-height: 1.8 !important;
  color: var(--cream) !important; margin-bottom: 2.4rem !important;
}
.post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--white); margin: 3.5rem 0 1.2rem;
}
.post-divider {
  border: none; border-top: 1px solid rgba(196,168,130,0.4); margin: 4rem 0 2rem;
}
.post-footer-note {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
}

/* ── CONTACT ── */
.contact-page-hero {
  padding: 12rem 7rem 4rem; background: var(--navy); border-bottom: 1px solid var(--seam);
}
.contact-accepting {
  display: block; margin-bottom: 1.5rem;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-dim);
}
.contact-page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem); font-weight: 300;
  color: var(--white); margin-bottom: 1.5rem; line-height: 1.05;
}
.contact-page-hero p { font-size: 1.05rem; line-height: 1.85; color: var(--cream-dim); max-width: 560px; }
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr; background: var(--navy);
}
.contact-left { padding: 7rem 5rem 8rem 7rem; border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.contact-details { display: flex; flex-direction: column; gap: 2.2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 0.35rem; }
.contact-detail .label {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
}
.contact-detail a, .contact-detail span {
  font-size: 1rem; color: var(--cream); text-decoration: none; transition: color 0.3s;
}
.contact-detail a:hover { color: var(--accent); }
.contact-right { padding: 7rem 7rem 8rem 5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.55rem; }
.form-group label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.035); border: 1px solid var(--border);
  padding: 0.95rem 1.1rem; color: var(--cream);
  font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-weight: 400;
  outline: none; transition: border-color 0.3s;
  border-radius: 0; width: 100%; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); background: rgba(127,168,201,0.04); }
.form-group select option { background: var(--navy-mid); color: var(--cream); }
.form-group textarea { height: 140px; resize: vertical; }
.form-note { font-size: 0.75rem; color: var(--muted); line-height: 1.65; font-style: italic; }
.form-success {
  display: none; text-align: center; padding: 3rem;
  border: 1px solid rgba(127,168,201,0.2); background: rgba(127,168,201,0.04);
}
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--white); margin-bottom: 0.8rem; }
.form-success p { font-size: 0.95rem; color: var(--muted); }

/* ── FOOTER CTA ── */
#footer-cta {
  background: var(--navy-mid); padding: 9rem 7rem; text-align: center;
  border-top: 1px solid var(--seam);
}
#footer-cta p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.8rem; }
#footer-cta .cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
  color: var(--white); margin-bottom: 2.5rem; line-height: 1.2;
}
#footer-cta .cta-heading em { font-style: italic; color: var(--accent-warm); }

/* ── FOOTER ── */
.contact-map-embed {
  display: block; width: 100%; flex: 1; min-height: 200px;
  border: 1px solid var(--seam); margin-top: 2.5rem;
}

footer {
  background: var(--navy-mid); border-top: 1px solid var(--seam);
  padding: 2.5rem 7rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-monogram {
  font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.05em; color: var(--muted); border: 1px solid rgba(127,168,201,0.15);
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
}
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; letter-spacing: 0.1em; color: var(--cream); }
.footer-copy { font-size: 0.72rem; color: var(--muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.3s; cursor: pointer;
}
.footer-links a:hover { color: var(--accent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  #nav { padding: 1.5rem 2.5rem; }
  #nav.scrolled { padding: 0.9rem 2.5rem; }
  #hero { padding: 10rem 4rem 6rem; }
  .approach-section { padding: 6rem 4rem; }
  .services-cards { padding: 0 4rem 6rem; }
  .populations-section { padding: 6rem 4rem; }
  .page-hero, .services-hero, .faq-hero, .reading-hero,
  .contact-page-hero, .service-detail-hero, .post-hero,
  .how-hero { padding-left: 4rem; padding-right: 4rem; }
  .faq-body, .reading-body, .service-full-content,
  .modalities-section { padding-left: 4rem; padding-right: 4rem; }
  .nav-links { gap: 1.5rem; }

  #hero { padding: 10rem 2.5rem 5rem; }
  .hero-title { font-size: clamp(3rem, 10vw, 5rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 2rem; margin-top: 3rem; }
  .hero-scroll { display: none; }

  .section, .section-sm { padding: 5rem 2.5rem; }
  .services-teaser { padding: 5rem 2.5rem; }
  .services-teaser-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .services-cards { grid-template-columns: 1fr 1fr; }
  .team-section, .populations-section, .approach-section { padding: 5rem 2.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 4rem; }
  .populations-grid { grid-template-columns: 1fr; }
  .pop-item { border-right: none !important; }

  .page-hero { padding: 10rem 2.5rem 4rem; }
  .team-member-full { grid-template-columns: 1fr; }
  .team-member-sidebar { padding: 5rem 2.5rem 3rem; }
  .team-member-sidebar h2 { font-size: clamp(1rem, 5vw, 1.35rem); white-space: nowrap; }
  .team-member-photo { width: 100%; margin-bottom: 2rem; aspect-ratio: 4/3; }
  .photo-placeholder { width: 120px; height: 150px; }
  .team-member-content { padding: 4rem 2.5rem; }

  .services-hero { padding: 10rem 2.5rem 4rem; }
  .service-full-content { padding: 4rem 2.5rem; }

  .service-detail-hero { padding: 10rem 2.5rem 4rem; }
  .service-detail-body { grid-template-columns: 1fr; }
  .service-detail-main { padding: 4rem 2.5rem; border-right: none; border-bottom: 1px solid var(--border); }
  .service-detail-sidebar { padding: 4rem 2.5rem; }

  .faq-hero, .reading-hero { padding: 10rem 2.5rem 4rem; }
  .faq-body, .reading-body { padding: 4rem 2.5rem 6rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }

  .contact-page-hero { padding: 10rem 2.5rem 4rem; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { padding: 5rem 2.5rem; border-right: none; border-bottom: 1px solid var(--border); }
  .contact-right { padding: 4rem 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .post-view { padding: 10rem 2.5rem 6rem; }
  .post-hero { padding: 10rem 2.5rem 4rem; }
  .post-body { padding: 4rem 2rem 6rem; }
  .section-cta { padding: 5rem 2.5rem; }
  #footer-cta { padding: 5rem 2.5rem; }
  footer { padding: 2rem 2.5rem; flex-direction: column; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .services-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
}

/* ── HAMBURGER + MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 300;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream); transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#mobile-nav {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(13,27,42,0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
#mobile-nav.open { opacity: 1; pointer-events: all; }
#mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; letter-spacing: 0.06em;
  color: var(--cream); text-decoration: none; cursor: pointer;
  transition: color 0.2s;
}
#mobile-nav a:hover { color: var(--accent); }
#mobile-nav .mobile-nav-cta {
  margin-top: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy); background: var(--accent-warm);
  padding: 0.75rem 2rem; cursor: pointer;
}

@media (max-width: 600px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* ── HOW WE WORK PAGE ── */
.how-hero { padding: 12rem 7rem 6rem; background: var(--navy); border-bottom: 1px solid var(--seam); }
.how-hero .section-title { max-width: 640px; margin-bottom: 1.8rem; }
.how-hero p { font-size: 1.05rem; line-height: 1.85; color: var(--cream-dim); max-width: 600px; }

.modalities-section { padding: 7rem 7rem 9rem; background: var(--navy); }
.modalities-intro {
  max-width: 680px; margin: 0 auto 5rem;
  font-size: 1.0rem; line-height: 1.9; color: var(--cream-dim); text-align: center;
}

.modalities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--seam);
  border-left: 1px solid var(--seam);
}

.modality-card {
  padding: 3.5rem 3.5rem 3.5rem 3rem;
  border-right: 1px solid var(--seam);
  border-bottom: 1px solid var(--seam);
  position: relative;
  transition: background 0.3s ease;
}
.modality-card:hover { background: rgba(196,168,130,0.03); }
.modality-card::before {
  content: '';
  position: absolute;
  left: 0; top: 3.5rem; bottom: 3.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-warm), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modality-card:hover::before { opacity: 1; }

.modality-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 300;
  color: var(--cream); margin-bottom: 0.4rem;
  letter-spacing: 0.01em; line-height: 1.3;
}
.modality-abbr {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-warm); margin-bottom: 1.1rem;
}
.modality-card p {
  font-size: 0.93rem; line-height: 1.85; color: var(--cream-dim);
  margin-bottom: 1rem;
}
.modality-card p:last-child { margin-bottom: 0; }
.modality-note {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-top: 0.8rem;
  border-top: 1px solid var(--border); padding-top: 0.8rem; width: 100%;
}

.modalities-clinician-label {
  max-width: 1100px; margin: 5rem auto 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream-faint);
}
.modalities-clinician-label::after {
  content: ''; flex: 1; height: 1px; background: var(--seam);
}

@media (max-width: 900px) {
  .how-hero { padding: 10rem 2.5rem 4rem; }
  .modalities-section { padding: 5rem 2.5rem 7rem; }
  .modalities-grid { grid-template-columns: 1fr; }
  .modality-card { padding: 2.8rem 2rem; }
}

/* ── FOCUS VISIBLE — keyboard navigation ── */
/* Show clear indicator for keyboard users; hide for mouse/touch */
:focus:not(:focus-visible) { outline: none; }
a:focus-visible,
button:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* ── PREFERS-REDUCED-MOTION ── */
/* Only applies to users who have enabled "Reduce Motion" in their OS settings */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  /* Show all animated elements immediately */
  .hero-title, .hero-again, .hero-sub, .hero-actions, .hero-scroll,
  .hero-again.visible {
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* Skip loader entirely */
  #loader { display: none !important; }
}
