/* =============================================================
   CRINK — EDITORIAL DESIGN SYSTEM
   Inspired by the Crink presentation deck:
   Instrument Serif + Inter, paper background, hairline editorial.
   ============================================================= */

:root {
  /* Editorial palette */
  --ink: #0A0A12;
  --ink-2: #2A2A38;
  --muted: #6B6B7B;
  --line: #E8E6F0;
  --line-soft: #F1EFF7;
  --paper: #FAF8F3;
  --paper-2: #F4F1E9;
  --primary: #5B4BDB;
  --primary-2: #8B5CF6;
  --primary-3: #A78BFA;
  --primary-soft: rgba(91, 75, 219, 0.08);
  --primary-softer: rgba(91, 75, 219, 0.04);

  /* Aliases for legacy class names so the cascade keeps working */
  --cream: var(--paper);
  --sage: var(--line-soft);
  --warm-white: var(--paper);
  --mauve: var(--primary);
  --mauve-light: var(--primary-soft);
  --sage-green: var(--primary-2);
  --sage-light: rgba(139, 92, 246, 0.10);
  --text: var(--ink);
  --particle: rgba(91, 75, 219, 0.35);

  /* Functional */
  --ok: #1B6F3A;
  --err: #B42318;
  --shadow-sm: 0 1px 2px rgba(10, 10, 18, 0.04);
  --shadow-md: 0 4px 16px rgba(10, 10, 18, 0.06);
  --shadow-lg: 0 16px 40px rgba(10, 10, 18, 0.08);
  --shadow-xl: 0 28px 60px rgba(10, 10, 18, 0.12);

  /* Typography */
  --serif: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --script: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --quote: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii — flatter, more editorial */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1280px;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: inherit;
  letter-spacing: -0.01em;
}

[hidden] {
  display: none !important;
}

em {
  font-style: italic;
}

/* Italic serif emphasis — the signature editorial move */
h1 em,
h2 em,
h3 em,
h4 em,
.panel-title em,
.section-heading em,
.therapist-heading em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* No more dot-grid — pure paper */
.process-story,
.faq-story {
  position: relative;
  overflow: hidden;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.text-center {
  text-align: center;
}

/* =============================================================
   NAV — minimal editorial bar
   ============================================================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--paper) 70%, transparent);
}

#nav {
  pointer-events: auto;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: var(--max-w);
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 38px;
  width: auto;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  display: none;
  gap: 28px;
}

.nav-links a {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  font-style: italic;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-reassurance {
  display: none;
}

.nav-book-link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-book-link:hover {
  background: #3f37c9;
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .nav-book-link {
    height: 40px;
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  #nav {
    height: 76px;
    padding: 0 32px;
  }

  .logo img {
    height: 48px;
  }

  .nav-links {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .nav-reassurance {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
    white-space: nowrap;
  }
}

/* =============================================================
   HERO — editorial, lots of negative space
   ============================================================= */
.hero {
  position: relative;
  padding: 32px 20px 0;
  background: var(--paper);
  overflow: hidden;
}

.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  min-width: 0;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.2s forwards;
}

h1.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 6.5vw, 64px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.35s forwards;
}

h1.hero-h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 540px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.5s forwards;
}



.hero-pricing-container {
  display: flex;
  align-items: baseline;
  gap: 16px;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.7s forwards;
}

.hp-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hp-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.hp-price {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-intro-video {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.25s forwards;
}

.anju-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--line-soft);
}

.hero-video-toggle {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.video-play-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
  flex-shrink: 0;
}

.video-play-dot::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  border-left: 7px solid white;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.next-slot-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ok);
  background: none;
  border: 0;
  border-radius: 0;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.55s forwards;
}

.next-slot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 5px rgba(27, 111, 58, 0.12);
  flex-shrink: 0;
}

/* Trust indicators marquee */
.hero-trust-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
  margin: 4px 0;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.65s forwards;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.hero-trust-row {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: trust-marquee var(--trust-duration, 20s) linear infinite;
  will-change: transform;
}

.hero-trust-wrapper:hover .hero-trust-row {
  animation-play-state: paused;
}

@keyframes trust-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--trust-distance, 50%)), 0, 0);
  }
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}

.trust-pill:hover {
  background: var(--primary-soft);
  border-color: var(--primary-3);
  color: var(--primary);
  transform: translateY(-1px);
}

.trust-icon {
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.trust-pill:hover .trust-icon {
  transform: scale(1.1);
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
  width: 100%;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.75s forwards;
}

/* Mobile order: Trust pills → Pricing → CTA → Stats → Care note */
@media (max-width: 979px) {
  .hero-trust-wrapper {
    order: 1;
  }

  .hero-pricing-container {
    order: 2;
  }

  .hero-cta-row {
    order: 3;
  }

  .hero-session-strip {
    order: 4;
  }

  .hero-care-note {
    order: 5;
  }
}

.advisor-link-row {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.5;
}

.advisor-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ok);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
}

.advisor-link:hover {
  color: var(--ink);
}

.advisor-link svg {
  color: #25D366;
  flex-shrink: 0;
}

.hero-care-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.hero-avatar-stack {
  display: flex;
  flex-shrink: 0;
  padding-top: 2px;
}

.hero-avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  object-fit: cover;
  margin-left: -10px;
}

.hero-avatar-stack img:first-child {
  margin-left: 0;
}

.hero-care-note p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  max-width: 420px;
}

.hero-session-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  gap: 0;
}

.hero-session-strip>div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 16px;
  border-left: 1px solid var(--line);
}

.hero-session-strip>div:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-session-strip strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 3.4vw, 52px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-session-strip>div>span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.mobile-book-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  min-height: 60px;
  padding: 0 28px;
  background: var(--primary);
  color: #fff;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  box-shadow: 0 14px 32px rgba(91, 75, 219, 0.32);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.mobile-book-cta:hover {
  background: #3f37c9;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(91, 75, 219, 0.42);
}

.mobile-book-cta:focus-visible {
  outline: 3px solid rgba(91, 75, 219, 0.4);
  outline-offset: 3px;
}

.mobile-book-cta .cta-arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s;
}

.mobile-book-cta:hover .cta-arrow {
  transform: translateX(4px);
}

@media (min-width: 980px) {
  .hero {
    padding: 24px 32px 0;
  }

  .hero-container {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
  }

  .hero-left {
    padding-top: 8px;
    gap: 16px;
  }

  .hero-care-note {
    padding: 10px 0;
    gap: 10px;
  }

  .hero-session-strip {
    padding: 14px 0;
  }

  .mobile-book-cta {
    display: none;
  }

  .hero-cta-row {
    align-items: flex-start;
  }

  .advisor-link-row {
    justify-content: flex-start;
    text-align: left;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================
   BOOKING COLUMN
   ============================================================= */
.hero-right {
  position: relative;
  width: 100%;
  min-width: 0;
}

.booking-form-column {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1.5px solid #000000;
  overflow: hidden;
  position: relative;
}

.booking-inner {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.booking-header-zone {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-top-intro h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
}

.booking-kicker {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}

#booking-subtitle {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 4px;
}

.hold-timer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 8px 12px;
  border-radius: 4px;
  margin-top: 6px;
}

.hold-icon {
  font-size: 14px;
}

#hold-countdown-header {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* Progress dots */
.booking-progress {
  display: flex;
  align-items: center;
  margin: 4px 0 6px;
}

.prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  position: relative;
}

.prog-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}

.prog-step::after {
  content: attr(data-label);
  position: absolute;
  top: 34px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: none;
}

.prog-step.active .prog-circle {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  transform: scale(1.05);
}

.prog-step.done .prog-circle {
  background: var(--paper);
  border-color: var(--primary);
  color: var(--primary);
}

.prog-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin: 0 4px;
}

.prog-step.done+.prog-line {
  background: var(--primary);
}

@media (min-width: 480px) {
  .prog-step::after {
    display: block;
  }

  .booking-progress {
    margin-bottom: 24px;
  }
}

.booking-mini-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.booking-mini-summary span::before {
  content: '—';
  color: var(--primary);
  margin-right: 6px;
  font-family: var(--serif);
  font-style: italic;
}

.booking-mini-summary strong {
  color: var(--ink);
  font-weight: 600;
}

.book-global-err {
  font-size: 13px;
  color: var(--err);
  background: rgba(180, 35, 24, 0.06);
  padding: 8px 12px;
  border-left: 2px solid var(--err);
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.3s;
  min-height: 0;
}

.book-global-err:not(:empty) {
  opacity: 1;
  min-height: auto;
}

.booking-steps-container {
  position: relative;
  min-height: 280px;
  min-width: 0;
}

.book-step {
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: fadeStep 0.4s var(--ease);
  min-width: 0;
}

.book-step.active {
  display: flex;
}

@keyframes fadeStep {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.step-header-area {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--primary);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.step-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.step-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.step-content-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.book-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.btn-next-s,
.btn-pay {
  flex: 1;
  height: 50px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--r-md);
  box-shadow: 0 4px 14px rgba(91, 75, 219, 0.22);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-next-s:hover:not(:disabled),
.btn-pay:hover:not(:disabled) {
  background: #3f37c9;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(91, 75, 219, 0.32);
}

.btn-next-s:disabled,
.btn-pay:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-back-s {
  flex-shrink: 0;
  height: 50px;
  padding: 0 22px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-back-s:hover {
  background: var(--warm-white);
  border-color: var(--ink);
}

.btn-mauve {
  background: var(--primary);
  color: white;
  font-weight: 500;
}

.btn-retry {
  height: 44px;
  padding: 0 20px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-md);
}

@media (min-width: 768px) {
  .booking-inner {
    padding: 30px 28px;
    gap: 20px;
  }

  .booking-top-intro h2 {
    font-size: 36px;
  }

  .step-title {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .booking-inner {
    padding: 36px 34px;
  }

  .step-title {
    font-size: 36px;
  }
}

#bs-4.hide-header-meta .step-header-area {
  display: none;
}

/* =============================================================
   STEP 1 — CONCERN CARDS
   ============================================================= */
.focus-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fc-card {
  position: relative;
  text-align: left;
  padding: 18px 16px;
  background: var(--paper);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s var(--ease);
  min-height: 120px;
}

.fc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.fc-card-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.fc-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  background: var(--paper);
  transition: all 0.2s;
}

.fc-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}

.fc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.fc-card:hover {
  background: var(--line-soft);
}

.fc-card.selected {
  background: var(--primary-soft);
}

.fc-card.selected .fc-check {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

@media (min-width: 768px) {
  .fc-card {
    padding: 22px 20px;
    min-height: 140px;
  }

  .fc-card h4 {
    font-size: 24px;
  }
}

.sub-reveal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.sub-reveal-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2px;
}

.sub-empty {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: var(--line-soft);
  border-left: 2px solid var(--primary);
  border-radius: 0;
}

.sub-empty strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}

.sub-empty span {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

#sub-concerns-area {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.sub-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.sub-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding: 4px 2px;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sub-grid::-webkit-scrollbar {
  display: none;
}

.sub-chip {
  scroll-snap-align: start;
  flex: 0 0 min(220px, 100%);
  max-width: 220px;
  text-align: left;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  position: relative;
  transition: all 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 100px;
}

.sub-chip h5 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.sub-chip p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.sub-chip-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  transition: all 0.2s;
}

.sub-chip:hover {
  border-color: var(--ink);
}

.sub-chip.selected {
  border-color: var(--ink);
  background: var(--primary-soft);
}

.sub-chip.selected .sub-chip-check {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.other-card {
  cursor: pointer;
}

.other-card.selected {
  border-color: var(--ink);
  background: var(--primary-soft);
}

.other-textarea {
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
  resize: vertical;
  min-height: 60px;
  font-family: inherit;
  background: var(--paper);
}

.sub-nav-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.sub-nav-btn:hover:not(:disabled):not(.is-disabled) {
  border-color: var(--ink);
}

.sub-nav-btn.is-disabled,
.sub-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.sub-nav-btn.is-hidden {
  display: none;
}

/* =============================================================
   CALENDAR
   ============================================================= */
.matching-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 20px;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--line);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mode-header h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.mode-header p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.schedule-mode-header {
  margin-bottom: 8px;
}

.scarcity-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(180, 95, 6, 0.06);
  border-left: 2px solid #b45309;
  border-radius: 0;
  font-size: 12px;
  color: #92400e;
  font-weight: 500;
}

.fire-icon {
  color: #b45309;
  font-size: 14px;
}

.earliest-slot-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-left: 2px solid var(--ok);
  background: rgba(27, 111, 58, 0.04);
}

.earliest-slot-card span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ok);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.earliest-slot-card strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.earliest-slot-card button {
  align-self: flex-start;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.earliest-slot-card button:hover {
  background: var(--primary);
}

.booking-grid-s3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}

.cal-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 10px;
}

.cal-month {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.cal-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cal-nav:hover {
  background: var(--line-soft);
  border-color: var(--ink);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.cal-weekday {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 6px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid transparent;
  font-size: 14px;
  color: var(--muted);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: all 0.15s;
  font-family: var(--serif);
  font-weight: 400;
}

.cal-day.available {
  color: var(--ink);
  cursor: pointer;
  background: var(--paper);
  border-color: var(--line);
}

.cal-day.available:hover {
  border-color: var(--ink);
  background: var(--line-soft);
}

.cal-day.today {
  font-style: italic;
  color: var(--primary);
}

.cal-day.selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.slots-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slots-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 2px;
}

.slots-header span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.slots-header strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.time-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(94px, 1fr));
  gap: 6px;
  max-height: 220px;
  overflow-y: auto;
  padding: 2px;
}

.time-chip {
  height: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  transition: all 0.15s;
}

.time-chip:hover {
  border-color: var(--ink);
}

.time-chip.selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.tz-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
}

.muted-note {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.schedule-empty {
  text-align: center;
  padding: 36px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}

.schedule-empty p {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.schedule-empty span {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mode-card {
  text-align: left;
  padding: 20px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s;
}

.mode-card:hover {
  border-color: var(--ink);
}

.mode-card.selected {
  background: var(--primary-soft);
  border-color: var(--ink);
}

.mode-icon {
  font-size: 26px;
}

.mode-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.mode-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .booking-grid-s3 {
    grid-template-columns: 1.05fr 1fr;
    gap: 18px;
  }

  .time-chips {
    max-height: 280px;
  }
}

/* =============================================================
   DETAILS FORM
   ============================================================= */
.dt-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.prog-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.dt-input-wrap {
  display: flex;
}

.dt-input,
.phone-cc {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
}

.dt-input::placeholder,
.phone-cc::placeholder {
  color: var(--muted);
  font-style: italic;
}

.dt-input:focus,
.phone-cc:focus {
  outline: 0;
  border-color: var(--ink);
  background: var(--paper);
}

.dt-input.error {
  border-color: var(--err);
}

.field-msg {
  min-height: 14px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--err);
}

.phone-row {
  display: flex;
  gap: 8px;
}

.phone-cc {
  flex: 0 0 64px;
  text-align: center;
  font-weight: 500;
}

.phone-num {
  flex: 1;
}

.terms-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 4px;
}

.terms-note a {
  color: var(--primary);
  text-decoration: underline;
}

@media (min-width: 600px) {
  .dt-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================================
   PAYMENT SUMMARY
   ============================================================= */
.confirm-summary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.cs-row,
.cs-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.cs-row span:first-child,
.cs-price span:first-child {
  color: var(--muted);
}

.cs-row span:last-child {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: -0.01em;
}

.cs-price {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 4px;
  font-size: 16px;
  align-items: baseline;
}

.cs-price .original {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 400;
  margin-right: 6px;
}

.cs-price .final {
  color: var(--primary);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  font-style: italic;
  letter-spacing: -0.02em;
}

/* ---- Coupon ---- */
.coupon-section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  margin-top: 12px;
}

.coupon-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coupon-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.coupon-input-row {
  display: flex;
  gap: 8px;
}

.coupon-input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coupon-input::placeholder {
  letter-spacing: normal;
  text-transform: none;
  color: var(--muted);
}

.coupon-input:focus {
  outline: none;
  border-color: var(--primary);
}

.coupon-apply-btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 1px solid var(--primary);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.coupon-apply-btn:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
}

.coupon-apply-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.coupon-msg {
  font-size: 13px;
  min-height: 1px;
}

.coupon-msg.err {
  color: var(--err);
}

.coupon-msg.ok {
  color: var(--ok);
}

.coupon-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.coupon-applied-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.coupon-applied-code {
  font-size: 14px;
  font-weight: 600;
  color: var(--ok);
  letter-spacing: 0.04em;
}

.coupon-applied-desc {
  font-size: 12px;
  color: var(--muted);
}

.coupon-remove-btn {
  flex: 0 0 auto;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-family: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}

.coupon-remove-btn:hover {
  color: var(--err);
}

.payment-msg {
  font-size: 13px;
  margin-top: 4px;
}

.payment-msg.ok {
  color: var(--ok);
}

.payment-msg.err {
  color: var(--err);
}

.service-error {
  text-align: center;
  padding: 36px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.service-error-icon {
  font-size: 32px;
}

.service-error h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.service-error p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
}

/* =============================================================
   FLOATING MOBILE FAB
   ============================================================= */
.floating-book-fab {
  position: fixed;
  z-index: 996;
  bottom: calc(18px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: opacity 0.2s;
  min-height: 56px;
  padding: 0 32px;
  border-radius: var(--r-pill);
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@keyframes fabPulse {

  0%,
  76%,
  100% {
    transform: translate(-50%, 0) scale(1);
  }

  82% {
    transform: translate(-50%, -1px) scale(1.03);
  }

  88% {
    transform: translate(-50%, 0) scale(1);
  }
}

@media (max-width: 979px) {
  .floating-book-fab.is-visible {
    display: inline-flex;
  }

  .floating-book-fab.is-visible {
    animation: fabPulse 10s ease-in-out infinite;
  }

  body.sheet-open .floating-book-fab {
    display: none;
  }
}

/* =============================================================
   MOBILE BOOKING SHEET / FULLSCREEN MODAL
   ============================================================= */
#sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 18, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 998;
}

#sheet-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.sheet-handle-bar {
  display: none;
  position: relative;
  padding: 16px 56px 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  align-items: center;
  justify-content: flex-start;
  flex: none;
}

.sheet-pill {
  display: none;
}

.sheet-header-label {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.sheet-close-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.sheet-close-btn:hover {
  background: var(--line-soft);
}

.sheet-close-btn svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 979px) {
  .booking-form-column {
    position: fixed;
    inset: 0;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
    border-radius: 0;
    border: 0;
    z-index: 999;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    visibility: hidden;
  }

  .booking-form-column.visible {
    visibility: visible;
  }

  .hero-right.sheet-open .booking-form-column {
    transform: translateY(0);
  }

  .sheet-handle-bar {
    display: flex;
  }

  /* Sheet handle already shows "Book Your First Session"; hide the duplicate
     in-body heading on mobile while keeping it for desktop. */
  .booking-top-intro h2 {
    display: none;
  }

  .booking-inner {
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    flex: 1 1 auto;
    min-height: 0;
    padding: 20px 20px 0;
    gap: 14px;
  }

  .booking-steps-container {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    min-height: 0;
  }

  .book-step {
    flex: 1 0 auto;
    gap: 12px;
  }

  .book-step.active {
    display: flex;
    min-height: 100%;
  }

  .book-step.active .book-actions {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    margin: auto -20px 0;
    z-index: 5;
    border-top: 1px solid var(--line);
  }

  /* Step 2 — wrap sub-concerns instead of horizontal-scrolling so the whole
     form stays in one vertical view. Nav arrows aren't needed when wrapped. */
  .sub-scroll-wrapper {
    overflow: visible;
  }

  .sub-grid {
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 0;
  }

  .sub-chip {
    flex: 1 1 calc(50% - 5px);
    max-width: none;
    min-height: 0;
  }

  .sub-chip.other-card {
    flex-basis: 100%;
  }

  .sub-nav-btn {
    display: none;
  }

  /* Step 3 — tighten field spacing so the contact form fits one mobile view. */
  .step-content-area {
    gap: 10px;
  }

  .step-header-area {
    gap: 2px;
  }

  .dt-field {
    gap: 4px;
  }

  .dt-grid {
    gap: 10px;
  }

  .field-msg {
    min-height: 0;
  }

  .field-msg:empty {
    display: none;
  }

  .terms-note {
    margin-top: 2px;
  }

  body.sheet-open {
    overflow: hidden;
  }

  body.sheet-fixed {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
  }
}

/* =============================================================
   SUPPORTERS — editorial logo strip
   ============================================================= */
.supporters-section,
.funds-section {
  padding: 64px 20px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.supporters-inner,
.funds-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.supporters-inner h2,
.funds-inner h2 {
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.supporter-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.supporter-logo {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.supporter-logo img {
  width: min(220px, 86%);
  max-height: 80px;
  object-fit: contain;
}

.supporter-logo:hover {
  background: var(--line-soft);
}

.funds-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.funds-inner {
  display: grid;
  gap: 16px;
}

.funds-inner p {
  max-width: 640px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
}

@media (min-width: 768px) {

  .supporters-section,
  .funds-section {
    padding: 96px 32px;
  }

  .supporter-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .supporter-logo {
    min-height: 144px;
  }
}

/* =============================================================
   BRAND VIDEO
   ============================================================= */
.brand-video-section {
  background: var(--paper);
  padding: 32px 20px 16px;
}

.brand-video-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}

.brand-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

@media (min-width: 768px) {
  .brand-video-section {
    padding: 56px 24px 24px;
  }
}

@media (min-width: 1024px) {
  .brand-video-section {
    padding: 80px 32px 32px;
  }
}

.brand-video-section.in-hero {
  padding: 0;
  background: transparent;
  border-top: 0;
  width: 100%;
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
}

.brand-video-section.in-hero .brand-video-wrap {
  border-radius: var(--r-md);
  width: 100%;
  max-width: 280px;
}

/* =============================================================
   FOCUS PANELS — editorial 4-up row with hairlines
   ============================================================= */
.focus-story {
  background: var(--paper);
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.focus-intro {
  text-align: left;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--primary);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.section-heading em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

.focus-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.focus-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 26px;
  min-height: 280px;
  background: var(--paper);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.3s;
}

.focus-panel:hover {
  background: var(--line-soft);
  z-index: 2;
}

.panel-num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  color: var(--line);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.panel-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--primary);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.panel-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.panel-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 320px;
}

.panel-link {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--primary);
  align-self: flex-start;
  transition: color 0.2s, transform 0.2s;
}

.panel-link:hover {
  color: var(--ink);
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .focus-story {
    padding: 96px 0;
  }

  .focus-intro {
    padding: 0 48px 48px;
  }

  .focus-panel {
    padding: 52px 36px;
    min-height: 360px;
  }

  .panel-title {
    font-size: 48px;
  }

  .panel-desc {
    font-size: 15px;
  }

  .panel-num {
    top: 28px;
    right: 36px;
    font-size: 88px;
  }
}

@media (min-width: 1024px) {
  .focus-panels {
    grid-template-columns: repeat(4, 1fr);
  }

  .focus-panel {
    min-height: 420px;
    padding: 56px 32px;
  }

  /* Prevent title text from running under the ghost number without
     changing the panel-top dimensions (avoids unequal panel sizes) */
  .panel-title {
    max-width: calc(100% - 60px);
  }

  .panel-num {
    font-size: 72px;
    top: 24px;
    right: 28px;
  }
}

/* =============================================================
   PROCESS — editorial flow row, hairlined
   ============================================================= */
.process-story {
  background: var(--paper);
  padding: 72px 32px;
  border-top: 1px solid var(--line);
}

.process-intro {
  text-align: left;
  max-width: var(--max-w);
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-intro p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 540px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 0;
  background: var(--paper);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: background 0.2s;
  position: relative;
}

.process-step:hover {
  background: var(--line-soft);
}

.process-step span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
}

.process-step p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 360px;
}

@media (min-width: 768px) {
  .process-story {
    padding: 96px 48px;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-left: 1px solid var(--line);
  }

  .process-step {
    padding: 36px 28px;
    border-right: 1px solid var(--line);
  }

  .process-step h3 {
    font-size: 28px;
  }
}

/* =============================================================
   THERAPISTS — editorial row, hairline cards
   ============================================================= */
.therapist-story {
  background: var(--paper);
  padding: 72px 32px;
  border-top: 1px solid var(--line);
}

.therapist-intro-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 0 32px;
  border-bottom: 1px solid var(--line);
}

.therapist-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.therapist-heading em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

.therapist-nav-btns {
  display: flex;
  gap: 8px;
}

.t-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.t-nav-btn:hover:not(:disabled):not(.is-disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.t-nav-btn.is-disabled,
.t-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.t-nav-btn.is-hidden {
  display: none;
}

.therapist-scroll-track {
  display: flex;
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 32px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.therapist-scroll-track::-webkit-scrollbar {
  display: none;
}

.t-story-card {
  scroll-snap-align: start;
  flex: 0 0 240px;
  background: linear-gradient(165deg, #FFFFFF 0%, var(--primary-soft) 100%);
  border: 1px solid var(--line);
  padding: 16px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(91, 75, 219, 0.07);
}

.t-story-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-3);
  box-shadow: 0 14px 32px rgba(91, 75, 219, 0.16);
}

.t-story-initial {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
  filter: grayscale(0.1);
  transition: filter 0.25s;
}

.t-story-card:hover .t-story-initial {
  filter: grayscale(0);
}

.t-story-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
  margin-top: 4px;
}

.t-story-card .deg {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.t-story-card .spec {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
}

@media (min-width: 768px) {
  .therapist-story {
    padding: 96px 48px;
  }

  .t-story-card {
    flex: 0 0 280px;
    padding: 20px 20px 26px;
  }
}

/* =============================================================
   TESTIMONIAL MARQUEE — editorial pull-quotes
   ============================================================= */
.testimonial-immersive {
  position: relative;
  background: var(--paper);
  padding: 72px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.testi-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(160px, 26vw, 380px);
  font-weight: 400;
  color: var(--line);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  letter-spacing: -0.04em;
}

.testimonial-immersive .therapist-intro {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  text-align: left;
}

.testimonial-immersive .therapist-intro h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.testimonial-immersive .therapist-intro h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

.testimonial-immersive .video-header {
  margin-bottom: 32px;
}

.stage {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 32px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee var(--marquee-duration, 60s) linear infinite;
  will-change: transform;
}

.testimonial-immersive:hover .track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--marquee-distance, 50%)), 0, 0);
  }
}

.card.quote {
  flex: 0 0 360px;
  background: var(--paper);
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: none;
  position: relative;
}

.card.quote::before {
  content: '"';
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  color: var(--primary);
  line-height: 0.6;
  margin-bottom: -10px;
}

.quote-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  font-style: normal;
  letter-spacing: 0;
}

.name-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--primary);
  font-weight: 400;
  letter-spacing: 0;
  margin-top: auto;
}

@media (min-width: 768px) {
  .testimonial-immersive {
    padding: 96px 0;
  }

  .card.quote {
    flex: 0 0 420px;
    padding: 32px 40px;
  }

  .quote-text {
    font-size: 16px;
  }
}

/* =============================================================
   VIDEO REELS
   ============================================================= */
.video-story {
  background: var(--paper);
  padding: 72px 32px;
  border-top: 1px solid var(--line);
}

.video-header {
  max-width: var(--max-w);
  margin: 0 auto 32px;
  text-align: left;
}

.video-header .therapist-intro {
  text-align: left;
}

.video-header .therapist-intro h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.video-header .therapist-intro h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

.reel-grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.reel-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.reel-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
}

.reel-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.reel-card-footer {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.reel-caption {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.reel-caption-icon {
  flex-shrink: 0;
}

.reel-caption-icon svg {
  width: 28px;
  height: 28px;
}

.reel-caption-user {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: block;
}

.reel-caption-text {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 2px;
  line-height: 1.55;
}

.reel-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.reel-action-btns {
  display: flex;
  gap: 14px;
}

.reel-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.reel-btn:hover {
  opacity: 1;
  color: var(--primary);
}

.reel-btn svg {
  width: 18px;
  height: 18px;
}

.reel-open-btn {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--primary);
  font-weight: 400;
}

.reel-open-btn:hover {
  color: var(--ink);
}

@media (min-width: 768px) {
  .video-story {
    padding: 96px 48px;
  }

  .reel-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 880px;
  }

  .reel-card {
    max-width: none;
  }
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-story {
  background: var(--paper);
  padding: 72px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-aside h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.faq-aside h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

.faq-aside p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 360px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 48px;
  padding: 0 26px;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.hero-cta:hover {
  background: var(--primary);
  color: #fff;
}

.faq-items {
  display: flex;
  flex-direction: column;
}

.faq-s-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  list-style: none;
}

.faq-s-item:first-child {
  border-top: 0;
}

.faq-s-q {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.25;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.faq-s-q::-webkit-details-marker {
  display: none;
}

.faq-s-q::marker {
  content: '';
}

.faq-s-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}

.faq-s-a {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 720px;
  display: none;
}

.faq-s-item[open] .faq-s-a {
  display: block;
  animation: faqIn 0.3s var(--ease);
}

.faq-s-item[open] .faq-s-icon {
  transform: rotate(45deg);
}

@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  .faq-story {
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    padding: 96px 48px;
  }

  .faq-s-q {
    font-size: 26px;
  }

  .faq-s-item {
    padding: 28px 0;
  }
}

/* =============================================================
   FOOTER — minimal editorial
   ============================================================= */
.footer-story {
  background: var(--ink);
  color: var(--paper);
  padding: 40px 32px 24px;
  border-top: 1px solid var(--ink);
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-col {
  grid-column: 1 / -1;
}

.footer-logo img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .footer-logo img {
    height: 44px;
  }
}

.footer-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-top: 10px;
  max-width: 360px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--paper);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-3);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  align-items: flex-start;
}

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--paper);
}

@media (min-width: 768px) {
  .footer-story {
    padding: 56px 48px 28px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 28px;
  }

  .brand-col {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* =============================================================
   BOOKING SUCCESS
   ============================================================= */
.booking-success {
  text-align: left;
  padding: 48px 20px;
}

.booking-success-logo {
  height: 30px;
  width: auto;
  margin: 0 0 36px;
  opacity: 0.8;
}

.booking-success-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.booking-success-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

.booking-success-copy {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 0 40px;
}

.booking-success-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 26px;
  text-align: left;
  max-width: 460px;
  margin: 0 0 40px;
}

.booking-success-card h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 600;
}

.success-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 14px;
  align-items: baseline;
}

.success-row span:first-child {
  color: var(--muted);
}

.success-row span:last-child {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  text-align: right;
  letter-spacing: -0.01em;
}

.success-row .paid {
  color: var(--primary);
  font-style: italic;
}

.success-ids {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.success-ids .success-row {
  font-size: 11px;
  margin-bottom: 4px;
}

.success-ids .success-row span:last-child {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.success-ids code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--ink);
}

.success-home-link {
  display: inline-block;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.exit-options {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.exit-option {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  text-align: left;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.exit-option:hover {
  border-color: var(--ink);
  background: var(--line-soft);
}

.exit-option-dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  position: relative;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.exit-option-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.2s var(--ease);
}

.exit-option.selected {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--ink);
}

.exit-option.selected .exit-option-dot {
  border-color: var(--primary);
}

.exit-option.selected .exit-option-dot::after {
  transform: scale(1);
}

.exit-other-text {
  width: 100%;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
  resize: vertical;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s var(--ease);
}

.exit-other-text:focus {
  outline: none;
  border-color: var(--primary);
}

/* =============================================================
   PAYMENT FAILED MODAL
   ============================================================= */
.payment-failed-modal[hidden] {
  display: none;
}

.payment-failed-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.payment-failed-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.payment-failed-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  max-height: 92vh;
  background: var(--paper);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  text-align: left;
  animation: pfRise 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.payment-failed-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 48px 32px 20px;
}

/* Two-step machinery */
.pf-step[hidden] {
  display: none;
}

.pf-step {
  animation: pfStepIn 0.32s var(--ease);
}

.pf-step-sub {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

.payment-failed-actions .pf-actions-group[hidden] {
  display: none;
}

.payment-failed-actions .pf-actions-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: pfStepIn 0.32s var(--ease);
}

/* Stepper pips — show progress through the two steps */
.pf-stepper {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.pf-step-pip {
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--line);
  transition: background 0.25s var(--ease), width 0.25s var(--ease);
}

.payment-failed-modal[data-step="reason"] .pf-step-pip--1 {
  background: var(--ink);
}

.payment-failed-modal[data-step="help"] .pf-step-pip--1 {
  background: var(--primary);
}

.payment-failed-modal[data-step="help"] .pf-step-pip--2 {
  background: var(--ink);
  width: 28px;
}

/* When skipping straight to help (payment-failed), hide stepper entirely */
.payment-failed-modal[data-single-step="1"] .pf-stepper {
  display: none;
}

/* Continue button (step 1 primary). Compound selector beats the
   .payment-failed-primary WhatsApp-green declaration later in this file
   without needing to reorder rules. */
.payment-failed-primary.pf-continue {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}

.payment-failed-primary.pf-continue:hover:not(:disabled) {
  background: #000;
}

.payment-failed-primary.pf-continue:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  background: var(--ink);
}

/* Skip link on step 1 */
.pf-skip {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  padding: 8px 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.pf-skip:hover {
  color: var(--ink);
  text-decoration-color: currentColor;
}

/* Back link on step 2 (only visible when arrived from step 1) */
.pf-back {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  padding: 6px 10px;
  cursor: pointer;
  transition: color 0.2s;
}

.pf-back:hover {
  color: var(--ink);
}

.pf-back[hidden] {
  display: none;
}

@keyframes pfRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pfStepIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.payment-failed-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: var(--paper);
  transition: background 0.2s, color 0.2s;
  z-index: 5;
}

.payment-failed-close:hover {
  background: var(--line-soft);
  color: var(--ink);
}

.payment-failed-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
}

.payment-failed-kicker {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.payment-failed-modal h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 14px;
}

.payment-failed-modal p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

.payment-failed-bullets {
  list-style: none;
  margin: 18px 0 0;
  padding: 16px 18px;
  background: var(--line-soft);
  border-left: 2px solid var(--primary);
  border-radius: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-failed-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  font-family: var(--sans);
  font-style: normal;
}

.pf-tick {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(27, 111, 58, 0.18);
  color: var(--ok);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.payment-failed-reason {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--line-soft);
  border-left: 2px solid var(--line);
  font-size: 13px;
  color: var(--ink);
  font-style: normal;
  font-family: var(--sans);
}

.payment-failed-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 28px calc(18px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--paper);
  flex: none;
}

.payment-failed-actions[hidden] {
  display: none;
}

.payment-failed-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  background: #25D366;
  color: white;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background 0.2s;
}

.payment-failed-primary:hover {
  background: #1ebe5a;
}

.payment-failed-secondary {
  min-height: 48px;
  padding: 0 24px;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  border: 1px solid var(--primary);
  transition: background 0.2s, color 0.2s;
}

.payment-failed-secondary:hover {
  background: var(--primary);
  color: #fff;
}

.payment-failed-foot {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  text-align: left;
}

.payment-failed-foot a {
  color: var(--primary);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.payment-failed-foot a:hover {
  color: var(--ink);
}

body.pf-modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .payment-failed-modal {
    padding: 0;
  }

  .payment-failed-panel {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    border: 0;
  }

  .payment-failed-scroll {
    padding: 44px 20px 16px;
  }

  .payment-failed-actions {
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  }

  .payment-failed-modal h2 {
    font-size: 26px;
  }

  .payment-failed-close {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
  }

  .payment-failed-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }

  .pf-stepper {
    top: 18px;
  }

  .exit-option {
    font-size: 14.5px;
    min-height: 50px;
    padding: 12px 14px;
  }
}

/* =============================================================
   THERAPIST MODAL
   ============================================================= */
.t-modal {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  padding: 16px;
}

.t-modal.show {
  opacity: 1;
}

.t-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, 0.65);
  backdrop-filter: blur(4px);
}

.t-modal-container {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-lg);
  max-width: 920px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  z-index: 1;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}

.t-modal.show .t-modal-container {
  transform: translateY(0);
}

.t-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.t-modal-close:hover {
  background: var(--line-soft);
}

.t-modal-content {
  display: grid;
  grid-template-columns: 1fr;
  max-height: 92vh;
  overflow-y: auto;
}

.t-modal-left {
  background: var(--paper-2);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-modal-left img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  object-fit: cover;
}

.t-modal-right {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-modal-right h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.modal-deg {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.modal-info-scroll {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.modal-section h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.modal-section p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .t-modal-content {
    grid-template-columns: 0.85fr 1fr;
  }

  .t-modal-left {
    padding: 40px;
  }

  .t-modal-left img {
    max-width: 100%;
  }

  .t-modal-right {
    padding: 44px 40px;
  }

  .t-modal-right h2 {
    font-size: 40px;
  }
}

/* =============================================================
   MOBILE-FIRST TUNING (≤ 600px)
   ============================================================= */
@media (max-width: 600px) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .hero {
    padding: 12px 16px 0;
  }

  .hero-left {
    gap: 10px;
    text-align: left;
    align-items: flex-start;
  }

  .hero-pricing-container {
    justify-content: flex-start;
  }

  .hero-care-note {
    align-items: flex-start;
    text-align: left;
  }

  .hero-care-note p {
    margin: 0;
  }

  .hero-session-strip>div {
    text-align: left;
    align-items: flex-start;
    padding: 0 10px;
  }

  .hero-intro-video {
    margin: 0;
  }

  h1.hero-h1 {
    font-size: clamp(26px, 7.5vw, 38px);
    line-height: 1.02;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hp-label {
    font-size: 10px;
  }

  .hp-price {
    font-size: 28px;
  }

  .hero-care-note {
    gap: 10px;
    padding: 10px 0;
  }

  .hero-care-note p {
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-avatar-stack img {
    width: 26px;
    height: 26px;
  }

  .hero-session-strip {
    padding: 12px 0;
    gap: 0;
  }

  .hero-session-strip strong {
    font-size: clamp(22px, 6vw, 30px);
  }

  .hero-session-strip>div>span {
    font-size: 10px;
    line-height: 1.35;
  }

  .mobile-book-cta {
    min-height: 50px;
    font-size: 15px;
    padding: 0 20px;
  }

  .section-heading,
  .therapist-heading,
  .faq-aside h2,
  .video-header .therapist-intro h2,
  .testimonial-immersive .therapist-intro h2,
  .supporters-inner h2 {
    font-size: clamp(36px, 9vw, 52px);
    line-height: 1;
  }

  .focus-story,
  .process-story,
  .therapist-story,
  .video-story,
  .testimonial-immersive,
  .supporters-section,
  .faq-story {
    padding: 56px 20px;
  }

  .focus-story {
    padding: 56px 0;
  }

  .focus-intro {
    padding: 0 20px 28px;
  }

  .process-intro {
    margin-bottom: 24px;
  }

  .therapist-intro-row {
    padding: 0 0 20px;
  }

  .video-header {
    margin-bottom: 24px;
  }

  .testimonial-immersive .therapist-intro {
    padding: 0 20px;
  }

  .focus-panel {
    padding: 28px 20px;
    min-height: 240px;
    gap: 14px;
  }

  .panel-desc {
    font-size: 14px;
    line-height: 1.55;
  }

  .panel-num {
    font-size: 48px;
    top: 12px;
    right: 16px;
  }

  .panel-title {
    font-size: 28px;
  }

  .panel-link {
    font-size: 16px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .process-step {
    padding: 24px 20px;
  }

  .process-step h3 {
    font-size: 22px;
  }

  .process-step p {
    font-size: 14px;
  }

  .process-step span {
    font-size: 32px;
  }

  .faq-aside p {
    font-size: 16px;
  }

  .faq-s-q {
    font-size: 19px;
    min-height: 48px;
    padding: 4px 0;
  }

  .faq-s-a {
    font-size: 15px;
    line-height: 1.55;
  }

  .faq-s-item {
    padding: 18px 0;
  }

  .hero-cta {
    height: 46px;
    font-size: 12px;
    padding: 0 22px;
  }

  .therapist-scroll-track {
    gap: 14px;
    padding: 24px 4px;
  }

  .t-story-card {
    flex: 0 0 70vw;
    max-width: 260px;
    padding: 14px 14px 20px;
  }

  .t-story-card h4 {
    font-size: 19px;
  }

  .footer-grid {
    gap: 18px 16px;
    padding-bottom: 18px;
  }

  .footer-links a {
    padding: 2px 0;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
  }

  .sheet-handle-bar {
    padding: 14px 56px 14px 18px;
  }

  .floating-book-fab {
    min-height: 54px;
    padding: 0 28px;
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .reel-grid {
    gap: 22px;
  }

  .reel-card {
    max-width: 100%;
  }

  .card.quote {
    flex: 0 0 300px;
    padding: 22px 24px;
  }

  .quote-text {
    font-size: 17px;
  }

  .supporter-strip {
    gap: 0;
    margin-top: 28px;
  }

  .supporter-logo {
    min-height: 100px;
  }

  .supporter-logo img {
    max-height: 60px;
  }

  .section-label {
    font-size: 15px;
    letter-spacing: 0;
  }

  .terms-note {
    font-size: 12px;
    line-height: 1.55;
  }
}

/* Prevent iOS Safari auto-zoom + larger tap targets */
@media (max-width: 979px) {

  .dt-input,
  .phone-cc,
  input,
  textarea,
  select {
    font-size: 16px;
  }

  .dt-input,
  .phone-cc {
    height: 52px;
  }

  .btn-next-s,
  .btn-pay,
  .btn-back-s {
    height: 52px;
    font-size: 15px;
  }

  .book-actions {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Marquees are content carriers, not decorative motion. The universal rule
     above flattens them to a single 0.01ms iteration, which leaves the track
     parked at translate(-distance) — content scrolls off-screen and never
     comes back. Re-enable the looping animation here so reduce-motion users
     still see the testimonials and hero pills. The shimmer/rise effects
     elsewhere remain suppressed. */
  .track {
    animation: marquee var(--marquee-duration, 60s) linear infinite !important;
    animation-iteration-count: infinite !important;
    animation-duration: var(--marquee-duration, 60s) !important;
  }

  .hero-trust-row {
    animation: trust-marquee var(--trust-duration, 20s) linear infinite !important;
    animation-iteration-count: infinite !important;
    animation-duration: var(--trust-duration, 20s) !important;
  }

}

@media print {

  #nav,
  .footer-social,
  .booking-form-column,
  #sheet-backdrop,
  .mobile-book-cta,
  .reel-grid,
  .therapist-nav-btns,
  .testimonial-immersive {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

@media (pointer: coarse) {

  .nav-links a,
  .footer-links a,
  .reel-btn,
  .t-nav-btn,
  .sub-nav-btn,
  .cal-nav,
  .panel-link,
  .nav-book-link,
  .advisor-link,
  .skip-link {
    min-height: 44px;
  }

  .faq-s-q {
    min-height: 48px;
  }

  .focus-panel {
    -webkit-tap-highlight-color: rgba(91, 75, 219, 0.08);
  }
}