*, *::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;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Raleway', system-ui, sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}
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");
}

.page { display: none; }
.page.active { display: block; }

/* ── 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); transform: translateY(-1px); 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 300px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
/* On desktop, cards are absolute so hero needs bottom padding.
   On mobile (overridden in @media) padding is reduced and cards flow. */

/* Background rings — single ::before element, multiple rings via box-shadow.
   Anchor point sits below the hero so only arc tops are visible. */
.hero::before {
  content: '';
  position: absolute;
  bottom: -40vh; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 1px;
  border-radius: 50%;
  box-shadow:
    0 0 0 28vh  rgba(182,111,98,0.18),
    0 0 0 42vh  rgba(176,101,88,0.14),
    0 0 0 58vh  rgba(182,111,98,0.11),
    0 0 0 74vh  rgba(160,88,76,0.09),
    0 0 0 90vh  rgba(182,111,98,0.07),
    0 0 0 108vh rgba(160,88,76,0.05),
    0 0 0 128vh rgba(182,111,98,0.035);
  pointer-events: none; z-index: 0;
}

/* Soft warm glow positioned behind where logo sits */
.hero::after {
  content: '';
  position: absolute;
  top: 48px; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,111,98,0.09) 0%, rgba(182,111,98,0.04) 40%, transparent 70%);
  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); }
}
.hero-logo { animation: hUp 0.9s var(--ease) 0.08s both; }
.hero-name { animation: hUp 0.9s var(--ease) 0.22s both; }
.hero-biz  { animation: hUp 0.9s var(--ease) 0.32s both; }
.hero-rule { animation: hUp 0.9s var(--ease) 0.40s both; }
.hero-meta { animation: hUp 0.9s var(--ease) 0.48s both; }
.hero-btns { animation: hUp 0.9s var(--ease) 0.56s both; }

.hero-logo {
  width: 172px; height: 172px;
  margin-bottom: 28px;
  margin-top: -8vh;
}
.hero-logo svg, .hero-logo img { width: 100%; height: 100%; object-fit: contain; }

.hero-name {
  font-family: var(--serif);
  font-size: clamp(56px, 8.5vw, 108px);
  font-weight: 300; line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  white-space: nowrap;
  margin-bottom: 12px;
}
/* Cheree — italic, teal, the focal point */
.hero-name em { font-style: italic; color: var(--teal); font-weight: 300; }

.hero-biz {
  font-size: 15px; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 36px;
}

.hero-rule {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 28px;
}
.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; }

.hero-meta {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-bottom: 44px;
}
.hero-meta-line { font-size: 14px; font-weight: 300; color: var(--soft); letter-spacing: 0.03em; }
.hero-sep { color: var(--terra); margin: 0 10px; opacity: 0.8; }

.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 0; }

/* ── HERO LEARN MORE LABEL ── */
.hero-learn {
  position: absolute;
  bottom: 248px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  z-index: 2; pointer-events: none;
}
.hero-learn-line {
  width: 40px; height: 1px;
  background: linear-gradient(to right, transparent, var(--faint));
}
.hero-learn-line:last-child {
  background: linear-gradient(to left, transparent, var(--faint));
}
.hero-learn span {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--soft);
  animation: learnPulse 3s ease-in-out 1.5s infinite;
}
@keyframes learnPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ── HERO CARDS ── */
.hero-cards {
  position: absolute;
  bottom: 16px; left: 40px; right: 40px;
  display: flex;
  gap: 14px;
  z-index: 2;
}
.hero-card {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 22px;
  padding: 22px 18px 18px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 8px 32px rgba(20,48,43,0.09);
}
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(20,48,43,0.13);
  border-color: rgba(255,255,255,0.75);
}

.hc-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(20,48,43,0.08);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.hc-icon svg { width: 100%; height: 100%; }

.hero-card { text-align: center; }
.hc-title, .hc-desc { text-align: center; }

.hc-title {
  font-family: var(--serif);
  font-size: 17px; font-weight: 500;
  color: var(--teal-deep); line-height: 1.25;
  margin-bottom: 6px;
}
.hc-desc {
  font-size: 12px; font-weight: 300;
  color: var(--soft); line-height: 1.5;
  padding-right: 0;
  margin-bottom: 14px;
  flex: 1;
}
.hc-cta {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  align-self: stretch;
  padding: 9px 14px;
  background: var(--hc-accent, var(--teal));
  border-radius: 100px;
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.05em;
  color: white;
  box-shadow: 0 3px 10px rgba(20,48,43,0.15);
  transition: box-shadow 0.25s var(--ease), opacity 0.25s var(--ease);
}
.hc-cta svg { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.22s var(--ease); }
.hero-card:hover .hc-cta svg { transform: translateX(3px); }
.hero-card:hover .hc-cta { box-shadow: 0 4px 14px rgba(20,48,43,0.2); }




/* ── 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);
}

/* ── PLACEHOLDER SECTIONS ── */
.placeholder-section { background: white; }
.placeholder-section.placeholder-alt { background: var(--cream); }

.placeholder-inner {
  max-width: 600px; margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.placeholder-icon {
  width: 72px; height: 72px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.placeholder-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.placeholder-label::before,
.placeholder-label::after {
  content: ''; width: 24px; height: 1px; background: var(--terra); opacity: 0.4;
}
.placeholder-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300; color: var(--teal-deep);
  line-height: 1.15; margin-bottom: 16px;
}
.placeholder-body {
  font-size: 15px; font-weight: 300;
  color: var(--mid); line-height: 1.8;
  margin-bottom: 32px;
}
.placeholder-badge {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--soft);
  border: 1px solid var(--cream-3);
  padding: 8px 18px; border-radius: 100px;
  background: var(--cream);
}

/* ── SHARED ── */
.section { padding: 104px 0; }
.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; }
.btn-solid {
  padding: 14px 28px;
  background: var(--teal); color: white;
  box-shadow: 0 4px 16px rgba(42,88,80,0.22);
}
.btn-solid:hover {
  background: var(--teal-mid); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,88,80,0.28);
}
.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);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(20,48,43,0.1);
}
.btn-mint {
  padding: 13px 26px;
  background: #77cfbd; color: var(--teal-deep);
  box-shadow: 0 4px 16px rgba(119,207,189,0.35);
}
.btn-mint:hover {
  background: #8dd8c8; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(119,207,189,0.45);
}
.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);
  transform: translateY(-2px);
}

/* ── 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: 76px 72px 68px; position: relative; overflow: hidden; }
.sp-head::after { content: ''; position: absolute; right: -60px; top: -80px; width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); pointer-events: none; }
.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; }
.sp-steps { display: flex; align-items: center; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.sp-step { display: flex; align-items: center; gap: 8px; }
.sp-step-n { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); font-size: 11px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--sans); }
.sp-step-txt { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; white-space: nowrap; }
.sp-step-arr { color: rgba(255,255,255,0.18); font-size: 16px; line-height: 1; }
.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); }
/* ── 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 { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; padding: 64px 72px 52px; background: var(--teal-deep); }
.ft-brand {}
.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 — AASW badge left, copyright centre, links right */
.ft-base {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 72px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.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, in copyright bar */
.ft-aasw-logo {
  height: 28px; width: auto;
  opacity: 0.45;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.ft-aasw-logo:hover { opacity: 0.75; }
.ft-aasw-logo svg { height: 100%; width: auto; display: block; }
@media (max-width: 900px) {
  #nav { padding: 0 24px; }
  .nav-sub { display: none; }

  /* Hero: remove bottom padding reservation, let cards flow naturally */
  .hero { padding: 56px 20px 32px; }
  .hero-name { white-space: normal; font-size: clamp(44px,11vw,72px); }

  /* Learn more label: in-flow on mobile */
  .hero-learn {
    position: relative;
    bottom: auto; left: auto; right: auto;
    margin-top: 32px; margin-bottom: 16px;
  }

  /* Cards: in-flow on mobile, full width stack */
  .hero-cards {
    position: relative;
    bottom: auto; left: auto; right: auto;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    padding: 0 0 32px;
  }

  /* Tighter CTA pill on mobile */
  .hc-cta { font-size: 10px; padding: 8px 12px; }

  .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; }
  .sp-body { padding: 48px 28px 80px; }
  .jgrid { grid-template-columns: 1fr; }
  .det-body { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .sh-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .frow { grid-template-columns: 1fr; }
  .nav-link:not(.nav-cta) { display: none; }
  .ft-cols { grid-template-columns: 1fr; }

  /* Cards: tighter on phone */
  .hero-cards { gap: 10px; }
  .hero-card { padding: 18px 20px 16px; }
  .hc-title { font-size: 15px; }
  .hc-desc { font-size: 11px; }

  /* Footer CTA: stack on mobile */
  .ft-cta { padding: 64px 28px; }
  .ft-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .ft-cta-mark { display: none; }
}
/* ── 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; }
}

/* ── MODAL ── */
.modal-ov { display: none !important; position: fixed; inset: 0; z-index: 1200; background: rgba(20,48,43,0.72); backdrop-filter: blur(12px); padding: 24px; }
.modal-ov.open { display: flex !important; align-items: center; justify-content: center; }
.modal { background: white; border-radius: 3px; width: 100%; max-width: 480px; overflow: hidden; position: relative; animation: mIn 0.4s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 40px 120px rgba(20,48,43,0.3); }
@keyframes mIn { from { opacity:0; transform:scale(0.92) translateY(22px); } to { opacity:1; transform:scale(1) translateY(0); } }
.m-head { background: var(--teal-deep); padding: 36px 42px 32px; }
.m-lbl { font-size: 9.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 10px; }
.m-title { font-family: var(--serif); font-size: 28px; font-weight: 300; color: white; line-height: 1.15; margin-bottom: 7px; }
.m-sub { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.65; }
.m-x { position: absolute; top: 15px; right: 15px; width: 30px; height: 30px; 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; }
.m-x:hover { background: rgba(255,255,255,0.16); }
.m-body { padding: 32px 42px 42px; }
.fg { margin-bottom: 15px; }
.fl { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: var(--soft); margin-bottom: 6px; }
.fi, .fs, .ft { width: 100%; padding: 11px 13px; border: 1px solid rgba(42,88,80,0.14); border-radius: 2px; font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--ink); background: white; transition: border-color 0.2s; outline: none; appearance: none; }
.fi:focus, .fs:focus, .ft:focus { border-color: var(--teal); }
.ft { resize: vertical; min-height: 86px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.fsub { width: 100%; margin-top: 7px; padding: 13px; border: none; border-radius: 12px; background: var(--terra); color: white; font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.22s var(--ease); display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 14px rgba(190,110,68,0.26); }
.fsub svg { width: 13px; height: 13px; }
.fsub:hover { background: var(--terra-lt); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(190,110,68,0.32); }
.m-ok { text-align: center; padding: 24px 0 6px; display: none; }
.m-ok-ring { width: 56px; height: 56px; border-radius: 50%; background: var(--cream); border: 1px solid rgba(42,88,80,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 17px; font-size: 21px; }
.m-ok h3 { font-family: var(--serif); font-size: 24px; 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); }

/* ── SESSIONS WIZARD ── */

/* Layout wrapper: sidebar trail on desktop, stacked on mobile */
.sw-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  /* Default: no grid — body takes full width before first selection */
}
/* Once a service is selected, the trail column appears */
.sw-layout.sw-layout--trail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 40px;
  align-items: start;
}

/* ── PROGRESS TRAIL ── */
.sw-trail {
  /* Hidden on desktop by default — only shown when sw-layout--trail is active */
  display: none;
  position: sticky;
  top: 80px;
  align-self: start;
}
.sw-trail:not(.sw-trail--hidden) {
  display: block;
}
.sw-trail--hidden { display: none; }

.sw-trail-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px 0;
}

/* Each crumb row */
.sw-trail-crumb {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 20px;
}
/* Connector line between crumbs */
.sw-trail-crumb:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 8px; top: 18px;
  width: 1px;
  bottom: 0;
  background: rgba(42,88,80,0.15);
}
.sw-trail-crumb--done:not(:last-child)::after { background: rgba(42,88,80,0.25); }

/* Step dot */
.sw-trail-dot {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 1.5px solid rgba(42,88,80,0.25);
  background: white;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.sw-trail-dot--done {
  background: var(--teal);
  border-color: var(--teal);
}
.sw-trail-dot svg { width: 9px; height: 9px; stroke: white; }

.sw-trail-crumb-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 0;
}
.sw-trail-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  line-height: 1;
}
.sw-trail-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1.3;
}
.sw-trail-val--pending {
  font-weight: 300;
  color: var(--faint);
  font-style: italic;
}
.sw-trail-edit {
  background: none; border: none; padding: 0;
  font-size: 10px; color: var(--soft); text-decoration: underline;
  cursor: pointer; font-family: inherit;
  align-self: flex-start;
  margin-top: 1px;
}
.sw-trail-edit:hover { color: var(--teal); }
.sw-trail-sep { display: none; } /* hidden — replaced by vertical layout */

/* ── WIZARD BODY ── */
.sw-body { padding: 72px 0 96px; }
.sw-step { margin-bottom: 56px; }
.sw-step--hidden { display: none; }

/* Step enter animation — triggers whenever hidden class is removed */
@keyframes sw-step-enter {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sw-step:not(.sw-step--hidden) {
  animation: sw-step-enter 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.sw-step-hd { display: flex; align-items: baseline; gap: 16px; margin-bottom: 28px; }
.sw-step-num { font-family: var(--serif); font-size: 13px; font-style: italic; color: var(--terra); flex-shrink: 0; }
.sw-step-title { font-family: var(--serif); font-size: clamp(19px,2.4vw,26px); font-weight: 400; color: var(--teal-deep); line-height: 1.2; }

/* Service cards */
.sw-svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sw-svc-card {
  background: white; border: 1.5px solid rgba(42,88,80,0.1); border-radius: 8px;
  padding: 24px 26px; cursor: pointer; position: relative;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.sw-svc-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,88,80,0.09); }
.sw-svc-card.sel { border-color: var(--teal); background: rgba(42,88,80,0.035); box-shadow: 0 0 0 3px rgba(42,88,80,0.09); }
.sw-svc-card.sel::after {
  content: '✓'; position: absolute; top: 14px; right: 16px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: white; font-size: 11px; font-weight: 700;
  text-align: center; line-height: 22px;
}
.sw-svc-lbl { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.sw-svc-name { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--teal-deep); margin-bottom: 6px; line-height: 1.2; }
.sw-svc-desc { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.6; }
.sw-svc-note { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; padding: 9px 12px; background: rgba(190,110,68,0.07); border-radius: 4px; font-size: 12px; color: var(--terra); font-weight: 400; line-height: 1.5; }
.sw-svc-note--hidden { display: none; }

/* Funding pills */
.sw-fund-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sw-fund-pill {
  background: white; border: 1.5px solid rgba(42,88,80,0.1); border-radius: 6px;
  padding: 16px 18px; cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s;
}
.sw-fund-pill:hover:not(.sw-fund-pill--off) { border-color: var(--teal); }
.sw-fund-pill.sel { border-color: var(--teal); background: rgba(42,88,80,0.04); }
.sw-fund-pill--off { opacity: 0.35; cursor: not-allowed; background: var(--cream); pointer-events: none; }
.sw-fund-name { font-family: var(--serif); font-size: 16px; font-weight: 500; color: var(--teal-deep); margin-bottom: 4px; }
.sw-fund-note { font-size: 12px; font-weight: 300; color: var(--soft); line-height: 1.5; }

/* Plan card */
.sw-plan-card { border-radius: 10px; overflow: hidden; border: 1px solid rgba(42,88,80,0.1); }
.sw-plan-top { background: var(--teal-deep); padding: 32px 40px; }
.sw-plan-label { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.sw-plan-combo { font-family: var(--serif); font-size: 24px; font-weight: 300; color: white; line-height: 1.25; }
.sw-plan-combo em { font-style: italic; color: rgba(255,255,255,0.52); }
.sw-plan-body { background: white; padding: 32px 40px; }
.sw-plan-price { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--teal-deep); margin-bottom: 18px; line-height: 1; }
.sw-plan-reqs { margin-bottom: 20px; display: flex; flex-direction: column; gap: 7px; }
.sw-plan-req { font-size: 14px; font-weight: 300; color: var(--mid); padding-left: 18px; position: relative; line-height: 1.55; }
.sw-plan-req::before { content: '–'; position: absolute; left: 0; color: var(--terra); }
.sw-plan-cancel {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(190,110,68,0.07); border-left: 2px solid var(--terra);
  padding: 12px 16px; border-radius: 0 4px 4px 0;
  font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 20px;
}
.sw-plan-approval {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--cream); border-left: 2px solid var(--teal);
  padding: 12px 16px; border-radius: 0 4px 4px 0;
  font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 20px;
}
.sw-plan-cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* New / existing client cards */
.sw-client-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sw-client-card {
  background: white; border: 1.5px solid rgba(42,88,80,0.1); border-radius: 8px;
  padding: 28px 30px; cursor: pointer;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.sw-client-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,88,80,0.08); }
.sw-client-card.sel { border-color: var(--teal); background: rgba(42,88,80,0.03); }
.sw-client-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.sw-client-name { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--teal-deep); margin-bottom: 6px; }
.sw-client-desc { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.65; }

/* New client panel */
.sw-new-panel { background: var(--cream); border-radius: 8px; padding: 36px 40px; }
.sw-new-panel h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--teal-deep); margin-bottom: 10px; }
.sw-new-panel p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.8; margin-bottom: 4px; }
.sw-new-steps { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.sw-new-step { display: flex; gap: 16px; align-items: flex-start; }
.sw-new-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--teal); color: white; font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.sw-new-step-txt strong { display: block; font-size: 14px; font-weight: 500; color: var(--teal-deep); margin-bottom: 3px; }
.sw-new-step-txt span { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.6; }

/* Existing client form panel */
.sw-exist-panel { background: white; border: 1px solid rgba(42,88,80,0.1); border-radius: 8px; overflow: hidden; }
.sw-exist-head { background: var(--teal-deep); padding: 28px 36px 24px; }
.sw-exist-label { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.sw-exist-title { font-family: var(--serif); font-size: 22px; font-weight: 300; color: white; margin-bottom: 6px; }
.sw-exist-sub { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.65; }
.sw-exist-panel #ec-form { padding: 28px 36px 36px; }
.sw-exist-panel .m-ok { padding: 36px; }

/* Intake form card */
.sw-intake-card { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; background: white; border: 1px solid rgba(42,88,80,0.12); border-top: 3px solid var(--teal); border-radius: 16px; padding: 24px 28px; margin: 28px 0 0; }
.sw-intake-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.sw-intake-title { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--teal-deep); margin-bottom: 8px; line-height: 1.25; }
.sw-intake-desc { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }
.sw-intake-btn { display: inline-flex; }
.sw-intake-qr { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.sw-intake-qr img { width: 108px; height: 108px; border-radius: 10px; border: 1px solid rgba(42,88,80,0.1); display: block; }
.sw-intake-qr p { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--soft); text-align: center; line-height: 1.5; margin: 0; }

/* Free call CTA */
.sw-free-call { background: white; border-top: 1px solid var(--cream-3); padding: 72px 72px; }
.sw-free-call-inner { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 56px; }
.sw-free-call-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
.sw-free-call-title { font-family: var(--serif); font-size: clamp(22px,2.8vw,32px); font-weight: 300; color: var(--teal-deep); line-height: 1.2; margin-bottom: 8px; }
.sw-free-call-sub { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.75; }
.sw-free-call-action { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.sw-free-call-note { font-size: 11px; font-weight: 300; color: var(--soft); white-space: nowrap; }

/* Step subtitle (used with existing client step header) */
.sw-step-sub { font-size: 13px; font-weight: 300; color: var(--mid); margin-top: 5px; line-height: 1.55; }
.sw-step-hd > div { flex: 1; }

/* Progress trail breadcrumb */
.sw-trail { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 32px; }
.sw-trail--hidden { display: none; }
.sw-trail-crumb {
  display: inline-flex; align-items: baseline; gap: 5px;
  background: rgba(42,88,80,0.06); border-radius: 20px;
  padding: 5px 12px; font-size: 11px;
}
.sw-trail-lbl { color: var(--soft); font-size: 10px; }
.sw-trail-val { font-weight: 600; color: var(--teal-deep); }
.sw-trail-edit {
  background: none; border: none; padding: 0; margin-left: 4px;
  font-size: 10px; color: var(--soft); text-decoration: underline;
  cursor: pointer; font-family: inherit;
}
.sw-trail-edit:hover { color: var(--teal); }
.sw-trail-sep { color: var(--faint); font-size: 13px; line-height: 1; }

/* Outcome card (step 4) */
.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-details { display: grid; grid-template-columns: 1fr 1fr; }
.sw-oc-col { padding: 20px 28px; }
.sw-oc-cancel-col { padding: 20px 28px; border-left: 1px solid rgba(42,88,80,0.07); background: rgba(42,88,80,0.02); }
.sw-oc-sec-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.sw-oc-highlights { margin: 0; padding-left: 16px; }
.sw-oc-highlights li { font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.55; margin-bottom: 7px; }
.sw-oc-highlights li:last-child { margin-bottom: 0; }
.sw-oc-cancel-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.sw-oc-cancel-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.sw-oc-cancel-notice { font-size: 12px; color: var(--mid); }
.sw-oc-cancel-summary { font-size: 12.5px; color: var(--mid); line-height: 1.6; margin-bottom: 10px; }
.sw-oc-cancel-extra { font-size: 11.5px; color: var(--terra); line-height: 1.5; margin-bottom: 10px; font-style: italic; }
.sw-oc-cancel-more { font-size: 11px; color: var(--teal); text-decoration: none; }
.sw-oc-cancel-more:hover { text-decoration: underline; }
.sw-oc-cancel-contact { font-size: 12px; color: var(--mid); padding-top: 10px; border-top: 1px solid rgba(42,88,80,0.07); line-height: 1.6; }
.sw-oc-cancel-contact a { color: var(--teal); text-decoration: none; }
.sw-oc-cancel-contact a:hover { text-decoration: underline; }
.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); }

/* ── SESSION REQUEST FORM (new client outcome card) ── */
.sw-req-block {
  border-top: 1px solid rgba(42,88,80,0.08);
}
.sw-req-hd {
  padding: 22px 28px 6px;
}
.sw-req-title {
  font-family: var(--serif);
  font-size: 18px; font-weight: 400;
  color: var(--teal-deep); margin-bottom: 6px;
}
.sw-req-intro {
  font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.65;
}
.sw-req-opt { font-weight: 300; color: var(--faint); font-size: 10px; }
#sw-req-form { padding: 10px 28px 24px; }
.sw-req-note-field { min-height: 72px; }

/* What happens next — 3-step mini timeline */
.sw-next-steps {
  display: flex; align-items: center; flex-wrap: wrap;
  padding: 16px 28px;
  background: rgba(42,88,80,0.03);
  border-top: 1px solid rgba(42,88,80,0.07);
  gap: 0;
}
.sw-next-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 300; color: var(--mid);
  flex: 1; min-width: 0;
  padding: 4px 0;
}
.sw-next-num {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sw-next-sep {
  width: 20px; height: 1px;
  background: rgba(42,88,80,0.18);
  flex-shrink: 0;
  margin: 0 4px;
}
.sw-req-footer {
  padding: 10px 28px 16px;
  display: flex; align-items: center; justify-content: flex-end;
}
.sw-req-success {
  padding: 32px 28px 28px;
  text-align: center;
}
.sw-req-success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cream); border: 1px solid rgba(42,88,80,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 20px;
}
.sw-req-success-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--teal-deep); margin-bottom: 8px;
}
.sw-req-success-body {
  font-size: 13.5px; font-weight: 300; color: var(--mid);
  line-height: 1.7; max-width: 420px; margin: 0 auto 20px;
}
.sw-req-info-btn { display: inline-flex; }

/* 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: collapse sidebar, trail goes sticky top */
  .sw-layout {
    display: block;
    padding: 0;
    max-width: none;
  }

  /* Trail: sticky horizontal bar at top of scroll */
  .sw-trail {
    display: block;      /* override desktop display:none */
    position: sticky;
    top: 58px;           /* below the nav bar */
    z-index: 90;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(249,246,241,0.95);
    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.06);
  }
  /* When hidden on mobile, truly hide it */
  .sw-trail.sw-trail--hidden { display: none !important; }

  .sw-trail-inner {
    flex-direction: row;
    gap: 0;
    padding: 10px 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sw-trail-inner::-webkit-scrollbar { display: none; }

  /* Horizontal crumb layout */
  .sw-trail-crumb {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding-bottom: 0;
    padding-right: 16px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .sw-trail-crumb::after { display: none; } /* no connector lines on mobile */

  /* Separator between crumbs on mobile */
  .sw-trail-crumb:not(:last-child)::before {
    content: '›';
    position: absolute;
    right: 2px;
    color: rgba(42,88,80,0.25);
    font-size: 13px;
  }
  .sw-trail-crumb { position: relative; }

  .sw-trail-dot { width: 13px; height: 13px; }
  .sw-trail-dot svg { width: 7px; height: 7px; }

  .sw-trail-crumb-body { flex-direction: row; align-items: center; gap: 5px; }
  .sw-trail-lbl { display: none; } /* hide labels on mobile, just show values */
  .sw-trail-val { font-size: 11.5px; }
  .sw-trail-val--pending { font-size: 11px; }
  .sw-trail-edit { font-size: 10px; }

  .sw-body { padding: 28px 20px 64px; }
  .sw-svc-grid { grid-template-columns: 1fr; }
  .sw-fund-grid { grid-template-columns: 1fr 1fr; }
  .sw-client-grid { grid-template-columns: 1fr; }
  .sw-plan-top, .sw-plan-body { padding: 24px 26px; }
  .sw-new-panel { padding: 28px 24px; }
  .sw-exist-panel #ec-form { padding: 24px 24px 28px; }
  .sw-free-call { padding: 48px 28px; }
  .sw-free-call-inner { grid-template-columns: 1fr; gap: 28px; }
  .sw-free-call-action { align-items: flex-start; }
  .sw-free-call-note { white-space: normal; }
  .sw-oc-details { grid-template-columns: 1fr; }
  .sw-oc-cancel-col { border-left: none; border-top: 1px solid rgba(42,88,80,0.07); }
  .sw-oc-price-block { text-align: left; }
}
@media (max-width: 580px) {
  .sw-fund-grid { grid-template-columns: 1fr; }
  .sw-oc-head { flex-direction: column; align-items: flex-start; }
}
