/* ═══════════════════════════════════════
   WAYFINDER — SHARED STYLESHEET
   Applies to: index.html (.page-home)
               retreat.html (.page-retreat)
═══════════════════════════════════════ */


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

:root {
  --bg: #FFFFFF;
  --surface: #F5F5F3;
  --surface-2: #EFEFED;
  --navy: #0b1623;
  --navy-2: #0f1e30;
  --accent: #1B4F8A;
  --accent-2: #3B8FD0;
  --text: #0E0E0E;
  --text-muted: #6B6B6B;
  --border: #E5E5E3;
  --pad: 120px;
  --cream: #F5F0E8;
}


/* ─── BASE ─── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Crimson Text', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

nav, .page-nav, .page-nav * { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.btn, .input, .pill { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
footer, footer * { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; }


/* ─── SCROLL FADE-IN ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.12s; }
.fade-in.delay-2 { transition-delay: 0.24s; }
.fade-in.delay-3 { transition-delay: 0.36s; }
.fade-in.delay-4 { transition-delay: 0.48s; }


/* ─── GRADIENT TEXT ─── */
.gradient-text-light {
  background: linear-gradient(120deg, #F5F0E8 10%, #A8CFED 60%, #72B3DC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(120deg, #0d1b2a 0%, var(--accent) 60%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ─── KEYFRAMES ─── */
@keyframes draw-strike {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes rotate-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@keyframes breathe {
  0%, 100% { transform: translate(-50%,-50%) scale(1);    opacity: 0.06; }
  50%       { transform: translate(-50%,-50%) scale(1.08); opacity: 0.1; }
}
@keyframes liquid-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  0%   { left: -60%; }
  100% { left: 120%; }
}
@keyframes float-up {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}


/* ─── PILL LABELS ─── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.pill::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  display: block; flex-shrink: 0;
}
.pill-on-dark {
  background: rgba(27,79,138,0.22);
  border: 1px solid rgba(59,143,208,0.35);
  color: rgba(168,207,237,0.9);
}
.pill-on-dark::before { background: rgba(168,207,237,0.8); }
.pill-on-light {
  background: rgba(27,79,138,0.07);
  border: 1px solid rgba(27,79,138,0.18);
  color: var(--accent);
}
.pill-on-light::before { background: var(--accent); }


/* ─── GLASS EFFECTS ─── */
.glass-dark {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(32px) saturate(1.6) brightness(1.1);
  -webkit-backdrop-filter: blur(32px) saturate(1.6) brightness(1.1);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.12),
              0 8px 40px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.15);
  position: relative;
}
.glass-dark::before {
  content: ''; position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  border-radius: 50%; pointer-events: none;
}
.glass-light {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(28px) saturate(1.5) brightness(1.05);
  -webkit-backdrop-filter: blur(28px) saturate(1.5) brightness(1.05);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), inset 0 -1px 0 rgba(0,0,0,0.04),
              0 4px 28px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
}
.glass-light::before {
  content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
  border-radius: 50%; pointer-events: none;
}


/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--cream); font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600; padding: 0 22px; height: 40px;
  border-radius: 6px; border: none; cursor: pointer; text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover { background: #154075; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,79,138,0.35); }
.btn:active { transform: translateY(0); }
.btn-lg { height: 52px; padding: 0 32px; font-size: 15px; }
.btn-dark { background: var(--cream); color: var(--navy); }
.btn-dark:hover { background: #fff; box-shadow: 0 4px 24px rgba(255,255,255,0.2); }
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(245,240,232,0.75);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: var(--cream);
  box-shadow: none;
}


/* ─── FIXED NAV ─── */
.page-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  padding: 0 var(--pad); height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.page-nav-logo {
  font-size: 14px; font-weight: 700; letter-spacing: 5px;
  color: var(--cream); text-decoration: none; transition: color 0.3s ease;
}
.page-nav-right { display: flex; align-items: center; gap: 24px; }
.page-nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; text-decoration: none;
  color: rgba(245,240,232,0.65); letter-spacing: 0.2px;
  transition: color 0.2s ease;
}
.page-nav-link:hover { color: var(--cream); }
.page-nav .btn {
  background: rgba(255,255,255,0.18); color: var(--cream);
  border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.page-nav .btn:hover { background: rgba(255,255,255,0.28); }

.page-nav.is-scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px) saturate(1.8); -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.04);
}
.page-nav.is-scrolled .page-nav-logo { color: var(--text); }
.page-nav.is-scrolled .page-nav-link { color: var(--text-muted); }
.page-nav.is-scrolled .page-nav-link:hover { color: var(--text); }
.page-nav.is-scrolled .btn { background: var(--accent); color: var(--cream); border-color: transparent; backdrop-filter: none; }
.page-nav.is-scrolled .btn:hover { background: #154075; }


/* ─── FOOTER ─── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 0 var(--pad); height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-size: 13px; font-weight: 700; letter-spacing: 4px; color: var(--text); text-decoration: none; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-muted); }


/* ─── HERO — SHARED BASE ─── */
.hero {
  position: relative; display: flex;
  align-items: flex-end; overflow: hidden; background: #0a0a0a;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 115%; object-fit: cover; display: block;
}
.hero-bg::after { content: ''; position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 1; padding: 0 var(--pad) 100px; width: 100%; }

/* ─── HERO — HOME ─── */
.page-home .hero { min-height: 88vh; }
.page-home .hero-bg img { opacity: 0.72; object-position: center 50%; will-change: transform; }
.page-home .hero-bg::after {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.42) 45%, rgba(0,0,0,0.1) 100%);
}
.page-home .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
.page-home .hero h1 { font-size: 76px; font-weight: 800; line-height: 1.1; letter-spacing: -2.5px; color: var(--cream); margin-bottom: 28px; }
.page-home .hero-body { font-size: 18px; color: rgba(245,240,232,0.58); line-height: 1.68; max-width: 480px; margin-bottom: 44px; text-align: center; }

/* ─── HERO — RETREAT ─── */
.page-retreat .hero {
  min-height: 95vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--navy);
  padding: 120px var(--pad) 80px;
  gap: 56px;
  position: relative;
}
.page-retreat .hero-content { display: flex; flex-direction: column; align-items: flex-start; text-align: left; width: 100%; max-width: 100%; justify-self: end; padding: 0; }
.page-retreat .hero h1 { font-size: 64px; font-weight: 800; line-height: 1.08; letter-spacing: -2.5px; color: var(--cream); margin-bottom: 24px; }
.page-retreat .hero-body { font-size: 19px; color: rgba(245,240,232,0.58); line-height: 1.65; max-width: 100%; margin-bottom: 40px; text-align: left; }
.hero-img-col { display: flex; align-items: center; justify-content: flex-start; padding: 0 0 0 8px; }
.hero-portrait { width: 100%; height: calc(95vh - 160px); max-height: 720px; object-fit: cover; border-radius: 20px; display: block; }
.hero-eyebrow { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-meta { margin-top: 80px; display: flex; gap: 48px; align-items: flex-start; }
.hero-meta-num { font-family: 'DM Sans', sans-serif; font-size: 36px; font-weight: 800; color: var(--cream); line-height: 1; }
.hero-meta-label { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 1px; color: rgba(245,240,232,0.42); margin-top: 6px; text-transform: uppercase; }
.hero-meta-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.12); align-self: center; }


/* ═══════════════════════════════════════
   HOME PAGE — NAV + FORMS + INPUTS
═══════════════════════════════════════ */
nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 var(--pad); height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-size: 14px; font-weight: 700; letter-spacing: 5px; color: var(--cream); text-decoration: none; }

.input {
  height: 52px; border-radius: 6px; font-family: inherit;
  font-size: 14px; padding: 0 16px; outline: none;
  transition: border-color 0.2s, background 0.2s; min-width: 280px;
}
.input-glass {
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22);
  color: var(--cream); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.input-glass::placeholder { color: rgba(245,240,232,0.42); }
.input-glass:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
.input-light {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: var(--cream); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.input-light::placeholder { color: rgba(245,240,232,0.38); }
.input-light:focus { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.13); }
.form-row { display: flex; gap: 10px; align-items: center; justify-content: center; }
.form-note { font-size: 12px; color: rgba(245,240,232,0.35); margin-top: 14px; }


/* ═══════════════════════════════════════
   HOME PAGE — WHY PEOPLE STRUGGLE
═══════════════════════════════════════ */
.struggle { padding: 120px var(--pad); background: var(--bg); }
.struggle-header { margin-bottom: 80px; }
.struggle-headline { font-size: 56px; font-weight: 400; line-height: 1.15; letter-spacing: -0.5px; color: var(--text); max-width: 720px; }
.struggle-path-wrap { margin: 0 calc(-1 * var(--pad)); line-height: 0; }
.struggle-path-svg { width: 100%; height: 160px; display: block; overflow: visible; }
.struggle-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 56px; align-items: start; }
.struggle-card {
  background: none; border: none; padding: 0; box-shadow: none;
  border-top: 2px solid var(--text); padding-top: 32px; position: relative;
}
.struggle-card-icon { display: block; color: var(--accent); margin-bottom: 20px; }
.struggle-card-icon svg { display: block; }
.struggle-card-num {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  color: var(--accent); margin-bottom: 28px; text-transform: uppercase;
}
.struggle-card-title { font-size: 24px; font-weight: 600; line-height: 1.3; color: var(--text); margin-bottom: 16px; }
.struggle-card-body { font-size: 17px; color: var(--text-muted); line-height: 1.78; }
.struggle-card-01 { grid-column: auto; }
.struggle-card-02 { margin-top: 80px; }
.struggle-card-03 { margin-top: 24px; }


/* ═══════════════════════════════════════
   HOME PAGE — OUR APPROACH
═══════════════════════════════════════ */
.approach {
  background: var(--navy-2); position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.approach::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
}
.approach-glow {
  position: absolute; pointer-events: none;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,79,138,0.18) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease; z-index: 0;
}
.compass-rose-deco {
  position: absolute; right: -120px; top: 50%;
  width: 700px; height: 700px;
  opacity: 0.06; pointer-events: none;
  animation: rotate-slow 160s linear infinite;
}
.approach-inner { padding: 120px var(--pad); position: relative; z-index: 1; }
.approach-headline { font-size: 44px; font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 72px; max-width: 580px; }
.approach-bridge { max-width: 760px; margin-bottom: 80px; }
.approach-bridge-hook { font-size: 36px; font-weight: 600; line-height: 1.25; letter-spacing: -0.5px; color: var(--cream); margin-bottom: 20px; }
.approach-bridge-statement { font-size: 28px; font-weight: 400; line-height: 1.45; letter-spacing: -0.3px; color: rgba(245,240,232,0.5); }
.approach-bridge-payoff { font-size: 28px; font-weight: 400; line-height: 1.45; letter-spacing: -0.3px; color: rgba(245,240,232,0.85); margin-top: 4px; }

/* Map vs Compass split */
.mc-split { display: grid; grid-template-columns: 1fr 64px 1fr; border-radius: 18px; overflow: hidden; margin-bottom: 72px; min-height: 440px; border: 1px solid rgba(255,255,255,0.07); }
.mc-map-col, .mc-compass-col { position: relative; overflow: hidden; }
.mc-map-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1200&q=80') center/cover; opacity: 0.22; }
.mc-compass-bg-img { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1516912481808-3406841bd33c?w=1200&q=80') center/cover; opacity: 0.28; }
.mc-map-content {
  position: relative; z-index: 1; padding: 52px; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(160deg, rgba(11,22,35,0.9) 0%, rgba(11,22,35,0.68) 100%);
}
.mc-compass-content {
  position: relative; z-index: 1; padding: 52px; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(160deg, rgba(21,64,117,0.82) 0%, rgba(27,79,138,0.5) 100%);
}
.mc-divider { background: rgba(255,255,255,0.03); display: flex; align-items: center; justify-content: center; font-size: 18px; color: rgba(255,255,255,0.2); border-left: 1px solid rgba(255,255,255,0.05); border-right: 1px solid rgba(255,255,255,0.05); }
.mc-col-label { font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; }
.mc-map-content .mc-col-label { color: rgba(255,255,255,0.3); }
.mc-compass-content .mc-col-label { color: rgba(168,207,237,0.7); }
.mc-col-title { font-size: 30px; font-weight: 700; line-height: 1.25; margin-bottom: 24px; }
.mc-map-content .mc-col-title { color: rgba(255,255,255,0.55); }
.mc-compass-content .mc-col-title { color: var(--cream); }
.mc-body { font-size: 16px; line-height: 1.7; }
.mc-map-content .mc-body { color: rgba(255,255,255,0.42); }
.mc-compass-content .mc-body { color: rgba(245,240,232,0.72); }

/* Assessment callout */
.assessment-callout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 52px 56px;
  background: rgba(255,255,255,0.03); backdrop-filter: blur(8px); margin-bottom: 80px;
}
.assessment-callout-label { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(168,207,237,0.7); margin-bottom: 16px; display: block; }
.assessment-callout-title { font-size: 32px; font-weight: 600; line-height: 1.2; color: var(--cream); margin-bottom: 18px; letter-spacing: -0.5px; }
.assessment-callout-body { font-size: 17px; color: rgba(245,240,232,0.58); line-height: 1.72; }
.assessment-callout-right { display: flex; flex-direction: column; gap: 24px; }
.assessment-callout-stat { font-size: 48px; font-weight: 800; color: var(--cream); font-family: 'DM Sans', sans-serif; line-height: 1; }
.assessment-callout-stat span { display: block; font-size: 15px; font-weight: 400; color: rgba(245,240,232,0.5); margin-top: 8px; font-family: 'Crimson Text', serif; line-height: 1.5; }
.assessment-callout-btn { display: inline-block; background: var(--cream); color: var(--navy); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; padding: 14px 28px; border-radius: 100px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s ease; align-self: flex-start; }
.assessment-callout-btn:hover { background: rgba(245,240,232,0.88); }

/* Offerings */
.offerings-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: start; }
.offering-wrap { display: flex; flex-direction: column; gap: 0; }
.offering-card { position: relative; border-radius: 18px; overflow: hidden; min-height: 440px; transition: transform 0.35s cubic-bezier(0.2,0,0,1); }
.offering-card-center { min-height: 440px; }
.offering-card:hover { transform: translateY(-5px); }
.offering-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.55s cubic-bezier(0.2,0,0,1); }
.offering-card:hover .offering-card-bg { transform: scale(1.04); }
.offering-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 60%, transparent 100%); }
.offering-card-text { padding: 22px 4px 0; }
.offering-card-title { font-size: 22px; font-weight: 600; line-height: 1.25; color: rgba(245,240,232,0.92); margin-bottom: 10px; }
.offering-card-body { font-size: 16px; color: rgba(245,240,232,0.48); line-height: 1.72; }

/* Landscape separator */
.separator-landscape { padding: 80px var(--pad) 0; background: var(--bg); }
.separator-landscape img { width: 100%; border-radius: 20px; display: block; object-fit: cover; height: 520px; }


/* ═══════════════════════════════════════
   HOME PAGE — SOCIAL PROOF
═══════════════════════════════════════ */
.social-proof { padding: 120px var(--pad); background: var(--bg); }
.social-proof-header { margin-bottom: 64px; }
.social-proof-headline { font-size: 52px; font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; }
.quotes-bento { display: flex; flex-direction: column; gap: 20px; }
.quotes-asymmetric { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; }
.quotes-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote-image { border-radius: 14px; overflow: hidden; position: relative; }
.quote-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quote-stat { border-radius: 14px; padding: 36px; background: var(--navy); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.quote-stat::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top left, rgba(59,143,208,0.18) 0%, transparent 60%); pointer-events: none; }
.quote-stat-num { font-family: 'DM Sans', sans-serif; font-size: 72px; font-weight: 800; line-height: 1; color: var(--cream); margin-bottom: 12px; position: relative; z-index: 1; }
.quote-stat-text { font-size: 17px; color: rgba(245,240,232,0.62); line-height: 1.55; position: relative; z-index: 1; }
.quote-stat-source { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,240,232,0.28); margin-top: 20px; position: relative; z-index: 1; }
.quote-featured {
  grid-row: span 2; border-radius: 18px; padding: 52px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(140deg, var(--accent) 0%, #0f2d52 100%);
  background-size: 200% 200%; animation: liquid-shift 10s ease infinite;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 48px rgba(27,79,138,0.28), inset 0 1px 0 rgba(255,255,255,0.14);
}
.quote-featured::before { content: '"'; position: absolute; top: 24px; left: 36px; font-size: 160px; line-height: 1; font-weight: 800; color: rgba(255,255,255,0.07); font-family: Georgia, serif; pointer-events: none; }
.quote-featured .qt { font-size: 22px; color: var(--cream); line-height: 1.72; font-style: italic; flex: 1; margin-bottom: 36px; position: relative; z-index: 1; }
.quote-featured .qa { font-size: 14px; font-weight: 600; color: rgba(245,240,232,0.92); position: relative; z-index: 1; }
.quote-featured .qr { font-size: 12px; color: rgba(245,240,232,0.48); margin-top: 4px; position: relative; z-index: 1; }
.quote-small { border-radius: 14px; padding: 32px; background: var(--surface); border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.quote-small:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.quote-small .qt { font-size: 17px; color: var(--text); line-height: 1.72; font-style: italic; flex: 1; margin-bottom: 20px; }
.quote-small .qa { font-size: 13px; font-weight: 600; color: var(--text); }
.quote-small .qr { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

/* CTA strikethrough */
.word-strike { position: relative; display: inline-block; }
.word-strike .word { color: rgba(245,240,232,0.36); }
.strike-line { position: absolute; left: 0; right: 0; top: 48%; height: 6px; background: var(--cream); border-radius: 2px; transform: scaleX(0); transform-origin: left; animation: draw-strike 0.65s cubic-bezier(0.4,0,0.2,1) 1.0s forwards; }


/* ═══════════════════════════════════════
   HOME PAGE — FACILITATORS
═══════════════════════════════════════ */
.facilitators { background: var(--surface); padding: 120px var(--pad); border-top: 1px solid var(--border); }
.facilitators-header { margin-bottom: 72px; }
.facilitators-headline { font-size: 52px; font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; color: var(--text); }
.facilitator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.facilitator-card { display: flex; flex-direction: column; }
.facilitator-portrait { width: 100%; aspect-ratio: 4/3; border-radius: 14px; margin-bottom: 28px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; background: var(--surface-2); }
.facilitator-portrait span { font-size: 11px; font-weight: 600; letter-spacing: 3px; color: var(--text-muted); opacity: 0.3; text-transform: uppercase; }
.facilitator-name { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.facilitator-path { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: 0.3px; margin-bottom: 16px; }
.facilitator-bio { font-size: 17px; color: var(--text-muted); line-height: 1.8; }


/* ═══════════════════════════════════════
   HOME PAGE — CTA
═══════════════════════════════════════ */
.cta { padding: 0 var(--pad) 100px; background: var(--bg); }
.cta-card { position: relative; border-radius: 24px; overflow: hidden; padding: 100px 60px; text-align: center; display: flex; align-items: center; justify-content: center; min-height: 440px; }
.cta-card-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?w=2400&q=80') center/cover; }
.cta-card-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,0,0,0.62) 0%, rgba(5,18,36,0.72) 100%); }
.cta-inner { position: relative; z-index: 1; max-width: 600px; width: 100%; }
.cta-headline { font-size: 64px; font-weight: 700; line-height: 1.08; letter-spacing: -2px; color: var(--cream); margin-bottom: 20px; }
.cta-headline .word-strike-dark { position: relative; display: inline-block; }
.cta-headline .word-strike-dark .word { color: rgba(245,240,232,0.22); }
.cta-headline .word-strike-dark .strike-line-dark { position: absolute; left: 0; right: 0; top: 50%; height: 5px; background: rgba(245,240,232,0.7); border-radius: 2px; transform: scaleX(0); transform-origin: left; }
.cta-headline .word-strike-dark .strike-line-dark.animated { transform: scaleX(1); transition: transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.cta-body { font-size: 17px; color: rgba(245,240,232,0.5); line-height: 1.72; max-width: 420px; margin: 0 auto 44px; }
.cta-pill-form { display: flex; align-items: center; background: rgba(255,255,255,0.1); backdrop-filter: blur(24px) saturate(1.5); -webkit-backdrop-filter: blur(24px) saturate(1.5); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 5px 5px 5px 24px; max-width: 480px; margin: 0 auto 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); }
.cta-pill-input { flex: 1; min-width: 0; background: none; border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--cream); }
.cta-pill-input::placeholder { color: rgba(245,240,232,0.38); }
.cta-pill-btn { flex-shrink: 0; background: var(--cream); color: var(--navy); border: none; border-radius: 100px; height: 46px; padding: 0 28px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background 0.18s ease, transform 0.18s ease; }
.cta-pill-btn:hover { background: #ffffff; transform: scale(1.02); }
.cta-note { font-size: 12px; color: rgba(245,240,232,0.25); }


/* ═══════════════════════════════════════
   RETREAT PAGE — PROGRAMME
═══════════════════════════════════════ */
.programme { background: var(--navy-2); position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
.programme::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E"); opacity: 0.025; }
.programme-inner { padding: 120px var(--pad); position: relative; z-index: 1; }
.programme-header { margin-bottom: 80px; max-width: 640px; }
.programme-headline { font-size: 54px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--cream); margin-bottom: 20px; }
.programme-sub { font-size: 19px; color: rgba(245,240,232,0.52); line-height: 1.65; }

.prog-phases { display: grid; grid-template-columns: repeat(5, 1fr); align-items: flex-end; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.prog-phase-lbl { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,232,0.28); }
.prog-phase-before { grid-column: 1; }
.prog-phase-retreat { grid-column: 2 / 5; padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.07); border-right: 1px solid rgba(255,255,255,0.07); }
.prog-phase-after { grid-column: 5; padding-left: 24px; }
.prog-groups { display: grid; grid-template-columns: repeat(5, 1fr); padding: 16px 0 24px; }
.prog-group-cell { padding-right: 20px; }
.prog-group-badge { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; }
.prog-group-badge-map { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(245,240,232,0.4); }
.prog-group-badge-compass { background: rgba(27,79,138,0.28); border: 1px solid rgba(59,143,208,0.3); color: rgba(168,207,237,0.85); }
.prog-group-badge-action { background: rgba(27,79,138,0.12); border: 1px solid rgba(59,143,208,0.15); color: rgba(168,207,237,0.5); }
.prog-cards-h { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.prog-cards-h::before { content: ''; position: absolute; top: 11px; left: 5px; right: 5px; height: 1px; background: rgba(255,255,255,0.09); z-index: 0; }
.prog-card-h { padding-right: 28px; }
.prog-card-h:last-child { padding-right: 0; }
.prog-card-dot { width: 10px; height: 10px; border-radius: 50%; margin-bottom: 24px; position: relative; z-index: 1; border: 1.5px solid rgba(255,255,255,0.18); background: var(--navy-2); }
.prog-card-before .prog-card-dot { border-color: rgba(245,240,232,0.28); background: rgba(245,240,232,0.12); }
.prog-card-map    .prog-card-dot { border-color: rgba(245,240,232,0.35); background: rgba(245,240,232,0.18); }
.prog-card-compass .prog-card-dot { border-color: rgba(59,143,208,0.9); background: rgba(59,143,208,0.55); box-shadow: 0 0 10px rgba(59,143,208,0.4); }
.prog-card-action .prog-card-dot { border-color: rgba(59,143,208,0.4); background: rgba(59,143,208,0.2); }
.prog-card-after  .prog-card-dot { border-color: rgba(245,240,232,0.2); background: rgba(245,240,232,0.08); }
.prog-card-num { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; color: rgba(245,240,232,0.2); margin-bottom: 10px; display: block; }
.prog-card-title { font-size: 17px; font-weight: 700; line-height: 1.3; letter-spacing: -0.2px; color: var(--cream); margin-bottom: 12px; }
.prog-card-desc { font-size: 14px; color: rgba(245,240,232,0.42); line-height: 1.72; margin-bottom: 20px; }
.prog-outcome-label { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(168,207,237,0.45); margin-bottom: 8px; display: block; }
.prog-outcome-text { font-size: 13px; color: rgba(245,240,232,0.55); line-height: 1.65; font-style: italic; }

.programme-outcome { margin-top: 80px; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 56px; background: rgba(255,255,255,0.03); backdrop-filter: blur(8px); }
.programme-outcome-label { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(168,207,237,0.7); margin-bottom: 20px; display: block; }
.programme-outcome-title { font-size: 34px; font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; color: var(--cream); margin-bottom: 48px; max-width: 560px; }
.programme-outcome-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.outcome-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; gap: 20px; transition: background 0.2s ease, border-color 0.2s ease; }
.outcome-card:hover { background: rgba(59,143,208,0.07); border-color: rgba(59,143,208,0.2); }
.outcome-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(27,79,138,0.35); border: 1px solid rgba(59,143,208,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: rgba(168,207,237,0.9); }
.outcome-card-text { font-size: 15px; color: rgba(245,240,232,0.72); line-height: 1.6; font-family: 'Crimson Text', Georgia, serif; }
.outcome-card-text strong { display: block; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--cream); margin-bottom: 6px; }

/* ─── RETREAT — WHY THIS RETREAT ─── */
.why-retreat { background: var(--cream); border-top: 1px solid rgba(11,22,35,0.07); }
.why-retreat-inner { padding: 120px var(--pad); max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 64px; }
.why-retreat-header { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; max-width: 640px; }
.why-retreat-headline { font-size: 48px; font-weight: 800; letter-spacing: -1.8px; line-height: 1.1; color: var(--navy); }
.why-retreat-sub { font-size: 17px; color: rgba(11,22,35,0.5); line-height: 1.65; }

.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; }

.why-card { background: #fff; border: 1px solid rgba(11,22,35,0.08); border-radius: 20px; padding: 40px 36px; display: flex; flex-direction: column; gap: 16px; transition: box-shadow 0.25s ease; }
.why-card:hover { box-shadow: 0 12px 48px rgba(11,22,35,0.1); }

.why-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 4px; }
.why-num { font-size: 13px; font-weight: 700; color: rgba(11,22,35,0.18); letter-spacing: 0.05em; }
.why-icon { color: var(--accent); opacity: 0.8; }

.why-card-title { font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.3; letter-spacing: -0.3px; }
.why-card-body { font-size: 15px; color: rgba(11,22,35,0.62); line-height: 1.72; }
.why-card-distinction { font-size: 14px; color: var(--accent); line-height: 1.65; font-style: italic; margin-top: 4px; padding-top: 16px; border-top: 1px solid rgba(11,22,35,0.07); }

@media (max-width: 860px) {
  .why-cards { grid-template-columns: 1fr; gap: 16px; }
  .why-retreat-headline { font-size: 34px; letter-spacing: -1px; }
  .why-retreat-inner { padding: 80px var(--pad); gap: 48px; }
}

/* ─── RETREAT — SCHEDULE ─── */
.schedule { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05); }
.schedule-inner { padding: 120px var(--pad); max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 64px; }
.schedule-header { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; max-width: 600px; }
.schedule-headline { font-size: 54px; font-weight: 800; letter-spacing: -2px; line-height: 1.08; color: var(--cream); }
.schedule-sub { font-size: 17px; line-height: 1.72; color: rgba(245,240,232,0.52); }

.schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; align-items: stretch; }

.schedule-day { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 32px 28px; display: flex; flex-direction: column; gap: 0; }
.schedule-day-full { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.11); }

.schedule-day-label-wrap { display: flex; flex-direction: column; gap: 4px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 0; }
.schedule-day-name { font-size: 18px; font-weight: 700; color: var(--cream); letter-spacing: -0.3px; }
.schedule-day-note { font-size: 12px; color: rgba(245,240,232,0.35); letter-spacing: 0.03em; }

/* Time blocks */
.schedule-blocks { display: flex; flex-direction: column; flex: 1; }
.sblock { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sblock:last-child { border-bottom: none; padding-bottom: 0; }
.sblock:first-child { padding-top: 20px; }
.sblock-time { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(245,240,232,0.28); margin-bottom: 10px; }
.sblock-items { display: flex; flex-direction: column; gap: 6px; }
.sblock-item { font-size: 13px; color: rgba(245,240,232,0.72); line-height: 1.4; display: flex; flex-direction: column; gap: 2px; padding: 9px 12px; border-radius: 8px; }

/* Item type colours */
.sblock-session  { background: rgba(59, 143, 208, 0.12); color: rgba(245,240,232,0.9); }
.sblock-reflect  { background: rgba(168, 137, 200, 0.1); color: rgba(245,240,232,0.62); }
.sblock-move     { background: rgba(114, 176, 136, 0.1); color: rgba(245,240,232,0.62); }
.sblock-meal     { background: rgba(200, 132, 90, 0.1);  color: rgba(245,240,232,0.62); }
.sblock-depart   { background: rgba(245,240,232,0.04);   color: rgba(245,240,232,0.32); }

/* Module badge */
.sblock-module { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #3B8FD0; margin-bottom: 1px; }

/* Takeaways */
.schedule-takeaways { width: 100%; }
.takeaways-label { font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(245,240,232,0.28); text-align: center; margin-bottom: 20px; }
.takeaway-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
.takeaway-chip { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 16px; padding: 24px; display: flex; align-items: flex-start; gap: 16px; }
.takeaway-chip-icon { flex-shrink: 0; color: rgba(245,240,232,0.4); margin-top: 2px; }
.takeaway-chip-title { display: block; font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.takeaway-chip-sub { display: block; font-size: 12.5px; color: rgba(245,240,232,0.42); line-height: 1.5; }

@media (max-width: 860px) {
  .schedule-grid { grid-template-columns: 1fr; gap: 16px; }
  .schedule-headline { font-size: 38px; letter-spacing: -1px; }
  .schedule-inner { padding: 80px var(--pad); gap: 48px; }
  .takeaway-chips { grid-template-columns: 1fr; }
}

/* ─── RETREAT — OUR APPROACH ─── */
.retreat-approach { background: var(--navy-2); position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
.retreat-approach-inner { padding: 120px var(--pad); max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 72px; }
.retreat-approach-header { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; max-width: 680px; }
.retreat-approach-headline { font-size: 54px; font-weight: 800; letter-spacing: -2px; line-height: 1.08; color: var(--cream); }
.retreat-approach-intro { font-size: 17px; line-height: 1.75; color: rgba(245,240,232,0.52); }

.methodology-grid { display: grid; grid-template-columns: 1fr 56px 1fr; align-items: center; width: 100%; gap: 0; }

.method-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px) saturate(1.8) brightness(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.8) brightness(1.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 8px 40px rgba(0,0,0,0.2);
}
.method-card::before {
  content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}
.method-card-compass { background: rgba(27,79,138,0.2); border-color: rgba(59,143,208,0.28); }

.method-card-header { margin-bottom: 32px; }
.method-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 10px; }
.method-card-map .method-badge { background: rgba(255,255,255,0.07); color: rgba(245,240,232,0.45); border: 1px solid rgba(255,255,255,0.1); }
.method-card-compass .method-badge { background: rgba(59,143,208,0.18); color: #3B8FD0; border: 1px solid rgba(59,143,208,0.3); }
.method-card-sub { font-size: 13px; color: rgba(245,240,232,0.32); margin-top: 4px; line-height: 1.5; }

.method-items { display: flex; flex-direction: column; }
.method-item { display: flex; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.method-item:last-child { border-bottom: none; padding-bottom: 0; }
.method-item:first-child { padding-top: 0; }
.method-num { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; flex-shrink: 0; width: 22px; }
.method-card-map .method-num { color: rgba(245,240,232,0.22); }
.method-card-compass .method-num { color: rgba(59,143,208,0.55); }
.method-title { font-size: 16px; font-weight: 500; color: var(--cream); line-height: 1.4; }

.method-arrow { display: flex; align-items: center; justify-content: center; color: rgba(245,240,232,0.18); }
.method-arrow svg { width: 22px; height: 22px; }

@media (max-width: 760px) {
  .methodology-grid { grid-template-columns: 1fr; gap: 12px; }
  .method-arrow { transform: rotate(90deg); }
  .retreat-approach-headline { font-size: 38px; letter-spacing: -1px; }
  .retreat-approach-inner { padding: 80px var(--pad); gap: 48px; }
}

/* ─── MODULE CARDS (3x2 GRID) ─── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.module-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(1.8) brightness(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.8) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 40px rgba(0,0,0,0.2);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.module-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.module-card-commitment {
  background: rgba(27, 79, 138, 0.2);
  border-color: rgba(59, 143, 208, 0.28);
}
.module-card-commitment:hover {
  background: rgba(27, 79, 138, 0.28);
  border-color: rgba(59, 143, 208, 0.4);
}
.module-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(168, 207, 237, 0.45);
}
.module-card-commitment .module-num { color: rgba(168, 207, 237, 0.8); }
.module-title {
  font-size: 22px; font-weight: 700; line-height: 1.25; letter-spacing: -0.3px;
  color: var(--cream); font-family: 'Crimson Text', serif;
}
.module-content {
  font-size: 14px; color: rgba(245, 240, 232, 0.52); line-height: 1.72;
  font-family: 'DM Sans', sans-serif; flex: 1;
}
.module-outcome {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 18px; margin-top: 4px;
}
.module-outcome-label {
  font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(59, 143, 208, 0.65); margin-bottom: 7px; display: block;
}
.module-card-commitment .module-outcome-label { color: rgba(168, 207, 237, 0.8); }
.module-outcome-text {
  font-size: 13px; color: rgba(245, 240, 232, 0.75); line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}


/* ─── OUTCOME BENTO BOXES ─── */
.outcome-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.outcome-bento-box { border-radius: 20px; padding: 44px 40px; display: flex; flex-direction: column; gap: 36px; }
.outcome-bento-clarity { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); }
.outcome-bento-action { background: rgba(27,79,138,0.18); border: 1px solid rgba(59,143,208,0.22); }
.outcome-bento-eyebrow { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(168,207,237,0.6); display: block; margin-bottom: 10px; }
.outcome-bento-action .outcome-bento-eyebrow { color: rgba(168,207,237,0.9); }
.outcome-bento-tagline { font-size: 22px; font-weight: 700; line-height: 1.25; letter-spacing: -0.3px; color: var(--cream); }
.outcome-bento-items { display: flex; flex-direction: column; gap: 28px; }
.outcome-bento-item { display: flex; gap: 16px; align-items: flex-start; }
.outcome-bento-icon { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(27,79,138,0.3); border: 1px solid rgba(59,143,208,0.2); color: rgba(168,207,237,0.85); }
.outcome-bento-action .outcome-bento-icon { background: rgba(59,143,208,0.2); border-color: rgba(59,143,208,0.35); }
.outcome-bento-text strong { display: block; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 5px; }
.outcome-bento-text p { font-size: 15px; color: rgba(245,240,232,0.55); line-height: 1.65; font-family: 'Crimson Text', Georgia, serif; }


/* ═══════════════════════════════════════
   RETREAT PAGE — WHO THIS IS FOR
═══════════════════════════════════════ */
.fit { padding: 120px var(--pad); background: var(--bg); }
.fit-header { margin-bottom: 72px; }
.fit-headline { font-size: 54px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--text); margin-bottom: 16px; }
.fit-sub { font-size: 19px; color: var(--text-muted); line-height: 1.6; max-width: 540px; }
.fit-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 680px; }
.fit-col { border-radius: 20px; padding: 48px; }
.fit-col-for { background: var(--navy); position: relative; overflow: hidden; }
.fit-col-for::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at top left, rgba(59,143,208,0.15) 0%, transparent 60%); }
.fit-col-not { background: var(--navy); position: relative; overflow: hidden; }
.fit-col-not::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at bottom right, rgba(59,143,208,0.12) 0%, transparent 60%); }
.fit-col-label { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; display: block; }
.fit-col-for .fit-col-label { color: rgba(168,207,237,0.7); }
.fit-col-not .fit-col-label { color: rgba(168,207,237,0.7); }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }
.fit-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; line-height: 1.65; }
.fit-col-for .fit-list li { color: rgba(245,240,232,0.78); }
.fit-col-not .fit-list li { color: rgba(245,240,232,0.78); }
.fit-check, .fit-x { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.fit-check { background: rgba(59,143,208,0.2); }
.fit-check svg { color: rgba(168,207,237,0.9); }
.fit-x { background: rgba(0,0,0,0.06); }
.fit-x svg { color: var(--text-muted); }


/* ═══════════════════════════════════════
   RETREAT PAGE — VALUE
═══════════════════════════════════════ */
.value { background: var(--surface); border-top: 1px solid var(--border); padding: 120px var(--pad); }
.value-header { margin-bottom: 72px; }
.value-headline { font-size: 54px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--text); margin-bottom: 20px; }
.value-sub { font-size: 19px; color: var(--text-muted); line-height: 1.65; max-width: 560px; }
.value-prop-quote { font-size: 26px; font-style: italic; line-height: 1.55; color: var(--text); margin-bottom: 32px; max-width: 480px; border-left: 3px solid var(--accent); padding-left: 28px; }
.value-prop-body { font-size: 18px; color: var(--text-muted); line-height: 1.78; }
.value-prop-body + .value-prop-body { margin-top: 20px; }
.value-includes-label { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 28px; display: block; }
.includes-list { display: flex; flex-direction: column; gap: 0; }
.includes-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.includes-item:first-child { border-top: 1px solid var(--border); }
.includes-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(27,79,138,0.08); border: 1px solid rgba(27,79,138,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.includes-icon svg { color: var(--accent); }
.includes-text strong { display: block; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.includes-text span { font-size: 15px; color: var(--text-muted); line-height: 1.55; }

.venue-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; margin-top: 64px; border-radius: 16px; overflow: hidden; }
.venue-img { overflow: hidden; position: relative; }
.venue-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s cubic-bezier(0.2,0,0,1); }
.venue-img:hover img { transform: scale(1.04); }
.venue-img-main { min-height: 320px; }
.venue-img-small { min-height: 320px; }


/* ═══════════════════════════════════════
   RETREAT PAGE — PRICE
═══════════════════════════════════════ */
.price { padding: 120px var(--pad); background: var(--bg); }
.price-inner { max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 48px; }
.price-header { text-align: center; }
.price-headline { font-size: 36px; font-weight: 800; line-height: 1.15; letter-spacing: -1px; color: var(--text); margin-bottom: 12px; }
.price-sub { font-size: 17px; color: var(--text-muted); line-height: 1.6; }
.price-card { border-radius: 24px; border: 1px solid rgba(11,22,35,0.1); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 8px 48px rgba(0,0,0,0.1); }
.price-card-top { background: #fff; padding: 44px 48px 40px; display: flex; flex-direction: column; }
.price-includes-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(11,22,35,0.35); margin-bottom: 20px; }
.price-includes-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.price-includes-list li { font-size: 15px; color: rgba(11,22,35,0.75); display: flex; align-items: flex-start; gap: 12px; line-height: 1.45; }
.price-includes-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 7px; }
.price-card-bottom { background: var(--navy); padding: 32px 48px 40px; display: flex; flex-direction: column; gap: 20px; }
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price-amount { font-family: 'DM Sans', sans-serif; font-size: 28px; font-weight: 700; color: var(--cream); letter-spacing: -0.5px; }
.price-per { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(245,240,232,0.38); }
.price-apply-btn { display: flex; align-items: center; justify-content: center; width: 100%; }


/* ═══════════════════════════════════════
   RETREAT PAGE — WHY WE BUILT THIS
═══════════════════════════════════════ */
.founders { background: var(--navy); position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
.founders::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E"); opacity: 0.025; }
.founders-inner { padding: 120px var(--pad); position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.founders-eyebrow { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(168,207,237,0.7); margin-bottom: 28px; display: block; }
.founders-headline { font-size: 42px; font-weight: 800; line-height: 1.12; letter-spacing: -1px; color: var(--cream); margin-bottom: 48px; }
.founders-body { font-size: 19px; color: rgba(245,240,232,0.65); line-height: 1.78; }
.founders-body p + p { margin-top: 22px; }
.founders-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.founders-photo { border-radius: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); aspect-ratio: 3/4; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.founders-photo-placeholder { flex: 1; display: flex; align-items: center; justify-content: center; color: rgba(245,240,232,0.15); font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.founders-photo-caption { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: rgba(245,240,232,0.55); line-height: 1.4; }
.founders-photo-caption span { display: block; font-size: 11px; font-weight: 400; color: rgba(245,240,232,0.3); margin-top: 3px; }
.founders-photo-bio { font-size: 13px; color: rgba(245,240,232,0.45); line-height: 1.65; margin-top: 12px; font-family: 'Crimson Text', Georgia, serif; font-style: italic; }


/* ═══════════════════════════════════════
   RETREAT PAGE — HOW TO APPLY
═══════════════════════════════════════ */
.apply { background: var(--navy-2); position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
.apply::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E"); opacity: 0.025; }
.apply-inner { padding: 120px var(--pad); position: relative; z-index: 1; }
.apply-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.apply-headline { font-size: 54px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--cream); margin-bottom: 24px; }
.apply-body { font-size: 18px; color: rgba(245,240,232,0.55); line-height: 1.72; margin-bottom: 48px; max-width: 480px; }
.apply-steps { display: flex; flex-direction: column; gap: 0; }
.apply-step { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.apply-step:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.apply-step-num { font-family: 'DM Sans', sans-serif; width: 32px; height: 32px; border-radius: 50%; background: rgba(27,79,138,0.4); border: 1px solid rgba(59,143,208,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; font-weight: 700; color: rgba(168,207,237,0.9); }
.apply-step-title { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.apply-step-desc { font-size: 16px; color: rgba(245,240,232,0.48); line-height: 1.6; }
.apply-form-card { border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 48px; background: rgba(255,255,255,0.03); backdrop-filter: blur(8px); }
.apply-form-label { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(168,207,237,0.7); margin-bottom: 20px; display: block; }
.apply-form-title { font-size: 28px; font-weight: 700; color: var(--cream); margin-bottom: 12px; letter-spacing: -0.5px; }
.apply-form-sub { font-size: 16px; color: rgba(245,240,232,0.48); line-height: 1.65; margin-bottom: 32px; }
.apply-note { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(245,240,232,0.28); text-align: center; margin-top: 14px; line-height: 1.55; }


/* ═══════════════════════════════════════
   RETREAT PAGE — FAQ
═══════════════════════════════════════ */
.faq { padding: 120px var(--pad); background: var(--bg); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-header { margin-bottom: 64px; }
.faq-headline { font-size: 48px; font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; color: var(--text); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-q-text { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 600; color: var(--text); line-height: 1.4; }
.faq-chevron { width: 28px; height: 28px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-chevron svg { transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-chevron svg { color: white; transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease; opacity: 0; }
.faq-item.open .faq-a { max-height: 400px; opacity: 1; }
.faq-a-inner { font-size: 17px; color: var(--text-muted); line-height: 1.78; padding-bottom: 28px; }


/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
═══════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --pad: 40px; }

  /* Programme timeline — horizontal scroll */
  .prog-phases, .prog-groups, .prog-cards-h {
    display: flex; flex-direction: row;
    overflow-x: auto; gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .prog-phases::-webkit-scrollbar,
  .prog-groups::-webkit-scrollbar,
  .prog-cards-h::-webkit-scrollbar { display: none; }
  .prog-card-h { min-width: 220px; padding-right: 24px; flex-shrink: 0; }
  .prog-group-cell { min-width: 220px; flex-shrink: 0; }
  .prog-phase-lbl { min-width: 220px; flex-shrink: 0; }
  .prog-phase-retreat { min-width: 660px; }

  /* Module cards — 2 col on tablet */
  .modules-grid { grid-template-columns: repeat(2, 1fr); }

  /* Outcome cards — 2 col */
  .programme-outcome-cards { grid-template-columns: 1fr 1fr; }
  .outcome-bento { grid-template-columns: 1fr; }
  .outcome-bento-box { padding: 32px 28px; }

  /* Struggle — 1 col */
  .struggle-cards { grid-template-columns: 1fr; gap: 40px; }
  .struggle-card-02, .struggle-card-03 { margin-top: 0; }

  /* Approach */
  .mc-split { grid-template-columns: 1fr; min-height: auto; }
  .mc-divider { display: none; }
  .mc-map-content, .mc-compass-content { min-height: 280px; }
  .assessment-callout { grid-template-columns: 1fr; gap: 32px; }
  .offerings-grid { grid-template-columns: 1fr; }

  /* Social proof */
  .quotes-asymmetric { grid-template-columns: 1fr; }
  .quote-featured { grid-row: auto; }
  .quotes-stats-row { grid-template-columns: 1fr; }

  /* Facilitators */
  .facilitator-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Fit */
  .fit-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Price */
  .price-layout { grid-template-columns: 1fr; }
  .price-card-bottom { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px; }

  /* Founders */
  .founders-inner { grid-template-columns: 1fr; gap: 56px; }

  /* Apply */
  .apply-split { grid-template-columns: 1fr; gap: 56px; }

  /* CTA */
  .cta { padding: 0 var(--pad) 60px; }
}


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

  /* Nav */
  .page-nav { padding: 0 20px; }
  .page-nav-link { display: none; }
  .page-nav .btn { font-size: 12px; padding: 0 14px; height: 36px; }

  /* Hero — home */
  .page-home .hero { min-height: 92vh; }
  .page-home .hero h1 { font-size: 38px; letter-spacing: -1.5px; }
  .page-home .hero-body { font-size: 16px; max-width: 100%; }
  .cta-pill-form { flex-direction: column; border-radius: 16px; padding: 16px; gap: 10px; }
  .cta-pill-btn { width: 100%; height: 48px; border-radius: 10px; }

  /* Hero — retreat */
  .page-retreat .hero { grid-template-columns: 1fr; min-height: auto; padding: 100px var(--pad) 48px; gap: 36px; }
  .page-retreat .hero-content { justify-self: start; max-width: 100%; }
  .page-retreat .hero h1 { font-size: 40px; letter-spacing: -1.5px; line-height: 1.1; }
  .page-retreat .hero-body { font-size: 16px; max-width: 100%; }
  .hero-img-col { padding: 0; }
  .hero-portrait { height: 56vw; max-height: 420px; border-radius: 14px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }

  /* Section headlines */
  .programme-headline, .fit-headline, .value-headline,
  .price-headline, .apply-headline, .founders-headline { font-size: 36px; letter-spacing: -1px; }
  .struggle-headline { font-size: 38px; }
  .social-proof-headline, .facilitators-headline { font-size: 38px; }
  .faq-headline { font-size: 34px; }
  .cta-headline { font-size: 44px; }
  .programme-outcome-title { font-size: 26px; }
  .assessment-callout-title { font-size: 26px; }

  /* Module cards — 1 col on mobile */
  .modules-grid { grid-template-columns: 1fr; }

  /* Programme */
  .programme-inner { padding: 80px var(--pad); }
  .programme-outcome { padding: 32px 24px; }
  .programme-outcome-cards { grid-template-columns: 1fr; }

  /* Struggle path — hide svg connector */
  .struggle-path-wrap { display: none; }
  .struggle-cards { padding-top: 0; }

  /* Approach */
  .approach-bridge-hook { font-size: 26px; }
  .approach-bridge-statement, .approach-bridge-payoff { font-size: 20px; }
  .approach-headline { font-size: 32px; }

  /* Price card */
  .price-card-top { padding: 40px 32px 32px; }
  .price-amount { font-size: 72px; }
  .price-card-bottom { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .price-apply-btn { width: calc(100% - 48px); margin: 0 24px 28px; }

  /* Founders photos */
  .founders-photos { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Apply form card */
  .apply-form-card { padding: 32px 24px; }
  .apply-inner { padding: 80px var(--pad); }

  /* Value */
  .value { padding: 80px var(--pad); }
  .value-prop-quote { font-size: 21px; }

  /* Venue strip — stack */
  .venue-strip { grid-template-columns: 1fr; }
  .venue-img-main, .venue-img-small { min-height: 220px; }

  /* Fit cols */
  .fit-col { padding: 32px 24px; }

  /* Social proof */
  .quote-featured { padding: 36px 28px; }
  .quote-featured .qt { font-size: 18px; }
  .quote-stat-num { font-size: 52px; }

  /* Facilitator portrait */
  .facilitator-portrait { aspect-ratio: 3/2; }

  /* CTA card */
  .cta-card { padding: 72px 28px; min-height: 360px; }
  .cta-headline { font-size: 40px; letter-spacing: -1.5px; }
  .cta-body { font-size: 16px; }

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

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

  /* Separator landscape */
  .separator-landscape img { height: 280px; }
}
