/* ============================================
   Ace & Breathe — Main Styles
   Design system, reset, typography, layout
   Palette: Warm Ivory, Rich Charcoal, Muted Bronze, Soft Olive
   Typography: Instrument Serif / Cormorant Garamond / Inter
   ============================================ */

:root {
  /* Color tokens */
  --bg: #F8F7F4;
  --bg-alt: #F2F0EB;
  --bg-deep: #EDEBE6;
  --surface: rgba(255, 255, 255, 0.6);
  --surface-solid: #FFFFFF;
  --line: rgba(29, 29, 29, 0.06);
  --line-strong: rgba(29, 29, 29, 0.14);

  --text: #1D1D1D;
  --text-muted: #7A7A7A;
  --text-dim: #B0AFAE;

  --accent: #B89B6D;
  --accent-soft: rgba(184, 155, 109, 0.08);
  --accent-glow: rgba(184, 155, 109, 0.18);

  --support: #8C9773;
  --support-soft: rgba(140, 151, 115, 0.10);

  --overlay: rgba(29, 29, 29, 0.45);
  --overlay-heavy: rgba(29, 29, 29, 0.70);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-blur: 20px;

  /* Typography */
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-alt: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing (8pt based) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;
  --s-10: 160px;

  /* Layout */
  --container: 1280px;
  --gutter: 40px;
  --radius: 2px;
  --radius-md: 4px;
  --radius-lg: 12px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 400ms;
  --dur-slow: 1000ms;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: initial;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  font-weight: 300;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
blockquote { margin: 0; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Selection */
::selection { background: var(--accent); color: var(--bg); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Typography utilities */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--s-5);
}

.section-title .alt-font {
  font-family: var(--font-alt);
  font-style: italic;
  font-weight: 400;
}

.section-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 600px;
}

.accent { color: var(--accent); }
.alt-font { font-family: var(--font-alt); font-style: italic; }

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 800ms var(--ease-out), visibility 800ms;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--accent);
  animation: loader-pulse 1.6s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%, 100% { opacity: 0.2; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ============================================
   BLUR REVEAL
   ============================================ */
.blur-reveal {
  filter: blur(12px);
  opacity: 0;
  will-change: filter, opacity;
  transition: filter 1.2s var(--ease-out), opacity 1.2s var(--ease-out);
}
.blur-reveal.in-view {
  filter: blur(0);
  opacity: 1;
}

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 155, 109, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, width 0.6s var(--ease-out), height 0.6s var(--ease-out), background 0.6s var(--ease-out);
  will-change: transform;
}
.cursor-glow.hero-active {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(184, 155, 109, 0.18) 0%, rgba(184, 155, 109, 0.06) 40%, transparent 65%);
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ============================================
   GRAIN TEXTURE
   ============================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grain-shift 0.5s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2px, 1px); }
  50% { transform: translate(1px, -1px); }
  75% { transform: translate(-1px, 2px); }
}
@media (prefers-reduced-motion: reduce) { .grain { animation: none; } }

/* ============================================
   AMBIENT GRADIENTS
   ============================================ */
.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  will-change: transform;
}
.ambient-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 155, 109, 0.08) 0%, transparent 70%);
  top: 15%;
  left: -10%;
}
.ambient-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(140, 151, 115, 0.06) 0%, transparent 70%);
  top: 55%;
  right: -8%;
}
.ambient-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(184, 155, 109, 0.05) 0%, transparent 70%);
  bottom: 10%;
  left: 40%;
}
.ambient-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(140, 151, 115, 0.04) 0%, transparent 70%);
  top: 40%;
  left: 60%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--s-4) 0;
  transition: background var(--dur-slow) var(--ease-out), backdrop-filter var(--dur-slow);
}
/* Default state: overlaying the dark hero — use light text/buttons */
.nav .brand-mark { color: rgba(255, 255, 255, 0.92); }
.nav .nav-links a { color: rgba(255, 255, 255, 0.72); }
.nav .nav-links a:hover { color: var(--bg); }
.nav .nav-links a::after { background: var(--bg); }
.nav .nav-icon-btn { color: rgba(255, 255, 255, 0.85); }
.nav .nav-icon-btn:hover { color: var(--bg); background: rgba(255, 255, 255, 0.12); }
.nav .nav-toggle span { background: rgba(255, 255, 255, 0.92); }
.nav .btn-nav.btn-ghost-dark {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}
.nav .btn-nav.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--bg);
}

/* Scrolled state: light backdrop with dark text */
.nav.scrolled {
  background: rgba(248, 247, 244, 0.78);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav.scrolled .brand-mark { color: var(--text); }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--text); }
.nav.scrolled .nav-links a::after { background: var(--accent); }
.nav.scrolled .nav-icon-btn { color: var(--text-muted); }
.nav.scrolled .nav-icon-btn:hover { color: var(--text); background: var(--accent-soft); }
.nav.scrolled .nav-toggle span { background: var(--text); }
.nav.scrolled .btn-nav.btn-ghost-dark {
  color: var(--text);
  border-color: var(--line-strong);
  background: transparent;
}
.nav.scrolled .btn-nav.btn-ghost-dark:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.brand-mark {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color var(--dur-slow) var(--ease-out), opacity var(--dur);
}
.nav-links {
  display: flex;
  gap: var(--s-6);
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color var(--dur-slow) var(--ease-out);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  transition: width var(--dur-slow) var(--ease-out), background var(--dur-slow) var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.nav-icon-btn:hover {
  color: var(--text);
  background: var(--accent-soft);
}
.nav-icon-btn svg {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform var(--dur) var(--ease-out), opacity var(--dur);
}
.nav-toggle.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease-out), visibility var(--dur-slow);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.mobile-links a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text);
  transition: color var(--dur);
}
.mobile-links a:hover { color: var(--accent); }

/* ============================================
   HERO — Editorial layout
   Top meta bar | Centered content | Bottom meta bar
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.15);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(29, 29, 29, 0.55) 0%,
      rgba(29, 29, 29, 0.20) 28%,
      rgba(29, 29, 29, 0.30) 55%,
      rgba(29, 29, 29, 0.85) 100%),
    linear-gradient(90deg,
      rgba(29, 29, 29, 0.30) 0%,
      transparent 50%,
      rgba(29, 29, 29, 0.30) 100%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(10, 10, 10, 0.45) 100%);
  pointer-events: none;
}

/* Main content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--s-8) var(--gutter) var(--s-7);
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-7);
  margin-top: var(--s-3);
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  will-change: transform, opacity;
}
.he-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: he-pulse 2.4s ease-in-out infinite;
}
@keyframes he-pulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 155, 109, 0.5); }
  60% { box-shadow: 0 0 0 8px rgba(184, 155, 109, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 155, 109, 0); }
}

/* Headline */
.hero-headline {
  margin-bottom: var(--s-6);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.hl-line {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--bg);
  overflow: hidden;
  padding: 0.05em 0;
  margin-bottom: 2px;
}
.hl-italic-line {
  font-family: var(--font-alt);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  margin-top: 4px;
}
.hl-sub-line {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.005em;
  opacity: 0.95;
  line-height: 1.32;
  margin-top: 2px;
}
.hl-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}
.hl-accent {
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* Divider */
.hl-divider {
  display: flex;
  justify-content: center;
  margin: var(--s-4) auto var(--s-4);
}
.hl-divider-fill {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transform: scaleX(0);
  transform-origin: center;
}

/* Subhead */
.hero-sub {
  max-width: 560px;
  margin: 0 auto var(--s-7);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  will-change: transform, opacity;
}

/* Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  justify-content: center;
  flex-wrap: wrap;
  will-change: transform, opacity;
}
.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
  transition: color var(--dur) var(--ease-out);
}
.hero-secondary-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transform-origin: right;
  transition: transform var(--dur) var(--ease-out), background var(--dur);
}
.hero-secondary-link:hover { color: var(--bg); }
.hero-secondary-link:hover::after {
  transform-origin: left;
  background: var(--accent);
}
.hero-secondary-link svg {
  transition: transform var(--dur) var(--ease-out);
}
.hero-secondary-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
  padding: var(--s-9) 0 var(--s-8);
  background: var(--bg);
}
.philosophy-header {
  text-align: center;
  margin-bottom: var(--s-8);
}
.philosophy-statement {
  max-width: 880px;
  margin: 0 auto;
}
.philosophy-statement p {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}
.philosophy-statement p:last-child {
  font-family: var(--font-alt);
  font-style: italic;
  margin-top: var(--s-2);
}
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  max-width: 1040px;
  margin: 0 auto;
}
.philo-card {
  position: relative;
  padding: var(--s-6) var(--s-5);
  background: var(--surface);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--dur-slow) var(--ease-out), border-color var(--dur-slow);
  will-change: transform;
}
.philo-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: var(--surface-solid);
}
.philo-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--s-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform var(--dur-slow) var(--ease-out);
}
.philo-card:hover .philo-icon {
  transform: rotate(-6deg) scale(1.05);
}
.philo-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
  color: var(--text);
}
.philo-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}
.philo-num {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ============================================
   LEADERSHIP JOURNEY
   ============================================ */
.journey {
  padding: var(--s-9) 0;
  background: var(--bg-alt);
  position: relative;
}
.journey-header {
  margin-bottom: var(--s-8);
}
.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.journey-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-strong);
  transform-origin: top;
  scale: 1 0;
}
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: var(--s-7);
}
.journey-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s-5);
  align-items: start;
  opacity: 0;
  transform: translateX(-12px);
}
.js-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--bg);
  margin-top: 6px;
  position: relative;
  z-index: 2;
  transition: background var(--dur-slow) var(--ease-out);
}
.journey-step.active .js-dot {
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}
.js-content {
  padding-top: 2px;
}
.js-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: var(--s-1);
}
.js-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: var(--s-2);
  color: var(--text);
}
.js-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 540px;
}

/* ============================================
   RETREAT EXPERIENCES
   ============================================ */
.retreats {
  padding: var(--s-9) 0;
  background: var(--bg);
}
.retreats-header {
  margin-bottom: var(--s-7);
}
.retreats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.retreat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow);
  will-change: transform;
}
.retreat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px -24px rgba(29, 29, 29, 0.08);
}
.retreat-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 48px -24px var(--accent-glow);
}
.rc-flag {
  position: absolute;
  top: var(--s-3);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.rc-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.rc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  will-change: transform;
}
.retreat-card:hover .rc-image img {
  transform: scale(1.06);
}
.rc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(29, 29, 29, 0.15) 100%);
  pointer-events: none;
}
.rc-cta {
  position: absolute;
  bottom: var(--s-4);
  right: var(--s-4);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 10px 18px;
  background: rgba(29, 29, 29, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  pointer-events: none;
}
.retreat-card:hover .rc-cta {
  opacity: 1;
  transform: translateY(0);
}
.rc-body {
  padding: var(--s-5);
}
.rc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-3);
}
.rc-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.rc-dur {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.rc-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: var(--s-2);
  color: var(--text);
}
.rc-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: var(--s-9) 0;
  background: var(--bg-alt);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.stats-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
}
.stats-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.stat-card {
  text-align: center;
  padding: var(--s-5);
  background: var(--surface);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-weight: 400;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--s-9) 0;
  background: var(--bg);
  overflow: hidden;
}
.testimonials-header {
  margin-bottom: var(--s-7);
}
.testimonials-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  padding: var(--s-2) 0;
}
.testimonials-track-wrap:active { cursor: grabbing; }
.testimonials-track {
  display: flex;
  gap: var(--s-5);
  padding: 0 var(--gutter);
  width: max-content;
  will-change: transform;
}
.testimonial-card {
  width: 420px;
  flex-shrink: 0;
  padding: var(--s-6) var(--s-5);
  background: var(--surface);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--dur-slow) var(--ease-out);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: var(--surface-solid);
}
.tquote {
  margin-bottom: var(--s-4);
  color: var(--accent);
}
.tquote-text {
  font-family: var(--font-alt);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: var(--s-5);
}
.tquote-author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.tquote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tquote-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.tquote-role {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================================
   FOUNDERS
   ============================================ */
.founders {
  padding: var(--s-9) 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.founders-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: var(--s-8);
  align-items: center;
}
.founders-image-wrapper {
  position: relative;
}
.founders-image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-deep);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out);
}
.founders-image:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 48px rgba(29, 29, 29, 0.12);
}
.founders-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  will-change: transform;
  transition: filter var(--dur-slow) var(--ease-out);
}
.founders-image:hover img {
  filter: grayscale(0) contrast(1.02);
}
.founders-image-shape {
  position: absolute;
  inset: -8px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}
.founders-content {
  max-width: 580px;
}
.founders-texts {
  margin: var(--s-5) 0;
}
.founders-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--s-4);
  font-weight: 300;
  opacity: 0;
  transform: translateY(12px);
}
.founders-link {
  color: var(--accent);
  text-decoration: underline;
  transition: opacity var(--dur);
}
.founders-link:hover { opacity: 0.7; }
.founder-quote {
  position: absolute;
  bottom: -40px;
  left: 20px;
  right: 20px;
  background: var(--surface-solid);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(29, 29, 29, 0.08);
  margin: 0;
  z-index: 2;
}
.founder-quote p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.4;
  font-style: italic;
  color: var(--text);
  font-weight: 400;
}
.founders-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-6) 0;
}
.credential-card {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: var(--surface);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform var(--dur) var(--ease-out), 
              background var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.credential-card:hover {
  transform: translateY(-2px);
  background: var(--surface-solid);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(184, 155, 109, 0.12);
}
.credential-icon {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}
.credential-text {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}
.founder-cta {
  margin-top: var(--s-5);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--s-9) 0 var(--s-8);
  background: var(--bg-alt);
}
.gallery-header {
  text-align: center;
  margin-bottom: var(--s-8);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--s-1);
  max-width: 1400px;
  padding: 0 var(--gutter);
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-deep);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  will-change: transform;
}
.gallery-item:hover img { transform: scale(1.05); }
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(29, 29, 29, 0.4) 100%);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.gallery-item:hover .gi-overlay { opacity: 1; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  min-height: 80vh;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(29, 29, 29, 0.45) 0%,
    rgba(29, 29, 29, 0.20) 50%,
    rgba(29, 29, 29, 0.55) 100%
  );
}
.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--s-6) var(--gutter);
}
.final-cta-eyebrow {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: var(--s-4);
}
.final-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: var(--s-6);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--s-7) 0 var(--s-5);
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-5);
}
.footer-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--s-1);
}
.footer-tag {
  font-family: var(--font-alt);
  font-style: italic;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-meta {
  text-align: right;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-meta p { margin-bottom: var(--s-3); }
.footer-links {
  display: flex;
  gap: var(--s-4);
  justify-content: flex-end;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer-links a {
  color: var(--text-muted);
  transition: color var(--dur);
}
.footer-links a:hover { color: var(--accent); }

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .grain { display: none; }
  .cursor-glow { display: none; }
  .loader { display: none; }
  .hl-word { transform: none; opacity: 1; }
  .hl-divider-fill { transform: scaleX(1); }
  .hero-scroll { opacity: 1; }
  .blur-reveal { filter: none; opacity: 1; transform: none; }
}

/* ============================================
   GSAP FALLBACK (animations visible even if JS fails)
   ============================================ */
.hl-word { transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out); }
.hero-scroll { animation: hero-fade 1.5s var(--ease-out) 2s forwards; }
@keyframes hero-fade {
  to { opacity: 1; }
}
