*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream:     #F3EFE6;
  --cream-2:   #EBE5D9;
  --cream-3:   #DDD6C8;
  --teal:      #2A5850;
  --teal-mid:  #376B62;
  --teal-deep: #192E2A;
  --teal-fog:  rgba(42,88,80,0.07);
  --terra:     #BE6E44;
  --terra-lt:  #CC8258;
  --sand:      #B08B62;
  --ink:       #14302B;
  --mid:       #3E5C56;
  --soft:      #7A948F;
  --faint:     #A8BEB9;
  --mint:      #77CFBD;
  --mint-lt:   #8DD8C8;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Raleway', system-ui, sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  /* ── Neumorphic elevation ─────────────────────────────────
     Cream-on-cream surfaces defined by dual shadows. Use on
     modals, form wells, and primary CTA pills. */
  --neu-card:     5px 5px 14px rgba(20,48,43,0.06), -5px -5px 14px rgba(255,255,255,0.55);
  --neu-card-hi:  6px 8px 18px rgba(20,48,43,0.10), -5px -5px 14px rgba(255,255,255,0.70);
  --neu-inset:    inset 3px 3px 6px rgba(20,48,43,0.07), inset -3px -3px 6px rgba(255,255,255,0.70);
  --neu-inset-hi: inset 3px 3px 8px rgba(20,48,43,0.10), inset -3px -3px 8px rgba(255,255,255,0.85);
  --neu-cta:      0 3px 12px rgba(119,207,189,0.38), 0 1px 0 rgba(255,255,255,0.45) inset;
  --neu-cta-hi:   0 5px 18px rgba(119,207,189,0.48), 0 1px 0 rgba(255,255,255,0.45) inset;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Grain */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 100; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
}


/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: 68px;
  background: rgba(243,239,230,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42,88,80,0.09);
  box-shadow: 0 1px 24px rgba(20,48,43,0.07);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
  pointer-events: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}
#nav.visible { transform: translateY(0); pointer-events: all; }

/* Left: logo + brand name — fades in from left */
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  cursor: pointer;
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.5s var(--ease) 0.15s, transform 0.5s var(--ease) 0.15s;
}
#nav.visible .nav-brand { opacity: 1; transform: translateX(0); }

.nav-logo-svg { width: 42px; height: 42px; flex-shrink: 0; }
.nav-name { display: block; font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--teal); letter-spacing: 0.01em; }
.nav-sub  { display: block; font-size: 9px; font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soft); margin-top: 2px; }

/* Right: links fade in from right */
.nav-links {
  display: flex; align-items: center; gap: 28px;
  opacity: 0; transform: translateX(10px);
  transition: opacity 0.5s var(--ease) 0.15s, transform 0.5s var(--ease) 0.15s;
}
#nav.visible .nav-links { opacity: 1; transform: translateX(0); }

.nav-link { font-size: 11px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); cursor: pointer; text-decoration: none; position: relative; padding-bottom: 2px; transition: color 0.2s; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }

/* Reach Out — more prominent, mint coloured */
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 10px;
  background: #77cfbd; color: var(--teal-deep);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  border: none; cursor: pointer;
  box-shadow: 0 3px 12px rgba(119,207,189,0.3);
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}
.nav-cta svg { width: 12px; height: 12px; }
.nav-cta:hover { background: var(--teal); box-shadow: 0 4px 14px rgba(42,88,80,0.22); }

/* ══════════════════════════
   HERO
══════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 40px 100px; /* bottom pad reserves space for absolute scroll indicator */
  background: var(--cream);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  isolation: isolate;
}

/* Background rings — concentric teal/terra, centred lower */
.hero::before {
  content: '';
  position: absolute;
  bottom: -36vh; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 1px;
  border-radius: 50%;
  box-shadow:
    0 0 0 26vh  rgba(42,88,80,0.13),
    0 0 0 40vh  rgba(42,88,80,0.09),
    0 0 0 56vh  rgba(42,88,80,0.07),
    0 0 0 72vh  rgba(190,110,68,0.09),
    0 0 0 90vh  rgba(190,110,68,0.065),
    0 0 0 110vh rgba(190,110,68,0.04),
    0 0 0 132vh rgba(42,88,80,0.025);
  pointer-events: none; z-index: 0;
}

/* Warm glow — centred behind logo */
.hero::after {
  content: '';
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190,110,68,0.07) 0%, rgba(42,88,80,0.04) 45%, transparent 72%);
  pointer-events: none; z-index: 0;
}

/* Flex content sits above pseudo-elements */
.hero > * { position: relative; z-index: 1; }

/* Entrance animations */
@keyframes hUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Staggered entrance — eyebrow → first name → surname → rule → content */
.hero-eyebrow    { animation: hUp 0.9s var(--ease) 0.06s both; }
.hero-name em    { animation: hUp 0.9s var(--ease) 0.18s both; }
.hero-name span  { animation: hUp 0.9s var(--ease) 0.28s both; }
.hero-rule       { animation: hUp 0.9s var(--ease) 0.38s both; }
.hero-tagline    { animation: hUp 0.9s var(--ease) 0.48s both; }
.hero-ctas       { animation: hUp 0.9s var(--ease) 0.56s both; }
.hero-credentials { animation: hUp 0.9s var(--ease) 0.64s both; }

/* Brand watermark — large logo behind the name at atmospheric opacity */
.hero-watermark {
  position: absolute;
  width: min(460px, 70vw);
  height: auto;
  opacity: 0.055;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 0;
  user-select: none;
}

/* Eyebrow label — terra accent brings warmth to the cream hero */
.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
}

/* Name: stacked two-line editorial treatment */
.hero-name {
  font-family: var(--serif);
  display: flex; flex-direction: column; align-items: center;
  gap: 0; margin-bottom: 0;
}
/* "Cheree" — first name, italic, teal, dominant */
.hero-name em {
  display: block;
  font-style: italic; font-weight: 300;
  font-size: clamp(72px, 11vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--teal);
}
/* "McGarry" — surname, upright, spaced, anchoring */
.hero-name span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 300; font-style: normal;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 6px;
}

.hero-rule {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 28px;
  position: relative;
}
/* Organic horizontal SVG — sits around the rule, wider than the line */
.hero-rule::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 32' fill='none'%3E%3C!-- Left sweep --%3E%3Cpath d='M 0 16 C 30 14 60 18 90 16 C 110 14.5 125 16 140 16' stroke='%232A5850' stroke-width='0.7' stroke-opacity='0.12'/%3E%3Cpath d='M 40 16 C 36 10 30 6 20 4' stroke='%232A5850' stroke-width='0.45' stroke-opacity='0.08'/%3E%3Cpath d='M 75 16 C 72 22 68 26 60 28' stroke='%232A5850' stroke-width='0.4' stroke-opacity='0.07'/%3E%3Cpath d='M 20 4 C 16 2 12 1 6 0' stroke='%232A5850' stroke-width='0.32' stroke-opacity='0.055'/%3E%3C!-- Right sweep --%3E%3Cpath d='M 420 16 C 390 18 360 14 330 16 C 310 17.5 295 16 280 16' stroke='%232A5850' stroke-width='0.7' stroke-opacity='0.12'/%3E%3Cpath d='M 380 16 C 384 10 390 6 400 4' stroke='%232A5850' stroke-width='0.45' stroke-opacity='0.08'/%3E%3Cpath d='M 345 16 C 348 22 352 26 360 28' stroke='%232A5850' stroke-width='0.4' stroke-opacity='0.07'/%3E%3Cpath d='M 400 4 C 404 2 408 1 414 0' stroke='%232A5850' stroke-width='0.32' stroke-opacity='0.055'/%3E%3C!-- Mint accent traces --%3E%3Cpath d='M 108 16 C 112 12 118 9 124 10' stroke='%2377CFBD' stroke-width='0.38' stroke-opacity='0.1'/%3E%3Cpath d='M 312 16 C 308 12 302 9 296 10' stroke='%2377CFBD' stroke-width='0.38' stroke-opacity='0.1'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: ruleBreath 8s ease-in-out infinite;
}
@keyframes ruleBreath {
  0%, 100% { opacity: 1;    transform: translate(-50%, -50%) scaleX(1); }
  50%       { opacity: 0.6; transform: translate(-50%, -50%) scaleX(1.04); }
}
.hero-rule-line { width: 52px; height: 1px; background: var(--cream-3); }
.hero-rule-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--terra); opacity: 0.7; flex-shrink: 0; }

/* Single condensed credentials line */
.hero-credentials {
  font-size: 11.5px; font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--soft); opacity: 0.75;
  margin-top: 22px;
}

/* ── HERO CTAs, TAGLINE & LOCATION ── */
.hero-tagline {
  font-family: var(--serif);
  font-size: 19px; font-weight: 300; font-style: italic;
  color: var(--mid);
  letter-spacing: 0.01em;
  margin-top: 24px;
  max-width: 500px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

/* Scroll indicator floats at the bottom, out of flex flow so content centres cleanly */
@keyframes scrollIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-scroll {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: scrollIn 0.9s var(--ease) 0.78s both;
}
.hero-scroll-label {
  font-family: var(--sans); font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--soft); opacity: 0.75;
}
.hero-scroll-arrow {
  color: var(--soft); opacity: 0.55;
  animation: scrollBob 2.6s ease-in-out 1.4s infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 0.65; }
  50%       { transform: translateY(8px); opacity: 0.35; }
}


/* ── HERO CARDS ── */
.hero-cards {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: stretch;
  z-index: 2;
  /* Fade in from transparent — no hard dark bar */
  background: linear-gradient(to bottom, transparent 0%, rgba(15,35,30,0.18) 35%, rgba(15,35,30,0.32) 100%);
  padding-top: 48px;
}
.hero-card {
  flex: 1; min-width: 0;
  padding: 20px 40px 34px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  display: flex; flex-direction: column;
  text-align: left;
}
.hero-card:hover {
  background: rgba(255,255,255,0.05);
}
.hc-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 24px 0;
}
.hc-icon {
  width: 36px; height: 36px;
  margin-bottom: 16px;
  opacity: 0.9;
}
.hc-icon svg { width: 100%; height: 100%; }
.hc-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 10px;
}
.hc-title {
  font-family: var(--serif);
  font-size: 26px; font-weight: 400;
  color: #fff; line-height: 1.2;
  margin-bottom: 14px;
}
.hc-body {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.72;
  margin-bottom: 22px;
  flex: 1;
}
.hc-ctas {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.hc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
  cursor: pointer;
}
.hc-cta svg { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.22s var(--ease); }
.hero-card:hover .hc-cta { color: #fff; gap: 9px; }
.hero-card:hover .hc-cta svg { transform: translateX(2px); }
.hc-btn {
  display: inline-flex; align-items: center;
  padding: 9px 20px;
  background: #2A5850;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s;
}
.hc-btn:hover { background: #192E2A; border-color: rgba(255,255,255,0.3); }
.hc-btn--mint {
  background: #77CFBD;
  border-color: #77CFBD;
  color: #192E2A;
  font-weight: 500;
}
.hc-btn--mint:hover { background: #5fbfac; border-color: #5fbfac; }




/* ── WAVE DIVIDER ── */
.wave-divider {
  background: var(--cream);  /* matches hero background */
  line-height: 0;
  margin-bottom: -2px;
}
.wave-divider svg {
  display: block;
  width: 100%; height: 80px;
}

/* ── CURVED PROPERTY PHOTO in About ── */
.about-photo-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 72px;
  box-shadow: 0 20px 60px rgba(20,48,43,0.12);
}
.about-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.about-photo-caption {
  position: absolute; bottom: 18px; right: 20px;
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(25,46,42,0.5);
  padding: 6px 13px; border-radius: 2px;
  backdrop-filter: blur(8px);
}


/* ── SHARED ── */
.section { padding: 104px 0; position: relative; overflow: hidden; }
.section-alt { background: white; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 72px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.eyebrow-bar { width: 26px; height: 1px; background: var(--terra); flex-shrink: 0; }
.eyebrow-text { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); }
.sec-heading { font-family: var(--serif); font-size: clamp(32px,4vw,50px); font-weight: 300; line-height: 1.1; color: var(--teal-deep); letter-spacing: -0.015em; }
.sec-heading em { font-style: italic; color: var(--teal-mid); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  cursor: pointer; border: none; text-decoration: none;
  transition: all 0.26s var(--ease); white-space: nowrap;
  border-radius: 12px;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
/* Secondary — cream neumorphic, terra wakes on hover.
   .btn-solid kept for backwards-compat — used to be teal-solid,
   now it's the secondary cream surface. */
.btn-solid {
  padding: 14px 26px;
  background: var(--cream); color: var(--teal-deep);
  box-shadow: 0 2px 10px rgba(20,48,43,0.09), 0 1px 0 rgba(255,255,255,0.9) inset;
}
.btn-solid:hover {
  color: var(--terra);
  box-shadow: 0 4px 16px rgba(190,110,68,0.14), 0 1px 0 rgba(255,255,255,0.9) inset;
}
.btn-outline {
  padding: 13px 26px;
  background: rgba(255,255,255,0.55); color: var(--teal);
  border: 1px solid rgba(42,88,80,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(20,48,43,0.06);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.78); border-color: rgba(42,88,80,0.32);
  box-shadow: 0 4px 14px rgba(20,48,43,0.1);
}
/* Primary — mint pill. Reach Out, Book a Session, Send Message, etc. */
.btn-mint {
  padding: 14px 26px;
  background: var(--mint); color: var(--teal-deep);
  box-shadow: 0 3px 12px rgba(119,207,189,0.38), 0 1px 0 rgba(255,255,255,0.45) inset;
}
.btn-mint:hover {
  background: var(--mint-lt);
  box-shadow: 0 5px 18px rgba(119,207,189,0.48), 0 1px 0 rgba(255,255,255,0.45) inset;
}
.btn-terra {
  padding: 14px 28px;
  background: var(--terra); color: white;
  box-shadow: 0 4px 16px rgba(190,110,68,0.26);
}
.btn-terra:hover {
  background: var(--terra-lt); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(190,110,68,0.32);
}
.btn-ghost-w {
  padding: 13px 26px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost-w:hover {
  background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5);
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 88px; align-items: start; }
.about-quote-block { margin: 32px 0 38px; padding-left: 24px; border-left: 2px solid var(--terra); }
.about-quote { font-family: var(--serif); font-size: 20px; font-style: italic; font-weight: 300; color: var(--mid); line-height: 1.6; margin-bottom: 10px; }
.about-quote-attr { font-size: 10px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.about-body { font-size: 15px; color: var(--mid); line-height: 1.85; font-weight: 300; }
.about-note { font-size: 12px; font-style: italic; color: var(--faint); margin-top: 14px; }
.about-stats { display: flex; margin-top: 44px; border-top: 1px solid var(--cream-3); padding-top: 36px; }
.astat { flex: 1; padding-right: 28px; border-right: 1px solid var(--cream-3); margin-right: 28px; }
.astat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.astat-n { font-family: var(--serif); font-size: 44px; font-weight: 300; color: var(--teal-deep); line-height: 1; margin-bottom: 5px; }
.astat-l { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--soft); }
.val-cards { padding-top: 28px; }
.val-card { padding: 28px 30px; border-radius: 2px; margin-bottom: 13px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.val-card:nth-child(odd)  { background: var(--cream);   margin-right: 18px; }
.val-card:nth-child(even) { background: var(--cream-2); margin-left: 18px; }
.val-card:hover { transform: translateX(5px); box-shadow: -3px 0 0 var(--terra), 0 8px 28px rgba(20,48,43,0.06); }
.val-num { font-family: var(--serif); font-size: 12px; font-style: italic; color: var(--terra); margin-bottom: 7px; }
.val-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--teal-deep); margin-bottom: 7px; line-height: 1.2; }
.val-body { font-size: 13.5px; color: var(--mid); line-height: 1.7; font-weight: 300; }

/* ── SESSIONS PREVIEW ── */
.sh-section { background: var(--teal-deep); }
.sh-inner { display: grid; grid-template-columns: 260px 1fr; gap: 68px; align-items: start; }
.sh-ey .eyebrow-text { color: rgba(255,255,255,0.36); }
.sh-heading { font-family: var(--serif); font-size: clamp(28px,3vw,42px); font-weight: 300; line-height: 1.12; color: white; margin-bottom: 18px; }
.sh-heading em { font-style: italic; color: rgba(255,255,255,0.48); }
.sh-sub { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.8; margin-bottom: 32px; }
.sh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stile { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 2px; padding: 24px 22px 20px; cursor: pointer; transition: all 0.3s var(--ease); position: relative; overflow: hidden; }
.stile::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--s-col, var(--terra)); transform: scaleY(0); transform-origin: top; transition: transform 0.34s var(--ease); }
.stile:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.13); transform: translateY(-3px); }
.stile:hover::before { transform: scaleY(1); }
.stile-lbl { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 7px; }
.stile-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: white; margin-bottom: 8px; line-height: 1.2; }
.stile-desc { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.65; margin-bottom: 15px; }
.stile-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 11px; font-size: 10.5px; font-weight: 300; color: rgba(255,255,255,0.26); }
.stile-arr { color: rgba(255,255,255,0.3); transition: color 0.2s, transform 0.2s; }
.stile-arr svg { width: 13px; height: 13px; display: block; }
.stile:hover .stile-arr { color: white; transform: translateX(3px); }

/* ── SESSIONS PAGE ── */
#sessions, #info { padding-top: 64px; }
.sp-head {
  background: var(--teal-deep);
  padding: 84px 72px 80px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
/* Botanical illustration — right side of hero */
.sp-head-art {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(42%, 480px); pointer-events: none;
  display: flex; align-items: center; justify-content: flex-end;
}
.sp-head-art-svg { width: 100%; height: 100%; max-height: 520px; }
/* Hero text */
.sp-head-content { max-width: 600px; margin-bottom: 0; position: relative; z-index: 1; }
.sp-ey .eyebrow-text { color: rgba(255,255,255,0.36); }
.sp-title { font-family: var(--serif); font-size: clamp(36px,5vw,60px); font-weight: 300; line-height: 1.0; color: white; margin-bottom: 18px; }
.sp-title em { display: block; font-style: italic; color: rgba(255,255,255,0.5); }
.sp-intro { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.8; max-width: 500px; margin-bottom: 32px; }
/* Scroll-to-bottom CTA in hero */
.sp-start-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 10px 20px 10px 22px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sp-start-link:hover {
  background: rgba(255,255,255,0.17);
  border-color: rgba(255,255,255,0.32);
  color: white;
}
.sp-start-arrow { width: 16px; height: 16px; flex-shrink: 0; }
/* ── LAUNCHER WIDGET — default (light bg, used standalone) ── */
.sw-launcher {
  background: white;
  border-bottom: 1px solid var(--cream-3);
  padding: 48px 72px 44px;
}
.sw-launcher-inner { max-width: 700px; margin: 0 auto; }

/* ── LAUNCHER WIDGET — frosted variant (inside dark hero) ── */
.sw-launcher--frosted {
  background: transparent;
  border-bottom: none;
  padding: 0;
  position: relative; z-index: 1;
}
.sw-launcher--frosted .sw-launcher-inner {
  max-width: 700px; margin: 0;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 26px 34px 30px;
}
.sw-launcher--frosted .sw-ln-title { color: white; }
.sw-launcher--frosted .sw-ln-sub { color: rgba(255,255,255,0.5); }
.sw-launcher--frosted .sw-ln-q { color: rgba(119,207,189,0.8); }
.sw-launcher--frosted .sw-ln-chip {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.04);
}
.sw-launcher--frosted .sw-ln-chip:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
  background: rgba(255,255,255,0.1);
}
.sw-launcher--frosted .sw-ln-chip.sel {
  background: white;
  border-color: white;
  color: var(--teal-deep);
}
.sw-launcher--frosted .sw-ln-chip--off { opacity: 0.2; }
.sw-launcher--frosted .sw-ln-toggle {
  background: rgba(255,255,255,0.13);
  color: white;
}
.sw-launcher--frosted .sw-ln-callout:hover .sw-ln-toggle { background: rgba(255,255,255,0.2); }
.sw-launcher--frosted .sw-ln-cta { border-top-color: rgba(255,255,255,0.1); }
.sw-launcher--frosted .sw-ln-browse { color: rgba(255,255,255,0.38); }
.sw-launcher--frosted .sw-ln-browse:hover { color: rgba(255,255,255,0.72); }
/* Submit button on dark bg */
.sw-launcher--frosted .sw-ln-btn {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.7);
  padding: 11px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  font-family: var(--sans);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all 0.2s;
}
.sw-launcher--frosted .sw-ln-btn:not([disabled]):hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  color: white;
}
.sw-launcher--frosted .sw-ln-btn[disabled] {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.28);
  cursor: not-allowed;
}

/* ── Collapsible callout strip ── */
.sw-ln-callout {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  cursor: pointer; user-select: none;
  padding-bottom: 4px;
}
.sw-ln-callout-text { flex: 1; }
.sw-ln-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--teal-deep); margin-bottom: 5px; line-height: 1.2;
}
.sw-ln-sub { font-size: 13px; font-weight: 400; color: var(--mid); line-height: 1.65; }

/* Toggle button */
.sw-ln-toggle {
  display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
  font-size: 12px; font-weight: 500; color: var(--teal-deep);
  background: rgba(42,88,80,0.07); border-radius: 100px;
  padding: 8px 16px 8px 18px;
  transition: background 0.18s;
  pointer-events: none; /* callout div handles click */
}
.sw-ln-callout:hover .sw-ln-toggle { background: rgba(42,88,80,0.12); }
.sw-ln-toggle-arrow {
  width: 12px; height: 12px;
  transition: transform 0.28s ease;
}
.sw-ln-callout[aria-expanded="true"] .sw-ln-toggle-arrow {
  transform: rotate(180deg);
}
.sw-ln-callout[aria-expanded="true"] .sw-ln-toggle-label {
  display: none;
}

/* ── Collapsible body ── */
.sw-ln-body {
  overflow: hidden;
  max-height: 800px;
  transition: max-height 0.38s ease, opacity 0.28s ease, margin-top 0.28s ease;
  opacity: 1;
  margin-top: 32px;
}
.sw-ln-body--closed {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
}
.sw-ln-body-inner { padding-top: 4px; }

.sw-ln-row { margin-bottom: 26px; }
.sw-ln-row--hidden { display: none; }
.sw-ln-q {
  display: block; margin-bottom: 10px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--teal);
}
.sw-ln-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sw-ln-chip {
  padding: 9px 20px; border-radius: 100px;
  border: 1.5px solid rgba(42,88,80,0.18);
  background: white; color: var(--mid);
  font-size: 13px; font-weight: 400; font-family: var(--sans);
  cursor: pointer; transition: all 0.18s ease; line-height: 1.2;
}
.sw-ln-chip:hover { border-color: var(--teal); color: var(--teal-deep); background: rgba(42,88,80,0.03); }
.sw-ln-chip.sel { background: var(--teal-deep); border-color: var(--teal-deep); color: white; font-weight: 500; }
.sw-ln-chip--off { opacity: 0.28; cursor: not-allowed; pointer-events: none; }

.sw-ln-cta {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--cream-3);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.sw-ln-btn { gap: 8px; }
.sw-ln-browse {
  font-size: 12px; color: var(--soft); text-decoration: none;
  transition: color 0.18s;
}
.sw-ln-browse:hover { color: var(--teal-deep); }

/* ── OUTCOME PANEL ── */
.sw-outcome-wrap {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-3);
  padding: 36px 72px 48px;
}
.sw-outcome-hidden { display: none; }
.sw-outcome-inner { max-width: 860px; margin: 0 auto; }
.sw-outcome-nav { margin-bottom: 22px; }
.sw-back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--mid);
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--sans); transition: color 0.18s;
}
.sw-back-btn:hover { color: var(--teal-deep); }

/* ── SERVICES GUIDE ── */
.sw-services-guide { background: white; }
.sw-sg-hd {
  padding: 72px 72px 52px;
  border-bottom: 1px solid var(--cream-3);
}
.sw-sg-ey { margin-bottom: 16px; }
.sw-sg-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px); font-weight: 400;
  color: var(--teal-deep); margin-bottom: 12px; line-height: 1.1;
}
.sw-sg-intro {
  font-size: 15px; font-weight: 400; color: var(--mid);
  line-height: 1.75; max-width: 560px;
}

.sw-sg-svc { padding: 64px 72px; border-bottom: 1px solid var(--cream-3); }
.sw-sg-svc--alt { background: var(--cream); }
.sw-sg-svc-inner {
  max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 280px; gap: 52px; align-items: start;
}
.sw-sg-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 8px;
}
.sw-sg-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 400;
  color: var(--teal-deep); line-height: 1.15; margin-bottom: 14px;
}
.sw-sg-lede {
  font-size: 16px; font-weight: 400; color: var(--teal);
  font-style: italic; line-height: 1.65; margin-bottom: 22px;
}
.sw-sg-note {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; font-weight: 400; color: var(--terra);
  line-height: 1.55; margin: 18px 0;
}


/* ── COVERAGE GUIDE ── */
.sw-coverage-guide {
  background: var(--cream);
  padding: 72px 72px 80px;
  border-top: 1px solid var(--cream-3);
}
.sw-cg-hd { margin-bottom: 48px; max-width: 1040px; margin-left: auto; margin-right: auto; }
.sw-cg-grid {
  max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.sw-cg-item {
  background: white; border: 1px solid var(--cream-3);
  border-radius: 10px; padding: 26px 26px 22px;
  display: flex; flex-direction: column;
}
.sw-cg-item-hd {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 10px; margin-bottom: 12px; flex-wrap: wrap;
}
.sw-cg-name {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--teal-deep); line-height: 1.25;
}
.sw-cg-price {
  font-size: 11px; font-weight: 600; color: var(--terra);
  white-space: nowrap; padding-top: 3px; flex-shrink: 0;
}
.sw-cg-body {
  font-size: 13px; font-weight: 400; color: var(--mid);
  line-height: 1.78; flex: 1; margin-bottom: 10px;
}
.sw-cg-note {
  font-size: 11px; font-weight: 500; color: var(--soft); letter-spacing: 0.03em;
}
.sw-cg-item--notsure {
  background: var(--teal-deep); border-color: var(--teal-deep);
}
.sw-cg-item--notsure .sw-cg-name { color: white; font-size: 20px; margin-bottom: 12px; }
.sw-cg-item--notsure .sw-cg-body { color: rgba(255,255,255,0.72); }
.sw-cg-cta { align-self: flex-start; margin-top: 8px; }

/* ── RESPONSIVE — launcher/guide ── */
@media (max-width: 1000px) {
  .sw-sg-svc-inner { grid-template-columns: 1fr; gap: 32px; }
  .sw-cg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .sw-outcome-wrap { padding-left: 28px; padding-right: 28px; }
  .sw-sg-svc, .sw-coverage-guide { padding-left: 28px; padding-right: 28px; }
  .sw-sg-svc { padding-top: 48px; padding-bottom: 48px; }
  .sw-coverage-guide { padding-top: 52px; padding-bottom: 56px; }
  .sw-bottom-cta { padding-left: 28px; padding-right: 28px; }
  .sw-btm-card { padding: 36px 28px 40px; }
  .sp-head { padding-left: 28px; padding-right: 28px; }
  .sp-head-art { display: none; }
}
@media (max-width: 560px) {
  .sw-cg-grid { grid-template-columns: 1fr; }
  .sw-ln-chip { font-size: 12px; padding: 8px 16px; }
  .sw-btm-choices { flex-direction: column; align-items: stretch; }
  .sw-btm-choice { justify-content: center; }
  .sw-ln-callout { flex-direction: column; align-items: flex-start; gap: 14px; }
  .sw-ln-toggle { align-self: flex-start; }
  .sw-btm-card { border-radius: 16px; padding: 32px 20px 36px; }
  .sw-bottom-cta-q { font-size: 22px; }
}


.sp-body { padding: 64px 72px 96px; }
.sp-pull { text-align: center; font-family: var(--serif); font-size: clamp(17px,1.8vw,20px); font-style: italic; font-weight: 300; color: var(--mid); margin-bottom: 52px; line-height: 1.6; }
.sp-div { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.sp-div-txt { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); white-space: nowrap; }
.sp-div-rule { flex: 1; height: 1px; background: var(--cream-3); }
.jgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.jcard { background: white; border-radius: 2px; border: 1px solid rgba(42,88,80,0.08); cursor: pointer; transition: all 0.32s var(--ease); overflow: hidden; display: flex; flex-direction: column; position: relative; }
.jcard::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--jc, var(--teal)); transform: scaleY(0); transform-origin: top; transition: transform 0.38s var(--ease); }
.jcard:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(20,48,43,0.09); }
.jcard:hover::before, .jcard.sel::before { transform: scaleY(1); }
.jcard.sel { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(20,48,43,0.11); outline: 1.5px solid var(--jc); outline-offset: -1px; }
.jcard-in { padding: 32px 32px 24px 36px; flex: 1; }
.jcard-over { font-size: 9.5px; font-weight: 500; letter-spacing: 0.17em; text-transform: uppercase; color: var(--soft); margin-bottom: 9px; }
.jcard-title { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--teal-deep); line-height: 1.1; margin-bottom: 11px; }
.jcard-desc { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.75; margin-bottom: 20px; }
.jcard-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.jtag { font-size: 11px; font-weight: 400; padding: 5px 12px; background: var(--cream); color: var(--mid); border: 1px solid var(--cream-3); border-radius: 1px; }
.jcard-ft { padding: 13px 36px; border-top: 1px solid rgba(42,88,80,0.06); display: flex; align-items: center; justify-content: space-between; }
.jcard-fmt { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 300; color: var(--soft); }
.jcard-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--terra); }
.jcard-hint { font-size: 11px; color: var(--faint); display: flex; align-items: center; gap: 5px; transition: color 0.2s; }
.jcard:hover .jcard-hint, .jcard.sel .jcard-hint { color: var(--mid); }
.jcard-hint svg { width: 12px; height: 12px; }
.jdetail { display: none; border-radius: 2px; border: 1px solid rgba(42,88,80,0.1); overflow: hidden; animation: dIn 0.38s var(--ease); }
.jdetail.open { display: block; }
@keyframes dIn { from { opacity:0; transform:translateY(7px); } to { opacity:1; transform:translateY(0); } }
.det-top { background: var(--teal-deep); padding: 36px 48px; display: flex; justify-content: space-between; align-items: flex-start; }
.det-over { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 7px; }
.det-title { font-family: var(--serif); font-size: 30px; font-weight: 300; color: white; }
.det-close { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.42); font-size: 16px; transition: background 0.2s; flex-shrink: 0; margin-top: 2px; }
.det-close:hover { background: rgba(255,255,255,0.16); }
.det-body { display: grid; grid-template-columns: 1fr 300px; background: white; }
.det-txt { padding: 44px 48px; font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.85; }
.det-txt p+p { margin-top: 14px; }
.det-acts { display: flex; gap: 11px; margin-top: 32px; flex-wrap: wrap; }
.det-info { background: var(--cream); padding: 44px 36px; border-left: 1px solid rgba(42,88,80,0.06); }
.det-info h4 { font-size: 9.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--soft); margin-bottom: 20px; }
.drow { padding: 13px 0; border-bottom: 1px solid rgba(42,88,80,0.07); }
.drow:last-child { border-bottom: none; }
.drow-l { font-size: 10px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.drow-v { font-size: 14px; font-weight: 300; color: var(--ink); }

/* ── FOOTER ── */
footer { background: var(--teal-deep); position: relative; overflow: hidden; }

/* ── SESSIONS PAGE BOTTOM CTA ── */
.sw-bottom-cta {
  background: var(--cream);
  padding: 80px 72px 88px;
  text-align: center;
  position: relative; overflow: hidden;
}
/* Botanical art layer */
.sw-btm-art {
  position: absolute; inset: 0; pointer-events: none;
}
.sw-btm-art-svg { width: 100%; height: 100%; }
/* Elevated content card */
.sw-btm-card {
  position: relative; z-index: 1;
  display: inline-flex; flex-direction: column; align-items: center;
  background: white;
  border: 1px solid var(--cream-3);
  border-radius: 24px;
  padding: 48px 56px 52px;
  box-shadow: 0 6px 48px rgba(42,88,80,0.09), 0 1px 6px rgba(42,88,80,0.05);
  max-width: 640px; width: 100%;
}
.sw-btm-ey { margin-bottom: 16px; }
.sw-bottom-cta-q {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--teal-deep); margin-bottom: 10px; line-height: 1.25;
}
.sw-btm-desc {
  font-size: 13px; font-weight: 300; color: var(--soft);
  line-height: 1.75; max-width: 440px; margin: 0 auto 28px;
}
/* ── Initial choice buttons ── */
.sw-btm-choices {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  transition: opacity 0.22s ease, max-height 0.32s ease;
  overflow: hidden; max-height: 200px;
}
.sw-btm-choices--gone {
  max-height: 0; opacity: 0; pointer-events: none; margin: 0;
}
.sw-btm-choice {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  padding: 13px 26px; border-radius: 100px;
  border: 1.5px solid rgba(42,88,80,0.28);
  background: transparent; color: var(--teal-deep);
  cursor: pointer; transition: all 0.2s ease; line-height: 1.2;
}
.sw-btm-choice svg { width: 14px; height: 14px; flex-shrink: 0; }
.sw-btm-choice--opt:hover {
  background: rgba(190,110,68,0.07);
  border-color: rgba(190,110,68,0.45);
  color: var(--terra);
}
.sw-btm-choice--opt {
  flex: 1 1 auto; min-width: 180px; max-width: 260px; justify-content: center;
}
.sw-btm-choice--opt.sel {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: white;
  font-weight: 600;
}
.sw-btm-choice--opt.sel:hover { background: var(--teal-deep); border-color: var(--teal-deep); color: white; }
.sw-btm-choice--reach:hover {
  background: rgba(119,207,189,0.14);
  border-color: rgba(119,207,189,0.55);
  color: var(--teal-deep);
}
/* ── Expand area (picker / form / outcome) ── */
.sw-btm-expand {
  overflow: hidden;
  max-height: 2000px;
  transition: max-height 0.42s ease, opacity 0.3s ease, margin-top 0.3s ease;
  opacity: 1; margin-top: 28px;
}
.sw-btm-expand--closed {
  max-height: 0; opacity: 0; margin-top: 0; pointer-events: none;
}
/* ── Bottom picker (injected) ── */
.sw-btm-picker { padding-top: 4px; }
.sw-btm-back { margin-bottom: 22px; }
.sw-btm-prow { margin-bottom: 22px; }
.sw-btm-prow--hidden { display: none; }
.sw-btm-q {
  display: block; margin-bottom: 10px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--teal);
}
.sw-btm-cta-row { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--cream-3); }
.sw-btm-go { gap: 8px; }
/* ── Outcome wrapper inside card ── */
.sw-btm-outcome-wrap { padding-top: 4px; }
.sw-btm-outcome-wrap .sw-btm-back { margin-bottom: 20px; }
/* ── Outcome section — below the wizard card ── */
.sw-btm-outcome-section {
  max-width: 640px; width: 100%;
  margin: 20px auto 0;
  opacity: 1;
  animation: outcomeIn 0.38s cubic-bezier(0.16,1,0.3,1);
}
.sw-btm-outcome-section--hidden { display: none; }
@keyframes outcomeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.sw-btm-outcome-inner { text-align: left; }
.sw-btm-outcome-inner .sw-btm-back { margin-bottom: 16px; }
/* ── Go button: hint state (disabled) vs active state ── */
.sw-btm-go:disabled {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  color: var(--soft) !important;
  font-size: 11.5px !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em;
  cursor: default;
  padding: 4px 0 !important;
  gap: 0 !important;
  opacity: 1 !important;
}
.sw-btm-go:disabled svg { display: none; }
/* ── Wizard card hidden state ── */
.sw-btm-card--hidden { display: none; }
/* ── Dropdown + chip ── */
.sw-btm-field { margin-bottom: 20px; }
.sw-btm-select {
  display: block; width: 100%;
  font-family: var(--sans); font-size: 13.5px; font-weight: 400;
  color: var(--teal-deep);
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232A5850' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1.5px solid rgba(42,88,80,0.22); border-radius: 10px;
  padding: 12px 38px 12px 14px;
  appearance: none; -webkit-appearance: none;
  cursor: pointer; transition: border-color 0.2s;
}
.sw-btm-select:hover, .sw-btm-select:focus { border-color: var(--teal); outline: none; }
.sw-btm-chip-sel {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-deep); color: white;
  border-radius: 100px; padding: 9px 10px 9px 16px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
}
.sw-btm-chip-x {
  background: rgba(255,255,255,0.18); border: none; color: white;
  cursor: pointer; width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; line-height: 1; padding: 0; transition: background 0.15s;
}
.sw-btm-chip-x:hover { background: rgba(255,255,255,0.32); }
/* ── Inline request form (steps + form inside outcome section) ── */
.sw-ir {
  background: white; border: 1px solid rgba(42,88,80,0.10);
  border-radius: 16px; overflow: hidden; margin-top: 14px; text-align: left;
}
.sw-ir-steps-wrap {
  padding: 24px 32px 20px; border-bottom: 1px solid rgba(42,88,80,0.08);
}
.sw-ir-steps-head {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.sw-ir-steps {
  display: flex; flex-direction: column;
  border-left: 2px solid rgba(42,88,80,0.12);
  margin-left: 8px; padding-left: 22px;
}
.sw-ir-step { position: relative; padding-bottom: 18px; }
.sw-ir-step:last-child { padding-bottom: 0; }
.sw-ir-step::before {
  content: ''; position: absolute; left: -29px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: white; border: 2px solid var(--teal);
}
.sw-ir-step-num {
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 3px;
}
.sw-ir-step-body {
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  color: var(--teal-deep); line-height: 1.45;
}
.sw-ir-step-sub {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: var(--mid); line-height: 1.6; margin-top: 2px;
}
.sw-ir-form-wrap { padding: 22px 32px 0; }
.sw-ir-form-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--teal-deep); margin-bottom: 5px;
}
.sw-ir-form-sub {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--mid); line-height: 1.65; margin-bottom: 18px;
}
.sw-ir-submit-row {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px 32px 28px;
}
.sw-ir-policy {
  font-family: var(--sans); font-size: 11px; font-weight: 300; color: var(--soft);
}
.sw-ir-policy a { color: var(--soft); text-underline-offset: 2px; }
.sw-ir-ok {
  padding: 36px 32px; text-align: center; display: none;
}
.sw-ir-ok-ring {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(119,207,189,0.15); border: 1px solid rgba(119,207,189,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 22px;
}
.sw-ir-ok-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--teal-deep); margin-bottom: 8px;
}
.sw-ir-ok-body {
  font-family: var(--sans); font-size: 13.5px; font-weight: 300;
  color: var(--mid); line-height: 1.75; max-width: 360px; margin: 0 auto;
}
@media (max-width: 600px) {
  .sw-btm-choice--opt { min-width: 140px; }
  .sw-ir-steps-wrap { padding: 20px 20px 18px; }
  .sw-ir-form-wrap { padding: 18px 20px 0; }
  .sw-ir-submit-row { padding: 14px 20px 24px; }
}

/* ── FOOTER CTA ── */
.ft-cta {
  position: relative; overflow: hidden;
  padding: 96px 72px;
  background: var(--teal-deep);
}
/* Photo + gradient overlay */
.ft-cta-photo {
  position: absolute; inset: 0;
  background: url('assets/house.jpg') center center / cover no-repeat;
  opacity: 0.18;
}
.ft-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(25,46,42,0.92) 0%, rgba(25,46,42,0.7) 55%, rgba(25,46,42,0.5) 100%);
}
/* Concentric terra arcs — bottom-right */
.ft-cta-arcs {
  position: absolute; bottom: -30%; right: -8%;
  width: 640px; height: 640px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px  rgba(190,110,68,0.18),
    0 0 0 40px rgba(190,110,68,0.09),
    0 0 0 80px rgba(190,110,68,0.07),
    0 0 0 130px rgba(190,110,68,0.05),
    0 0 0 190px rgba(190,110,68,0.03);
  pointer-events: none;
}
/* Ghosted logo mark — top-left */
.ft-cta-mark {
  position: absolute; top: 32px; left: 52px;
  width: 72px; opacity: 0.07;
  filter: brightness(0) invert(1);
  transform: rotate(-15deg);
  pointer-events: none;
}
.ft-cta-mark img { width: 100%; }
/* Inner: two-column */
.ft-cta-inner {
  position: relative; z-index: 1;
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 80px; align-items: center;
}
.ft-ey { justify-content: flex-start; margin-bottom: 20px; }
.ft-ey .eyebrow-bar { background: var(--terra); }
.ft-ey .eyebrow-text { color: rgba(255,255,255,0.38); }
.ft-cta-title { font-family: var(--serif); font-size: clamp(32px,4.5vw,54px); font-weight: 300; color: white; line-height: 1.12; margin-bottom: 14px; text-align: left; }
.ft-cta-title em { font-style: italic; color: rgba(255,255,255,0.45); }
.ft-cta-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 0; text-align: left; }
/* Practice card — frosted glass right column */
.ft-cta-practice {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  padding: 28px 28px 24px;
}
.ft-cta-practice-eb {
  font-size: 9px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.32);
  margin-bottom: 20px;
}
.ft-cta-modalities { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; }
.ft-cta-modality {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ft-cta-modality:last-child { border-bottom: none; }
.ft-cta-modality-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(255,255,255,0.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
}
.ft-cta-modality-icon svg { width: 14px; height: 14px; }
.ft-cta-modality-meta { display: flex; flex-direction: column; gap: 2px; }
.ft-cta-modality-label { font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.ft-cta-modality-value { font-family: var(--serif); font-size: 15px; font-weight: 400; color: white; }
.ft-cta-referrer-note {
  font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.28);
  line-height: 1.6; margin-bottom: 20px;
}
.ft-cta-referrer-note em { font-style: normal; color: rgba(255,255,255,0.45); }
.ft-cta-referrer-note a { color: rgba(119,207,189,0.7); text-decoration: none; }
.ft-reach-btn { width: 100%; justify-content: center; font-size: 12px; padding: 14px 24px; }

/* Footer columns */
.ft-cols { padding: 64px 0 52px; background: var(--teal-deep); border-top: 1px solid rgba(255,255,255,0.06); }
.ft-cols-inner { max-width: 1120px; margin: 0 auto; padding: 0 72px; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
.ftc-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: white; margin-bottom: 3px; }
.ftc-sub { font-size: 10px; font-weight: 300; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.24); margin-bottom: 14px; }
.ftc-body { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.75; }
.ftc h5 { font-size: 9.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 18px; }
.ftc ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ftc ul a { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.48); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.ftc ul a:hover { color: white; }
.ft-biz-note { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.32); line-height: 1.65; margin-bottom: 12px; font-style: italic; }
.ft-biz-note em { font-style: normal; color: rgba(255,255,255,0.5); }
.ftc-email { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); word-break: break-all; }

/* Copyright bar — full-width band, inner wrapper centres content */
.ft-base {
  padding: 20px 0;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ft-base-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.ft-base p { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.22); text-align: center; }
.ft-base-lnks { display: flex; gap: 20px; }
.ft-base-lnks a { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.22); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.ft-base-lnks a:hover { color: rgba(255,255,255,0.55); }

/* AASW logo — small, white, under brand copy in footer */
.ft-aasw-logo {
  height: 32px; width: auto;
  display: block;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.ft-aasw-logo:hover { opacity: 0.65; }
.ft-aasw-logo svg { height: 100%; width: auto; display: block; }
@media (max-width: 900px) {
  #nav { padding: 0 24px; }
  .nav-sub { display: none; }

  /* Hero */
  .hero { padding: 56px 20px 72px; }
  .hero-name em  { letter-spacing: -0.01em; }
  .hero-name span { letter-spacing: 0.10em; }
  .hero-scroll { bottom: 28px; }
  .hero-tagline { font-size: 16px; max-width: 340px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { height: 260px; border-radius: 14px; }
  .sh-inner { grid-template-columns: 1fr; gap: 44px; }
  .sh-grid { grid-template-columns: 1fr 1fr; }
  .sp-head { padding: 56px 28px 60px; }
  .sp-body { padding: 48px 28px 80px; }
  .jgrid { grid-template-columns: 1fr; }
  .det-body { grid-template-columns: 1fr; }

  /* ── Global wrap + section rhythm ── */
  .wrap { padding: 0 32px; }
  .section { padding: 80px 0; }
  /* Hero cards: drop excess top padding when stacked */
  .hero-cards { padding-top: 0; }
  /* Footer */
  .ft-cols { padding: 52px 0 44px; }
  .ft-cols-inner { padding: 0 32px; }
  .ft-base { padding: 16px 0; }
  .ft-base-inner { padding: 0 32px; }
  /* Sessions launcher / guide */
  .sw-sg-hd { padding: 52px 32px 40px; }
  .sw-launcher { padding: 40px 32px 36px; }
}
@media (max-width: 580px) {
  .sh-grid { grid-template-columns: 1fr; }
  .hero-logo { width: 100px; height: 100px; }
  .frow { grid-template-columns: 1fr; }
  .nav-link:not(.nav-cta) { display: none; }
  .ft-cols-inner { grid-template-columns: 1fr; }

  /* Hero: tighten on phone */
  .hero-ctas { flex-direction: column; gap: 10px; margin-top: 20px; }
  .hero-tagline { font-size: 15px; }
  .hero-scroll { bottom: 20px; }
  .hero-watermark { width: min(280px, 80vw); }

  /* Footer CTA: stack on mobile */
  .ft-cta { padding: 64px 20px; }
  .ft-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .ft-cta-mark { display: none; }

  /* ── Tighter wrap + sections on phone ── */
  .wrap { padding: 0 20px; }
  .section { padding: 60px 0; }

  /* Nav: compact CTA button on small screens */
  .nav-cta { font-size: 10px; padding: 8px 13px; letter-spacing: 0.06em; }
  .nav-cta svg { display: none; }

  /* Footer columns padding */
  .ft-cols { padding: 44px 0 36px; }
  .ft-cols-inner { padding: 0 20px; }
  /* Copyright bar: stack on phone */
  .ft-base { padding: 16px 0; }
  .ft-base-inner { grid-template-columns: 1fr; text-align: center; gap: 8px; padding: 0 20px; }
  .ft-base-lnks { justify-content: center; }

  /* Sessions: session detail panel */
  .det-top { padding: 24px 20px; }
  .det-txt { padding: 28px 20px; }
  .det-info { padding: 28px 20px; }
  .jcard-in { padding: 24px 20px 18px 24px; }
  .jcard-ft { padding: 12px 24px; }

  /* Info page */
  .info-head { padding: 56px 20px 44px; }
  .info-body { padding: 44px 20px 32px; }
  .ci-snav-inner { padding: 0 16px; }
}
/* ── CLIENT INFO PAGE ── */
.info-head {
  background: var(--teal-deep);
  padding: 88px 72px 72px;
  position: relative; overflow: hidden;
}
.info-head::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04); pointer-events: none;
}
.info-head-inner { max-width: 680px; }
.info-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300; color: white; line-height: 1.05;
  margin-bottom: 18px;
}
.info-title em { font-style: italic; color: rgba(255,255,255,0.52); }
.info-intro {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.48); line-height: 1.8;
  margin-bottom: 36px; max-width: 560px;
}
.info-toc {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.06em;
}
.info-toc a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.2s; padding: 4px 0;
}
.info-toc a:hover { color: white; }
.info-toc span { color: rgba(255,255,255,0.2); }

/* ── INFO PAGE STICKY SECTION NAV ── */
.ci-snav {
  position: sticky;
  top: 58px;
  z-index: 80;
  background: rgba(249,246,241,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,88,80,0.1);
  box-shadow: 0 2px 12px rgba(20,48,43,0.05);
  /* Hidden by default — shown via JS once past header */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ci-snav.ci-snav--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ci-snav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.ci-snav-inner::-webkit-scrollbar { display: none; }
.ci-snav-link {
  display: block;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--soft);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.ci-snav-link:hover { color: var(--teal-deep); }
.ci-snav-link--active { color: var(--teal-deep); border-bottom-color: var(--teal); }

.info-body {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 72px 48px;
}

.ci-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 52px;
  padding: 52px 0;
}
.ci-label { padding-top: 4px; }
.ci-num {
  font-family: var(--serif);
  font-size: 13px; font-style: italic;
  color: var(--terra); margin-bottom: 10px;
}
.ci-heading {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--teal-deep); line-height: 1.2;
}
.ci-divider {
  height: 1px; background: var(--cream-3);
  margin: 0;
}
.ci-lead {
  font-size: 16px; font-weight: 300;
  color: var(--mid); line-height: 1.8;
  margin-bottom: 28px;
}
.ci-sub {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin: 28px 0 10px;
}
.ci-content p {
  font-size: 14.5px; font-weight: 300;
  color: var(--mid); line-height: 1.8;
  margin-bottom: 12px;
}
.ci-list {
  margin: 0 0 16px 0; padding-left: 0;
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.ci-list li {
  font-size: 14px; font-weight: 300;
  color: var(--mid); line-height: 1.65;
  padding-left: 18px; position: relative;
}
.ci-list li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--terra); font-weight: 400;
}
.ci-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--cream); border-left: 2px solid var(--teal);
  padding: 14px 18px; border-radius: 0 14px 14px 0;
  margin-top: 24px;
  font-size: 13px; font-weight: 300;
  color: var(--mid); line-height: 1.65;
}
.ci-note svg { flex-shrink: 0; margin-top: 2px; }

/* Requirement callout — for prerequisites, deadlines, mandatory actions */
.ci-req {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(42,88,80,0.05);
  border: 1px solid rgba(42,88,80,0.14);
  border-left: 3px solid var(--teal);
  padding: 14px 18px; border-radius: 0 10px 10px 0;
  margin: 20px 0;
  font-size: 13px; line-height: 1.65; color: var(--teal-deep);
}
.ci-req svg { flex-shrink: 0; margin-top: 2px; }
.ci-req strong { font-weight: 600; }

/* Policy-limit callout — for confidentiality limits, warnings */
.ci-limit {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(190,110,68,0.04);
  border: 1px solid rgba(190,110,68,0.18);
  border-left: 3px solid var(--terra);
  padding: 14px 18px; border-radius: 0 10px 10px 0;
  margin: 20px 0;
  font-size: 13px; line-height: 1.65; color: var(--mid);
}
.ci-limit svg { flex-shrink: 0; margin-top: 2px; }
.ci-limit strong { color: var(--teal-deep); font-weight: 600; }

/* "Why this exists" context block */
.ci-why {
  font-size: 12.5px; font-weight: 300; color: var(--soft);
  font-style: italic; line-height: 1.6;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(42,88,80,0.07);
}

/* Fee table */
.ci-table {
  border: 1px solid var(--cream-3); border-radius: 16px;
  overflow: hidden; margin: 16px 0;
}
.ci-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--cream-3);
  font-size: 14px;
}
.ci-row:last-child { border-bottom: none; }
.ci-row-head {
  background: var(--cream);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--soft);
}
.ci-tag {
  font-size: 11px; font-weight: 500;
  padding: 4px 12px; border-radius: 100px;
  white-space: nowrap;
}
.ci-tag-green { background: rgba(42,88,80,0.1); color: var(--teal); }
.ci-tag-amber { background: rgba(190,110,68,0.1); color: var(--terra); }
.ci-tag-red   { background: rgba(190,40,40,0.1); color: #b02828; }
.ci-fee { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--teal-deep); white-space: nowrap; }
.ci-per { font-size: 12px; font-weight: 300; color: var(--soft); margin-left: 2px; }
.ci-fee-note { font-size: 13px; font-style: italic; color: var(--soft); }
.ci-small { font-size: 12px; font-style: italic; color: var(--faint); margin-top: 8px; }

.ci-callout {
  background: var(--teal-deep); color: rgba(255,255,255,0.85);
  font-family: var(--serif); font-size: 15px; font-style: italic;
  padding: 16px 24px; border-radius: 14px;
  margin: 14px 0 18px; line-height: 1.5;
}
.ci-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.ci-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* Section icons */
.ci-section-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(42,88,80,0.08);
  border-radius: 10px;
  margin-bottom: 12px;
}
.ci-section-icon svg { width: 18px; height: 18px; }

/* Rights cards grid */
.ci-rights-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 4px 0 24px;
}
.ci-right-card {
  background: white;
  border: 1px solid rgba(42,88,80,0.1);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.ci-right-card-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(42,88,80,0.07);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.ci-right-card-icon svg { width: 13px; height: 13px; }
.ci-right-card strong {
  display: block; font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.03em; color: var(--teal-deep); margin-bottom: 3px;
}
.ci-right-card p { font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.55; margin: 0; }

/* Checklist style */
.ci-checks { list-style: none; padding: 0; margin: 4px 0 16px; display: flex; flex-direction: column; }
.ci-checks li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(42,88,80,0.06);
  font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.6;
}
.ci-checks li:last-child { border-bottom: none; }
.ci-check-dot {
  width: 18px; height: 18px; flex-shrink: 0;
  background: rgba(42,88,80,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.ci-check-dot svg { width: 10px; height: 10px; }

/* Medicare stat row */
.ci-stat-row { display: flex; gap: 10px; margin: 16px 0; }
.ci-stat {
  flex: 1; background: rgba(42,88,80,0.05);
  border: 1px solid rgba(42,88,80,0.12); border-radius: 14px;
  padding: 18px 16px; text-align: center;
}
.ci-stat-val {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  color: var(--teal); line-height: 1; margin-bottom: 6px;
}
.ci-stat-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--soft);
}

/* Crisis line cards */
.ci-crisis-cards { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.ci-crisis-card {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: white;
  border: 1px solid rgba(42,88,80,0.1);
  border-left: 3px solid var(--teal);
  border-radius: 12px;
  padding: 14px 18px;
}
.ci-crisis-card-info { flex: 1; min-width: 0; }
.ci-crisis-card-name { font-size: 13.5px; font-weight: 600; color: var(--teal-deep); margin-bottom: 2px; }
.ci-crisis-card-desc { font-size: 12px; font-weight: 300; color: var(--soft); }
.ci-crisis-card-num {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--teal); white-space: nowrap; letter-spacing: 0.02em;
}

/* Rights chips */
.ci-rights-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.ci-rights-chip {
  display: flex; align-items: center; gap: 8px;
  background: white; border: 1px solid rgba(42,88,80,0.13); border-radius: 100px;
  padding: 8px 14px; font-size: 12px; font-weight: 500; color: var(--teal-deep);
}
.ci-rights-chip svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Funding pathway cards — horizontal strips */
.ci-funding-grid { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.ci-funding-card {
  background: white; border: 1px solid rgba(42,88,80,0.08);
  border-left: 3px solid var(--fc-color, var(--teal)); border-radius: 12px;
  display: grid; grid-template-columns: 172px 1fr;
  min-height: 0; overflow: hidden;
}
.fc-private  { --fc-color: #2A5850; }
.fc-medicare { --fc-color: #1e5e63; }
.fc-ndis     { --fc-color: var(--terra); }
.fc-eap      { --fc-color: #b89040; }
.fc-dva      { --fc-color: #5a6a8a; }
.fc-ndis-plan { --fc-color: #9a5530; }
.ci-fc-head {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 16px 18px; border-right: 1px solid rgba(42,88,80,0.07);
  background: rgba(42,88,80,0.02);
}
.ci-fc-icon {
  flex-shrink: 0;
  margin-bottom: 8px;
}
.ci-fc-icon svg { width: 20px; height: 20px; color: var(--teal); display: block; }
.ci-fc-icon img { display: block; max-height: 34px; max-width: 110px; width: auto; height: auto; }
.ci-fc-label { font-size: 12px; font-weight: 600; color: var(--teal-deep); line-height: 1.25; }
.ci-fc-sub { font-size: 10px; color: var(--soft); letter-spacing: 0.02em; line-height: 1.4; }
.ci-fc-body { display: flex; flex-direction: row; align-items: flex-start; }
.ci-fc-row {
  flex: 1; display: flex; flex-direction: column; justify-content: flex-start;
  gap: 3px; padding: 12px 14px;
  border-right: 1px solid rgba(42,88,80,0.06); min-width: 0;
}
.ci-fc-row:last-child { border-right: none; }
.ci-fc-key {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fc-color, var(--teal)); white-space: nowrap;
}
.ci-fc-val { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.45; }
.ci-fc-val strong { font-weight: 500; color: var(--teal-deep); }

/* Contact block (appointments section) */
.ci-contact-block { display: flex; gap: 14px; align-items: flex-start; background: rgba(42,88,80,0.04); border: 1px solid rgba(42,88,80,0.1); border-radius: 14px; padding: 18px 20px; margin-top: 20px; }
.ci-contact-icon { flex-shrink: 0; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: rgba(42,88,80,0.08); border-radius: 9px; color: var(--teal); margin-top: 1px; }
.ci-contact-icon svg { width: 17px; height: 17px; }
.ci-contact-body { flex: 1; }
.ci-contact-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.ci-contact-rows { display: flex; flex-direction: column; gap: 0; }
.ci-contact-row { display: grid; grid-template-columns: 80px 1fr; gap: 10px; align-items: baseline; padding: 7px 0; border-bottom: 1px solid rgba(42,88,80,0.06); }
.ci-contact-row:last-child { border-bottom: none; }
.ci-contact-key { font-size: 10px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--teal); padding-top: 2px; }
.ci-contact-val { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.55; }
.ci-contact-val a { color: var(--teal-deep); text-decoration: none; font-weight: 400; }
.ci-contact-val a:hover { text-decoration: underline; }
.ci-contact-or { display: inline-block; margin: 0 5px; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mid); opacity: 0.6; }

@media (max-width: 900px) {
  .ci-rights-grid { grid-template-columns: 1fr; }
  .ci-section-icon { display: none; }
  .ci-stat-row { flex-wrap: wrap; }
  .ci-crisis-card { flex-wrap: wrap; gap: 8px; }
  .ci-funding-card { grid-template-columns: 1fr; }
  .ci-fc-head { border-right: none; border-bottom: 1px solid rgba(42,88,80,0.07); flex-direction: row; align-items: center; gap: 10px; }
  .ci-fc-icon { margin-bottom: 0; }
  .ci-fc-body { flex-direction: column; }
  .ci-fc-row { border-right: none; border-bottom: 1px solid rgba(42,88,80,0.06); flex-direction: row; gap: 8px; align-items: baseline; }
  .ci-fc-row:last-child { border-bottom: none; }
}

/* Wide modal variant for info sections */
.modal-wide { max-width: 640px; }
.m-body-scroll { max-height: 60vh; overflow-y: auto; }
.m-body-scroll::-webkit-scrollbar { width: 4px; }
.m-body-scroll::-webkit-scrollbar-track { background: var(--cream); }
.m-body-scroll::-webkit-scrollbar-thumb { background: var(--cream-3); border-radius: 2px; }

/* Info page responsive */
@media (max-width: 900px) {
  .info-head { padding: 56px 28px 52px; }
  .info-body { padding: 48px 28px 32px; }
  .ci-section { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }
  .ci-label { display: flex; align-items: center; gap: 14px; }
  .ci-num { margin-bottom: 0; }
  .ci-snav-inner { padding: 0 20px; }
}

/* ── FOOTER CTA INLINE FORM PANELS ───────────────────────── */
/* Panel A: default practice info. Panel B: form.
   Triggered by openReachOut() — panels swap via max-height transitions
   and the card background shifts to cream for form contrast. */
.ft-panel-default {
  overflow: hidden;
  max-height: 500px;
  opacity: 1;
  transition: max-height 0.42s var(--ease), opacity 0.28s var(--ease);
}
.ft-cta-practice.ft-open .ft-panel-default {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.ft-panel-form {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.52s var(--ease), opacity 0.38s var(--ease) 0.1s;
}
.ft-cta-practice.ft-open .ft-panel-form {
  max-height: 900px;
  opacity: 1;
  pointer-events: all;
}
/* Card shifts to cream when form is open for field contrast */
.ft-cta-practice.ft-open {
  background: var(--cream);
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* Back button */
.ft-panel-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 20px;
  padding: 0;
  transition: color 0.2s;
}
.ft-panel-back:hover { color: var(--teal); }

/* ── MODAL ── */
.modal-ov { display: none !important; position: fixed; inset: 0; z-index: 1200; background: rgba(20,48,43,0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 24px; }
.modal-ov.open { display: flex !important; align-items: center; justify-content: center; animation: ovIn 0.5s ease forwards; }
@keyframes ovIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--cream);
  border-radius: 24px;
  width: 100%; max-width: 480px;
  overflow: hidden;
  position: relative;
  animation: mIn 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 0 0 1px rgba(255,255,255,0.45),
    0 40px 90px rgba(20,48,43,0.45),
    0 8px 28px rgba(20,48,43,0.25);
}
@keyframes mIn { from { opacity: 0; transform: translateY(28px) scale(0.975); } to { opacity: 1; transform: none; } }

/* Head — cream with a soft terra radial glow */
.m-head {
  position: relative;
  padding: 38px 42px 30px;
  overflow: hidden;
}
.m-head::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,111,98,0.14) 0%, rgba(182,111,98,0.04) 45%, transparent 75%);
  pointer-events: none;
}
.m-head > * { position: relative; z-index: 1; }

.m-lbl {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.m-lbl::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--terra);
  flex-shrink: 0;
}
.m-title {
  font-family: var(--serif);
  font-size: 32px; font-weight: 300;
  color: var(--teal-deep);
  line-height: 1.1; letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.m-title em { font-style: italic; color: var(--teal-mid); }
.m-sub { font-size: 13.5px; font-weight: 300; color: var(--mid); line-height: 1.65; max-width: 340px; }

/* Close — soft inset cream circle */
.m-x {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream);
  border: none; cursor: pointer;
  color: var(--soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow:
    inset 2px 2px 4px rgba(20,48,43,0.06),
    inset -2px -2px 4px rgba(255,255,255,0.6);
  transition: color 0.2s var(--ease);
}
.m-x:hover { color: var(--terra); }

.m-body { padding: 0 42px 32px; }

/* Form — neumorphic inset wells, no hard borders */
.fg { margin-bottom: 18px; position: relative; }
.fl {
  display: block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 8px;
  transition: color 0.25s var(--ease);
}
.fg:focus-within .fl { color: var(--teal); }

.fi, .fs, .ft {
  width: 100%;
  padding: 13px 18px;
  border: none;
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 15px; font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  appearance: none;
  box-shadow: var(--neu-inset);
  transition: box-shadow 0.32s var(--ease);
}
.fi:focus, .fs:focus, .ft:focus { box-shadow: var(--neu-inset-hi); }
.fi::placeholder, .ft::placeholder, .fs::placeholder {
  color: var(--faint);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
}
.ft { resize: vertical; min-height: 80px; line-height: 1.55; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Submit — mint primary, the practice's single CTA colour */
.fsub {
  width: 100%; margin-top: 8px;
  padding: 16px;
  border: none; border-radius: 14px;
  background: var(--mint);
  color: var(--teal-deep);
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: var(--neu-cta);
  transition: background 0.28s var(--ease), transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.fsub svg { width: 14px; height: 14px; }
.fsub:hover {
  background: var(--mint-lt);
  box-shadow: var(--neu-cta-hi);
}

/* Success state */
.m-ok { text-align: center; padding: 8px 0 4px; display: none; }
.m-ok-ring {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cream);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 21px;
  box-shadow: var(--neu-inset);
}
.m-ok h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--teal-deep); margin-bottom: 8px; }
.m-ok p { font-size: 13.5px; font-weight: 300; color: var(--mid); line-height: 1.7; }
/* ── MULTI-PAGE ADDITIONS ── */
.page-top-pad { padding-top: 68px; }

/* Active nav link */
.nav-link.active { color: var(--teal); }
.nav-link.active::after { transform: scaleX(1); }

.sw-oc { background: white; border: 1px solid rgba(42,88,80,0.1); border-radius: 14px; overflow: hidden; }
.sw-oc--contact {}
.sw-oc-head {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 20px 28px;
  background: rgba(42,88,80,0.03);
  border-bottom: 1px solid rgba(42,88,80,0.08);
}
.sw-oc-logo { max-height: 30px; max-width: 90px; width: auto; height: auto; flex-shrink: 0; }
.sw-oc-hd-text { flex: 1; min-width: 0; }
.sw-oc-title { font-size: 15px; font-weight: 600; color: var(--teal-deep); line-height: 1.25; }
.sw-oc-sub { font-size: 11px; color: var(--soft); margin-top: 2px; }
.sw-oc-price-block { text-align: right; flex-shrink: 0; }
.sw-oc-price { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--teal-deep); line-height: 1.1; }
.sw-oc-pocket { font-size: 11px; color: var(--mid); margin-top: 3px; max-width: 240px; line-height: 1.4; }
.sw-oc-before-wrap { padding: 16px 28px; border-bottom: 1px solid rgba(42,88,80,0.07); }
.sw-oc-before {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(190,110,68,0.05); border: 1px solid rgba(190,110,68,0.2);
  border-radius: 10px; padding: 13px 16px;
  font-size: 13px; color: var(--mid); line-height: 1.6;
}
.sw-oc-before svg { flex-shrink: 0; margin-top: 2px; }
.sw-oc-approval {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 13px 28px; font-size: 12.5px; color: var(--mid); line-height: 1.55;
  background: rgba(42,88,80,0.04); border-top: 1px solid rgba(42,88,80,0.07);
}
.sw-oc-approval svg { flex-shrink: 0; margin-top: 1px; }
.sw-oc-footer {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  padding: 18px 28px; border-top: 1px solid rgba(42,88,80,0.08);
}
.sw-oc-info-link { margin-left: auto; font-size: 12px; color: var(--soft); text-decoration: underline; background: none; border: none; }
.sw-oc-contact-body { padding: 20px 28px; }
.btn-ghost { background: none; border: none; padding: 4px 0; font-size: 12px; color: var(--soft); text-decoration: underline; cursor: pointer; font-family: inherit; }
.btn-ghost:hover { color: var(--teal); }

/* ── OUTCOME CARD CTA ROW ── */
.sw-oc-cta-row {
  padding: 24px 28px 26px;
  border-top: 1px solid rgba(42,88,80,0.08);
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.sw-oc-proceed {
  display: inline-flex; align-items: center;
}
.sw-oc-policy-note {
  font-size: 11px; font-weight: 300; color: var(--soft);
  letter-spacing: 0.01em;
}
.sw-oc-policy-note a {
  color: var(--soft); text-underline-offset: 2px;
}

/* Exist panel without dark header (header is now in sw-step-hd) */
.sw-exist-panel { background: white; border: 1px solid rgba(42,88,80,0.1); border-radius: 8px; overflow: hidden; }
.sw-exist-panel #ec-form { padding: 28px 36px 36px; }
.sw-exist-panel .m-ok { padding: 36px; }

@media (max-width: 900px) {
  /* Layout: full-width, no horizontal padding (body has its own) */
  .sw-layout {
    padding: 0 20px;
    max-width: none;
  }

  .sw-oc-price-block { text-align: left; }
  .sw-outcome-wrap { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 580px) {
  .sw-oc-head { flex-direction: column; align-items: flex-start; }
}


/* ══════════════════════════════════════════════════
   ORGANIC ATMOSPHERE SYSTEM
   Grain + flow lines + slow animation language.
   Structural, not illustrative. 5–8% visual strength.
══════════════════════════════════════════════════ */

/* ── Paper grain — fixed overlay, multiply blend ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* ── Hero organic flow lines ── */
.hero-organic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0; /* sits below .hero > * { z-index: 1 } */
  animation: organicDrift 46s ease-in-out infinite;
  will-change: transform, opacity;
}

/* ── Sessions page organic background layer ── */
.sp-head-organic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  animation: organicDrift 52s ease-in-out infinite;
  animation-delay: -18s;
  will-change: transform, opacity;
}

/* ── Breathing drift — alive, not animated ── */
@keyframes organicDrift {
  0%, 100% {
    transform: translate(0px, 0px) scale(1);
    opacity: 1;
  }
  28% {
    transform: translate(7px, -18px) scale(1.007);
    opacity: 0.76;
  }
  56% {
    transform: translate(-5px, -10px) scale(1.003);
    opacity: 0.9;
  }
  78% {
    transform: translate(4px, -6px) scale(1.005);
    opacity: 0.83;
  }
}

/* ── Section flow divider — between long sections ── */
.org-divider {
  position: relative;
  height: 0;
  overflow: visible;
  pointer-events: none;
  margin: 0;
  padding: 0;
  z-index: 1;
}
.org-divider svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 100vw);
  overflow: visible;
  pointer-events: none;
  animation: organicSway 58s ease-in-out infinite;
}

@keyframes organicSway {
  0%, 100% {
    transform: translate(-50%, -50%) translateX(0px);
    opacity: 0.88;
  }
  38% {
    transform: translate(-50%, -50%) translateX(12px);
    opacity: 0.68;
  }
  70% {
    transform: translate(-50%, -50%) translateX(-8px);
    opacity: 0.8;
  }
}

/* Reduce motion — honour system preference */
@media (prefers-reduced-motion: reduce) {
  .hero-organic,
  .sp-head-organic,
  .org-divider svg {
    animation: none !important;
  }
}
