/* ═══════════════════════════════════════════════════════════════
   MOUNTAIN SOLID HEALING & WELLNESS — Shared Design System
   ═══════════════════════════════════════════════════════════════ */

/* ===== DESIGN SYSTEM ===== */
:root {
  /* Earth Palette */
  --stone: #3d3a36;
  --stone-light: #5c5750;
  --sage: #7a8c6e;
  --sage-light: #a3b396;
  --sage-muted: #c8d4be;
  --sand: #e8e0d4;
  --sand-light: #f5f1eb;
  --cream: #faf8f5;
  --warm-white: #fdfcfa;
  --terracotta: #b87a5e;
  --terracotta-light: #d4a088;
  --moss: #5a6b4f;
  --deep-forest: #2c3e2d;

  /* Spirit Palette */
  --spirit-dark: #1a1523;
  --spirit-mid: #2d2438;
  --amethyst: #3d334d;
  --gold: #c5a059;
  --gold-light: #d4b87a;

  /* Camp Palette */
  --navy: #1B3A4B;
  --navy-deep: #0A1F2B;
  --teal: #2A9D8F;
  --teal-light: #3DBFAE;
  --rust: #A0522D;
  --rust-light: #C4723F;
  --sky: #E8F4F2;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-handwritten: 'Caveat', cursive;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--stone);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

/* Paper texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

::selection { background: var(--sage-muted); color: var(--stone); }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; }
em { font-style: italic; }
a { color: inherit; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
nav.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 3rem;
  box-shadow: 0 1px 30px rgba(61, 58, 54, 0.06);
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  color: var(--stone); text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--sage); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 400;
  color: var(--stone-light); text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--sage);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--stone); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--stone); }
.nav-links a.active::after { width: 100%; background: var(--sage); }
.nav-cta {
  font-family: var(--font-body) !important; font-size: 0.78rem !important;
  font-weight: 500 !important; background: var(--sage);
  color: var(--cream) !important; padding: 0.6rem 1.5rem;
  border-radius: 100px; transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--moss) !important; color: var(--cream) !important; transform: translateY(-1px); }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.dropdown-trigger { cursor: pointer; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: rgba(61, 58, 54, 0.97); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px; padding: 0.6rem 0;
  min-width: 210px; list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s ease;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li { padding: 0; }
.dropdown-menu a {
  display: block; padding: 0.55rem 1.4rem;
  font-size: 0.82rem !important; color: rgba(255,255,255,0.75) !important;
  text-transform: none !important; letter-spacing: 0 !important;
  transition: all 0.2s; white-space: nowrap;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}

/* Mobile toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--stone);
  position: absolute; left: 0; transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* Dark nav (for dark hero pages) */
.nav--dark .nav-logo { color: #fff; }
.nav--dark .nav-links a { color: rgba(255,255,255,0.75); }
.nav--dark .nav-links a:hover { color: #fff; }
.nav--dark .nav-links a::after { background: rgba(255,255,255,0.5); }
.nav--dark .nav-toggle span { background: #fff; }
.nav--dark.scrolled { background: rgba(61, 58, 54, 0.95); }
.nav--dark.scrolled .nav-logo { color: #fff; }
.nav--dark.scrolled .nav-links a { color: rgba(255,255,255,0.75); }
.nav--dark.scrolled .nav-links a:hover { color: #fff; }

/* Spirit nav (for psychedelic pages) */
.nav--spirit.scrolled { background: rgba(26, 21, 35, 0.95); }
.nav--spirit .nav-cta { background: var(--gold); color: var(--spirit-dark) !important; }
.nav--spirit .nav-cta:hover { background: var(--gold-light) !important; }

/* Camp nav (for camp-baserock) */
.nav--camp .nav-logo span { color: var(--teal-light); }
.nav--camp.scrolled { background: rgba(27, 58, 75, 0.95); }
.nav--camp .nav-cta { background: var(--teal); }
.nav--camp .nav-cta:hover { background: var(--teal-light) !important; }

/* Forest nav (for grounded-man) */
.nav--forest .nav-logo span { color: var(--terracotta-light); }
.nav--forest.scrolled { background: rgba(44, 62, 45, 0.95); }
.nav--forest .nav-cta { background: var(--terracotta); }
.nav--forest .nav-cta:hover { background: var(--terracotta-light) !important; }

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(250,248,245,0.94) 0%, rgba(245,241,235,0.88) 35%,
    rgba(232,224,212,0.72) 60%, rgba(200,212,190,0.55) 100%);
}
.hero-content {
  max-width: 1400px; margin: 0 auto; width: 100%;
  padding: 8rem 3rem 6rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 2;
}
.hero-label {
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--sage);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-label::before { content: ''; width: 32px; height: 1px; background: var(--sage); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--stone); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
}
.hero-title em { font-style: italic; color: var(--sage); }
.hero-description {
  font-size: 1.1rem; font-weight: 300; line-height: 1.75;
  color: var(--stone-light); max-width: 540px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-actions {
  display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
}

/* Hero Visual (side image) */
.hero-visual { position: relative; opacity: 0; animation: fadeIn 1s 0.5s forwards; }
.hero-img-main {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(61,58,54,0.15); aspect-ratio: 4/5;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-floating-stat {
  position: absolute; bottom: -20px; left: -30px;
  background: white; border-radius: 16px;
  padding: 1.25rem 1.75rem; box-shadow: 0 15px 50px rgba(61,58,54,0.12);
  display: flex; align-items: center; gap: 1rem; z-index: 3;
}
.hero-floating-stat .stat-number {
  font-family: var(--font-display); font-size: 2.2rem;
  font-weight: 600; color: var(--sage); line-height: 1;
}
.hero-floating-stat .stat-label { font-size: 0.78rem; font-weight: 400; color: var(--stone-light); line-height: 1.3; }
.hero-floating-badge {
  position: absolute; top: 20px; right: -20px;
  background: var(--sage); color: var(--cream);
  border-radius: 14px; padding: 1rem 1.5rem;
  box-shadow: 0 10px 35px rgba(90,107,79,0.3); z-index: 3;
}
.hero-floating-badge .badge-text { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

/* Spirit Hero (psychedelic pages) */
.hero--spirit {
  background: var(--spirit-dark); color: var(--cream);
}
.hero--spirit .hero-bg::after {
  background: linear-gradient(160deg,
    rgba(26,21,35,0.95) 0%, rgba(45,36,56,0.85) 40%,
    rgba(61,51,77,0.7) 70%, rgba(26,21,35,0.8) 100%);
}
.hero--spirit .hero-label { color: var(--gold); }
.hero--spirit .hero-label::before { background: var(--gold); }
.hero--spirit .hero-title { color: var(--cream); }
.hero--spirit .hero-title em { color: var(--gold); }
.hero--spirit .hero-description { color: rgba(250,248,245,0.65); }
.hero--spirit::before {
  content: ''; position: absolute; top: -300px; right: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(197,160,89,0.08), transparent 70%);
  border-radius: 50%; z-index: 1;
}

/* Camp Hero (camp-baserock) */
.hero--camp {
  background: var(--navy-deep); color: #fff;
}
.hero--camp .hero-bg::after {
  background: linear-gradient(180deg,
    rgba(10,31,43,0.4) 0%, rgba(10,31,43,0.6) 50%, rgba(10,31,43,0.85) 100%);
}
.hero--camp .hero-content {
  grid-template-columns: 1fr; text-align: center;
  justify-items: center; padding-bottom: 4rem;
}
.hero--camp .hero-label { color: var(--teal-light); justify-content: center; }
.hero--camp .hero-label::before { background: var(--teal-light); }
.hero--camp .hero-title { color: #fff; max-width: 800px; }
.hero--camp .hero-title em { color: var(--teal-light); }
.hero--camp .hero-description { color: rgba(255,255,255,0.7); text-align: center; }
.hero--camp .hero-actions { justify-content: center; }

/* Forest Hero (grounded-man) */
.hero--forest {
  background: var(--deep-forest); color: var(--cream);
}
.hero--forest .hero-bg::after {
  background: linear-gradient(160deg,
    rgba(44,62,45,0.92) 0%, rgba(44,62,45,0.8) 40%,
    rgba(90,107,79,0.65) 70%, rgba(44,62,45,0.75) 100%);
}
.hero--forest .hero-label { color: var(--terracotta-light); }
.hero--forest .hero-label::before { background: var(--terracotta-light); }
.hero--forest .hero-title { color: var(--cream); }
.hero--forest .hero-title em { color: var(--terracotta-light); }
.hero--forest .hero-description { color: rgba(250,248,245,0.65); }

/* Centered Hero (for retreat pages without side image) */
.hero--centered .hero-content {
  grid-template-columns: 1fr; text-align: center;
  justify-items: center;
}
.hero--centered .hero-label { justify-content: center; }
.hero--centered .hero-title { max-width: 800px; }
.hero--centered .hero-description { text-align: center; max-width: 650px; }
.hero--centered .hero-actions { justify-content: center; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  background: var(--sage); color: var(--cream);
  padding: 1rem 2.25rem; border-radius: 100px;
  text-decoration: none; transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--moss); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(90, 107, 79, 0.25);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 400;
  color: var(--stone); text-decoration: none;
  padding: 1rem 1.5rem; border-radius: 100px;
  border: 1px solid rgba(61,58,54,0.2); transition: all 0.35s;
  background: rgba(255,255,255,0.5); backdrop-filter: blur(10px);
}
.btn-secondary:hover { border-color: var(--sage); color: var(--sage); }
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  background: var(--gold); color: var(--spirit-dark);
  padding: 1rem 2.25rem; border-radius: 100px;
  text-decoration: none; transition: all 0.35s; border: none; cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197,160,89,0.3);
}
.btn-teal {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  background: var(--teal); color: #fff;
  padding: 1rem 2.25rem; border-radius: 100px;
  text-decoration: none; transition: all 0.35s; border: none; cursor: pointer;
}
.btn-teal:hover {
  background: var(--teal-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42,157,143,0.3);
}
.btn-terracotta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  background: var(--terracotta); color: #fff;
  padding: 1rem 2.25rem; border-radius: 100px;
  text-decoration: none; transition: all 0.35s; border: none; cursor: pointer;
}
.btn-terracotta:hover {
  background: var(--terracotta-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,122,94,0.3);
}
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 400;
  color: #fff; text-decoration: none;
  padding: 1rem 1.5rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3); transition: all 0.35s;
  background: transparent;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ═══════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════ */
section { position: relative; }
.section-pad { max-width: 1400px; margin: 0 auto; padding: 7rem 3rem; }
.section-label {
  font-size: 0.72rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--sage);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--sage); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--stone); max-width: 680px;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-subtitle {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  color: var(--stone-light); max-width: 600px; margin-top: 1.25rem;
}
.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }
.section-header--center .section-label { justify-content: center; }
.section-header--center .section-title { max-width: 800px; margin: 0 auto; }
.section-header--center .section-subtitle { max-width: 700px; margin: 1.25rem auto 0; }

/* Dark section helpers */
.section--dark { background: var(--stone); color: var(--cream); }
.section--dark .section-label { color: var(--sage-light); }
.section--dark .section-label::before { background: var(--sage-light); }
.section--dark .section-title { color: var(--cream); }
.section--dark .section-title em { color: var(--sage-light); }
.section--dark .section-subtitle { color: rgba(250,248,245,0.6); }

/* Spirit section helpers */
.section--spirit { background: var(--spirit-dark); color: var(--cream); position: relative; overflow: hidden; }
.section--spirit .section-label { color: var(--gold); }
.section--spirit .section-label::before { background: var(--gold); }
.section--spirit .section-title { color: var(--cream); }
.section--spirit .section-title em { color: var(--gold); }
.section--spirit .section-subtitle { color: rgba(250,248,245,0.6); }

/* Camp section helpers */
.section--camp { background: var(--navy); color: #fff; }
.section--camp .section-label { color: var(--teal-light); }
.section--camp .section-label::before { background: var(--teal-light); }
.section--camp .section-title { color: #fff; }
.section--camp .section-title em { color: var(--teal-light); }

/* Forest section helpers */
.section--forest { background: var(--deep-forest); color: var(--cream); }
.section--forest .section-label { color: var(--terracotta-light); }
.section--forest .section-label::before { background: var(--terracotta-light); }
.section--forest .section-title { color: var(--cream); }
.section--forest .section-title em { color: var(--terracotta-light); }

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar { background: var(--sand-light); border-bottom: 1px solid rgba(61,58,54,0.04); }
.trust-bar .section-pad { padding: 3.5rem 3rem; }
.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.trust-item { text-align: center; }
.trust-item .trust-number {
  font-family: var(--font-display); font-size: 2.8rem;
  font-weight: 600; color: var(--sage); line-height: 1;
}
.trust-item .trust-text {
  font-size: 0.82rem; font-weight: 400; color: var(--stone-light);
  margin-top: 0.35rem; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════
   CARD GRIDS
   ═══════════════════════════════════════ */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Generic card */
.card {
  background: var(--cream); border-radius: 20px; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(61,58,54,0.08);
  border-color: rgba(122,140,110,0.12);
}
.card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card-img img { transform: scale(1.05); }
.card-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: linear-gradient(to top, var(--cream), transparent);
}
.card-body { padding: 1.5rem 2rem 2rem; }
.card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.1rem; margin-top: -30px;
  position: relative; z-index: 2; box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.card h3 {
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 500; color: var(--stone); margin-bottom: 0.6rem;
}
.card p {
  font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: var(--stone-light);
}
.card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 500; color: var(--sage);
  text-decoration: none; margin-top: 1rem; transition: gap 0.3s;
}
.card-link:hover { gap: 0.75rem; }

/* Dark card variant (for dark-section grids) */
.card--dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.card--dark:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.card--dark h3 { color: var(--cream); }
.card--dark p { color: rgba(250,248,245,0.6); }
.card--dark .card-img::after { background: linear-gradient(to top, var(--stone), transparent); }

/* Spirit card variant */
.card--spirit {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.card--spirit:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(197,160,89,0.15);
}
.card--spirit h3 { color: var(--cream); }
.card--spirit p { color: rgba(250,248,245,0.5); }

/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */
.about { background: var(--sand-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-img-wrapper {
  border-radius: 24px; overflow: hidden; aspect-ratio: 3/4; position: relative;
}
.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,62,45,0.45) 0%, transparent 50%);
}
.about-quote-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; z-index: 2; }
.about-quote-overlay blockquote {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 300;
  line-height: 1.5; font-style: italic; color: white;
}
.about-quote-overlay .attribution {
  margin-top: 1rem; font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.75);
}
.about-floating-card {
  position: absolute; top: 20px; right: -20px;
  background: white; border-radius: 16px;
  padding: 1.25rem 1.75rem; box-shadow: 0 15px 50px rgba(61,58,54,0.1);
  display: flex; align-items: center; gap: 1rem; z-index: 3;
}
.about-text .section-label { margin-bottom: 0.25rem !important; }
.about-text .section-title { margin-top: 0 !important; margin-bottom: 0 !important; }
.about-text .section-subtitle { margin-top: 0.5rem !important; margin-bottom: 0.75rem !important; color: var(--stone) !important; }
.about-text p { color: var(--stone) !important; }
.about-features { display: flex; flex-direction: column; gap: 1.25rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.about-feature-check {
  width: 28px; height: 28px; min-width: 28px; border-radius: 8px;
  background: var(--sage-muted); display: flex;
  align-items: center; justify-content: center; margin-top: 2px;
}
.about-feature-check svg { width: 14px; height: 14px; color: var(--moss); }
.about-feature-text h4 { font-size: 0.95rem; font-weight: 500; color: var(--stone); margin-bottom: 0.2rem; }
.about-feature-text p { font-size: 0.85rem; font-weight: 300; color: var(--stone-light); line-height: 1.6; }

/* ═══════════════════════════════════════
   TWO-COLUMN LAYOUT
   ═══════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.col-img { border-radius: 24px; overflow: hidden; }
.col-img img { width: 100%; height: 100%; object-fit: cover; }
.col-img--tall { aspect-ratio: 3/4; }
.col-img--wide { aspect-ratio: 16/10; }
.narrative { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--stone-light); }
.narrative strong { color: var(--stone); font-weight: 500; }
.narrative + .narrative { margin-top: 1.5rem; }

/* ═══════════════════════════════════════
   EXPANDED STATES / SPIRIT SECTIONS
   ═══════════════════════════════════════ */
.es-phase {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 2.5rem 2rem;
  transition: all 0.4s;
}
.es-phase:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(197,160,89,0.15);
  transform: translateY(-3px);
}
.es-phase-number {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 600; color: var(--gold); opacity: 0.4; margin-bottom: 0.75rem;
}
.es-phase h4 { font-size: 1rem; font-weight: 500; color: var(--cream); margin-bottom: 0.75rem; }
.es-phase p { font-size: 0.85rem; font-weight: 300; line-height: 1.7; color: rgba(250,248,245,0.5); }

.es-philosophy {
  margin-top: 2.5rem; padding: 2rem;
  background: rgba(197,160,89,0.06);
  border: 1px solid rgba(197,160,89,0.12); border-radius: 16px;
}
.es-philosophy h4 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 400; font-style: italic; color: var(--gold);
  margin-bottom: 0.75rem;
}
.es-philosophy p { font-size: 0.88rem; font-weight: 300; line-height: 1.75; color: rgba(250,248,245,0.55); }

.es-modalities { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.es-modality-tag {
  background: rgba(197,160,89,0.08); border: 1px solid rgba(197,160,89,0.2);
  border-radius: 100px; padding: 0.5rem 1.25rem;
  font-size: 0.8rem; font-weight: 400; color: var(--gold-light);
}

/* ═══════════════════════════════════════
   TESTIMONIAL / PULL QUOTE
   ═══════════════════════════════════════ */
.testimonial {
  background: var(--deep-forest); color: var(--cream);
  text-align: center; position: relative; overflow: hidden;
}
.testimonial::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(163,179,150,0.08), transparent 70%);
}
.testimonial .section-pad { position: relative; z-index: 2; }
.testimonial-quote {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; font-style: italic; line-height: 1.5;
  max-width: 900px; margin: 0 auto 2rem; color: var(--cream);
}
.testimonial-attr {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 400;
  color: var(--sage-light); letter-spacing: 0.04em;
}

/* Spirit testimonial variant */
.testimonial--spirit { background: var(--spirit-dark); }
.testimonial--spirit::before {
  background: radial-gradient(ellipse at center, rgba(197,160,89,0.06), transparent 70%);
}
.testimonial--spirit .testimonial-attr { color: var(--gold-light); }

/* Camp testimonial variant */
.testimonial--camp { background: var(--navy-deep); }
.testimonial--camp::before {
  background: radial-gradient(ellipse at center, rgba(42,157,143,0.06), transparent 70%);
}
.testimonial--camp .testimonial-attr { color: var(--teal-light); }

/* ═══════════════════════════════════════
   CONTACT / CTA SECTION
   ═══════════════════════════════════════ */
.contact { position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.contact-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(44,62,45,0.88) 0%, rgba(61,79,51,0.85) 60%, rgba(90,107,79,0.82) 100%);
}
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; position: relative; z-index: 2;
}
.contact .section-label { color: var(--sage-muted); }
.contact .section-label::before { background: var(--sage-muted); }
.contact .section-title { color: var(--cream); }
.contact .section-title em { color: var(--sage-light); }
.contact .section-subtitle { color: rgba(250,248,245,0.7); }
.contact-info { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-item-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-item-text a {
  text-decoration: none; color: var(--cream);
  font-weight: 400; font-size: 0.95rem; transition: color 0.3s;
}
.contact-item-text a:hover { color: var(--sage-light); }
.contact-item-text p { font-size: 0.95rem; font-weight: 400; color: var(--cream); }
.contact-item-text span { font-size: 0.78rem; font-weight: 300; color: rgba(250,248,245,0.6); }

.contact-form {
  background: white; border-radius: 24px; padding: 3rem;
  box-shadow: 0 30px 80px rgba(61,58,54,0.1);
}
.contact-form h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 400; margin-bottom: 2rem; color: var(--stone);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--stone-light); margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 300;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(61,58,54,0.1); border-radius: 12px;
  background: var(--cream); color: var(--stone);
  outline: none; transition: all 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,140,110,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: auto; cursor: pointer; }
.form-submit {
  width: 100%; font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500; padding: 1rem;
  background: var(--sage); color: var(--cream);
  border: none; border-radius: 12px;
  cursor: pointer; transition: all 0.35s; margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--moss); transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(90,107,79,0.25);
}

/* Simple centered CTA section */
.cta-section { text-align: center; }
.cta-section .section-pad { padding: 5rem 3rem; }
.cta-section .section-title { max-width: 700px; margin: 0 auto 1rem; }
.cta-section .section-subtitle { max-width: 550px; margin: 0 auto 2rem; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer { background: var(--stone); color: rgba(250,248,245,0.5); padding: 4rem 3rem 2.5rem; }
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--sage-light); }
.footer-tagline {
  font-size: 0.9rem; color: rgba(250,248,245,0.35);
  line-height: 1.7; max-width: 350px;
}
.footer-col h4 {
  font-family: var(--font-display); font-size: 1.1rem;
  color: rgba(250,248,245,0.7); margin-bottom: 1rem; font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 0.85rem; color: rgba(250,248,245,0.35);
  padding: 0.25rem 0; line-height: 1.6;
}
.footer-col a {
  color: rgba(250,248,245,0.4); text-decoration: none; transition: color 0.3s;
}
.footer-col a:hover { color: var(--sage-light); }
.footer-divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.06);
  margin: 2.5rem auto 1.5rem; max-width: 1400px;
}
.footer-copy {
  text-align: center; font-size: 0.78rem;
  color: rgba(250,248,245,0.25); max-width: 1400px; margin: 0 auto;
}

/* ═══════════════════════════════════════
   RETREAT OFFERING CARDS (general-retreats)
   ═══════════════════════════════════════ */
.offerings-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 1400px; margin: 0 auto;
}
.offering-card {
  background: var(--cream); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(61,58,54,0.06);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(61,58,54,0.1);
  border-color: rgba(122,140,110,0.15);
}
.offering-image {
  height: 100%; overflow: hidden;
}
.offering-image img {
  width: 100%; height: 100%; object-fit: cover; min-height: 260px;
}
.offering-content {
  padding: 2rem;
}
.offering-duration {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--sage); margin-bottom: 0.75rem;
}
.offering-card .card-img { aspect-ratio: 16/10; }
.offering-card .card-body { padding: 2rem; }
.offering-card .card-meta {
  display: flex; gap: 1rem; margin-bottom: 1rem;
  font-size: 0.78rem; color: var(--sage); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.offering-card h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 400; color: var(--stone); margin-bottom: 0.75rem;
}
.offering-card p {
  font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: var(--stone-light);
  margin-bottom: 1rem;
}
.offering-link {
  font-size: 0.85rem; font-weight: 500; color: var(--sage);
  text-decoration: none; transition: color 0.3s;
}
.offering-link:hover { color: var(--terracotta); }

/* ═══════════════════════════════════════
   PILLAR CARDS (grounded-man)
   ═══════════════════════════════════════ */
.pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 2.5rem 2rem;
  text-align: center; transition: all 0.4s;
}
.pillar-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,122,94,0.2);
  transform: translateY(-3px);
}
.pillar-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.pillar-card h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 400; color: var(--cream); margin-bottom: 0.75rem;
}
.pillar-card p {
  font-size: 0.88rem; font-weight: 300; line-height: 1.7;
  color: rgba(250,248,245,0.55);
}

/* ═══════════════════════════════════════
   PROGRAM STRUCTURE (grounded-man)
   ═══════════════════════════════════════ */
.program-day {
  display: grid; grid-template-columns: auto 1fr; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid rgba(61,58,54,0.08);
}
.program-day:last-child { border-bottom: none; }
.day-label {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 500; color: var(--terracotta); white-space: nowrap;
  min-width: 100px;
}
.day-content h4 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 500; color: var(--stone); margin-bottom: 0.5rem;
}
.day-content p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.7; color: var(--stone-light);
}

/* ═══════════════════════════════════════
   CAMP BASEROCK SPECIFIC
   ═══════════════════════════════════════ */

/* Star field */
.star-field { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.star-field .star {
  position: absolute; background: #fff; border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite alternate;
}
@keyframes twinkle {
  0% { opacity: var(--min-opacity, 0.2); }
  100% { opacity: var(--max-opacity, 1); }
}

/* Photo strip */
.photo-strip { display: flex; gap: 0; overflow: hidden; }
.photo-strip img {
  flex: 1; min-width: 0; height: 280px; object-fit: cover;
  filter: saturate(0.9); transition: filter 0.3s;
}
.photo-strip img:hover { filter: saturate(1.1); }

/* Features strip */
.features-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--sand-light);
}
.feature-item {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(61,58,54,0.06);
  transition: background 0.3s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--cream); }
.feature-item .feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-item h4 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 500; color: var(--stone); margin-bottom: 0.35rem;
}
.feature-item p { font-size: 0.82rem; color: var(--stone-light); font-weight: 300; }

/* Track cards */
.track-card {
  border-radius: 20px; padding: 3rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s;
}
.track-card:hover { transform: translateY(-4px); }
.track-card--recharge {
  background: linear-gradient(135deg, rgba(42,157,143,0.15), rgba(42,157,143,0.05));
  border-color: rgba(42,157,143,0.2);
}
.track-card--reclaim {
  background: linear-gradient(135deg, rgba(160,82,45,0.15), rgba(160,82,45,0.05));
  border-color: rgba(160,82,45,0.2);
}
.track-card .track-age {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 0.75rem;
}
.track-card--recharge .track-age { color: var(--teal-light); }
.track-card--reclaim .track-age { color: var(--rust-light); }
.track-card h3 {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 400; color: #fff; margin-bottom: 1rem;
}
.track-card p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.6);
}
.track-highlights {
  margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.track-highlights li {
  list-style: none; font-size: 0.85rem; color: rgba(255,255,255,0.5);
  padding-left: 1.5rem; position: relative;
}
.track-highlights li::before {
  content: '✦'; position: absolute; left: 0;
}
.track-card--recharge .track-highlights li::before { color: var(--teal); }
.track-card--reclaim .track-highlights li::before { color: var(--rust); }

/* Timeline */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem;
  padding: 1.5rem 0; border-bottom: 1px solid rgba(61,58,54,0.06);
  align-items: start;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-time {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 600; color: var(--teal);
}
.timeline-item h4 {
  font-size: 0.95rem; font-weight: 500; color: var(--stone); margin-bottom: 0.25rem;
}
.timeline-item p { font-size: 0.85rem; font-weight: 300; color: var(--stone-light); line-height: 1.6; }
.section--dark .timeline-item { border-bottom-color: rgba(250,248,245,0.1); }
.section--dark .timeline-time { color: var(--terracotta-light); }
.section--dark .timeline-item h4 { color: var(--cream); }
.section--dark .timeline-item p { color: rgba(250,248,245,0.6); }
.section--dark .expect-note { background: rgba(250,248,245,0.08); color: rgba(250,248,245,0.65); }

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.bento-item {
  border-radius: 16px; overflow: hidden; position: relative;
  transition: transform 0.4s;
}
.bento-item:hover { transform: scale(1.02); }
.bento-item img { width: 100%; height: 100%; object-fit: cover; }
.bento-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}
.bento-item .bento-label {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  font-size: 0.85rem; font-weight: 500; color: #fff;
}
.bento-item--wide { grid-column: span 2; }
.bento-item--tall { grid-row: span 2; }

/* Pricing toggle */
.pricing-toggle {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-bottom: 3rem;
}
.pricing-toggle button {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  padding: 0.7rem 1.8rem; border-radius: 100px;
  border: 1px solid rgba(61,58,54,0.15); background: transparent;
  color: var(--stone-light); cursor: pointer; transition: all 0.3s;
}
.pricing-toggle button.active {
  background: var(--teal); color: #fff; border-color: var(--teal);
}
.pricing-toggle button:hover:not(.active) { border-color: var(--teal); color: var(--teal); }

.pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.pricing-card {
  background: var(--cream); border-radius: 20px; padding: 2.5rem;
  text-align: center; border: 1px solid rgba(61,58,54,0.06);
  transition: all 0.4s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(61,58,54,0.1);
}
.pricing-card .price-label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--teal); margin-bottom: 0.5rem;
}
.pricing-card .price {
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 600; color: var(--stone); margin-bottom: 0.5rem;
}
.pricing-card .price-desc {
  font-size: 0.85rem; color: var(--stone-light); font-weight: 300;
  margin-bottom: 1.5rem;
}
.pricing-card .price-features {
  list-style: none; text-align: left; margin-bottom: 2rem;
}
.pricing-card .price-features li {
  font-size: 0.85rem; color: var(--stone-light); font-weight: 300;
  padding: 0.4rem 0; padding-left: 1.5rem; position: relative;
}
.pricing-card .price-features li::before {
  content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 600;
}

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(61,58,54,0.08);
}
.faq-question {
  width: 100%; padding: 1.5rem 0; border: none; background: none;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 500; color: var(--stone);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--sage); }
.faq-question .faq-icon {
  font-size: 1.5rem; color: var(--sage); transition: transform 0.3s;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px; padding-bottom: 1.5rem;
}
.faq-answer p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: var(--stone-light);
}

/* Immersive quote (full-width with bg) */
.immersive-quote {
  position: relative; overflow: hidden;
  padding: 6rem 3rem; text-align: center;
}
.immersive-quote .quote-bg {
  position: absolute; inset: 0;
}
.immersive-quote .quote-bg img { width: 100%; height: 100%; object-fit: cover; }
.immersive-quote .quote-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(27, 58, 75, 0.85);
}
.immersive-quote blockquote {
  position: relative; z-index: 2;
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300; font-style: italic; line-height: 1.5;
  max-width: 800px; margin: 0 auto; color: #fff;
}

/* ═══════════════════════════════════════
   PAGE HEADERS (subpages without full hero)
   ═══════════════════════════════════════ */
.page-header {
  padding-top: 5rem; background: var(--sand-light);
  border-bottom: 1px solid rgba(61,58,54,0.04);
}
.page-header .section-pad { padding-top: 4rem; padding-bottom: 4rem; }
.page-header .section-title { max-width: 800px; }
.page-header--dark { background: var(--stone); border-bottom-color: rgba(255,255,255,0.04); }
.page-header--spirit { background: var(--spirit-dark); border-bottom-color: rgba(197,160,89,0.08); }
.page-header--forest { background: var(--deep-forest); border-bottom-color: rgba(184,122,94,0.08); }
.page-header--camp { background: var(--navy-deep); border-bottom-color: rgba(42,157,143,0.08); }

/* ═══════════════════════════════════════
   PHASE CARD BULLET POINTS (psychedelic-therapy)
   ═══════════════════════════════════════ */
.es-phase ul {
  list-style: none; padding: 0; margin-top: 1rem;
}
.es-phase li {
  font-size: 0.8rem; font-weight: 300; color: rgba(250,248,245,0.45);
  padding: 0.3rem 0 0.3rem 1.2rem; position: relative;
}
.es-phase li::before {
  content: ''; position: absolute; left: 0; top: 0.65rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.es-phase .phase-subtitle {
  font-size: 0.78rem; font-weight: 400; color: var(--gold-light);
  font-style: italic; margin-bottom: 0.75rem;
}

/* Philosophy quote (psychedelic-therapy) */
.philosophy-quote {
  margin: 2rem 0; padding: 1.5rem 2rem; border-left: 2px solid var(--gold);
  font-family: var(--font-display); font-size: 1.15rem;
  font-style: italic; font-weight: 400; line-height: 1.6;
  color: rgba(250,248,245,0.7);
}
.philosophy-quote-author {
  margin-top: 0.5rem; font-size: 0.85rem; font-style: normal;
  color: rgba(250,248,245,0.4);
}

/* ═══════════════════════════════════════
   CRITERIA / WHO-FOR (psychedelic-retreats)
   ═══════════════════════════════════════ */
.criteria-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  max-width: 800px; margin: 2.5rem auto;
}
.criteria-item {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  font-size: 0.9rem; font-weight: 300; color: rgba(250,248,245,0.6);
}
.criteria-item.not-for {
  background: rgba(255,100,100,0.05); border-color: rgba(255,100,100,0.15);
  color: rgba(255,200,200,0.7); grid-column: 1 / -1;
}
.screening-note {
  max-width: 700px; margin: 2rem auto 0;
  padding: 1.5rem 2rem; background: rgba(255,255,255,0.04);
  border-radius: 12px; border-left: 3px solid var(--gold);
  font-size: 0.88rem; color: rgba(250,248,245,0.5); line-height: 1.7;
}

/* ═══════════════════════════════════════
   WHO-LIST & FACILITATOR (grounded-man)
   ═══════════════════════════════════════ */
.who-list {
  list-style: none; padding: 0; max-width: 600px; margin: 2rem auto;
}
.who-list li {
  font-size: 0.95rem; font-weight: 300; color: rgba(250,248,245,0.6);
  padding: 0.75rem 0 0.75rem 1.5rem; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.who-list li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--terracotta-light); font-weight: 600;
}
.who-note {
  max-width: 600px; margin: 1.5rem auto 0;
  padding: 1.25rem 1.5rem; background: rgba(255,255,255,0.04);
  border-radius: 12px; border-left: 3px solid var(--terracotta);
  font-size: 0.85rem; color: rgba(250,248,245,0.5); line-height: 1.7;
}
.facilitator-card {
  max-width: 700px; margin: 0 auto; text-align: center; padding: 2.5rem;
}
.facilitator-card h3 {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 400; color: var(--cream); margin-bottom: 0.5rem;
}
.facilitator-title {
  font-size: 0.85rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--terracotta-light); margin-bottom: 1.25rem;
}
.facilitator-bio {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: rgba(250,248,245,0.55);
}

/* ═══════════════════════════════════════
   PHILOSOPHY & LOCATION (general-retreats)
   ═══════════════════════════════════════ */
.philosophy-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  margin-top: 2.5rem;
}
.philosophy-text p {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: var(--stone-light); margin-bottom: 1.25rem;
}
.philosophy-image img {
  width: 100%; border-radius: 20px; aspect-ratio: 4/3; object-fit: cover;
}
.expect-note {
  max-width: 700px; margin: 3rem auto 0; text-align: center;
  padding: 1.5rem 2rem; background: var(--sand-light); border-radius: 16px;
  font-size: 0.9rem; font-weight: 300; line-height: 1.7;
  color: var(--stone-light); font-style: italic;
}
.location-section {
  background: var(--stone);
  color: var(--cream);
  border-radius: 16px;
  padding: 3.5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.location-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(107,142,35,0.08) 0%, transparent 50%, rgba(107,142,35,0.06) 100%);
  pointer-events: none;
}
.location-section h2 {
  font-family: var(--font-display); font-size: 2.2rem;
  font-weight: 500; color: #fff; margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.location-section p {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.72); margin-bottom: 1rem;
  max-width: 680px; margin-left: auto; margin-right: auto;
}

/* ═══════════════════════════════════════
   CAMP BASEROCK INTRO
   ═══════════════════════════════════════ */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.intro-narrative {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: var(--stone-light); margin-bottom: 1.25rem;
}
.intro-handwritten {
  font-family: var(--font-handwritten); font-size: 1.6rem;
  color: var(--teal); margin-top: 1.5rem;
}
.intro-image img {
  width: 100%; border-radius: 24px; aspect-ratio: 4/5; object-fit: cover;
}

/* ═══════════════════════════════════════
   DAILY RHYTHM (general-retreats)
   ═══════════════════════════════════════ */
.rhythm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rhythm-card {
  background: var(--cream); border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(61,58,54,0.06); text-align: center;
  transition: all 0.3s;
}
.rhythm-card:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(61,58,54,0.06); }
.rhythm-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.rhythm-card h4 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 500; color: var(--stone); margin-bottom: 0.5rem;
}
.rhythm-card p { font-size: 0.85rem; font-weight: 300; color: var(--stone-light); line-height: 1.65; }

/* ═══════════════════════════════════════
   CAMP HERO EXTRAS
   ═══════════════════════════════════════ */
.hero-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--teal-light); margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 2rem;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center;
  letter-spacing: 0.08em; z-index: 5;
}
.section-subtitle {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.5); max-width: 650px;
  margin-bottom: 3rem;
}

/* ═══════════════════════════════════════
   CAMP TRACKS (full layout with images)
   ═══════════════════════════════════════ */
.tracks-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; max-width: 1000px; margin: 3rem auto 0;
}
.track-card { overflow: hidden; }
.track-image {
  position: relative; height: 280px; overflow: hidden;
}
.track-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.track-image-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.track-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem; border-radius: 100px;
  margin-bottom: 0.5rem;
}
.track-teal .track-tag { background: var(--teal); color: #fff; }
.track-rust .track-tag { background: var(--rust); color: #fff; }
.track-image-overlay h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 400; color: #fff; margin-bottom: 0.25rem;
}
.track-audience {
  font-size: 0.85rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.65);
}
.track-body {
  padding: 2rem 2.5rem;
}
.track-body > p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.6); margin-bottom: 1.5rem;
}
.track-detail {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-bottom: 0.75rem;
}
.track-detail-icon { font-size: 1.1rem; flex-shrink: 0; }
.track-detail-text {
  font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.track-detail-text strong {
  font-weight: 500; color: rgba(255,255,255,0.8);
}
.track-teal {
  background: linear-gradient(135deg, rgba(42,157,143,0.15), rgba(42,157,143,0.05));
  border: 1px solid rgba(42,157,143,0.2); border-radius: 20px;
}
.track-rust {
  background: linear-gradient(135deg, rgba(160,82,45,0.15), rgba(160,82,45,0.05));
  border: 1px solid rgba(160,82,45,0.2); border-radius: 20px;
}

/* ═══════════════════════════════════════
   CAMP TIMELINE (with images)
   ═══════════════════════════════════════ */
.timeline-section { position: relative; }
.camp-timeline {
  max-width: 800px; margin: 3rem auto 0;
  position: relative; padding-left: 40px;
}
.camp-timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: rgba(42,157,143,0.2);
}
.tl-item {
  position: relative; margin-bottom: 3rem;
  padding-left: 25px;
}
.tl-dot {
  position: absolute; left: -26px; top: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal); border: 2px solid var(--navy);
}
.tl-content {
  display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem;
  align-items: start;
}
.tl-img {
  border-radius: 12px; overflow: hidden; height: 130px;
}
.tl-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.tl-time {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--teal-light); margin-bottom: 0.4rem;
}
.tl-text h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 400; color: #fff; margin-bottom: 0.5rem;
}
.tl-text p {
  font-size: 0.88rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════
   CAMP BENTO (with labels inside cards)
   ═══════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.bento-card {
  position: relative; border-radius: 16px; overflow: hidden;
  transition: transform 0.4s;
}
.bento-card:hover { transform: scale(1.02); }
.bento-card img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.bento-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
  z-index: 1;
}
.bento-card h3 {
  position: absolute; bottom: 2rem; left: 1rem; z-index: 2;
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 500; color: #fff;
}
.bento-card p {
  position: absolute; bottom: 0.75rem; left: 1rem; z-index: 2;
  font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.6);
}
.b1 { grid-column: 1 / 3; }
.b2 { }
.b3 { }
.b4 { grid-column: 1 / 3; }
.b5 { }
.b6 { grid-column: 2 / 4; }
.b7 { }

/* ═══════════════════════════════════════
   CAMP IMMERSIVE QUOTE
   ═══════════════════════════════════════ */
.immersive {
  background: var(--navy-deep);
  background-image: url('https://images.unsplash.com/photo-1475274047050-1d0c55b91a25?auto=format&fit=crop&w=1600&q=60');
  background-size: cover; background-position: center;
  background-attachment: fixed;
  position: relative; text-align: center;
  padding: 6rem 3rem;
}
.immersive::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(27, 58, 75, 0.85);
}
.immersive-content {
  position: relative; z-index: 2; max-width: 700px; margin: 0 auto;
}
.immersive blockquote {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300; font-style: italic; line-height: 1.5;
  color: #fff; margin-bottom: 1rem;
}
.immersive cite {
  font-size: 0.9rem; font-weight: 400; font-style: normal;
  color: var(--teal-light); letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════
   CAMP PRICING EXTRAS
   ═══════════════════════════════════════ */
.toggle-btn {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  padding: 0.7rem 1.8rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15); background: transparent;
  color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s;
}
.toggle-btn.active-teal {
  background: var(--teal); color: #fff; border-color: var(--teal);
}
.toggle-btn.active-rust {
  background: var(--rust); color: #fff; border-color: var(--rust);
}
.toggle-btn:hover:not(.active-teal):not(.active-rust) {
  border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7);
}
.price-name {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 500; color: var(--stone); margin-bottom: 0.25rem;
}
.price-duration {
  font-size: 0.8rem; font-weight: 300; color: var(--stone-light);
  margin-bottom: 0.75rem;
}
.price-note {
  font-size: 0.78rem; font-weight: 300; font-style: italic;
  color: var(--stone-light); margin-bottom: 1.5rem;
}
.pricing-card.featured {
  border-color: var(--teal); box-shadow: 0 10px 40px rgba(42,157,143,0.15);
  transform: scale(1.02);
}
.pricing-card.price-teal .price-label { color: var(--teal); }
.pricing-card.price-rust .price-label { color: var(--rust); }
.pricing-card.price-rust .price-features li::before { color: var(--rust); }
.btn-pricing {
  display: inline-block; padding: 0.85rem 2rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500; text-decoration: none;
  text-align: center; width: 100%; transition: all 0.3s;
}
.btn-pricing-teal {
  background: var(--teal); color: #fff;
}
.btn-pricing-teal:hover { background: var(--teal-light); }
.btn-pricing-rust {
  background: var(--rust); color: #fff;
}
.btn-pricing-rust:hover { opacity: 0.9; }

/* ═══════════════════════════════════════
   CAMP FAQ — Dark Background Overrides
   ═══════════════════════════════════════ */
.section--camp .faq-item {
  border-bottom: 1px solid rgba(42,157,143,0.15);
}
.section--camp .faq-question {
  color: #fff;
  font-weight: 500;
}
.section--camp .faq-question:hover {
  color: var(--teal);
}
.section--camp .faq-question .faq-icon {
  color: var(--teal);
}
.section--camp .faq-answer p {
  color: rgba(255,255,255,0.65);
}
.faq-arrow {
  font-size: 0.7rem; color: var(--teal);
  transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ═══════════════════════════════════════
   CAMP FINAL CTA
   ═══════════════════════════════════════ */
.final-cta {
  background: var(--navy-deep); text-align: center;
  padding: 5rem 2rem;
}
.final-cta-inner {
  max-width: 600px; margin: 0 auto;
}
.final-cta h2 {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 400; color: #fff; margin-bottom: 1rem;
}
.final-cta p {
  font-size: 0.95rem; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.6); margin-bottom: 1.5rem;
}
.final-cta-note {
  font-size: 0.8rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════
   CAMP FOOTER
   ═══════════════════════════════════════ */
.footer--camp { background: var(--navy-deep); text-align: center; padding: 3rem 2rem; }
.footer--camp .footer-logo { color: #fff; font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; }
.footer--camp .footer-logo span { color: var(--teal-light); }
.footer--camp .footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.85rem; font-weight: 300; margin-bottom: 1.5rem; }
.footer--camp .footer-links { list-style: none; display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer--camp .footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; }
.footer--camp .footer-links a:hover { color: var(--teal-light); }
.footer--camp .footer-copy { color: rgba(255,255,255,0.25); font-size: 0.75rem; }

/* ═══════════════════════════════════════
   VISUAL ENERGY COMPONENTS
   ═══════════════════════════════════════ */

/* --- Full-bleed Image Breaks --- */
.image-break {
  width: 100%; height: 45vh; min-height: 320px;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  position: relative;
}
.image-break::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
}
.image-break-text {
  position: absolute; bottom: 3rem; left: 3rem; right: 3rem; z-index: 2;
  color: rgba(255,255,255,0.9); font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 300; font-style: italic;
  max-width: 600px;
}

/* --- Split Image + Content Blocks --- */
.split-block {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 500px; overflow: hidden;
}
.split-block--reverse { direction: rtl; }
.split-block--reverse > * { direction: ltr; }
.split-image {
  width: 100%; height: 100%; min-height: 400px;
  background-size: cover; background-position: center;
}
.split-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 3.5rem;
}
.split-content h3 {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 400; margin-bottom: 1rem;
}
.split-content p {
  font-size: 0.92rem; line-height: 1.8; font-weight: 300;
  margin-bottom: 1rem;
}

/* --- Photo Grid (2x2 or 3-up) --- */
.photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem; padding: 0 3rem;
}
.photo-grid img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: 12px; transition: transform 0.5s;
}
.photo-grid img:hover { transform: scale(1.03); }

/* --- Stat/Number Band --- */
.stat-band {
  display: flex; justify-content: center; gap: 4rem;
  padding: 3rem 2rem; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 300; line-height: 1;
}
.stat-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 0.5rem; font-weight: 400;
  opacity: 0.6;
}

/* --- Image Card Grid (with overlays) --- */
.image-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.image-card {
  position: relative; border-radius: 16px; overflow: hidden;
  min-height: 380px; background-size: cover; background-position: center;
  transition: transform 0.5s;
}
.image-card:hover { transform: translateY(-4px); }
.image-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
}
.image-card-overlay .card-tag {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.image-card-overlay h4 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: #fff; font-weight: 400; margin-bottom: 0.5rem;
}
.image-card-overlay p {
  font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.7);
  font-weight: 300;
}

/* --- Immersive parallax for non-camp pages --- */
.parallax-break {
  position: relative; padding: 6rem 2rem;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
  text-align: center; min-height: 50vh;
}
.parallax-break::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.parallax-inner {
  position: relative; z-index: 2; max-width: 700px;
}
.parallax-inner h2 {
  font-family: var(--font-display); font-size: 2.4rem;
  color: #fff; font-weight: 300; margin-bottom: 1rem;
}
.parallax-inner p {
  font-size: 0.95rem; color: rgba(255,255,255,0.75);
  line-height: 1.8; font-weight: 300;
}

/* --- Feature Icon Row --- */
.feature-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.feature-icon-item { padding: 1.5rem; }
.feature-emoji { font-size: 2.2rem; margin-bottom: 0.75rem; display: block; }
.feature-icon-item h4 {
  font-family: var(--font-display); font-size: 1.15rem;
  margin-bottom: 0.4rem; font-weight: 400;
}
.feature-icon-item p {
  font-size: 0.82rem; line-height: 1.6; font-weight: 300;
  opacity: 0.6;
}

/* --- Spirit theme image card colors --- */
.section--spirit .image-card-overlay .card-tag { color: var(--gold-light); }
.section--spirit .stat-number { color: var(--gold); }
.section--spirit .stat-label { color: rgba(250,248,245,0.4); }
.section--spirit .split-content { background: var(--spirit-dark); color: var(--cream); }
.section--spirit .split-content p { color: rgba(250,248,245,0.55); }
.section--spirit .split-content h3 { color: var(--cream); }
.section--spirit .feature-icon-item p { color: rgba(250,248,245,0.45); }
.section--spirit .feature-icon-item h4 { color: var(--cream); }

/* --- Forest theme image card colors --- */
.section--forest .image-card-overlay .card-tag { color: var(--terracotta-light); }
.section--forest .stat-number { color: var(--terracotta-light); }
.section--forest .stat-label { color: rgba(250,248,245,0.4); }
.section--forest .split-content { background: var(--deep-forest); color: var(--cream); }
.section--forest .split-content p { color: rgba(250,248,245,0.55); }
.section--forest .split-content h3 { color: var(--cream); }
.section--forest .feature-icon-item p { color: rgba(250,248,245,0.45); }
.section--forest .feature-icon-item h4 { color: var(--cream); }

/* --- Dark theme image card colors --- */
.section--dark .stat-number { color: var(--terracotta); }
.section--dark .stat-label { color: rgba(250,248,245,0.4); }

/* --- Facilitator card with image --- */
.facilitator-block {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 3rem; align-items: center; max-width: 800px;
  margin: 0 auto;
}
.facilitator-image {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 16px;
}
.facilitator-block h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.25rem; }
.facilitator-block .facilitator-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.5; margin-bottom: 1rem; }
.facilitator-block .facilitator-bio { font-size: 0.9rem; line-height: 1.8; font-weight: 300; }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  nav.scrolled { padding: 0.75rem 2rem; }
  .section-pad { padding: 5rem 2rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; padding: 7rem 2rem 4rem; }
  .hero-visual { max-width: 400px; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; max-width: 500px; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .trust-items { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b1, .b4, .b6 { grid-column: auto; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 450px; }
  .rhythm-grid { grid-template-columns: 1fr; }
  .tracks-grid { grid-template-columns: 1fr; }
  .tl-content { grid-template-columns: 1fr; }
  .tl-img { height: 180px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .philosophy-content { grid-template-columns: 1fr; gap: 2rem; }
  .criteria-grid { grid-template-columns: 1fr; }
  .split-block { grid-template-columns: 1fr; }
  .split-image { min-height: 300px; }
  .split-content { padding: 3rem 2rem; }
  .image-card-grid { grid-template-columns: 1fr 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offering-card { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; padding: 0 2rem; }
  .stat-band { gap: 2.5rem; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .facilitator-block { grid-template-columns: 200px 1fr; gap: 2rem; }
  .image-break-text { font-size: 1.3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream); justify-content: center;
    align-items: center; gap: 2rem; z-index: 999;
  }
  .nav--dark .nav-links.active,
  .nav--spirit .nav-links.active,
  .nav--camp .nav-links.active,
  .nav--forest .nav-links.active {
    background: var(--stone);
  }
  .nav-links.active a { font-size: 1.1rem; color: var(--stone); text-transform: none; }
  .nav--dark .nav-links.active a,
  .nav--spirit .nav-links.active a,
  .nav--camp .nav-links.active a,
  .nav--forest .nav-links.active a { color: rgba(255,255,255,0.8); }
  .nav-links.active .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: rgba(0,0,0,0.05); box-shadow: none; margin-top: 0.5rem;
    border-radius: 8px; min-width: unset;
  }
  .nav-toggle { display: block; }
  .section-pad { padding: 4rem 1.5rem; }
  .hero-content { padding: 6rem 1.5rem 3rem; }
  .hero-visual { display: none; }
  .card-grid--3, .card-grid--2, .card-grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-floating-stat, .hero-floating-badge, .about-floating-card { display: none; }
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .trust-item .trust-number { font-size: 2rem; }
  .photo-strip { flex-direction: column; }
  .photo-strip img { height: 200px; }
  .features-strip { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .bento { grid-template-columns: 1fr; }
  .b1, .b4, .b6 { grid-column: auto; }
  .bento-item--wide { grid-column: span 1; }
  .bento-item--tall { grid-row: span 1; }
  .program-day { grid-template-columns: 1fr; gap: 0.5rem; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .split-block { grid-template-columns: 1fr; }
  .split-image { min-height: 250px; }
  .split-content { padding: 2.5rem 1.5rem; }
  .image-card-grid { grid-template-columns: 1fr; }
  .offering-card { grid-template-columns: 1fr; }
  .offering-image img { min-height: 200px; }
  .photo-grid { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .photo-grid img { height: 220px; }
  .stat-band { gap: 2rem; }
  .feature-row { grid-template-columns: 1fr; }
  .facilitator-block { grid-template-columns: 1fr; text-align: center; }
  .facilitator-image { max-width: 250px; margin: 0 auto; }
  .image-break { height: 35vh; min-height: 250px; background-attachment: scroll; }
  .parallax-break { background-attachment: scroll; }
  .image-break-text { font-size: 1.1rem; bottom: 2rem; left: 1.5rem; right: 1.5rem; }
  .camp-timeline { padding-left: 0; }
  .camp-timeline::before { display: none; }
  .tl-dot { display: none; }
  .tl-item { padding-left: 0; }
  .tl-content { grid-template-columns: 1fr; }
  .immersive { background-attachment: scroll; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
