/* =========================================================
   Hadassah Beggs Therapy — MNTN-inspired design system
   Adapted from the MNTN Landing Page (Community) Figma:
     - Dark navy ground, warm-cream gold accent
     - Chronicle Display serif → DM Serif Display
     - Gilroy bold → Manrope
     - Big translucent section numbers
     - Eyebrow: short hairline + 6px-tracked gold caps
     - "read more →" link pattern
   ========================================================= */

:root {
  /* MNTN palette */
  --bg: #0b1d26;           /* deep navy ground */
  --bg-2: #0e2531;         /* slightly lifted */
  --bg-3: #133040;         /* card / section tint */
  --ink: #ffffff;
  --ink-2: rgba(255,255,255,0.78);
  --ink-3: rgba(255,255,255,0.52);
  --hairline: rgba(255,255,255,0.12);
  --hairline-strong: rgba(255,255,255,0.22);

  --accent: #fbd784;       /* warm cream/gold */
  --accent-deep: #e8be5f;
  --accent-ink: #0b1d26;

  /* Type */
  --font-display: 'DM Serif Display', 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --gutter: clamp(28px, 6vw, 150px);
  --section: clamp(96px, 12vw, 180px);
  --r-card: 0px;       /* MNTN is sharp/editorial — no rounded cards */
  --r-photo: 0px;
}

/* Theme: Sand — warm cream ground (light variant) */
[data-theme="sand"] {
  --bg: #f1ebe1;
  --bg-2: #ebe4d6;
  --bg-3: #e3dac8;
  --ink: #1b1610;
  --ink-2: rgba(27,22,16,0.72);
  --ink-3: rgba(27,22,16,0.5);
  --hairline: rgba(27,22,16,0.16);
  --hairline-strong: rgba(27,22,16,0.30);
  --accent: #b58a3d;
  --accent-deep: #8d6a2b;
  --accent-ink: #ffffff;
}

/* Theme: Forest — deep green */
[data-theme="forest"] {
  --bg: #142421;
  --bg-2: #182b27;
  --bg-3: #1d342f;
  --ink: #ffffff;
  --ink-2: rgba(255,255,255,0.78);
  --ink-3: rgba(255,255,255,0.52);
  --hairline: rgba(255,255,255,0.12);
  --hairline-strong: rgba(255,255,255,0.22);
  --accent: #d9c887;
  --accent-deep: #b8a565;
  --accent-ink: #142421;
}

/* Theme: Plum — eggplant */
[data-theme="plum"] {
  --bg: #1e1424;
  --bg-2: #251a2c;
  --bg-3: #2e2235;
  --ink: #fbf5ee;
  --ink-2: rgba(251,245,238,0.78);
  --ink-3: rgba(251,245,238,0.52);
  --hairline: rgba(251,245,238,0.12);
  --hairline-strong: rgba(251,245,238,0.22);
  --accent: #e8b893;
  --accent-deep: #c89572;
  --accent-ink: #1e1424;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 28px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(11,29,38,0.0) 100%);
  pointer-events: none;
}
[data-theme="sand"] .nav { background: linear-gradient(180deg, var(--bg) 0%, rgba(241,235,225,0) 100%); }
[data-theme="forest"] .nav { background: linear-gradient(180deg, var(--bg) 0%, rgba(20,36,33,0) 100%); }
[data-theme="plum"] .nav { background: linear-gradient(180deg, var(--bg) 0%, rgba(30,20,36,0) 100%); }
.nav > * { pointer-events: auto; }

.wordmark {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 18px; letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark .dot {
  width: 14px; height: 14px; background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 44px);
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; left: 50%; right: 50%; bottom: 0;
  height: 1.5px; background: var(--accent);
  transition: left .3s ease, right .3s ease;
}
.nav-link:hover::after { left: 0; right: 0; }
.nav-link[aria-current="page"] { color: var(--accent); }
.nav-link[aria-current="page"]::after { left: 0; right: 0; }

.nav-cta {
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 13px 22px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  padding: 160px var(--gutter) 100px;
  gap: clamp(40px, 6vw, 100px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center right;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, var(--bg) 28%, rgba(11,29,38,0.65) 55%, rgba(11,29,38,0.3) 100%);
}
[data-theme="sand"] .hero-bg::after {
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 28%, rgba(241,235,225,0.65) 55%, rgba(241,235,225,0.2) 100%);
}
[data-theme="forest"] .hero-bg::after {
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 28%, rgba(20,36,33,0.65) 55%, rgba(20,36,33,0.3) 100%);
}
[data-theme="plum"] .hero-bg::after {
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 28%, rgba(30,20,36,0.65) 55%, rgba(30,20,36,0.3) 100%);
}

.hero-left { position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; min-height: 360px; }

/* ---------- EYEBROW (MNTN signature: hairline + caps) ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}
.eyebrow::before {
  content: ''; width: 72px; height: 2px; background: var(--accent);
  display: inline-block;
}

/* ---------- DISPLAY TYPE ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--accent); }

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--accent); }

.lede {
  font-size: 18px;
  line-height: 1.78;
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 500;
  margin: 0;
  text-wrap: pretty;
}

/* ---------- BIG NUMBER (MNTN signature) ---------- */
.big-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(140px, 18vw, 280px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  opacity: 0.08;
  user-select: none;
  pointer-events: none;
}

/* ---------- READ-MORE LINK ---------- */
.readmore {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 4px;
  position: relative;
}
.readmore .arrow {
  display: inline-block;
  width: 22px; height: 1.5px;
  background: var(--accent);
  position: relative;
  transition: width .25s ease;
}
.readmore .arrow::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  width: 8px; height: 8px;
  border-top: 1.5px solid var(--accent);
  border-right: 1.5px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}
.readmore:hover .arrow { width: 36px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 18px 32px;
  border: 0; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn.is-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn.is-ghost:hover { background: var(--ink); color: var(--bg); }

/* ---------- SECTION SHELL (numbered editorial blocks) ---------- */
.section {
  padding: var(--section) var(--gutter);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  opacity: 0.45;
}
.section.has-bg::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(11,29,38,0.55) 100%);
}
[data-theme="sand"] .section.has-bg::after { background: linear-gradient(180deg, var(--bg) 0%, rgba(241,235,225,0.55) 100%); }
[data-theme="forest"] .section.has-bg::after { background: linear-gradient(180deg, var(--bg) 0%, rgba(20,36,33,0.55) 100%); }
[data-theme="plum"] .section.has-bg::after { background: linear-gradient(180deg, var(--bg) 0%, rgba(30,20,36,0.55) 100%); }

.section-tint { background: var(--bg-2); }

/* The numbered editorial block — half text, half visual, big num */
.block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  position: relative;
  min-height: 560px;
}
.block-num {
  position: absolute;
  left: -10px; top: -40px;
  z-index: -1;
}
.block-left { position: relative; max-width: 640px; }
.block-right { position: relative; min-height: 360px; }
.block-right .photo {
  width: 100%; aspect-ratio: 5/6;
  background-size: cover; background-position: center;
  border-radius: var(--r-photo);
}
.block.reverse { grid-template-columns: 1fr 1.05fr; }
.block.reverse .block-left { order: 2; }
.block.reverse .block-right { order: 1; }
.block.reverse .block-num { left: auto; right: -10px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  padding: 80px var(--gutter) 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--hairline);
}
.footer-title {
  font-family: var(--font-body);
  font-weight: 800; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-list a { color: var(--ink-2); font-size: 15px; transition: color .2s ease; }
.footer-list a:hover { color: var(--ink); }
.footer-brand {
  font-family: var(--font-display);
  font-size: 38px; line-height: 1.05;
  margin-bottom: 18px;
}
.footer-tag { color: var(--ink-3); font-size: 14px; max-width: 32ch; line-height: 1.65; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink-3); font-size: 12px;
  letter-spacing: 0.08em;
}

/* ---------- INPUTS ---------- */
.field {
  display: flex; flex-direction: column; gap: 10px;
}
.field label {
  font-family: var(--font-body);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-strong);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 0 16px;
  outline: none;
  transition: border-color .2s ease;
  resize: vertical;
  width: 100%;
}
.field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M1 1l4 4 4-4' stroke='%23FBD784' stroke-width='1.5' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; appearance: none; padding-right: 24px; color-scheme: dark; }
.field select option { background: #122d3a; color: #ffffff; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-3); font-weight: 500; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--accent); }
.field textarea { min-height: 120px; line-height: 1.6; }

/* ---------- UTIL ---------- */
.divider { height: 1px; background: var(--hairline); }
.spacer-l { height: 60px; }
.spacer-m { height: 36px; }
.spacer-s { height: 20px; }
.row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.muted { color: var(--ink-2); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; padding-bottom: 80px; }
  .hero-right { min-height: 280px; }
  .block, .block.reverse { grid-template-columns: 1fr; gap: 32px; }
  .block.reverse .block-left { order: 1; }
  .block.reverse .block-right { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* ---------- MOBILE HAMBURGER ---------- */
.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  position: relative;
  flex: none;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  position: absolute; left: 7px;
  transition: transform .25s ease, opacity .15s ease;
}
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle span::before { content: ''; top: -7px; }
.nav-toggle span::after { content: ''; top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); background: var(--ink); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); background: var(--ink); }

.nav-drawer {
  display: none;
  position: fixed; inset: 0; z-index: 49;
  background: var(--bg);
  padding: 100px var(--gutter) 40px;
  flex-direction: column; gap: 12px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.nav-drawer.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer a {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1.3;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
}
.nav-drawer a[aria-current="page"] { color: var(--accent); }
.nav-drawer .nav-drawer-cta {
  margin-top: 24px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--accent); color: var(--accent-ink);
  padding: 18px 32px; text-align: center;
  border: 0;
}

@media (max-width: 720px) {
  .nav { padding: 18px 22px; }
  .wordmark { font-size: 18px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-drawer { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* =========================================================
   SERVICE CARDS — "Ways to work together"
   (shared between home + services pages)
   ========================================================= */
.svc-grid {
  margin-top: 12px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hairline);
  border: 1px solid var(--hairline);
}
.svc {
  background: var(--bg);
  display: flex; flex-direction: column;
}
.svc-photo {
  width: 100%; aspect-ratio: 4/3;
  background-size: cover; background-position: center;
}
.svc-body { padding: 30px 28px 34px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.svc-top {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.svc-top h3 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 28px; line-height: 1.05;
  margin: 0;
}
.svc-price {
  font-family: var(--font-display);
  font-weight: 400; font-size: 30px; line-height: 1;
  color: var(--accent); white-space: nowrap;
}
.svc-price span {
  font-family: var(--font-body);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; color: var(--ink-3);
  margin-left: 6px;
}
.svc-desc { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.7; }
.svc-meta {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 7px;
}
.svc-meta div {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink-2);
}
.svc-meta div::before {
  content: ''; width: 5px; height: 5px; background: var(--accent);
  border-radius: 50%; flex: none;
}

/* =========================================================
   TEAM — founder + placeholder slots
   ========================================================= */
.team-grid {
  margin-top: 12px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hairline); border: 1px solid var(--hairline);
}
.member { background: var(--bg); display: flex; flex-direction: column; }
.member-photo {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center top;
}
.member-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.member-role {
  font-family: var(--font-body);
  font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.member-name {
  font-family: var(--font-display);
  font-weight: 400; font-size: 27px; line-height: 1.05; margin: 0;
}
.member-note { margin: 6px 0 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.65; }

/* Placeholder ("joining soon") card */
.member.is-open .member-photo {
  display: grid; place-items: center;
  background: var(--bg-3);
  aspect-ratio: 4/5;
}
.member-ph {
  width: 66px; height: 66px;
  border: 1.5px dashed var(--hairline-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 34px; line-height: 1;
  color: var(--accent);
}
.member.is-open .member-name { color: var(--ink-3); font-style: italic; }

@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ABOUT PAGE — hero + content sections
   ========================================================= */
.hero-about { min-height: 88vh; grid-template-columns: 1fr; }
.hero-about .hero-left { max-width: 880px; }

.cred-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.cred-key {
  font-family: var(--font-body);
  font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.cred-val {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.5;
  color: var(--ink); font-weight: 600;
}

.prose { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.prose p { margin: 0; font-size: 17px; line-height: 1.78; color: var(--ink-2); max-width: 56ch; text-wrap: pretty; }

.cred-grid {
  margin-top: 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.cred-block {
  background: var(--bg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
}

.values {
  margin-top: 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px 28px;
}
.value { display: flex; flex-direction: column; gap: 10px; }
.value-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px; line-height: 1;
  color: var(--accent);
}
.value h3 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 24px; line-height: 1.15;
  margin: 0;
}
.value p {
  margin: 0; color: var(--ink-2);
  font-size: 15.5px; line-height: 1.7;
}

.invite { max-width: 760px; margin: 0 auto; text-align: center; }
.signature {
  margin-top: 80px;
  display: inline-flex; align-items: baseline; gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}
.sig-name {
  font-family: var(--font-display);
  font-style: italic; font-size: 30px;
  color: var(--accent);
}
.sig-title {
  font-family: var(--font-body);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink-3);
}

.footer-brand em { color: var(--accent); font-style: italic; }

.team-wrap { max-width: 1200px; margin: 0 auto; }
.team-wrap .eyebrow { margin-bottom: 28px; }

@media (max-width: 1100px) {
  .cred-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .cred-row { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
}

/* =========================================================
   HOME PAGE
   ========================================================= */

/* Hero card overlay */
.hero-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hairline);
  padding: 32px;
  display: flex; flex-direction: column;
  max-width: 460px;
  margin-left: auto;
}
[data-theme="sand"] .hero-card { background: rgba(0,0,0,0.04); }
.hero-card-row {
  display: grid; grid-template-columns: 120px 1fr;
  align-items: center; gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
}
.hero-card-row:first-child { border-top: 0; padding-top: 4px; }
.hero-card-row:last-child { padding-bottom: 4px; }
.hero-card-key {
  font-family: var(--font-body);
  font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.hero-card-val {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.5;
  color: var(--ink); font-weight: 600;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  left: var(--gutter); bottom: 36px;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-3);
}
.hero-scroll-arrow {
  width: 1px; height: 28px; background: var(--ink-3);
  position: relative; display: inline-block;
}
.hero-scroll-arrow::after {
  content: ''; position: absolute; left: -3px; bottom: 0;
  width: 7px; height: 7px;
  border-bottom: 1px solid var(--ink-3);
  border-right: 1px solid var(--ink-3);
  transform: rotate(45deg);
}

/* Focus list (section 02) */
.focus-list { margin-top: 44px; display: flex; flex-direction: column; gap: 28px; }
.focus-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 22px; align-items: start;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}
.focus-meta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px; line-height: 1;
  color: var(--accent);
}
.focus-item h3 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 26px; line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
}
.focus-item p {
  margin: 0; color: var(--ink-2);
  font-size: 16px; line-height: 1.7;
  max-width: 50ch;
}

/* Modality grid */
.modality-grid {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.modality-grid span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 18px 0;
  text-align: center;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* Quote band */
.quote-band { text-align: center; padding-top: clamp(120px, 14vw, 200px); padding-bottom: clamp(120px, 14vw, 200px); }
.quote { max-width: 920px; margin: 0 auto; }
.quote blockquote { margin: 32px 0 0; }
.quote p {
  font-family: var(--font-display);
  font-weight: 400; font-style: normal;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.25; letter-spacing: -0.005em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.quote em { color: var(--accent); }
.quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-3);
}

/* CTA band */
.cta-band { padding-top: clamp(80px, 10vw, 140px); padding-bottom: clamp(80px, 10vw, 140px); }
.cta-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.cta-side { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.cta-meta {
  display: flex; flex-direction: column; gap: 12px;
  width: 100%; max-width: 360px;
}
.cta-meta > div {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 14px; align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
}
.cta-meta > div:last-child { border-bottom: 1px solid var(--hairline); }
.cta-meta span {
  font-family: var(--font-body);
  font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.cta-meta a {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 600;
  color: var(--ink);
}

/* Ways to work band */
.ways-wrap { max-width: 1200px; margin: 0 auto; }
.ways-wrap .eyebrow { margin-bottom: 28px; }
.ways-wrap .h2 { margin-bottom: 56px; }
.ways {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--hairline);
  border: 1px solid var(--hairline);
}
.way {
  background: var(--bg-2);
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.way-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: nowrap; }
.way-top h3 { font-family: var(--font-display); font-weight: 400; font-size: 25px; line-height: 1.05; margin: 0; white-space: nowrap; }
.way-price { font-family: var(--font-display); font-weight: 400; font-size: 27px; line-height: 1; color: var(--accent); white-space: nowrap; flex: none; }
.way-price span { font-family: var(--font-body); font-weight: 600; font-size: 11px; letter-spacing: 0.14em; color: var(--ink-3); margin-left: 6px; }
.way p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.7; }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.hero-services { min-height: 92vh; }

/* Container for wide editorial layouts */
.container-wide { max-width: 1200px; margin: 0 auto; }
.container-wide .eyebrow { margin-bottom: 28px; }
.container-wide .h2 { margin-bottom: 60px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--hairline-strong);
  padding: 8px 14px;
}

/* "Also welcome" grid */
.also-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--hairline);
}
.also {
  display: grid; grid-template-columns: 56px 1fr;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--hairline);
}
.also span {
  font-family: var(--font-body);
  font-weight: 800; font-size: 12px;
  letter-spacing: 0.18em; color: var(--accent);
}
.also div {
  font-family: var(--font-display);
  font-weight: 400; font-size: 22px; line-height: 1.1;
}

/* How sessions work */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.how { background: var(--bg); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; }
.how-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px; color: var(--accent); line-height: 1;
  margin-bottom: 12px;
}
.how h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1.1; margin: 0; }
.how p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.7; }

/* Modalities table */
.mods-table { border-top: 1px solid var(--hairline-strong); }
.mods-row {
  display: grid; grid-template-columns: 100px 280px 1fr;
  gap: 24px; align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.mods-code {
  font-family: var(--font-body);
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.18em; color: var(--accent);
}
.mods-name {
  font-family: var(--font-display);
  font-weight: 400; font-size: 22px; line-height: 1.1;
}
.mods-desc { color: var(--ink-2); font-size: 15px; line-height: 1.65; }

/* Fees */
.fees {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.fee { background: var(--bg); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.fee-key {
  font-family: var(--font-body);
  font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.fee-amount {
  font-family: var(--font-display);
  font-weight: 400; font-size: 44px;
  letter-spacing: -0.01em; line-height: 1;
}
.fee-amount span {
  font-family: var(--font-body);
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.16em; color: var(--ink-2);
  margin-left: 8px;
}

.insurance {
  margin-top: 44px;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 64px); align-items: start;
}
.insurance-key {
  font-family: var(--font-body);
  font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.insurance-note { margin: 0 0 20px; color: var(--ink-2); font-size: 16px; line-height: 1.7; max-width: 64ch; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.hero-contact { min-height: 92vh; }

/* Contact left side */
.contact-side { margin-top: 56px; display: flex; flex-direction: column; }
.contact-row {
  display: grid; grid-template-columns: 100px 1fr;
  align-items: baseline; gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
}
.contact-row:last-child { border-bottom: 1px solid var(--hairline); }
.contact-key {
  font-family: var(--font-body);
  font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.contact-val {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 600; color: var(--ink);
}

/* Form */
.form { position: relative; min-height: 600px; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.form-grid .span-2 { grid-column: 1 / -1; }
.field label em { font-style: normal; color: var(--ink-3); font-weight: 600; margin-left: 4px; }
.form-foot {
  display: flex; align-items: center; gap: 28px;
  margin-top: 36px; flex-wrap: wrap;
}
.form-note {
  margin: 0; max-width: 36ch;
  font-family: var(--font-body);
  font-size: 12px; line-height: 1.55;
  color: var(--ink-3);
}

.form-success {
  position: absolute; inset: 0;
  background: var(--bg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-start; justify-content: center;
  border: 1px solid var(--accent);
}
.form-success[hidden] { display: none; }
.success-mark {
  width: 56px; height: 56px;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
  font-size: 28px; font-weight: 700;
  border-radius: 50%;
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 30px; line-height: 1.1;
  margin: 0;
}
.form-success p { margin: 0; color: var(--ink-2); }

/* Locations */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.loc {
  background: var(--bg);
  padding: 32px; display: flex; flex-direction: column; gap: 18px;
}
.loc-num {
  font-family: var(--font-body);
  font-weight: 800; font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.loc-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.loc h3 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 28px;
  margin: 0; line-height: 1.05;
}
.loc-addr {
  font-family: var(--font-body);
  font-size: 14.5px; line-height: 1.6;
  color: var(--ink);
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.loc-meta { display: flex; flex-direction: column; gap: 12px; }
.loc-meta > div { display: grid; grid-template-columns: 76px 1fr; gap: 10px; }
.loc-key {
  font-family: var(--font-body);
  font-weight: 700; font-size: 10px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ink-3); padding-top: 3px;
}
.loc-val {
  font-family: var(--font-body);
  font-size: 13.5px; line-height: 1.5; color: var(--ink-2);
}
.loc .readmore { margin-top: auto; padding-top: 12px; }

/* FAQ */
.faqs { border-top: 1px solid var(--hairline-strong); }
.faq {
  border-bottom: 1px solid var(--hairline);
  padding: 22px 4px;
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 400; font-size: 26px; line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 500; font-size: 28px;
  color: var(--accent);
  transition: transform .25s ease;
}
.faq[open] summary::after { content: '\2212'; }
.faq p {
  margin: 14px 0 4px;
  font-family: var(--font-body);
  font-size: 16.5px; line-height: 1.7;
  color: var(--ink-2);
  max-width: 70ch; text-wrap: pretty;
}
.faq p a { color: var(--accent); }

/* =========================================================
   CONSOLIDATED RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero-card { max-width: none; margin-left: 0; }
  .cta-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .also-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .mods-row { grid-template-columns: 80px 1fr; }
  .mods-desc { grid-column: 2; }
  .fees { grid-template-columns: 1fr 1fr; }
  .insurance { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .modality-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-item { grid-template-columns: 1fr; }
  .also-grid { grid-template-columns: 1fr; }
  .fees { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 700px) {
  .way { padding: 28px 24px; }
  .way-top h3 { font-size: 20px; }
  .way-price { font-size: 22px; }
}
