/* ═══════════════════════════════════════════════════════
   WAYFINDER — RETREAT V2
   Standalone stylesheet. No dependency on styles.css.
   ═══════════════════════════════════════════════════════ */

/* ─── 1. RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── 2. DESIGN TOKENS ─── */
:root {
  --navy:       #0B1623;
  --navy-mid:   #0F1E30;
  --navy-deep:  #091C1B;
  --coral:      #E8694A;
  --coral-dk:   #C94F32;
  --turquoise:  #3DBDB3;
  --amber:      #F2C46D;
  --cream:      #F5F0E8;
  --off-white:  #FBF1EE;
  --white:      #FFFFFF;
  --text:       #0E0E0E;
  --text-muted: #6B6B6B;
  --border:     rgba(14, 14, 14, 0.1);
  --pad:        clamp(24px, 8vw, 120px);
  --max-w:      1200px;
  --r-sm:       10px;
  --r-md:       16px;
  --r-lg:       20px;
  --r-xl:       28px;

  /* "Open water" palette (v3 port) */
  --sky:           #A8D2EC;
  --sky-light:     #C4E2F4;
  --sky-pale:      #DCEEFA;
  --ocean:         #2178C4;
  --ocean-deep:    #155C9E;
  --ocean-deepest: #0E4A84;
  --cream-light:   #FAF4E4;
  --wood:          #C98A4B;
  --ink:           #1B2B3A;
  --ink-muted:     #5C6B7A;
  --serif:         'Lora', Georgia, serif;
  --sans:          'DM Sans', system-ui, -apple-system, sans-serif;
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── 3. BASE ─── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html { overflow-x: hidden; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ─── 4. TYPOGRAPHY SCALE ─── */
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-dk);
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ─── 5. SCROLL REVEALS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.d1 { transition-delay: 0.10s; }
.fade-in.d2 { transition-delay: 0.20s; }
.fade-in.d3 { transition-delay: 0.30s; }
.fade-in.d4 { transition-delay: 0.40s; }
.fade-in.d5 { transition-delay: 0.50s; }
/* When GSAP drives the reveals, it owns the easing — drop the CSS transition
   so the two don't double-animate. */
.gsap-active .fade-in { transition: none; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── 6. KEYFRAMES ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-14px); }
}

@keyframes strikeIn {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ─── 7. PILL BADGES ─── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pill-dot {
  width: 24px; height: 1px;
  border-radius: 0;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0.6;
}
.pill-dark { color: var(--coral-dk); }
.pill-dark .pill-dot { background: currentColor; }
.pill-light { color: var(--coral-dk); }
.pill-light .pill-dot { background: currentColor; }

/* ─── 8. BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-coral {
  background: var(--coral);
  color: var(--cream);
}
.btn-coral:hover {
  background: var(--coral-dk);
  box-shadow: 0 8px 28px rgba(232, 105, 74, 0.38);
}

.btn-cream {
  background: var(--cream);
  color: var(--navy);
}
.btn-cream:hover {
  background: #fff;
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.22);
}

.btn-ghost-light {
  background: var(--coral);
  border: 1px solid var(--coral);
  backdrop-filter: none;
  color: var(--cream);
}
.btn-ghost-light:hover {
  background: var(--coral-dk);
  border-color: var(--coral-dk);
  transform: none;
}

.btn-lg { height: 58px; padding: 0 36px; font-size: 15px; }

/* ─── 9. NAV ─── */
.v2-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 99;
  height: 72px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.v2-nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.3s ease;
}
.v2-nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 24px rgba(0,0,0,0.05);
}
.v2-nav.scrolled .v2-nav-logo { color: var(--text); }
.v2-nav.scrolled .btn-ghost-light {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--cream);
  backdrop-filter: none;
}
.v2-nav.scrolled .btn-ghost-light:hover { background: var(--coral-dk); }

.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.v2-nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(11,22,35,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.v2-nav-links a:hover { color: var(--navy); }
.v2-nav.scrolled .v2-nav-links a { color: rgba(11,22,35,0.5); }
.v2-nav.scrolled .v2-nav-links a:hover { color: var(--text); }
@media (max-width: 768px) { .v2-nav-links { display: none; } }

/* ─── 10. WAVE DIVIDERS ─── */

/* ─── 11. HERO ─── */
.v2-hero {
  min-height: 100vh;
  background: url('hero/frame_0000.webp') center / cover no-repeat;
  padding: 120px var(--pad) 100px;
  display: grid;
  grid-template-columns: 58% 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}
/* Warm left-to-right gradient for text legibility over the painting */
.v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(251,241,238,0.90) 0%,
    rgba(251,241,238,0.72) 38%,
    rgba(251,241,238,0.28) 58%,
    rgba(251,241,238,0.00) 72%
  );
  pointer-events: none;
}
/* Bottom fade into the next section */
.v2-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7));
  pointer-events: none;
}

/* Text column */
.v2-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* Scroll-scrub frame canvas (sits over the static painting fallback) */
.hero-frames {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero-frames.is-ready { opacity: 1; }
.v2-hero::before, .v2-hero::after { z-index: 1; }

.v2-hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.05s forwards;
}
.v2-hero-chip {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(11,22,35,0.5);
  letter-spacing: 0.05em;
}
.v2-hero-sep {
  margin: 0 12px;
  color: rgba(11,22,35,0.22);
  font-size: 12px;
}

.v2-hero h1 {
  font-size: clamp(46px, 5.8vw, 78px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.15s forwards;
}

/* "Someday" strikethrough */
.strike-word {
  position: relative;
  display: inline-block;
  color: rgba(11,22,35,0.22);
}
.strike-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  height: 5px;
  background: var(--coral);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: strikeIn 0.65s cubic-bezier(0.4,0,0.2,1) 1.3s forwards;
}

.v2-hero-body {
  font-family: 'Lora', Georgia, serif;
  font-style: normal;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.68;
  color: var(--navy);
  max-width: none;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.35s forwards;
}
.v2-hero-body strong { font-weight: 600; color: inherit; }
.v2-hero-body .hero-retreat { color: var(--coral-dk); font-weight: 600; }
.v2-hero-line { white-space: nowrap; }
@media (max-width: 600px) { .v2-hero-line { white-space: normal; } }
.v2-hero-em {
  color: var(--navy);
  font-style: normal;
  font-weight: 600;
}
.v2-hero-meta-line {
  display: inline-block;
  margin-top: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11,22,35,0.38);
  white-space: nowrap;
}

.v2-hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.52s forwards;
}
.v2-hero-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(11,22,35,0.42);
}

/* Image column — hidden; painting is the background */
.v2-hero-image-wrap {
  display: none;
}
.v2-hero-portrait {
  width: 100%;
  height: calc(100vh - 200px);
  max-height: 680px;
  min-height: 400px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}
/* Disable float animation on mobile (handled in responsive) */


/* ─── 12. STRUGGLE ─── */
.v2-struggle {
  background: var(--white);
  padding: 120px var(--pad);
  position: relative;
  overflow: hidden;
}
.v2-struggle-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.v2-struggle-headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 500;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 14ch;
  margin-bottom: clamp(48px, 7vw, 90px);
}
.v2-struggle-headline em {
  font-style: italic;
  color: var(--coral-dk);
}
.v2-struggle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
  counter-reset: problem;
}

/* SVG path connector — absolute positioned behind cards */
.v2-struggle-path {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: -60px;
  overflow: visible;
  pointer-events: none;
}
.v2-struggle-path path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.22,1,0.36,1) 0.4s;
}
.v2-struggle-path.visible path { stroke-dashoffset: 0; }

.v2-struggle-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(11,22,35,0.08);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(11,22,35,0.05);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
}
.v2-struggle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(11,22,35,0.12);
}
.v2-struggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 105, 74, 0.09);
  color: var(--coral-dk);
  margin-bottom: 24px;
}
.v2-struggle-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 14px;
}
.v2-struggle-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
/* The retreat's answer to the pain — pushed to the card foot */
/* ─── Problem cards: the retreat's answer ───
   Fallback (no-JS / reduced-motion) = a coral-ruled block at the card foot.
   Enhanced (.cards-reveal-on) = an absolute coral panel that scrubs up over
   the problem as you scroll, making the problem→solution shift unmistakable. */
.v2-struggle-answer {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 105, 74, 0.22);
  position: relative;
}
.v2-struggle-answer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 44px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.v2-struggle-answer-label { display: none; }
.v2-struggle-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-dk);
  margin: 16px 0 8px;
}
.v2-struggle-answer p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy);
}

/* Enhanced scrub-reveal mode */
.cards-reveal-on .v2-struggle-card { overflow: hidden; }
.cards-reveal-on .v2-struggle-problem {
  position: relative;
  z-index: 1;
  will-change: transform;
}
/* The solution reads as a real card laid on top of the problem: matching rounded
   corners, an elevation shadow at its leading edge, and a slight settle-scale as
   it lands (the scale + slide are driven by GSAP). Content is top-aligned. */
.cards-reveal-on .v2-struggle-answer {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: clamp(28px, 3vw, 42px);
  border-top: none;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(130% 80% at 18% 0%, rgba(255,255,255,0.18), transparent 58%),
    linear-gradient(155deg, var(--coral) 0%, var(--coral-dk) 100%);
  box-shadow:
    0 -22px 45px rgba(11,22,35,0.28),
    0 14px 30px rgba(201,79,50,0.28);
  transform-origin: 50% 100%;
  will-change: transform;
  /* Hidden position is owned entirely by GSAP (fromTo yPercent). No CSS transform
     here — a CSS translate would be double-counted by GSAP and push it off twice. */
}
.cards-reveal-on .v2-struggle-answer::before { display: none; }
.cards-reveal-on .v2-struggle-answer-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
}
.cards-reveal-on .v2-struggle-tag {
  font-family: 'Lora', Georgia, serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--cream-light);
  margin: 0 0 14px;
}
.cards-reveal-on .v2-struggle-tag em { font-style: italic; }
.cards-reveal-on .v2-struggle-answer p {
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}

/* ─── 13. APPROACH ─── */
.v2-approach {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.v2-approach-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
}

.v2-approach-inner {
  padding: 120px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.v2-approach-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.v2-approach-headline {
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.06;
}
.v2-approach-intro {
  font-family: 'Lora', Georgia, serif;
  font-style: normal;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.72;
  color: rgba(11,22,35,0.52);
  max-width: 560px;
}

/* Map → Compass grid */
.v2-method-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: 0;
}
.v2-method-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(11,22,35,0.2);
}
.v2-method-arrow-col svg { display: block; }

.v2-method-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(11,22,35,0.08);
  border-radius: var(--r-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(11,22,35,0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.v2-method-card::before {
  content: '';
  position: absolute;
  top: 0; left: 16%; right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,22,35,0.07), transparent);
}
.v2-method-card-compass {
  background: rgba(61,189,179,0.06);
  border-color: rgba(61,189,179,0.2);
}

.v2-method-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.v2-method-card-map .v2-method-badge {
  background: rgba(11,22,35,0.05);
  border: 1px solid rgba(11,22,35,0.1);
  color: rgba(11,22,35,0.45);
}
.v2-method-card-compass .v2-method-badge {
  background: rgba(61,189,179,0.14);
  border: 1px solid rgba(61,189,179,0.28);
  color: var(--turquoise);
}

.v2-method-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.v2-method-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(11,22,35,0.4);
  line-height: 1.55;
  margin-bottom: 32px;
}

.v2-method-items { display: flex; flex-direction: column; }
.v2-method-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(11,22,35,0.06);
}
.v2-method-item:last-child { border-bottom: none; padding-bottom: 0; }
.v2-method-item:first-child { padding-top: 0; }
.v2-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  flex-shrink: 0;
}
.v2-method-card-map .v2-method-icon   { color: rgba(232,105,74,0.6); }
.v2-method-card-compass .v2-method-icon { color: rgba(61,189,179,0.8); }
.v2-method-item-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
}
.v2-method-item-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(11,22,35,0.45);
  line-height: 1.55;
  margin-top: 3px;
}

/* ─── 14. SCHEDULE ─── */
.v2-schedule {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.v2-schedule-inner {
  padding: 120px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.v2-schedule-header {
  text-align: center;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.v2-schedule-headline {
  font-size: clamp(40px, 5.4vw, 62px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.06;
}
.v2-schedule-sub {
  font-family: 'Lora', Georgia, serif;
  font-style: normal;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.7;
  color: rgba(11,22,35,0.52);
}
/* drawn-circle around "3-day" */
.drawn-circle {
  position: relative;
  display: inline-block;
  padding: 0 3px;
  font-style: normal;
  color: var(--navy);
}
.drawn-circle svg {
  position: absolute;
  inset: -8px -14px;
  width: calc(100% + 28px);
  height: calc(100% + 16px);
  pointer-events: none;
  overflow: visible;
}
.drawn-circle path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.drawn-circle.visible path { stroke-dashoffset: 0; }

/* Venue photos */
.v2-venue {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.v2-venue-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.v2-venue-photo {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-md);
  opacity: 0.8;
  transition: opacity 0.25s ease, transform 0.3s ease;
  cursor: pointer;
  display: block;
}
.v2-venue-photo:hover { opacity: 1; transform: scale(1.025); }

.v2-venue-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.v2-venue-info-block {}
.v2-venue-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,22,35,0.38);
  margin-bottom: 8px;
}
.v2-venue-text {
  font-family: 'Lora', Georgia, serif;
  font-style: normal;
  font-size: 17px;
  line-height: 1.72;
  color: rgba(11,22,35,0.62);
}

/* Schedule toggle */
.v2-schedule-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(11,22,35,0.06);
  border: 1px solid rgba(11,22,35,0.12);
  border-radius: 100px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(11,22,35,0.65);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.v2-schedule-btn:hover {
  background: rgba(11,22,35,0.1);
  color: var(--navy);
}
.v2-schedule-btn-icon {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.v2-schedule-btn[aria-expanded="true"] .v2-schedule-btn-icon { transform: rotate(180deg); }

.v2-schedule-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* Collapsible */
.v2-schedule-collapsible {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.22,1,0.36,1);
}
.v2-schedule-collapsible.open { max-height: 4000px; }

.v2-sched-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 40px;
}

.v2-sched-day {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(11,22,35,0.07);
  border-radius: var(--r-lg);
  padding: 28px;
}
.v2-sched-day-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(11,22,35,0.07);
  margin-bottom: 22px;
}
.v2-sched-day-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.v2-sched-day-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(11,22,35,0.35);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.v2-sblock {
  padding: 14px 0;
  border-bottom: 1px solid rgba(11,22,35,0.05);
}
.v2-sblock:last-child { border-bottom: none; padding-bottom: 0; }
.v2-sblock:first-child { padding-top: 0; }
.v2-sblock-time {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,22,35,0.3);
  margin-bottom: 7px;
}
.v2-sblock-items { display: flex; flex-direction: column; gap: 5px; }
.v2-sblock-item {
  padding: 8px 11px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v2-sblock-module-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--turquoise);
}
.v2-sblock-label { color: rgba(11,22,35,0.82); }
.v2-sblock-note  { font-size: 11px; color: rgba(11,22,35,0.45); }

.item-session { background: rgba(61,189,179,0.10); }
.item-reflect { background: rgba(168,140,200,0.09); }
.item-move    { background: rgba(100,168,120,0.10); }
.item-meal    { background: rgba(200,140,90,0.10);  }
.item-break   { background: rgba(11,22,35,0.04); }


/* ─── 15. TAKEAWAYS ─── */
.v2-takeaways {
  background: var(--off-white);
  padding: 120px var(--pad);
}
.v2-takeaways-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.v2-takeaways-header {
  text-align: center;
  margin-bottom: 72px;
}
.v2-takeaways-headline {
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  margin-top: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.v2-takeaways-sub {
  margin-top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(11,22,35,0.52);
  line-height: 1.6;
}

.v2-takeaways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.v2-takeaway {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v2-takeaway-num {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(60px, 7.5vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}
.num-coral     { color: var(--coral); }
.num-turquoise { color: var(--turquoise); }
.num-amber     { color: var(--amber); }

.v2-takeaway-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.v2-takeaway-body {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(11,22,35,0.62);
}

/* ─── 16. WHY RETREAT ─── */
.v2-why {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.v2-why-compass {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.v2-why-compass svg {
  width: 100%;
  height: 100%;
}
.v2-why-inner {
  padding: 120px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.v2-why-header {
  text-align: center;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.v2-why-headline {
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
}
.v2-why-intro {
  font-family: 'Lora', Georgia, serif;
  font-style: normal;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.72;
  color: rgba(11,22,35,0.5);
}
.v2-why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}
.v2-why-card {
  background: var(--white);
  border: 1px solid rgba(11,22,35,0.07);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  cursor: default;
}
.v2-why-card:hover {
  box-shadow: 0 14px 52px rgba(11,22,35,0.09);
  transform: translateY(-3px);
}
.v2-why-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.v2-why-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(11,22,35,0.14);
}
.v2-why-icon { color: var(--coral); }
.v2-why-card-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.v2-why-card-body {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(11,22,35,0.58);
}

/* ─── 17. WHO IT'S FOR ─── */
.v2-for {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.v2-for-grain {
  position: absolute;
  inset: 0;
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.v2-for-inner {
  padding: 120px var(--pad);
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.v2-for-header {
  margin-bottom: 60px;
}
.v2-for-headline {
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-top: 16px;
}
.v2-for-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.v2-for-col {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.v2-for-col::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.v2-for-col-yes::before {
  background: radial-gradient(ellipse at top left, rgba(232,105,74,0.1) 0%, transparent 55%);
}
.v2-for-col-no::before {
  background: radial-gradient(ellipse at bottom right, rgba(61,189,179,0.07) 0%, transparent 55%);
}

.v2-for-col-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.v2-for-col-yes .v2-for-col-label { color: rgba(232,105,74,0.7); }
.v2-for-col-no  .v2-for-col-label { color: rgba(61,189,179,0.65); }

.v2-for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.v2-for-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245,240,232,0.78);
}
.v2-for-marker {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.v2-for-marker-yes { background: rgba(232,105,74,0.16); }
.v2-for-marker-yes svg { color: var(--coral); }
.v2-for-marker-no  { background: rgba(255,255,255,0.05); }
.v2-for-marker-no  svg { color: rgba(245,240,232,0.28); }

/* ─── 18. FOUNDERS ─── */
.v2-founders {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.v2-founders-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.v2-founders-inner {
  padding: 120px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.v2-founders-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-dk);
  margin-bottom: 22px;
}
.v2-founders-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
}
.v2-founders-headline {
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 36px;
}
.v2-founders-body {
  font-family: 'Lora', Georgia, serif;
  font-style: normal;
  font-size: 18px;
  line-height: 1.78;
  color: rgba(11,22,35,0.62);
}

/* Photo cards */
.v2-founders-photos {
  display: flex;
  justify-content: flex-start;
  max-width: 340px;
}
.v2-founder-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.v2-founder-photo-wrap {
  aspect-ratio: 3 / 4;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.v2-founder-placeholder-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.15);
  text-align: center;
  padding: 20px;
}
.v2-founder-info {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 20px;
}
.v2-founder-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(245,240,232,0.85);
  margin-bottom: 4px;
}
.v2-founder-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.v2-founder-bio {
  font-family: 'Lora', Georgia, serif;
  font-style: normal;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245,240,232,0.42);
}

/* ─── 19. PRICE ─── */
.v2-price {
  background: var(--white);
  padding: 120px var(--pad);
  position: relative;
  overflow: hidden;
}
.v2-price-grain {
  position: absolute;
  inset: 0;
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.v2-price-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.v2-price-header { text-align: center; }
.v2-price-headline {
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 12px;
}
.v2-price-sub {
  font-family: 'Lora', Georgia, serif;
  font-style: normal;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-muted);
}
.v2-price-card {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(11,22,35,0.08);
  box-shadow: 0 12px 56px rgba(0,0,0,0.08);
}
.v2-price-top {
  background: var(--white);
  padding: 44px 48px 36px;
}
.v2-includes-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,22,35,0.3);
  margin-bottom: 20px;
}
.v2-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.v2-includes-list li {
  font-size: 15px;
  color: rgba(11,22,35,0.72);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.45;
}
.v2-inc-icon {
  display: flex;
  align-items: center;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 1px;
}
.v2-price-bottom {
  background: var(--navy);
  padding: 32px 48px 40px;
}
.v2-price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
}
.v2-price-blurred {
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
}
.v2-price-amount {
  font-family: 'Lora', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.025em;
  line-height: 1;
}
.v2-price-per {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(245,240,232,0.32);
}
.v2-apply-btn { width: 100%; justify-content: center; }

/* ─── 20. FAQ ─── */
.v2-faq {
  padding: 120px var(--pad);
  background: var(--white);
}
.v2-faq-inner {
  max-width: 680px;
  margin: 0 auto;
}
.v2-faq-header { margin-bottom: 56px; }
.v2-faq-headline {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text);
  margin-top: 16px;
}

.v2-faq-list { display: flex; flex-direction: column; }
.v2-faq-item { border-bottom: 1px solid var(--border); }
.v2-faq-item:first-of-type { border-top: 1px solid var(--border); }

.v2-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.v2-faq-q-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  text-align: left;
  flex: 1;
}
.v2-faq-chevron {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(14,14,14,0.04);
  border: 1px solid rgba(14,14,14,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.v2-faq-chevron svg {
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), color 0.22s ease;
  color: var(--text-muted);
}
.v2-faq-item.open .v2-faq-chevron {
  background: var(--coral);
  border-color: var(--coral);
}
.v2-faq-item.open .v2-faq-chevron svg {
  transform: rotate(180deg);
  color: var(--white);
}

.v2-faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.v2-faq-item.open .v2-faq-a { max-height: 600px; opacity: 1; }
.v2-faq-a-text {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 26px;
}

/* ─── 21. FOOTER ─── */
.v2-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0 var(--pad);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.v2-footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
}
.v2-footer-links {
  display: flex;
  gap: 24px;
}
.v2-footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.v2-footer-links a:hover { color: var(--text); }
.v2-footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}
.v2-footer-mail {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.v2-footer-mail:hover { color: var(--text); }

/* ─── 22. UTILITY ─── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ─── 23. RESPONSIVE — TABLET ─── */
@media (max-width: 900px) {

  .v2-hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    gap: 40px;
    min-height: auto;
  }
  .v2-hero-image-wrap {
    animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.25s forwards !important;
  }
  .v2-hero-portrait { height: 58vw; max-height: 480px; }

  .v2-struggle-cards { grid-template-columns: 1fr; gap: 36px; }
  .v2-struggle-card:nth-child(2),
  .v2-struggle-card:nth-child(3) { margin-top: 0; }

  .v2-method-grid { grid-template-columns: 1fr; gap: 14px; }
  .v2-method-arrow-col { transform: rotate(90deg); }

  .v2-venue-photos { grid-template-columns: repeat(2, 1fr); }
  .v2-venue-info   { grid-template-columns: 1fr; gap: 24px; }
  .v2-sched-grid   { grid-template-columns: 1fr; }

  .v2-takeaways-grid { grid-template-columns: 1fr; gap: 44px; }

  .v2-why-cards { grid-template-columns: 1fr; }

  .v2-for-cols { grid-template-columns: 1fr; }

  .v2-founders-inner { grid-template-columns: 1fr; gap: 56px; }
  .v2-founders-photos { max-width: 280px; }

}

/* ─── 24. RESPONSIVE — MOBILE ─── */
@media (max-width: 600px) {
  :root { --pad: 20px; }

  /* Nav */
  .v2-nav { padding: 0 20px; }
  .v2-nav .btn { font-size: 12px; padding: 0 14px; height: 38px; }

  /* Hero */
  .v2-hero { padding: 92px 20px 56px; gap: 32px; }
  .v2-hero h1 { font-size: 40px; }
  .v2-hero-body { font-size: 16px; }
  .v2-hero-portrait { height: 75vw; }
  .v2-hero-cta { flex-direction: column; align-items: stretch; }
  .v2-hero-cta .btn { width: 100%; justify-content: center; }
  .v2-hero-note { text-align: center; }


  /* Sections */
  .v2-struggle,
  .v2-approach-inner,
  .v2-schedule-inner,
  .v2-takeaways,
  .v2-why-inner,
  .v2-for-inner,
  .v2-founders-inner,
  .v2-price,
  .v2-faq { padding-top: 80px; padding-bottom: 80px; }

  .v2-struggle { padding-left: 20px; padding-right: 20px; }

  /* Type */
  .v2-struggle-headline { font-size: 32px; margin-bottom: 48px; }
  .v2-approach-headline { font-size: 34px; }
  .v2-schedule-headline { font-size: 36px; }
  .v2-why-headline { font-size: 30px; }
  .v2-for-headline { font-size: 30px; }
  .v2-founders-headline { font-size: 28px; }
  .v2-takeaways-headline { font-size: 32px; }

  /* Cards */
  .v2-method-card { padding: 32px 24px; }
  .v2-for-col { padding: 32px 24px; }
  .v2-for-list li { font-size: 16px; }

  /* Price */
  .v2-price-top { padding: 32px 28px 26px; }
  .v2-price-bottom { padding: 24px 28px 32px; }
  .v2-price-amount { font-size: 40px; }

  /* Founders */
  .v2-founders-photos { max-width: 240px; }

  /* FAQ */
  .v2-faq-q-text { font-size: 15px; }
  .v2-faq-a-text { font-size: 16px; }

  /* Footer */
  .v2-footer {
    height: auto;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .v2-footer-links { justify-content: center; }
}

/* ─── Slide-from-right animation (why-retreat cards) ─── */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-from-right {
  opacity: 0;
  transform: translateX(60px);
}
.slide-from-right.visible {
  animation: slideInRight 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
.slide-from-right.d1.visible { animation-delay: 0.12s; }
.slide-from-right.d2.visible { animation-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .slide-from-right { opacity: 1; transform: none; }
  .slide-from-right.visible { animation: none; }
}


/* ═══════════════════════════════════════════════
   V3 PORT — "Open water" sections
   ═══════════════════════════════════════════════ */

/* ─── Wave dividers ─── */
.wave-sep {
  display: block;
  width: 102%;
  margin-left: -1%;
  height: clamp(36px, 6vw, 80px);
}

/* ═══ METHOD / JOURNEY — deep water ═══ */
.method {
  position: relative;
  background: linear-gradient(to bottom, var(--ocean) 0%, var(--ocean-deep) 55%, var(--ocean-deepest) 100%);
  color: var(--cream);
  padding: clamp(80px, 11vw, 150px) var(--pad) clamp(100px, 14vw, 180px);
  overflow: hidden;
}
.method::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(4px 2px at 12% 20%, rgba(245,235,208,0.3) 50%, transparent 51%),
    radial-gradient(3px 1.5px at 80% 12%, rgba(245,235,208,0.25) 50%, transparent 51%),
    radial-gradient(5px 2px at 64% 38%, rgba(245,235,208,0.22) 50%, transparent 51%),
    radial-gradient(3px 1.5px at 30% 64%, rgba(245,235,208,0.2) 50%, transparent 51%),
    radial-gradient(4px 2px at 90% 70%, rgba(245,235,208,0.25) 50%, transparent 51%),
    radial-gradient(5px 2px at 45% 88%, rgba(245,235,208,0.2) 50%, transparent 51%);
  pointer-events: none;
}
.method-inner { position: relative; max-width: var(--max-w); margin: 0 auto; }
.method-header { max-width: 720px; margin-bottom: clamp(60px, 8vw, 110px); }
.method .eyebrow { color: var(--amber); margin-bottom: 24px; }
.method h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--cream-light);
  margin-bottom: 28px;
}
.method h2 em { font-style: italic; color: var(--amber); }
.method-intro {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  color: rgba(245, 235, 208, 0.8);
  max-width: 560px;
}

.method-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 580px;
  margin: clamp(64px, 9vw, 116px) auto 0;
  padding: clamp(40px, 5vw, 60px) clamp(28px, 4vw, 52px);
  background: linear-gradient(180deg, rgba(245, 235, 208, 0.08), rgba(245, 235, 208, 0.025));
  border: 1px solid rgba(245, 235, 208, 0.16);
  border-radius: 28px;
  box-shadow: 0 34px 70px rgba(6, 18, 32, 0.4);
}
.method-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% -10%, rgba(232, 105, 74, 0.16), transparent 60%);
  pointer-events: none;
}
.method-cta-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 4px;
  border-radius: 50%;
  color: var(--coral);
  background: rgba(232, 105, 74, 0.15);
  border: 1px solid rgba(232, 105, 74, 0.42);
}
.method-cta-title {
  position: relative;
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream-light);
}
.method-cta-note {
  position: relative;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  color: rgba(245, 235, 208, 0.78);
  max-width: 40ch;
}
.method-cta .btn { position: relative; margin-top: 8px; }

.journey { position: relative; }
.journey-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 56px;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.journey-line svg { display: block; height: 100%; width: 56px; overflow: visible; }
.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(20px, 4vw, 48px);
  padding-bottom: clamp(56px, 8vw, 100px);
}
.journey-step:last-child { padding-bottom: 0; }
.journey-node {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(9, 30, 54, 0.92);
  border: 1px solid rgba(245, 235, 208, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex: none;
  box-shadow: 0 0 0 8px var(--ocean-deep);
}
/* nth-child(2)'s ring blends its halo into the section gradient. Icon colour
   stays consistent (amber) across all three phases. */
.journey-step:nth-child(2) .journey-node { box-shadow: 0 0 0 8px var(--ocean); }
.journey-body { max-width: 760px; padding-top: 6px; }
.journey-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 235, 208, 0.55);
  margin-bottom: 10px;
}
.journey-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  color: var(--cream-light);
  margin-bottom: 14px;
}
/* Phase subtitle + question */
.journey-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--amber);
  margin: -4px 0 12px;
}
.journey-q {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.65;
  color: rgba(245, 235, 208, 0.8);
  max-width: 52ch;
  margin-bottom: 14px;
}

/* "You'll learn how to" accordion */
.journey-learn { border-top: 1px solid rgba(245, 235, 208, 0.16); max-width: 600px; }
.journey-learn-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  min-height: 44px;
  padding: 15px 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 235, 208, 0.72);
  transition: color 0.25s var(--ease);
}
.journey-learn-q:hover { color: var(--cream-light); }
.journey-step.open .journey-learn-q { color: var(--cream-light); }
.journey-chevron {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(245, 235, 208, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 235, 208, 0.78);
  transition: transform 0.45s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.journey-step.open .journey-chevron {
  transform: rotate(45deg);
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.journey-learn-q:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px;
}
.journey-learn-a { height: 0; overflow: hidden; }
.journey-learn-list {
  list-style: none;
  margin: 0;
  padding: 2px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.journey-learn-list li {
  position: relative;
  padding-left: 28px;
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.5;
  color: rgba(245, 235, 208, 0.92);
}
.journey-learn-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.18em;
  width: 16px; height: 16px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8694A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
/* Light the node coral while its phase is open */
.journey-step.open .journey-node {
  color: var(--coral);
  border-color: rgba(232, 105, 74, 0.55);
  box-shadow: 0 0 0 8px var(--ocean-deep), 0 0 26px 2px rgba(232, 105, 74, 0.5);
}

/* ═══ RETREAT / VENUE ═══ */
.retreat {
  background: var(--cream-light);
  color: var(--ink);
  padding: clamp(60px, 8vw, 110px) var(--pad) clamp(90px, 13vw, 170px);
  overflow: hidden;
}
.retreat-inner { max-width: var(--max-w); margin: 0 auto; }
.retreat-header {
  max-width: 800px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.retreat .eyebrow { color: var(--coral-dk); margin-bottom: 24px; }
.retreat h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.retreat h2 em { font-style: italic; color: var(--coral-dk); }
.retreat-header p {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.7;
  color: var(--ink-muted);
  margin-top: clamp(16px, 2vw, 26px);
  max-width: 56ch;
}
.venue-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.venue-item { border-radius: 20px; overflow: hidden; position: relative; }
.venue-item img {
  position: absolute;
  top: -11%; left: 0;
  width: 100%; height: 122%;
  object-fit: cover;
  will-change: transform;
}
.v-a { grid-column: span 7; aspect-ratio: 16 / 10; }
.v-b { grid-column: span 5; aspect-ratio: 4 / 3.57; }
.v-c { grid-column: span 4; aspect-ratio: 4 / 3; }
.v-d { grid-column: span 4; aspect-ratio: 4 / 3; }
.v-e { grid-column: span 4; aspect-ratio: 4 / 3; }
.retreat-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(27, 43, 58, 0.08);
}
.fact-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-dk);
  margin-bottom: 10px;
}
.fact-icon { width: 15px; height: 15px; flex: none; }
.fact-body { font-size: 15px; line-height: 1.65; color: var(--ink-muted); }
.fact-body b { color: var(--ink); font-weight: 600; }

/* ═══ TAKEAWAYS — light sky ═══ */
.takeaways {
  background: linear-gradient(to bottom, var(--sky-pale), var(--sky-light));
  color: var(--ink);
  padding: clamp(100px, 13vw, 170px) var(--pad);
  position: relative;
  overflow: hidden;
}
.takeaways-current {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
  /* Fade the shader out at the top & bottom edges so the wave-divider seams show
     the clean CSS gradient (sky-pale = the wave fill), not the tinted shader. */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%);
}
.takeaways-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.takeaways .eyebrow { color: var(--ocean-deep); margin-bottom: 24px; }
.takeaways h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: clamp(48px, 7vw, 90px);
  max-width: 18ch;
}
.takeaways h2 em { font-style: italic; color: var(--ocean-deep); }
/* ── Before / After toggle ── */
.ta-toggle {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  gap: 4px;
  padding: 5px;
  margin-bottom: clamp(34px, 5vw, 60px);
  border-radius: 999px;
  background: rgba(27, 43, 58, 0.05);
  border: 1px solid rgba(27, 43, 58, 0.09);
}
.ta-toggle-btn {
  position: relative;
  z-index: 1;
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 11px clamp(18px, 2vw, 28px);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: clamp(12px, 1.1vw, 13.5px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.ta-toggle-btn.is-active { color: var(--white); }
.ta-toggle-btn:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }
/* Sliding pill behind the active button */
.ta-toggle-thumb {
  position: absolute;
  z-index: 0;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 6px 16px -8px color-mix(in srgb, var(--coral) 70%, transparent);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.ta-toggle.is-before .ta-toggle-thumb { transform: translateX(0); }
.ta-toggle.is-after .ta-toggle-thumb { transform: translateX(calc(100% + 4px)); }

/* ── Rows ── */
.ta-reveal { position: relative; }
.ta-row {
  --ta-accent: var(--coral);
  display: grid;
  grid-template-columns: clamp(110px, 15vw, 200px) 1fr;
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
  padding: clamp(26px, 3.6vw, 46px) 0;
  border-top: 1px solid rgba(27, 43, 58, 0.13);
}
.ta-row:last-child { border-bottom: 1px solid rgba(27, 43, 58, 0.13); }
.ta-row:nth-child(1) { --ta-accent: var(--coral); }
.ta-row:nth-child(2) { --ta-accent: var(--ocean-deep); }
.ta-row:nth-child(3) { --ta-accent: var(--wood); }

.ta-row-cat {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 2.7vw, 38px);
  line-height: 1.42;
  letter-spacing: -0.015em;
  color: var(--ta-accent);
}

/* Before & after share the same cell (height = the taller of the two, so no
   layout jump) and crossfade based on the toggle state class. */
.ta-row-text { position: relative; display: grid; }
.ta-before,
.ta-after {
  grid-area: 1 / 1;
  align-self: start;
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.95vw, 28px);
  line-height: 1.42;
  letter-spacing: -0.01em;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.ta-before { color: var(--ink); }
.ta-after { color: var(--ink); font-weight: 500; }

.ta-reveal.is-after .ta-before,
.ta-reveal.is-before .ta-after {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.ta-reveal.is-after .ta-after,
.ta-reveal.is-before .ta-before {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ta-before, .ta-after, .ta-toggle-thumb { transition: none; }
}

/* ═══ PRICE — deepest water ═══ */
.price {
  background: linear-gradient(to bottom, var(--ocean-deep), var(--ocean-deepest));
  color: var(--cream);
  padding: clamp(80px, 11vw, 150px) var(--pad) clamp(100px, 13vw, 170px);
  position: relative;
  overflow: hidden;
}
.price::before {
  content: '';
  position: absolute;
  left: 50%; top: 12%;
  width: 90vw; height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(245, 235, 208, 0.08), transparent 65%);
  pointer-events: none;
}
.price-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.price h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream-light);
  margin-bottom: 18px;
}
.price h2 em { font-style: italic; color: var(--amber); }
.price-sub {
  font-size: 16px;
  color: rgba(245, 235, 208, 0.7);
  margin-bottom: clamp(40px, 5vw, 56px);
}
.price-card {
  background: rgba(245, 235, 208, 0.06);
  border: 1px solid rgba(245, 235, 208, 0.2);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 56px);
  text-align: left;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.includes-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 22px;
}
.includes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.8vw, 18px);
  margin-bottom: 0;
}
.includes li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 235, 208, 0.78);
}
.includes li strong { color: var(--cream-light); font-weight: 600; }
.includes li .inc-icon {
  color: var(--amber);
  flex: none;
  width: 18px; height: 18px;
  transform: translateY(2px);
}
.price-anchor {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.65;
  color: rgba(245, 235, 208, 0.66);
  max-width: 62ch;
  margin: clamp(28px, 3.5vw, 40px) 0 0;
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(245, 235, 208, 0.14);
}
.price-amount-block { display: flex; flex-direction: column; gap: 6px; }
.price-amount-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 235, 208, 0.58);
}
.price-note { font-size: 13px; color: rgba(245, 235, 208, 0.55); }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: clamp(24px, 3vw, 36px);
}
.price-amount {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cream-light);
}
/* Price is permanently blurred (revealed only by joining the waitlist) */
.price-amount.is-blurred {
  filter: blur(11px);
  user-select: none;
  pointer-events: none;
}
.price-amount small {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 235, 208, 0.6);
  margin-left: 12px;
}
.price-note {
  margin-top: 26px;
  font-size: 13px;
  color: rgba(245, 235, 208, 0.55);
}

/* ═══ FAQ ═══ */
.faq {
  background: var(--cream-light);
  color: var(--ink);
  padding: clamp(90px, 12vw, 150px) var(--pad);
}
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq .eyebrow { color: var(--coral-dk); margin-bottom: 24px; }
.faq h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 54px);
  letter-spacing: -0.02em;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.faq h2 em { font-style: italic; color: var(--coral-dk); }
.faq-item { border-bottom: 1px solid rgba(27, 43, 58, 0.14); }
.faq-item:first-of-type { border-top: 1px solid rgba(27, 43, 58, 0.14); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 24px 4px;
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.faq-q:hover { color: var(--coral-dk); }
.faq-q:hover .faq-chevron {
  border-color: var(--coral);
  color: var(--coral);
}
.faq-q:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
  border-radius: 6px;
}
.faq-chevron {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(27, 43, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.faq-item.open .faq-chevron {
  transform: rotate(45deg);
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease);
}
.faq-a p {
  padding: 0 4px 26px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 64ch;
}
.faq-a a { color: var(--coral-dk); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Responsive (v3 port) ─── */
@media (max-width: 860px) {
  .retreat-header { grid-template-columns: 1fr; align-items: start; }
  .retreat-facts { grid-template-columns: 1fr; }
  /* Before → after rows stack their label above the text */
  .ta-row { grid-template-columns: 1fr; gap: 14px; }
  .includes { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .v-a, .v-b, .v-c, .v-d, .v-e { grid-column: span 1; aspect-ratio: 4 / 3; }
}

@media (max-width: 560px) {
  .venue-grid { grid-template-columns: 1fr; }
  .v-a, .v-b, .v-c, .v-d, .v-e { aspect-ratio: 16 / 10; }
  .journey-step { grid-template-columns: 44px 1fr; gap: 18px; }
  /* Node is 44px (centre at 22px); the SVG curve is centred at x=28 inside a
     56px-wide line, so shift the line left by 6px to sit under the icons. */
  .journey-line { left: -6px; }
  .journey-node { width: 44px; height: 44px; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .price-row .btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════
   V3 PORT — nav, facilitator, final CTA, misc
   ═══════════════════════════════════════════════ */

/* ─── Navbar (v3 style) ─── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  padding: 12px var(--pad);
  background: rgba(250, 244, 228, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(27, 43, 58, 0.08);
}
.nav-logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo svg { flex: none; }
.nav-links {
  display: flex;
  gap: 36px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav-links a {
  color: rgba(27, 43, 58, 0.72);
  transition: color 0.25s;
  position: relative;
  text-decoration: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav .btn { padding: 11px 22px; font-size: 13.5px; }
@media (max-width: 960px) { .nav-links { display: none; } }

/* ─── Price eyebrow (centered) ─── */
.price .eyebrow { color: var(--amber); margin-bottom: 22px; }

/* ─── Takeaways subtitle ("Your way.") ─── */
.takeaways h2 { margin-bottom: 16px; }
.takeaways-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: clamp(48px, 7vw, 90px);
  max-width: 46ch;
}

/* ═══ FACILITATOR (v3 style) ═══ */
.founder {
  background: var(--cream-light);
  color: var(--ink);
  padding: clamp(90px, 13vw, 160px) var(--pad);
}
.founder-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.founder .founder-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.5;
  color: var(--coral-dk);
  margin-top: -6px;
  margin-bottom: 26px;
  max-width: 46ch;
}
.founder-photo-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  max-width: 440px;
}
.founder-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.founder-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(27, 43, 58, 0.1);
  pointer-events: none;
}
.founder .eyebrow { color: var(--coral-dk); margin-bottom: 24px; }
.founder h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  color: var(--ink);
}
.founder h2 em { font-style: italic; color: var(--coral-dk); }
.founder p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: 18px;
  max-width: 52ch;
}
.founder-sig {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}
.founder-sig span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* ═══ FINAL CTA — oil-pastel painting (hero style) ═══ */
.final-cta {
  position: relative;
  background: url('hero/frame_0000.webp') center / cover no-repeat;
  padding: clamp(130px, 19vw, 230px) var(--pad);
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(251,241,238,0.30) 0%,
    rgba(251,241,238,0.55) 48%,
    rgba(251,241,238,0.86) 100%
  );
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 9vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 26px;
}
.final-cta h2 em { font-style: italic; color: var(--coral-dk); }
.final-cta p {
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.7;
  color: rgba(11,22,35,0.72);
  max-width: 460px;
  margin: 0 auto 40px;
}

@media (max-width: 960px) {
  .founder-inner { grid-template-columns: 1fr; }
  .founder-photo-wrap { max-width: 420px; }
}


/* ═══════════════════════════════════════════════
   GSAP enhancement layer
   ═══════════════════════════════════════════════ */

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  z-index: 200;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--coral), var(--amber));
  pointer-events: none;
  will-change: transform;
}

/* Magnetic buttons get a smooth base */
.btn-lg { will-change: transform; }

/* Safety: never leave content hidden if motion is reduced */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1 !important; transform: none !important; }
  #scroll-progress { display: none; }
  .venue-item img { transform: none !important; }
}


/* ═══════════════════════════════════════════════
   THE RETREAT — restructured (spec + bookable cards + modal)
   ═══════════════════════════════════════════════ */

/* Part 1 — shared spec */
.retreat-spec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px) clamp(20px, 3vw, 40px);
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid rgba(27, 43, 58, 0.08);
  border-radius: 24px;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.spec-item-wide { grid-column: 1 / -1; }
.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.spec-chip {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid rgba(27, 43, 58, 0.14);
  background: var(--cream-light);
}

/* Part 2 — upcoming retreats */
.upcoming-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: clamp(24px, 3vw, 36px);
}
.retreat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.retreat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(27, 43, 58, 0.08);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(11, 22, 35, 0.05);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  max-width: 460px;
}
.retreat-card:hover,
.retreat-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(11, 22, 35, 0.14);
  outline: none;
}
.retreat-card:focus-visible { box-shadow: 0 0 0 3px rgba(232,105,74,0.5), 0 24px 50px rgba(11,22,35,0.14); }
.retreat-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-light);
}
.retreat-card-media .retreat-card-img,
.retreat-card-media .retreat-card-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.retreat-card-canvas { z-index: 1; opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
/* While the WebGL ripple is active, hide the base <img> so the two never
   show at once (no ghost/duplicate); the canvas renders the same framing. */
.retreat-card-canvas.rippling { opacity: 1; }
.retreat-card-canvas.rippling ~ .retreat-card-img { opacity: 0; transition: opacity 0.35s ease; }
.retreat-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2.4vw, 30px);
}
.retreat-card-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 25px);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
}
.retreat-card-name span {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 6px;
}
.retreat-card-meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.retreat-card-metarow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  color: var(--ink-muted);
}
.retreat-card-metarow svg { color: var(--coral-dk); flex: none; }
.retreat-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 43, 58, 0.08);
}
.retreat-card-hint {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--coral-dk);
  transition: transform 0.3s var(--ease);
}
.retreat-card:hover .retreat-card-hint { transform: translateX(4px); }
.retreat-card-apply,
.retreat-card-cta { padding: 11px 22px; font-size: 14px; }
.retreat-card-cta { cursor: pointer; }

/* "More to come" teaser card */
/* "More to come" card uses the standard card format; just isn't modal-clickable */
.retreat-card-soon { cursor: default; }

/* Venue modal */
.venue-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.venue-modal[hidden] { display: none; }
.venue-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 35, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
}
.venue-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--cream-light);
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(11, 22, 35, 0.4);
  opacity: 0;
}
.venue-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.venue-modal-close:hover { background: #fff; transform: rotate(90deg); }
.venue-modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.venue-modal-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1;
}
.venue-modal-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}
.venue-modal-content { padding: clamp(32px, 4vw, 48px); padding-right: clamp(60px, 6vw, 72px); }
.venue-modal-content .eyebrow { color: var(--coral-dk); margin-bottom: 16px; }
.venue-modal-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.venue-modal-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 56ch;
  margin-bottom: 28px;
}
.venue-modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.venue-modal-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid rgba(27, 43, 58, 0.18);
  background: var(--white);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.venue-modal-links a:hover {
  border-color: var(--coral);
  color: var(--coral-dk);
  transform: translateY(-2px);
}
.venue-modal-links a svg { color: var(--coral-dk); }

/* Body scroll-lock while modal open */
html.modal-open { overflow: hidden; }
html.modal-open body { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
.spec-programme-intro { margin-bottom: 18px; max-width: 72ch; }

/* Responsive */
@media (max-width: 760px) {
  .retreat-spec { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .retreat-spec { grid-template-columns: 1fr; }
  .retreat-cards { grid-template-columns: 1fr; }
  .venue-modal-gallery { grid-template-columns: 1fr 1fr; }
  .venue-modal-gallery img { aspect-ratio: 4 / 3; }
  .venue-modal-gallery img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .venue-modal-gallery img:nth-child(n+4) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .retreat-card, .retreat-card-img, .retreat-card-hint,
  .venue-modal-backdrop, .venue-modal-panel, .venue-modal-close { transition: none; }
}


/* ── FAQ "book a call" CTA ── */
.faq-cta {
  text-align: center;
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(40px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.faq-cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.faq-cta-sub {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 52ch;
  margin-bottom: 8px;
}



/* ── Founder LinkedIn link ── */
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #0A66C2;
  text-decoration: none;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.founder-linkedin:hover { transform: translateX(3px); opacity: 0.85; }
.founder-linkedin svg { flex: none; }


/* ── Hero meta chips (same chip shape as the Method section, tuned for the light hero bg) ── */
.v2-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}
.v2-hero-chip {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(11, 22, 35, 0.18);
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: border-color 0.3s, background 0.3s;
}
.v2-hero-chip:hover { border-color: var(--coral); background: rgba(232, 105, 74, 0.12); }
