/* ==========================================================================
   Harmony — design tokens
   ========================================================================== */
:root {
  --ink: #1d2126;
  --ink-soft: #40454c;
  --muted: #6b7078;
  --bg: #fdfcfa;
  --surface: #ffffff;
  --surface-muted: #f6f4ef;
  --surface-dark: #1c2128;
  --line: rgba(29, 33, 38, 0.12);
  --line-soft: rgba(29, 33, 38, 0.08);
  --primary: #2f9d93;
  --primary-dark: #226f68;
  --primary-soft: #e6f4f2;
  --accent: #4c3184;
  --accent-soft: #efe9f9;
  --gradient: linear-gradient(135deg, #2f9d93 0%, #4c3184 100%);
  --footer-cream: #f2e6d3;
  --shadow-sm: 0 1px 2px rgba(20, 22, 25, .05), 0 1px 3px rgba(20, 22, 25, .06);
  --shadow-md: 0 8px 24px rgba(20, 22, 25, .08);
  --shadow-lg: 0 20px 48px rgba(20, 22, 25, .12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --page-gutter: clamp(20px, 4vw, 40px);
  --container: min(calc(100% - (var(--page-gutter) * 2)), 1200px);
  --font: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* Typography scale: eyebrow / h1 / h2 / h3 / body-lg / body / small */
h1, h2, h3 {
  margin: 0;
  overflow-wrap: anywhere;
  letter-spacing: -0.01em;
  font-family: var(--font);
  font-weight: 800;
  color: var(--ink);
}
h1 { font-size: clamp(34px, 4.4vw, 58px); line-height: 1.04; max-width: 720px; }
h2 { font-size: clamp(26px, 2.7vw, 42px); line-height: 1.08; }
h3 { font-size: clamp(18px, 1.35vw, 22px); line-height: 1.24; font-weight: 750; }
p { margin: 0; color: var(--muted); font-weight: 500; }

.eyebrow, .section-label, .section-heading span, .card-kicker {
  display: inline-block;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-none { display: block; -webkit-line-clamp: unset; overflow: visible; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* ==========================================================================
   Layout
   ========================================================================== */
.page-shell { min-height: 100vh; }
.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 6.5vw, 96px) 0;
  scroll-margin-top: 100px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: var(--container);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 8px 8px 8px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(253, 252, 250, 0.86);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 8px 24px rgba(20, 22, 25, .05);
}
.brand img { width: 112px; height: auto; }
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.1vw, 18px);
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 650;
  white-space: nowrap;
}
.site-nav a, .header-cta, .header-email, .button, .text-link {
  transition: color .18s ease, background .18s ease, transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.site-nav a:hover { color: var(--primary-dark); }
.header-email {
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.header-email:hover { color: var(--primary-dark); }

.button, .header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 0 20px;
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.header-cta,
.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 157, 147, .28);
}
.header-cta:hover,
.button-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(47, 157, 147, .32);
}
.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}
.button-secondary:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-1px); }
.button-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--primary-dark);
}
.button-ghost:hover { background: var(--primary-soft); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span { width: 16px; height: 2px; background: var(--ink); border-radius: 1px; }

/* ==========================================================================
   Hero — homepage
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-top: clamp(28px, 4.5vw, 60px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.accent-word { color: var(--primary-dark); }
.hero-copy p {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-soft);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-price {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 20px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface-muted);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 650;
}
.hero-note span {
  width: 26px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--primary);
}

.hero-stage { position: relative; }
.hero-media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.hero-media-main { z-index: 2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  z-index: 3;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 750;
  box-shadow: var(--shadow-md);
}
.floating-card-top { top: 20px; left: 20px; }
.floating-card-bottom { right: 20px; bottom: 20px; }

/* ==========================================================================
   Page hero — inner pages
   ========================================================================== */
.page-hero,
.course-hero,
.profile-hero {
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding-top: clamp(36px, 5vw, 68px);
  padding-bottom: clamp(32px, 4vw, 56px);
}
.page-hero > *, .course-hero > *, .profile-hero > * { min-width: 0; }
.page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
}
.page-hero h1, .course-hero h1, .profile-hero h1 { font-size: clamp(36px, 4.6vw, 56px); }
.page-hero-copy p, .course-hero-copy p, .profile-copy p {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--ink-soft);
}
.page-hero-copy .hero-actions, .course-hero-copy .hero-actions, .profile-copy .hero-actions { margin-top: 26px; }

.page-hero-art {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 14% 12%, rgba(47, 157, 147, .14), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(76, 49, 132, .12), transparent 40%),
    var(--surface-muted);
  border: 1px solid var(--line);
}
.hero-card-stack {
  display: grid;
  gap: 12px;
}
.hero-card-stack article {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.hero-card-stack span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-weight: 750;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-card-stack strong { display: block; font-size: 18px; line-height: 1.25; color: var(--ink); font-weight: 750; }

/* ==========================================================================
   Route picker / proof strip / request strip
   ========================================================================== */
.route-picker,
.request-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 0;
}
.route-picker a,
.request-strip article {
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.route-picker a:hover,
.request-strip article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 157, 147, .28);
}
.route-picker span,
.request-strip span {
  display: block;
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 13px;
}
.route-picker strong,
.request-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 780;
}
.route-picker p,
.request-strip p { color: var(--muted); font-size: 15px; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 0;
}
.proof-strip div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  display: grid;
  gap: 6px;
}
.proof-strip strong { color: var(--primary-dark); font-size: clamp(28px, 3vw, 40px); line-height: 1; font-weight: 800; }
.proof-strip span { color: var(--muted); font-size: 13.5px; }

/* ==========================================================================
   Section heading
   ========================================================================== */
.section-heading { max-width: 700px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-heading span { margin-bottom: 12px; }
.section-heading p { margin-top: 14px; font-size: 17px; color: var(--ink-soft); }
.accent { color: var(--primary-dark); }
.section-action { display: flex; justify-content: center; margin-top: 28px; }

/* ==========================================================================
   Help wall (What can a psychologist help with)
   ========================================================================== */
.help-wall {
  padding: clamp(48px, 6vw, 84px) 0;
  text-align: center;
}
.help-wall .section-heading { max-width: none; margin: 0 auto 40px; }
.help-wall .section-heading h2 { font-size: clamp(30px, 3.6vw, 46px); max-width: 760px; margin: 0 auto; }
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px);
}
.help-grid article {
  display: grid;
  justify-items: center;
  gap: 16px;
}
.help-visual { display: block; width: min(150px, 60%); aspect-ratio: 10 / 7; }
.help-visual svg { width: 100%; height: 100%; fill: none; stroke: var(--ink); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.help-visual .blue { stroke: var(--primary); }
.help-visual .soft { fill: var(--primary-soft); stroke: none; }
.help-visual .blue-fill { fill: var(--primary); stroke: var(--primary); }
.help-grid strong { max-width: 300px; color: var(--ink); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.3; font-weight: 700; }
.help-cta { margin: 44px auto 0; }

/* ==========================================================================
   Card system — courses / people / shared card parts
   ========================================================================== */
.card-grid,
.people-grid,
.feature-list {
  display: grid;
  gap: 18px;
  align-items: stretch;
}
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.people-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.content-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.content-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(47, 157, 147, .26); }
.card-media { display: block; flex: 0 0 auto; padding: 8px 8px 0; }
.content-card img {
  width: 100%;
  height: 190px;
  border-radius: calc(var(--radius-md) - 4px);
  object-fit: cover;
  background: var(--primary-soft);
}
.people-grid .content-card img { height: 240px; object-position: center 20%; }
.card-body { display: flex; flex: 1 1 auto; flex-direction: column; padding: 18px 18px 20px; gap: 0; }
.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-kicker,
.event-date,
.event-badge {
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--primary-soft);
  border: 1px solid rgba(47, 157, 147, .20);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.card-dot { width: 7px; height: 7px; border-radius: 999px; background: #1aa15f; flex: 0 0 auto; }
.content-card h3 { margin: 14px 0 8px; color: var(--ink); font-size: clamp(19px, 1.5vw, 23px); }
.content-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.card-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 0; }
.card-meta span { padding: 5px 10px; border-radius: var(--radius-pill); background: var(--surface-muted); color: var(--ink-soft); font-size: 12px; font-weight: 650; }
.card-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; padding-top: 18px; }
.text-link, .card-more {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--line);
}
.text-link { background: var(--surface); color: var(--ink); }
.text-link:hover { border-color: var(--primary); color: var(--primary-dark); }
.card-more { border-color: transparent; background: var(--primary); color: #fff; }
.card-more:hover { background: var(--primary-dark); }

.card-detail {
  position: absolute;
  inset: 8px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-md) - 2px);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(8px) scale(.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.content-card.is-expanded .card-detail { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.card-detail strong { max-width: calc(100% - 34px); color: var(--ink); font-size: 19px; line-height: 1.2; }
.card-detail p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; overflow: visible; }
.card-detail a { width: fit-content; margin-top: auto; padding: 9px 14px; border-radius: var(--radius-sm); background: var(--primary); color: #fff; font-size: 13.5px; font-weight: 700; }
.card-detail-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
}
.content-card p, .card-detail p { overflow-wrap: anywhere; }

/* ==========================================================================
   Mini card — features / benefits / selection criteria
   ========================================================================== */
.mini-card {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.icon-bubble {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary-dark);
  border: 1px solid rgba(47, 157, 147, .18);
}
.icon-bubble svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.mini-card h3 { margin-top: auto; color: var(--ink); }
.mini-card p { margin-top: 8px; color: var(--muted); font-size: 15px; line-height: 1.5; }

/* ==========================================================================
   Path steps
   ========================================================================== */
.path-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.path-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.path-step:hover, .path-step.is-open { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(47, 157, 147, .28); }
.path-step .step-number { display: inline-flex; margin-bottom: 20px; color: var(--muted); font-size: 13px; font-weight: 800; }
.path-icon {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--primary-dark);
  background: var(--primary-soft);
  border: 1px solid rgba(47, 157, 147, .18);
}
.path-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.path-step:nth-child(3) .path-icon,
.path-step:nth-child(4) .path-icon { color: var(--accent); background: var(--accent-soft); border-color: rgba(76, 49, 132, .16); }
.path-step h3 { max-width: 220px; padding-right: 56px; margin-top: 6px; }
.path-step p {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  transition: max-height .25s ease, margin-top .25s ease;
}
.path-step:hover p, .path-step.is-open p { max-height: 140px; margin-top: 12px; }

/* ==========================================================================
   Event cards + modal
   ========================================================================== */
.event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-date { display: inline-flex; width: fit-content; margin-bottom: 12px; background: var(--surface-muted); border-color: var(--line); color: var(--ink); font-size: 13px; }
.event-badge { display: inline-flex; width: fit-content; margin-bottom: 14px; }
.event-card h3 { margin-bottom: 10px; color: var(--ink); }
.event-card p { color: var(--muted); font-size: 15px; line-height: 1.5; }
.event-card button {
  align-self: flex-start;
  margin-top: 18px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.event-card button:hover { background: var(--primary-dark); transform: translateY(-1px); }

.event-modal {
  width: min(92vw, 480px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.event-modal::backdrop { background: rgba(20, 22, 25, .38); backdrop-filter: blur(4px); }
.event-modal h3 { padding-right: 40px; }
.event-modal p { margin: 14px 0 22px; color: var(--muted); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface-muted);
  color: var(--ink);
  min-height: 34px;
  padding: 0 14px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.event-modal { position: relative; }

/* ==========================================================================
   Service section (dark band) + steps
   ========================================================================== */
.service-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--surface-dark);
  color: #fff;
}
.service-section h2 { color: #fff; }
.service-section p { color: rgba(255, 255, 255, .72); }
.service-steps { display: grid; gap: 10px; }
.service-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 4px 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
}
.service-steps span {
  grid-row: span 2;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}
.service-steps strong { font-size: 17px; color: #fff; }
.service-steps p { color: rgba(255, 255, 255, .68); font-size: 14px; margin-top: 2px; }

/* ==========================================================================
   Course filters
   ========================================================================== */
.course-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 0;
  padding-bottom: 4px;
}
.course-filters button {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.course-filters button:hover,
.course-filters button.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.listing-section { padding-top: clamp(24px, 3vw, 40px); }

/* ==========================================================================
   Profile (specialist detail)
   ========================================================================== */
.profile-hero { grid-template-columns: minmax(260px, 380px) minmax(0, 1fr); }
.profile-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.profile-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.profile-tags span {
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: var(--primary-soft);
  border: 1px solid rgba(47, 157, 147, .20);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 13px;
}
.profile-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-top: 0;
}
.profile-facts div { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.profile-facts span { display: block; margin-bottom: 12px; color: var(--primary-dark); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.profile-facts p { color: var(--ink); font-size: 15px; font-weight: 650; }

/* ==========================================================================
   Course hero facts
   ========================================================================== */
.course-hero { grid-template-columns: minmax(0, 1fr) minmax(300px, 420px); }
.course-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  border: 1px solid var(--line);
}
.course-hero-facts div { padding: 16px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--line); }
.course-hero-facts span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.course-hero-facts strong { font-size: 19px; color: var(--ink); font-weight: 780; }

/* ==========================================================================
   Text flow (long-form content pages: about, partners, course/profile detail)
   ========================================================================== */
.text-flow { max-width: 860px; }
.text-flow h3 { margin-top: 26px; color: var(--ink); }
.text-flow h3:first-of-type { margin-top: 0; }
.text-flow p {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.text-flow p:first-of-type { border-top: 0; padding-top: 0; }

/* ==========================================================================
   Split section (education block) + quote card
   ========================================================================== */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 24px;
  align-items: stretch;
}
.split-section p + p { margin-top: 14px; }
.quote-card {
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--radius-lg);
  background: var(--surface-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.quote-card strong { color: #fff; font-size: 18px; }
.quote-card p { color: rgba(255, 255, 255, .74); margin-top: 12px; line-height: 1.6; }

/* ==========================================================================
   Collab section
   ========================================================================== */
.collab-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  border: 1px solid var(--line);
}
.collab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.collab-grid article {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.collab-grid article:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.collab-grid h3 { color: var(--ink); margin-bottom: 6px; }
.collab-grid p { color: var(--muted); font-size: 14.5px; }
.collab-grid .text-link { display: inline-flex; margin-top: 14px; }

/* ==========================================================================
   Instagram grid
   ========================================================================== */
.instagram-section { padding: clamp(40px, 6vw, 72px) 0; }
.instagram-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.instagram-grid article {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.instagram-grid span { font-weight: 800; opacity: .78; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.instagram-grid strong { display: block; max-width: 260px; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.1; margin-top: 10px; }
.instagram-grid p { color: currentColor; opacity: .78; margin-top: 8px; font-size: 14.5px; }
.ig-purple { background: var(--accent); color: #fff; }
.ig-mint { background: #bfe6e1; color: var(--accent); }
.ig-dark { background: var(--ink); color: var(--footer-cream); }
.ig-lime { background: var(--primary); color: #fff; }
.ig-blue { background: var(--gradient); color: #fff; }
.ig-white { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section { }
.testimonial-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.testimonial-cards article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.testimonial-cards blockquote { margin: 0 0 16px; color: var(--ink); font-size: 16.5px; font-weight: 650; line-height: 1.5; }
.testimonial-cards strong { display: block; color: var(--ink); }
.testimonial-cards span { color: var(--muted); font-size: 13.5px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: 10px; max-width: 820px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 0 20px; background: var(--surface); }
.faq-list summary { cursor: pointer; list-style: none; padding: 20px 0; color: var(--ink); font-size: 16.5px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p { padding: 0 0 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ==========================================================================
   Final choice band
   ========================================================================== */
.final-choice {
  display: grid;
  gap: 24px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--gradient);
  color: #fff;
}
.final-choice h2 { color: #fff; max-width: 700px; }
.final-choice p { color: rgba(255, 255, 255, .82); margin-top: 10px; max-width: 560px; }
.final-routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.final-routes a {
  min-height: 78px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .26);
  color: #fff;
  font-weight: 750;
  display: flex;
  align-items: flex-end;
  transition: background .18s ease, transform .18s ease;
}
.final-routes a:hover { background: rgba(255, 255, 255, .22); transform: translateY(-2px); }
.choice-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; max-width: 620px; }
.choice-form input {
  min-width: 0;
  min-height: 50px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font: inherit;
}
.choice-form input::placeholder { color: rgba(255, 255, 255, .68); }
.choice-form button {
  border: 0;
  border-radius: var(--radius-pill);
  min-height: 50px;
  padding: 0 22px;
  color: var(--primary-dark);
  background: #fff;
  font-weight: 750;
  cursor: pointer;
  transition: transform .18s ease;
}
.choice-form button:hover { transform: translateY(-1px); }

/* ==========================================================================
   Contact panel
   ========================================================================== */
.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.contact-panel h2 { margin-bottom: 12px; }
.contact-panel p { margin-top: 10px; }
.contact-panel a { color: var(--primary-dark); font-weight: 700; }
.contact-form {
  grid-template-columns: 1fr 1fr;
}
.contact-form input {
  background: var(--surface-muted);
  color: var(--ink);
  border-color: var(--line);
}
.contact-form input::placeholder { color: var(--muted); }
.contact-form button {
  grid-column: 1 / -1;
  color: #fff;
  background: var(--primary);
}
.contact-form button:hover { background: var(--primary-dark); }
.field-error { display: block; margin-top: 6px; color: #c0392b; font-size: 13px; font-weight: 650; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  width: var(--container);
  margin: 24px auto 20px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--surface-dark);
  color: var(--footer-cream);
}
.footer-hero img { filter: brightness(0) invert(1); opacity: .92; }
.footer-hero h2 { margin-top: 24px; max-width: 760px; font-size: clamp(28px, 3.6vw, 44px); color: #fff; }
.footer-hero p { margin-top: 12px; max-width: 480px; color: rgba(242, 230, 211, .78); }
.footer-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.footer-panel nav { display: flex; flex-direction: column; gap: 10px; color: rgba(242, 230, 211, .82); }
.footer-panel strong { color: #fff; margin-bottom: 4px; }
.footer-panel a:hover { color: #fff; }
.footer-subscribe p { color: rgba(242, 230, 211, .74); font-size: 14px; margin-top: 4px; }
.subscribe-form { display: flex; gap: 8px; margin-top: 14px; }
.subscribe-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  min-height: 44px;
  padding: 0 16px;
}
.subscribe-form input::placeholder { color: rgba(242, 230, 211, .5); }
.subscribe-form button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease;
}
.subscribe-form button:hover { background: var(--primary-dark); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(242, 230, 211, .6);
  font-size: 13.5px;
}
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   Reveal-on-scroll (JS toggles .is-visible)
   ========================================================================== */
.reveal { opacity: 1; transform: none; }
.reveal.reveal-pending { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.reveal-pending.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .people-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .header-email { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px;
    margin-top: 4px;
    border-radius: var(--radius-md);
    background: var(--surface);
  }
  .site-nav a { width: 100%; padding: 10px 8px; border-radius: var(--radius-sm); }
  .site-nav a:hover { background: var(--surface-muted); }
  body.menu-open .site-nav { display: flex; }
  body.menu-open .site-header { border-radius: var(--radius-lg); align-items: start; }
  .hero { grid-template-columns: 1fr; }
  .hero-stage { order: -1; }
  .hero-media { aspect-ratio: 16 / 10; max-height: 420px; }
  .page-hero, .course-hero, .profile-hero { grid-template-columns: 1fr; }
  .profile-hero { grid-template-columns: 1fr; }
  .profile-photo { max-width: 320px; }
}

@media (max-width: 900px) {
  :root { --page-gutter: clamp(18px, 3vw, 28px); }
  .site-header { top: 10px; padding: 8px; }
  .header-cta { display: none; }
  .section { padding: clamp(44px, 8vw, 64px) 0; }
  .route-picker, .request-strip, .proof-strip, .help-grid,
  .card-grid, .people-grid, .feature-list,
  .path-steps, .event-grid, .instagram-grid, .final-routes,
  .collab-grid, .testimonial-cards, .course-hero-facts, .profile-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-section, .split-section, .collab-section, .contact-panel {
    grid-template-columns: 1fr;
  }
  .footer-panel { grid-template-columns: repeat(2, 1fr); }
  .course-filters button { flex: 1 1 auto; text-align: center; }
  .choice-form { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form button { width: 100%; }
}

@media (max-width: 620px) {
  .route-picker, .request-strip, .proof-strip, .help-grid,
  .card-grid, .people-grid, .feature-list,
  .path-steps, .event-grid, .instagram-grid, .final-routes,
  .collab-grid, .testimonial-cards, .course-hero-facts, .profile-facts,
  .footer-panel {
    grid-template-columns: 1fr;
  }
  h1 { font-size: clamp(32px, 9.5vw, 42px); }
  .hero-actions, .button, .header-cta { width: 100%; }
  .hero-actions .button { width: 100%; }
  .site-nav a { font-size: 15px; }
  .hero-media { aspect-ratio: 4 / 3; max-height: 320px; }
  .floating-card { font-size: 12.5px; padding: 9px 12px; }
  .path-icon { position: static; margin-bottom: 16px; }
  .path-step h3 { max-width: none; padding-right: 0; }
  .site-footer { margin-left: 0; margin-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.reveal-pending { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
