/* ============================================================
   SOUL MEDICINE MOBILE — V2 TRANSCENDENT
   "You can't quite tell if it's art or a website"
   ============================================================ */

/* ============================================================
   CONTROL PANEL — Edit these values to customize the site
   ============================================================ */
:root {
  /* --- BRAND COLORS --- */
  --color-primary: #D4942A;        /* Main gold — buttons, accents */
  --color-primary-light: #E8B35A;  /* Lighter gold — hover states */
  --color-primary-dark: #B07820;   /* Darker gold */
  --color-teal: #2A8C8C;           /* Teal accent — tags, links */
  --color-teal-light: #3EB5B5;     /* Lighter teal */
  --color-terra: #C75B28;          /* Terra/rust — secondary accent */
  --color-green: #4A7A3A;          /* Green — tax badge */

  /* --- SURFACE COLORS --- */
  --color-cream: #FDF6EC;          /* Light background */
  --color-warm-white: #FFF9F0;     /* Warm white */
  --color-bg: #FDF6EC;             /* Page background */
  --color-bg-alt: #F7EFE0;        /* Alternating section bg */
  --color-dark: #1A1208;           /* Dark section background */
  --color-footer: #0F0B04;        /* Footer background */

  /* --- TEXT COLORS --- */
  --color-text: #2D1810;           /* Primary text */
  --color-text-muted: #5A4A38;     /* Secondary text (WCAG AA compliant) */
  --color-text-light: #FDF6EC;     /* Text on dark backgrounds */

  /* --- HERO IMAGE --- */
  /* Change this to swap the hero photo */
  --hero-image: url('images/IMG_5851.jpg');

  /* --- SECTION BACKGROUND IMAGES --- */
  /* Custom-generated atmospheric backgrounds — swap any by changing the path */
  --bg-bark: url('images/bg-bark-texture.png');             /* The trunk — continuous bark from top to bottom */
  --bg-mission: url('images/bg-boundless-valley.png');      /* Misty mountain valley, golden hour — boundless, sacred */
  --bg-programs: url('images/bg-forest-sanctuary.png');     /* Ancient forest with god rays — nurturing, grounded */
  --bg-van: url('images/bg-bark-texture.png');              /* Ancient bark with knothole eyes — alive, grounded */
  --bg-impact: url('images/bg-ocean-stillness.png');        /* Mirror ocean at twilight — measured, impactful */
  --bg-involve: url('images/bg-starfield-infinite.png');    /* Milky Way over desert — transcendent, generous */
  --bg-footer: url('images/bg-bark-texture.png');           /* Subtle bark warmth in the footer */

  /* --- GRADIENT ACCENT STOPS --- */
  --grad-1: #D4942A;
  --grad-2: #C75B28;
  --grad-3: #2A8C8C;
  --grad-4: #4A7A3A;
  --grad-5: #E8B35A;

  /* --- PHOTO SHAPES (blob border-radius) --- */
  --blob-1: 60% 40% 55% 45% / 50% 60% 40% 50%;
  --blob-2: 45% 55% 40% 60% / 55% 45% 60% 40%;
  --blob-3: 50% 50% 45% 55% / 60% 40% 55% 45%;

  /* --- ANIMATION SPEEDS --- */
  --anim-duration: 0.8s;           /* Base animation duration */
  --anim-stagger: 0.12s;           /* Stagger delay between items */
  --hover-speed: 300ms;            /* Hover transition speed */
  --blob-morph-speed: 4s;          /* Photo blob shape transition */

  /* --- KNOTHOLE RIM (thin gradient + grain; legacy / other surfaces) --- */
  --knothole-rim-width: clamp(3px, 0.11in, 7px);
  /* Thicker organic rim — photo blobs + van concept (bark / knothole metaphor) */
  --photo-blob-rim-width: clamp(4px, 0.15in, 11px);

  /* --- EFFECTS --- */
  --grain-opacity: 0.04;           /* Film grain overlay (0 = off) */
  --particle-opacity: 0.3;         /* Floating particles (0 = off) */
  --parallax-speed: 0.3;           /* Hero parallax (0 = off) */

  /* --- BUTTON STYLE --- */
  --btn-radius: 100px;             /* Button corner radius */
  --btn-shadow-color: rgba(212, 148, 42, 0.35);

  /* --- TYPOGRAPHY --- */
  --font-display: 'Zodiak', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;

  /* --- SPACING --- */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  /* --- EASING CURVES --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* --- GLASS PANELS (match .involve-orb — Donate / Volunteer / Partner / Events) --- */
  --glass-bg: rgba(253, 246, 236, 0.05);
  --glass-bg-hover: rgba(253, 246, 236, 0.08);
  --glass-panel-bg: rgba(253, 246, 236, 0.07);
  --glass-panel-bg-hover: rgba(253, 246, 236, 0.1);
  --glass-border: rgba(212, 148, 42, 0.2);
  --glass-border-hover: rgba(212, 148, 42, 0.5);
  --glass-blur: 10px;
  --glass-radius: 24px;
}

@media (max-width: 640px) {
  :root {
    --knothole-rim-width: clamp(3px, 0.75vw, 6px);
    --photo-blob-rim-width: clamp(3px, 1vw, 8px);
  }
}

/* Dark mode */
[data-theme="dark"] {
  --color-bg: #1A1208;
  --color-bg-alt: #231A0E;
  --color-dark: #0F0B04;
  --color-footer: #080503;
  --color-text: #F0E6D6;
  --color-text-muted: #B5A68E;
  --color-text-light: #F0E6D6;
  --color-cream: #1A1208;
  --color-warm-white: #231A0E;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-light);
  background: var(--color-dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  transition: color 0.6s var(--ease-in-out);
}

/* === THE TRUNK — the bark IS the site, raw, no veil === */
/* Bark properties driven by SITE_CONFIG via JS custom properties */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--bg-van);
  background-size: var(--bark-size, cover);
  background-repeat: var(--bark-repeat, no-repeat);
  background-position: center center;
  z-index: -2;
  pointer-events: none;
  opacity: var(--bark-opacity, 0.32);
  mix-blend-mode: lighten;
  filter: var(--bark-blur, none);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}

a:hover { color: var(--color-primary-dark); }


/* ---- AMBIENT CANVAS ---- */
#ambientCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: var(--particle-opacity);
}

[data-theme="dark"] #ambientCanvas {
  opacity: 0.2;
}


/* ---- FLOW CONTAINER ---- */
.flow-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}


/* ---- ORGANIC GLASSMORPHIC SEPARATORS ---- */
/* Wave SVGs hidden — replaced by glassmorphic strip separators */
.wave {
  display: none;
}

/* Glassmorphic section separator — dark glass strip between sections */
.section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 8%;
  right: 8%;
  height: 4px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 148, 42, 0.25) 20%,
    rgba(212, 148, 42, 0.35) 50%,
    rgba(212, 148, 42, 0.25) 80%,
    transparent
  );
  border-radius: 100px;
  z-index: 3;
  filter: blur(0.5px);
  box-shadow: 0 0 12px rgba(212, 148, 42, 0.1);
}

/* Hero doesn't need a bottom separator — it has its own gradient edge */
.hero::after {
  content: none;
}


/* ---- THE TRUNK SHOWS THROUGH EVERYWHERE ---- */
/* Per-section background images are retired. The bark texture on body::before
   IS the unified background. Each section's semi-transparent overlay lets
   the bark grain show through at different intensities. */
.mission,
.programs,
.impact,
.involve,
.van,
.events {
  position: relative;
}


/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.nav--scrolled {
  background: rgba(26, 18, 8, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 0 rgba(212, 148, 42, 0.15);
}

[data-theme="dark"] .nav--scrolled {
  background: rgba(26, 18, 8, 0.85);
}

.nav--hidden { transform: translateY(-100%); }

/* Mobile overlay (z-index 101) must sit above .nav (100); bar stays tappable above overlay */
body.menu-open .nav {
  z-index: 102;
}

/* Three-column grid: middle column is 1fr + minmax(0,…) so .nav__links wraps *inside*
   the gap between logo and Donate — never paints under the CTA (auto center column caused overlap). */
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1.5rem;
  row-gap: 0.75rem;
}

/* Non-interactive brand mark (not a link) */
.nav__brand {
  justify-self: start;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}

.nav__brand img {
  display: block;
  height: 120px;
  width: auto;
  max-width: min(320px, 50vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  box-shadow: none;
}

.mobile-menu__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  pointer-events: none;
  user-select: none;
}

.mobile-menu__brand img {
  display: block;
  height: 132px;
  width: auto;
  max-width: min(400px, 88vw);
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.nav__links {
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  row-gap: 0.625rem;
  align-items: center;
}

@media (max-width: 1180px) {
  .nav__links {
    gap: 0.55rem;
    row-gap: 0.5rem;
  }

  .nav__link {
    font-size: 0.78rem;
    padding: 0.45rem 0.75rem;
    letter-spacing: 0.05em;
  }

  /* Free horizontal room so centered link row + Givebutter CTA fit laptop widths */
  .nav__brand img {
    height: 96px;
    max-width: min(300px, 36vw);
  }
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: color 300ms var(--ease-out), background 300ms var(--ease-out), border-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--color-primary), var(--color-teal));
  transition: width 300ms var(--ease-out);
  border-radius: 1px;
}

.nav__link:hover {
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(212, 148, 42, 0.5) 0%,
    rgba(168, 98, 32, 0.42) 50%,
    rgba(212, 148, 42, 0.38) 100%
  );
  border-color: rgba(253, 220, 160, 0.55);
  box-shadow:
    0 4px 18px rgba(212, 148, 42, 0.28),
    0 2px 8px rgba(45, 24, 16, 0.25);
}

.nav__link:hover::after {
  width: calc(100% - 1.5rem);
}

.nav__actions {
  justify-self: end;
  flex-shrink: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

/* Keep CTA on one line so grid column width stays predictable */
.nav__donate {
  white-space: nowrap;
}

/* Dark mode toggle */
.dark-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
  padding: 0.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
}

.dark-toggle:hover { background: rgba(212, 148, 42, 0.15); }

.dark-toggle__moon { display: none; }
[data-theme="dark"] .dark-toggle__sun { display: none; }
[data-theme="dark"] .dark-toggle__moon { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms var(--ease-out);
}

.hamburger--active .hamburger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger--active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger--active .hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  /* Classic flex row: hidden .nav__links would break 3-col grid placement */
  .nav__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
  }

  .nav__brand,
  .nav__actions {
    justify-self: unset;
  }

  .nav__brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .nav__links { display: none; }
  .hamburger { display: flex; }

  /* Donate + hamburger share one row: pin menu to viewport corner so CTA can't cover it */
  .nav__actions {
    flex: 1 1 auto;
    min-width: 0;
    flex-shrink: 1;
    justify-content: flex-end;
    gap: 0.5rem;
    padding-right: 3.25rem;
  }

  .nav__donate {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.72rem;
    padding: 0.5rem 0.75rem;
    justify-content: center;
  }

  .hamburger {
    position: absolute;
    right: max(0.75rem, min(5vw, 1.25rem));
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0.65rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .nav__brand img {
    height: 76px;
    max-width: min(220px, 52vw);
  }
}

@media (max-width: 420px) {
  .nav__brand img {
    height: 60px;
    max-width: min(220px, 72vw);
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100dvh;
  background: rgba(26, 18, 8, 0.95);
  backdrop-filter: blur(30px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms var(--ease-out), visibility 400ms var(--ease-out);
}

.mobile-menu--open {
  z-index: 101;
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  margin: auto;
  padding: 1.5rem 1.25rem 2rem;
  max-width: 100%;
  box-sizing: border-box;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
  padding: 0.65rem 1.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.mobile-menu__link:hover {
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(212, 148, 42, 0.48) 0%,
    rgba(150, 88, 28, 0.4) 100%
  );
  border-color: rgba(253, 220, 160, 0.5);
  box-shadow: 0 6px 24px rgba(212, 148, 42, 0.2);
}

.mobile-menu__donate { margin-top: 1rem; }


/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 2rem;
  border-radius: var(--btn-radius);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--hover-speed) var(--ease-out), box-shadow var(--hover-speed) var(--ease-out), background var(--hover-speed) var(--ease-out);
  letter-spacing: 0.02em;
}

.btn:active { transform: scale(0.97); }

.btn--glow {
  background: linear-gradient(135deg, var(--color-primary), var(--color-terra));
  color: #fff;
  box-shadow: 0 2px 8px var(--btn-shadow-color);
  position: relative;
  overflow: hidden;
}

.btn--glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
}

.btn--glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(212, 148, 42, 0.4);
  color: #fff;
}

.btn--glow:hover::before { opacity: 1; }

.btn--ghost {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid rgba(253, 246, 236, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(253, 246, 236, 0.15);
  border-color: rgba(253, 246, 236, 0.9);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 2px 12px rgba(253, 246, 236, 0.15);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn--mega {
  padding: 1.2rem 3.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.btn--sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
}


/* ---- EYEBROW / SECTION HEADER ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 1rem;
}

.eyebrow--light { color: var(--color-primary-light); }

/* Stronger section kicker — balances oversized display titles (Mission / Programs / Van / Involve) */
.eyebrow--section {
  font-size: clamp(0.88rem, 2.1vw, 1.08rem);
  letter-spacing: 0.11em;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.section-header--light .eyebrow--section.eyebrow--light {
  color: var(--color-primary-light);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--color-text-light);
  margin: 0 auto 3rem;
}

.section-title--light { color: var(--color-text-light); }

.section-header {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--glass-radius);
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-sizing: border-box;
}

.section-header .section-title {
  margin-bottom: 0.75rem;
}

.section-header .section-subtitle {
  margin-top: 0.25rem;
}

.section-header--light {
  background: rgba(253, 246, 236, 0.06);
}


/* ---- SECTIONS ---- */
.section {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.section--alt {
  background: transparent;
}


/* ---- PHOTO BLOB — organic shaped images (knothole rim: grain + bark sample + cavity hints) ---- */
.photo-blob {
  position: relative;
  box-sizing: border-box;
  border-radius: var(--blob-1);
  overflow: hidden;
  transition: border-radius var(--blob-morph-speed) var(--ease-in-out);
  border: var(--photo-blob-rim-width) solid transparent;
  background:
    linear-gradient(transparent, transparent) padding-box,
    repeating-linear-gradient(
      82deg,
      rgba(0, 0, 0, 0.14) 0 0.5px,
      transparent 0.5px 3px
    ) border-box,
    repeating-linear-gradient(
      -7deg,
      rgba(255, 245, 236, 0.04) 0 0.55px,
      transparent 0.55px 4.5px
    ) border-box,
    radial-gradient(
      ellipse 95% 58% at 10% 86%,
      rgba(0, 0, 0, 0.38) 0%,
      transparent 56%
    ) border-box,
    radial-gradient(
      ellipse 72% 48% at 92% 14%,
      rgba(8, 4, 3, 0.48) 0%,
      transparent 50%
    ) border-box,
    radial-gradient(
      ellipse 45% 55% at 52% 6%,
      rgba(0, 0, 0, 0.22) 0%,
      transparent 42%
    ) border-box,
    radial-gradient(
      ellipse 30% 32% at 82% 84%,
      rgba(212, 148, 42, 0.14) 0%,
      transparent 52%
    ) border-box,
    linear-gradient(
      152deg,
      #4a3328 0%,
      #1a0d0a 32%,
      #2c1a14 55%,
      #0d0605 78%,
      #3d261c 100%
    ) border-box,
    var(--bg-bark) border-box;
  background-size:
    auto,
    auto,
    auto,
    auto,
    auto,
    auto,
    auto,
    auto,
    260% 260%;
  background-position:
    center,
    center,
    center,
    center,
    center,
    center,
    center,
    center,
    33% 44%;
  background-repeat: no-repeat;
  background-clip:
    padding-box,
    border-box,
    border-box,
    border-box,
    border-box,
    border-box,
    border-box,
    border-box,
    border-box;
}

.photo-blob:hover {
  border-radius: var(--blob-2);
}

.photo-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.photo-blob:hover img {
  transform: scale(1.05);
}

.photo-blob--lg {
  width: 100%;
  aspect-ratio: 4/3;
}

/* IMG_4885 — smaller frame + zoom in / bias lower so bowls + people fill mask (hide grass edges) */
.program-flow .photo-blob--sound-healing.photo-blob--portrait {
  margin-inline: auto;
  width: min(22rem, 88vw);
  max-width: min(22rem, 88vw);
}

.photo-blob--sound-healing img {
  object-fit: cover;
  object-position: center 74%;
  transform: scale(1.09);
  transform-origin: 50% 68%;
}

.photo-blob--sound-healing:hover img {
  transform: scale(1.14);
}

/* IMG_4526 — Community Events: more people / grass, less sky & building */
.photo-blob--community-events img {
  object-fit: cover;
  object-position: center 68%;
  transform: scale(1.05);
  transform-origin: center 62%;
}

.photo-blob--community-events:hover img {
  transform: scale(1.1);
}

.photo-blob--sm {
  width: clamp(200px, 40vw, 350px);
  aspect-ratio: 4/3;
}

.photo-blob--portrait {
  width: clamp(280px, 40vw, 450px);
  aspect-ratio: 3/4;
  border-radius: var(--blob-3);
}

.photo-blob--portrait:hover {
  border-radius: var(--blob-1);
}

/* Founder — single centered portrait (larger than former trio cells) */
.photo-blob--portrait.photo-blob--nicole-single {
  width: clamp(18rem, 52vw, 26rem);
  max-width: min(26rem, 100%);
  margin-inline: auto;
  aspect-ratio: 3/4;
  border-radius: var(--blob-3);
}

.photo-blob--nicole-single:hover {
  border-radius: var(--blob-1);
}

/* Soft glow behind blobs */
.photo-blob::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: inherit;
  background: radial-gradient(ellipse, rgba(212, 148, 42, 0.2), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

/* === PHOTO BORDER STYLE VARIANTS (admin-switchable) === */
/* 'rounded' — clean 24px rounded rectangle */
.photo-border--rounded,
.photo-border--rounded.photo-blob--portrait,
.photo-border--rounded.photo-blob--nicole-single,
.photo-border--rounded.photo-blob--sm,
.photo-border--rounded.photo-blob--lg,
.photo-border--rounded.photo-blob--venue {
  border-radius: 24px !important;
}
.photo-border--rounded:hover {
  border-radius: 24px !important;
}

/* 'circle' — perfect circle / ellipse */
.photo-border--circle,
.photo-border--circle.photo-blob--portrait,
.photo-border--circle.photo-blob--nicole-single,
.photo-border--circle.photo-blob--sm,
.photo-border--circle.photo-blob--lg,
.photo-border--circle.photo-blob--venue {
  border-radius: 50% !important;
}
.photo-border--circle:hover {
  border-radius: 50% !important;
}

/* 'none' — sharp rectangular, no radius */
.photo-border--none,
.photo-border--none.photo-blob--portrait,
.photo-border--none.photo-blob--nicole-single,
.photo-border--none.photo-blob--sm,
.photo-border--none.photo-blob--lg,
.photo-border--none.photo-blob--venue {
  border-radius: 0 !important;
}
.photo-border--none:hover {
  border-radius: 0 !important;
}

/* Knothole rim off when admin style is "none" */
.photo-border--none.photo-blob,
.photo-border--none.photo-blob--portrait,
.photo-border--none.photo-blob--nicole-single,
.photo-border--none.photo-blob--sm,
.photo-border--none.photo-blob--lg,
.photo-border--none.photo-blob--venue {
  border-width: 0 !important;
  border-style: none !important;
  background: none !important;
  background-clip: border-box !important;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__parallax-bg {
  position: absolute;
  inset: -60px;
  z-index: 0;
}

/* Stacked hero slides — crossfade via .hero__slide--active (JS rotates) */
.hero__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s var(--ease-in-out);
  filter: brightness(0.7) saturate(1.2);
  z-index: 0;
}

.hero__slide--active {
  opacity: 1;
  z-index: 1;
}

/* IMG_1044 — anchor lower in image so people read higher in the viewport (less empty sky) */
.hero__slide--1044 {
  object-position: center 78%;
}

@media (max-width: 768px) {
  .hero__slide--1044 {
    object-position: center 76%;
  }
}

.hero__slides-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.2);
}

.hero__gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 148, 42, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(42, 140, 140, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(26, 18, 8, 0.7) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(26, 18, 8, 0.2) 0%, rgba(26, 18, 8, 0.6) 100%);
}

/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
  animation: orbFloat 12s var(--ease-in-out) infinite alternate;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-primary), transparent);
  top: 10%;
  left: -5%;
  animation-duration: 14s;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-teal), transparent);
  top: 30%;
  right: -5%;
  animation-duration: 10s;
  animation-delay: -4s;
}

.hero__orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--color-terra), transparent);
  bottom: 15%;
  left: 30%;
  animation-duration: 16s;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  max-width: 900px;
}

.hero__kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-primary-light);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.hero__line--light {
  color: #fff;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.55),
    0 1px 3px rgba(0, 0, 0, 0.45);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(253, 246, 236, 0.8);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
  opacity: 0;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.hero__content-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.25rem);
  border-radius: var(--glass-radius);
  background: rgba(26, 18, 8, 0.16);
  border: 1px solid rgba(212, 148, 42, 0.2);
  backdrop-filter: blur(12px) saturate(1.12);
  -webkit-backdrop-filter: blur(12px) saturate(1.12);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(253, 246, 236, 0.05);
}

/* Mobile: narrower hero copy card, lighter glass, less blur — more photo visible, text still readable */
@media (max-width: 768px) {
  .hero__content {
    max-width: min(22.5rem, 92vw);
    padding-inline: clamp(0.65rem, 3.5vw, 1rem);
  }

  .hero__content-panel {
    padding: 1rem 1.15rem;
    background: rgba(26, 18, 8, 0.07);
    border-color: rgba(212, 148, 42, 0.18);
    backdrop-filter: blur(5px) saturate(1.03);
    -webkit-backdrop-filter: blur(5px) saturate(1.03);
    box-shadow:
      0 8px 26px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(253, 246, 236, 0.06);
  }

  .hero__kicker {
    margin-bottom: 1rem;
    text-shadow:
      0 1px 3px rgba(0, 0, 0, 0.82),
      0 0 12px rgba(0, 0, 0, 0.42);
  }

  .hero__headline {
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
    margin-bottom: 1rem;
  }

  .hero__line--light {
    text-shadow:
      0 2px 18px rgba(0, 0, 0, 0.7),
      0 1px 4px rgba(0, 0, 0, 0.55),
      0 0 1px rgba(0, 0, 0, 0.85);
  }

  .hero__sub {
    margin-bottom: 1.35rem;
    font-size: clamp(0.95rem, 3.6vw, 1.08rem);
    color: rgba(253, 246, 236, 0.96);
    text-shadow:
      0 1px 4px rgba(0, 0, 0, 0.78),
      0 0 2px rgba(0, 0, 0, 0.65);
  }
}

.hero__carousel-controls {
  position: absolute;
  bottom: clamp(1.25rem, 4vw, 2.25rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  background: rgba(26, 18, 8, 0.5);
  border: 1px solid rgba(212, 148, 42, 0.28);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.hero__carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(253, 246, 236, 0.1);
  color: var(--color-primary-light);
  cursor: pointer;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.hero__carousel-arrow:hover {
  background: rgba(212, 148, 42, 0.35);
  color: #fff;
}

.hero__carousel-arrow:active {
  transform: scale(0.94);
}

.hero__carousel-arrow:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

.hero__carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(253, 246, 236, 0.28);
  cursor: pointer;
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.hero__carousel-dot:hover {
  background: rgba(253, 246, 236, 0.5);
  transform: scale(1.15);
}

.hero__carousel-dot--active {
  background: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(253, 246, 236, 0.35);
  transform: scale(1.2);
}

.hero__carousel-dot:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .hero__carousel-controls {
    gap: 0.5rem;
    padding: 0.45rem 0.65rem;
  }

  .hero__carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .hero__carousel-dot {
    width: 8px;
    height: 8px;
  }
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(253, 246, 236, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--color-primary-light);
  border-radius: 2px;
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}


/* ============================================================
   MISSION
   ============================================================ */
.mission__intro .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.mission__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-light);
  max-width: 900px;
  margin-bottom: 4rem;
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--glass-radius);
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.mission__quote::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-teal));
  border-radius: 2px;
  margin-bottom: 2rem;
}

.mission__flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.mission__text {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--glass-radius);
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.mission__text-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0 0 1rem;
  position: relative;
  line-height: 1.2;
}

.mission__text-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-teal));
  border-radius: 2px;
  margin-top: 0.65rem;
}

.mission__text p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: rgba(240, 230, 214, 0.75);
}

.mission__text > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 2.35em;
  font-weight: 600;
  line-height: 0.85;
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--color-primary-light);
}

.mission__highlight {
  font-weight: 500;
  color: var(--color-text-light) !important;
  padding: 1.5rem;
  border-left: 3px solid var(--color-primary);
  background: var(--glass-bg);
  border-radius: 0 12px 12px 0;
  border: 1px solid var(--glass-border);
  border-left-width: 3px;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

@media (max-width: 768px) {
  .mission__flow {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


/* ============================================================
   PROGRAMS — Flowing river layout
   ============================================================ */
.programs__river {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.program-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* Desktop: same DOM order (visual first, content second); swap columns for “left” rows */
@media (min-width: 769px) {
  .program-flow--right .program-flow__visual {
    grid-column: 1;
    grid-row: 1;
  }

  .program-flow--right .program-flow__content {
    grid-column: 2;
    grid-row: 1;
  }

  .program-flow--left .program-flow__visual {
    grid-column: 2;
    grid-row: 1;
  }

  .program-flow--left .program-flow__content {
    grid-column: 1;
    grid-row: 1;
  }
}

.program-flow__visual {
  min-width: 0;
}

.program-flow__content {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--glass-radius);
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

/* Art row: keep subject centered in knothole frame (less “empty” edge / bark read-through) */
.program-flow--art .photo-blob img {
  object-position: center 35%;
}

.program-flow__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  position: relative;
}

.program-flow__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-teal));
  border-radius: 2px;
  margin-top: 0.75rem;
}

.program-flow__content p {
  font-size: 1rem;
  color: rgba(240, 230, 214, 0.75);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .program-flow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ============================================================
   THE VAN — Immersive dark section
   ============================================================ */
.van {
  background: var(--color-dark);
  position: relative;
}

.van__glow-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 148, 42, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(42, 140, 140, 0.1) 0%, transparent 50%);
}

.van__showcase {
  text-align: center;
}

.van__concept {
  position: relative;
  box-sizing: border-box;
  max-width: 700px;
  margin: 0 auto 3rem;
  border-radius: 24px;
  overflow: hidden;
  border: var(--photo-blob-rim-width) solid transparent;
  background:
    linear-gradient(transparent, transparent) padding-box,
    repeating-linear-gradient(
      82deg,
      rgba(0, 0, 0, 0.14) 0 0.5px,
      transparent 0.5px 3px
    ) border-box,
    repeating-linear-gradient(
      -7deg,
      rgba(255, 245, 236, 0.04) 0 0.55px,
      transparent 0.55px 4.5px
    ) border-box,
    radial-gradient(
      ellipse 95% 58% at 10% 86%,
      rgba(0, 0, 0, 0.38) 0%,
      transparent 56%
    ) border-box,
    radial-gradient(
      ellipse 72% 48% at 92% 14%,
      rgba(8, 4, 3, 0.48) 0%,
      transparent 50%
    ) border-box,
    radial-gradient(
      ellipse 45% 55% at 52% 6%,
      rgba(0, 0, 0, 0.22) 0%,
      transparent 42%
    ) border-box,
    radial-gradient(
      ellipse 30% 32% at 82% 84%,
      rgba(212, 148, 42, 0.14) 0%,
      transparent 52%
    ) border-box,
    linear-gradient(
      152deg,
      #4a3328 0%,
      #1a0d0a 32%,
      #2c1a14 55%,
      #0d0605 78%,
      #3d261c 100%
    ) border-box,
    var(--bg-bark) border-box;
  background-size:
    auto,
    auto,
    auto,
    auto,
    auto,
    auto,
    auto,
    auto,
    260% 260%;
  background-position:
    center,
    center,
    center,
    center,
    center,
    center,
    center,
    center,
    33% 44%;
  background-repeat: no-repeat;
  background-clip:
    padding-box,
    border-box,
    border-box,
    border-box,
    border-box,
    border-box,
    border-box,
    border-box,
    border-box;
  box-shadow:
    inset 2px 1px 2px rgba(255, 242, 228, 0.06),
    inset -2px -9px 20px rgba(5, 2, 2, 0.5),
    0 30px 80px rgba(0, 0, 0, 0.5);
}

.van__concept-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(212, 148, 42, 0.3), transparent 70%);
  z-index: 0;
  filter: blur(40px);
}

.van__concept img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 24px;
}

.van__story {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--glass-radius);
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.van__lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

.van__story p {
  color: rgba(253, 246, 236, 0.88);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.75;
}

.van__story strong {
  color: var(--color-primary-light);
}

.van__real {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 2rem;
  width: 100%;
  max-width: min(36rem, 100%);
}

.van__real-photo {
  width: 100%;
  max-width: min(32rem, 100%);
  margin-inline: auto;
}

.van__caption {
  font-size: 0.85rem;
  color: rgba(240, 230, 214, 0.5);
  font-style: italic;
}


/* ============================================================
   IMPACT — Stats + flowing gallery
   ============================================================ */
.stats-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-orb {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(212, 148, 42, 0.1), rgba(42, 140, 140, 0.08));
  border: 1px solid rgba(212, 148, 42, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.stat-orb:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 148, 42, 0.15);
}

.stat-orb__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-orb__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(240, 230, 214, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats-flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .stats-flow {
    grid-template-columns: 1fr;
  }
}

/* Gallery — 3×2 square grid (six equal cells) */
.gallery-flow__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: min(100%, 960px);
  margin-inline: auto;
}

.gallery-flow__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 400ms var(--ease-out);
  aspect-ratio: 1;
  min-height: 0;
}

.gallery-flow__item:hover {
  transform: scale(1.02);
  z-index: 2;
}

.gallery-flow__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.gallery-flow__item:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .gallery-flow__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .gallery-flow__track {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: minmax(0, auto);
  }

  .gallery-flow__item {
    aspect-ratio: 4 / 3;
    max-height: 280px;
  }
}


/* ============================================================
   NICOLE'S STORY
   ============================================================ */
.nicole__cinematic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  max-width: min(38rem, 100%);
  margin-inline: auto;
}

/* Founder — one centered portrait */
.nicole__portrait {
  display: flex;
  justify-content: center;
  width: 100%;
  /* Equal breathing room above (eyebrow → photo) and below (photo → name) */
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.nicole__narrative {
  width: 100%;
  max-width: min(36rem, 100%);
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--glass-radius);
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.nicole__narrative > .eyebrow {
  display: inline-block;
  margin-bottom: 0;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  background: rgba(253, 246, 236, 0.06);
  border: 1px solid rgba(212, 148, 42, 0.22);
}

.nicole__narrative > .section-title,
.nicole__narrative > .section-title.nicole__name {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.nicole__story {
  font-family: var(--font-body);
  font-size: clamp(1.06rem, 2.15vw, 1.2rem);
  font-weight: 400;
  color: rgba(248, 240, 226, 0.94);
  line-height: 1.72;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.nicole__story + .nicole__story {
  margin-top: 1.15rem;
}

.nicole__credentials {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  text-align: center;
}

.nicole__cred-label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--color-teal-light);
  margin-bottom: 1rem;
  text-align: center;
}

.nicole__cred-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nicole__cred-list li {
  font-size: clamp(0.82rem, 2vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(42, 140, 140, 0.15);
  border: 1px solid rgba(42, 140, 140, 0.25);
  max-width: 100%;
  min-width: 0;
  text-align: center;
  line-height: 1.4;
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  .nicole__story {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .nicole__cinematic {
    text-align: center;
  }
  .nicole__narrative {
    padding-top: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .nicole__credentials {
    text-align: center;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
  .nicole__cred-list {
    justify-content: center;
  }
}


/* ============================================================
   RETREATS — Sacred Union Immersive Journey
   ============================================================ */
.retreats {
  background: transparent !important;
}

.wave--retreats { height: 70px; }

/* Retreat Intro — cover + story side by side */
.retreat-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.retreat-cover {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(45, 24, 16, 0.25);
}

.retreat-cover img {
  width: 100%;
  display: block;
  transition: transform 600ms var(--ease-out);
}

.retreat-cover:hover img {
  transform: scale(1.03);
}

.retreat-cover__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 8, 0.75) 0%, rgba(26, 18, 8, 0.1) 50%, transparent 100%);
  pointer-events: none;
}

.retreat-cover__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.5rem;
  z-index: 2;
}

.retreat-cover__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary-light);
  display: block;
  margin-bottom: 0.5rem;
}

.retreat-cover__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.retreat-cover__location {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(253, 246, 236, 0.7);
  letter-spacing: 0.05em;
}

.retreat-intro__story {
  padding: 1rem 0;
}

.retreat-intro__lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.retreat-intro__story p {
  font-size: 1rem;
  color: rgba(240, 230, 214, 0.7);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* Venue photo */
.retreat-venue {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.photo-blob--venue {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(45, 24, 16, 0.2);
}

.photo-blob--venue:hover {
  border-radius: 40% 60% 45% 55% / 55% 45% 55% 45%;
}

/* 7-Day Journey Timeline */
.journey {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.journey__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  text-align: center;
}

.journey__sub {
  font-size: 1rem;
  color: rgba(240, 230, 214, 0.65);
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.journey__track-wrapper {
  position: relative;
}

.journey__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.journey__track::-webkit-scrollbar {
  display: none;
}

.journey__day {
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(45, 36, 20, 0.5), rgba(26, 18, 8, 0.7));
  border: 1px solid rgba(212, 148, 42, 0.15);
  backdrop-filter: blur(8px);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.journey__day:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212, 148, 42, 0.15);
}

.journey__day-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.journey__day-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.journey__day:hover .journey__day-img img {
  transform: scale(1.06);
}

.journey__day-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.journey__day-num {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-teal);
  display: block;
  margin-bottom: 0.25rem;
}

.journey__day-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.journey__day-theme {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.journey__day-desc {
  font-size: 0.88rem;
  color: rgba(240, 230, 214, 0.65);
  line-height: 1.6;
}

/* Journey arrows */
.journey__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 18, 8, 0.8);
  border: 1px solid rgba(212, 148, 42, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-light);
  z-index: 3;
  transition: background 180ms var(--ease-out), box-shadow 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.journey__arrow:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(212, 148, 42, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.journey__arrow--left { left: -22px; }
.journey__arrow--right { right: -22px; }

/* Journey progress dots */
.journey__progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.journey__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 148, 42, 0.2);
  transition: background 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.journey__dot--active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* Retreat closing emotional pull */
.retreat-close {
  text-align: center;
}

.retreat-close__quote {
  max-width: 700px;
  margin: 0 auto 3rem;
  position: relative;
}

.retreat-close__quote::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-teal));
  border-radius: 2px;
  margin: 0 auto 2rem;
}

.retreat-close__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.5;
  font-style: italic;
}

.retreat-close__gallery {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.retreat-close__gallery .photo-blob--sm {
  width: clamp(180px, 30vw, 280px);
  aspect-ratio: 3/4;
}

/* Retreats responsive */
@media (max-width: 768px) {
  .retreat-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .journey__day {
    min-width: 260px;
    max-width: 280px;
  }

  .journey__arrow {
    display: none;
  }

  .photo-blob--venue {
    border-radius: 20px;
    aspect-ratio: 4/3;
  }

  .retreat-close__gallery .photo-blob--sm {
    width: clamp(140px, 42vw, 200px);
  }
}


/* ============================================================
   EVENTS & GATHERINGS
   ============================================================ */
.events {
  position: relative;
  color: var(--color-text-light);
}

.events .eyebrow {
  color: var(--color-primary-light);
}

.events .section-title {
  color: var(--color-text-light);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(240, 230, 214, 0.65);
  max-width: 540px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

.events .section-subtitle {
  color: rgba(253, 246, 236, 0.65);
}

/* Ensure events content sits above the bark texture */
.events .flow-container {
  position: relative;
  z-index: 1;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

/* Organic leaf-shaped event cards — orb-matching glass on bark */
.event-card {
  display: flex;
  flex-direction: column;
  background: var(--glass-panel-bg);
  border-radius: 55% 45% 50% 50% / 8% 8% 6% 6%;
  padding: 2.5rem 2rem 2rem;
  text-decoration: none;
  color: var(--color-text-light);
  position: relative;
  isolation: isolate;
  z-index: 2;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--hover-speed) ease, box-shadow var(--hover-speed) ease, border-color var(--hover-speed) ease;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    0 16px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Subtle warm glow behind card */
.event-card::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  background: radial-gradient(ellipse, rgba(212, 148, 42, 0.1), transparent 70%);
  z-index: -2;
  filter: blur(20px);
  opacity: 0;
  transition: opacity var(--hover-speed) ease;
}

/* Remove the old opaque cream face */
.event-card::after {
  content: none;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 148, 42, 0.4);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    0 24px 56px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(212, 148, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.event-card:hover::before {
  opacity: 1;
}

.event-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal-light);
  background: rgba(42, 140, 140, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.event-card__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(240, 230, 214, 0.65);
}

.event-card__detail svg {
  flex-shrink: 0;
  color: var(--color-primary);
  opacity: 0.7;
}

.event-card__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(240, 230, 214, 0.65);
  margin: 0 0 1rem;
  flex: 1;
}

.event-card__cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-light);
  transition: color var(--hover-speed) ease;
}

.event-card:hover .event-card__cta {
  color: var(--color-primary);
}

.events__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  width: 100%;
}

/* Email list signup — glass band under static event cards */
.newsletter-cta {
  scroll-margin-top: 6rem;
  width: 100%;
  max-width: min(40rem, 100%);
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--glass-radius);
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  text-align: center;
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.25);
}

.newsletter-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--color-primary-light);
  margin: 0 0 0.85rem;
  line-height: 1.25;
}

.newsletter-cta__text {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.65;
  color: rgba(253, 246, 236, 0.88);
  margin: 0 auto 0.75rem;
  max-width: 42ch;
}

.newsletter-cta__fine {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(253, 246, 236, 0.55);
  margin: 0 0 1.35rem;
}

.newsletter-cta__btn {
  margin-inline: auto;
}

.newsletter-cta__optional {
  font-weight: 400;
  opacity: 0.7;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-cta__label--opt-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  text-align: left;
}

.newsletter-cta__label-text {
  min-width: 0;
}

.newsletter-cta__textarea {
  min-height: 4.75rem;
  max-height: 14rem;
  resize: vertical;
  line-height: 1.5;
}

.newsletter-cta__form {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-cta__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  margin-bottom: 1.15rem;
  width: 100%;
  align-self: stretch;
  text-align: left;
  align-items: start;
}

.newsletter-cta__field--full {
  grid-column: 1 / -1;
}

.newsletter-cta__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(253, 246, 236, 0.75);
  margin-bottom: 0.35rem;
}

.newsletter-cta__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1rem;
}

.newsletter-cta__input:focus {
  outline: 2px solid rgba(212, 148, 42, 0.55);
  outline-offset: 2px;
  border-color: rgba(212, 148, 42, 0.45);
}

.newsletter-cta__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.newsletter-cta__status {
  margin: 0.75rem 0 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: center;
  width: 100%;
}

.newsletter-cta__status--ok {
  color: var(--color-teal-light);
}

.newsletter-cta__status--err {
  color: #f0a8a8;
}

@media (max-width: 480px) {
  .newsletter-cta__fields {
    grid-template-columns: 1fr;
  }

  .newsletter-cta__form .newsletter-cta__btn {
    width: 100%;
    max-width: none;
  }
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--btn-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background var(--hover-speed) ease, color var(--hover-speed) ease;
  cursor: pointer;
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Outline button on dark backgrounds */
.events .btn--outline {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

.events .btn--outline:hover {
  background: var(--color-primary-light);
  color: var(--color-dark);
}

/* Dark mode event cards — already dark glassmorphic, no overrides needed */

[data-theme="dark"] .btn--outline {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

[data-theme="dark"] .btn--outline:hover {
  background: var(--color-primary-light);
  color: var(--color-dark);
}

[data-theme="dark"] .section-subtitle {
  color: rgba(253, 246, 236, 0.6);
}

@media (max-width: 600px) {
  .events__grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    padding: 1.25rem 1.15rem 1.15rem;
  }

  .events__cta {
    flex-direction: column;
    align-items: center;
  }
}


/* ============================================================
   GET INVOLVED — Aurora background
   ============================================================ */
.involve {
  background: var(--color-dark);
  position: relative;
}

.involve__aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212, 148, 42, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(42, 140, 140, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(199, 91, 40, 0.1) 0%, transparent 60%);
  animation: auroraShift 20s var(--ease-in-out) infinite alternate;
}

@keyframes auroraShift {
  0% { opacity: 1; filter: hue-rotate(0deg); }
  50% { opacity: 0.8; filter: hue-rotate(15deg); }
  100% { opacity: 1; filter: hue-rotate(-10deg); }
}

/* Impact Statement Cards */
/* Be Part of the Healing — community photo (IMG_1044, crop toward people) */
.involve__hero-photo {
  display: flex;
  justify-content: center;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  max-width: min(52rem, 100%);
}

.involve__hero-photo-inner {
  width: 100%;
}

.involve__hero-img--1044 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 76%;
  min-height: clamp(200px, 42vw, 340px);
}

.involve__impact {
  text-align: center;
  margin-bottom: 3rem;
}

.involve__impact-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.involve__impact-sub {
  font-size: 1rem;
  color: rgba(240, 230, 214, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.involve__impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  align-content: start;
}

/* Whole grid uses fade-up (not per-tile stagger) so GSAP never leaves y-offset on $100/$500 */
.involve__impact-grid > .impact-card--link {
  margin: 0;
}

.impact-card {
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: rgba(253, 246, 236, 0.06);
  border: 1px solid rgba(212, 148, 42, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 300ms var(--ease-out), border-color 300ms var(--ease-out);
}

.impact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 148, 42, 0.5);
}

.impact-card__amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-primary-light);
  margin: 0 0 0.5rem;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.impact-card__what {
  font-size: 0.85rem;
  color: rgba(240, 230, 214, 0.7);
  line-height: 1.5;
}

.impact-card__what:empty {
  display: none;
  margin: 0;
  min-height: 0;
  padding: 0;
}

/* Donate Hub — CTA + QR Code */
.involve__donate-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  border-radius: 24px;
  background: rgba(253, 246, 236, 0.05);
  border: 1px solid rgba(212, 148, 42, 0.15);
}

.donate-hub__main {
  text-align: center;
}

.donate-hub__main .btn.btn--mega {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.donate-hub__or {
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(253, 236, 210, 0.9);
  margin-top: 1.1rem;
  letter-spacing: 0.02em;
}

.donate-hub__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.donate-hub__qr img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
  display: block;
}

.donate-hub__qr-label {
  display: block;
  width: 100%;
  max-width: 12rem;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(240, 230, 214, 0.82);
  text-transform: none;
  letter-spacing: 0.03em;
  text-align: center;
}

/* Tax Badge */
.involve__tax {
  margin-bottom: 3rem;
}

.tax-badge {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  background: linear-gradient(
    155deg,
    rgba(8, 5, 3, 0.94) 0%,
    rgba(22, 14, 8, 0.92) 38%,
    rgba(38, 22, 12, 0.9) 72%,
    rgba(26, 16, 9, 0.93) 100%
  );
  border: 1px solid rgba(212, 148, 42, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 6px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 148, 42, 0.12);
  max-width: 700px;
  margin: 0 auto;
}

.tax-badge__icon {
  flex-shrink: 0;
  color: var(--color-primary-light);
  margin-top: 2px;
  filter: drop-shadow(0 0 8px rgba(212, 148, 42, 0.35));
}

.tax-badge__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.tax-badge__desc {
  font-size: 0.85rem;
  color: rgba(240, 230, 214, 0.88);
  line-height: 1.6;
}

/* Social Links Bar */
.involve__social {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem 1.5rem 1.5rem;
  border-radius: var(--glass-radius);
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.involve__social-label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.28rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-primary-light);
  margin-bottom: 1.15rem;
  text-shadow: 0 1px 12px rgba(212, 148, 42, 0.25);
}

.involve__social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  background: rgba(253, 246, 236, 0.08);
  border: 1px solid rgba(212, 148, 42, 0.35);
  color: var(--color-primary-light);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.social-link:hover {
  background: rgba(212, 148, 42, 0.18);
  border-color: rgba(253, 220, 160, 0.55);
  color: #fff;
  transform: translateY(-2px);
}

.social-link svg {
  flex-shrink: 0;
}

.involve__flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.involve-orb {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: var(--glass-radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  text-align: center;
  text-decoration: none;
  transition: transform 300ms var(--ease-out), border-color 300ms var(--ease-out), background 300ms var(--ease-out);
  display: block;
  cursor: default;
}

a.involve-orb { cursor: pointer; }

.involve-orb:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
}

.involve-orb__glow {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(212, 148, 42, 0.3), transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}

.involve-orb:hover .involve-orb__glow { opacity: 1; }

.involve-orb__icon {
  color: var(--color-primary-light);
  margin-bottom: 1rem;
}

.involve-orb__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.involve-orb__desc {
  font-size: 0.9rem;
  color: rgba(240, 230, 214, 0.6);
  line-height: 1.6;
}

.involve-orb__cta {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary-light);
  transition: color 180ms var(--ease-out);
}

.involve-orb:hover .involve-orb__cta { color: var(--color-primary); }

.involve__mega-cta {
  text-align: center;
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .involve__impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .involve__donate-hub {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  .involve__flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .involve__impact-grid {
    grid-template-columns: 1fr;
  }
  .involve__flow {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-footer);
  padding: 4rem 0 2rem;
  color: rgba(240, 230, 214, 0.7);
  position: relative;
}

/* Footer bark overlay removed — the trunk shows through the semi-transparent footer bg */

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__logo {
  display: block;
  height: auto;
  width: auto;
  max-height: 72px;
  max-width: min(280px, 90vw);
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(240, 230, 214, 0.6);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 148, 42, 0.15);
  color: rgba(240, 230, 214, 0.6);
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.footer__social-icon:hover {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.1);
}

.footer__tax-note {
  font-size: 0.8rem;
  color: rgba(240, 230, 214, 0.5);
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col a {
  color: rgba(240, 230, 214, 0.6);
  font-size: 0.9rem;
  transition: color 180ms var(--ease-out);
}

.footer__col a:hover { color: var(--color-primary-light); }

.footer__bottom {
  border-top: 1px solid rgba(212, 148, 42, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__legal {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(240, 230, 214, 0.55);
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ============================================================
   ACCESSIBILITY — Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__orb { animation: none; opacity: 0.2; }
  .involve__aurora { animation: none; }
  .hero__scroll-dot { animation: none; }
}


/* ============================================================
   PSYCHEDELIC GRADIENT BORDER — used on featured elements
   ============================================================ */
@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.gradient-border {
  --gradient-angle: 0deg;
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image:
    linear-gradient(var(--color-bg), var(--color-bg)),
    conic-gradient(from var(--gradient-angle), var(--grad-1), var(--grad-2), var(--grad-3), var(--grad-4), var(--grad-5), var(--grad-1));
  animation: gradientSpin 6s linear infinite;
}

@keyframes gradientSpin {
  to { --gradient-angle: 360deg; }
}


/* ============================================================
   TEXTURE + DEPTH SYSTEM
   "Can you see into it? Into the distance? Like it's miles
   and miles away, even though it's the TV screen?"
   ============================================================ */

/* --- Film grain — tactile, organic, alive --- */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain-opacity);
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: multiply;
}

/* === THE TRUNK UNIFIED BACKGROUND SYSTEM ===
   The bark texture lives on body::before as the continuous trunk.
   Every section is a semi-transparent overlay on top of it.
   Light sections: cream veil lets bark grain show through subtly.
   Dark sections: dark veil lets bark grain show through prominently.
   The whole site reads as one living tree. */

/* === NO OVERLAYS — the bark IS the site ===
   Every section is transparent. Content floats directly on the trunk.
   Subtle volumetric light adds warmth without hiding the bark. */

.section,
.section--alt {
  background: transparent !important;
}

.van {
  background: transparent !important;
}

.involve {
  background: transparent !important;
}

.events {
  background: transparent !important;
}

/* --- Deeper photo-blob shadows — asymmetric cavity + floating depth (matches irregular rim) --- */
.photo-blob {
  box-shadow:
    inset 2px 1px 2px rgba(255, 242, 228, 0.07),
    inset -2px -10px 24px rgba(4, 2, 2, 0.46),
    0 4px 8px rgba(45, 24, 16, 0.1),
    0 12px 28px rgba(45, 24, 16, 0.15),
    0 28px 64px rgba(45, 24, 16, 0.2),
    0 0 120px rgba(212, 148, 42, 0.06) !important;
}

/* No knothole rim: depth only (matches prior flat-frame look) */
.photo-border--none.photo-blob {
  box-shadow:
    0 4px 8px rgba(45, 24, 16, 0.1),
    0 12px 28px rgba(45, 24, 16, 0.15),
    0 28px 64px rgba(45, 24, 16, 0.2),
    0 0 120px rgba(212, 148, 42, 0.06) !important;
}

/* --- Impact cards — same glass family as involve orbs --- */
.impact-card {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.25),
    0 24px 48px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  border: 1px solid var(--glass-border) !important;
  background: var(--glass-panel-bg) !important;
  backdrop-filter: blur(var(--glass-blur)) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur)) !important;
}

.impact-card:hover {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.3),
    0 32px 64px rgba(0, 0, 0, 0.2),
    0 0 60px rgba(212, 148, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* --- Involve orbs — clean card depth --- */
.involve-orb {
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.involve-orb:hover {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 12px 28px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* --- Retreat cover — deep cinematic shadow --- */
.retreat-cover {
  box-shadow:
    0 4px 8px rgba(45, 24, 16, 0.1),
    0 16px 40px rgba(45, 24, 16, 0.2),
    0 32px 80px rgba(45, 24, 16, 0.25),
    0 0 100px rgba(212, 148, 42, 0.05) !important;
}

/* --- Journey cards — floating parchment --- */
.journey-day {
  box-shadow:
    0 2px 4px rgba(45, 24, 16, 0.06),
    0 8px 24px rgba(45, 24, 16, 0.1),
    0 20px 48px rgba(45, 24, 16, 0.08) !important;
}

.journey-day:hover {
  box-shadow:
    0 4px 8px rgba(45, 24, 16, 0.08),
    0 12px 32px rgba(45, 24, 16, 0.14),
    0 28px 56px rgba(45, 24, 16, 0.1),
    0 0 40px rgba(212, 148, 42, 0.04) !important;
}

/* --- Donate hub — glowing container --- */
.involve__donate-hub {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    0 16px 48px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

/* --- Gallery items: depth on hover --- */
.reflection-gallery .gallery-item:hover {
  box-shadow:
    0 8px 24px rgba(45, 24, 16, 0.15),
    0 24px 48px rgba(45, 24, 16, 0.12);
}

/* --- Wave dividers: softer feathered edge --- */
.wave {
  filter: drop-shadow(0 -4px 12px rgba(0, 0, 0, 0.06));
}

/* --- Section transitions removed — trunk continuity handles transitions --- */

/* --- CTA buttons: clean, crisp shadow — no blurry glow --- */
.btn--glow {
  box-shadow: 0 2px 8px var(--btn-shadow-color) !important;
}

.btn--glow:hover {
  box-shadow: 0 4px 14px rgba(212, 148, 42, 0.4) !important;
}

.btn--glow:active {
  box-shadow: 0 1px 4px rgba(212, 148, 42, 0.3) !important;
  transform: scale(0.97);
}

/* --- Footer: transparent too — bark runs all the way to the roots --- */
.footer {
  background: transparent !important;
}

/* Readable footer copy — glass panels + stronger text (orb-matching) */
.footer__top {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--glass-radius);
  background: var(--glass-panel-bg) !important;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.footer__bottom {
  margin-top: 1.5rem;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: var(--glass-radius);
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.footer__tagline {
  color: rgba(240, 230, 214, 0.88);
  font-weight: 500;
}

.footer__tax-note {
  color: rgba(240, 230, 214, 0.82);
  font-weight: 500;
}

.footer__col a {
  color: rgba(240, 230, 214, 0.88);
  font-weight: 500;
}

.footer__social-icon {
  color: rgba(240, 230, 214, 0.85);
}

.footer__legal {
  color: rgba(240, 230, 214, 0.86);
  font-weight: 500;
}

/* --- Stat numbers: subtle text shadow for dimension --- */
.stat__number {
  text-shadow: 0 2px 16px rgba(212, 148, 42, 0.3);
}

/* --- Section titles on light bg: very subtle lift --- */
.section-title {
  text-shadow: 0 1px 2px rgba(45, 24, 16, 0.06);
}

/* --- Section titles on dark bg: warm glow --- */
.section-title--light {
  text-shadow: 0 2px 20px rgba(212, 148, 42, 0.15);
}

/* --- Nicole credentials card: subtle inner depth --- */
.nicole-credentials {
  box-shadow:
    0 4px 16px rgba(45, 24, 16, 0.12),
    0 16px 48px rgba(45, 24, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}


/* ============================================================
   V2.3 IMPROVEMENTS
   ============================================================ */

/* --- Visible Focus States (keyboard nav) --- */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 3px;
}

.btn--glow:focus-visible {
  outline-color: #fff;
}

.nav__link:focus-visible,
.mobile-menu__link:focus-visible,
.involve-orb:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 8px;
}

.impact-card:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 3px;
}


/* --- Impact Card Link Styles --- */
.impact-card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  min-height: 10.75rem;
  box-sizing: border-box;
}

.impact-card--link:hover {
  color: inherit;
}

.impact-card__cta {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: 0.75rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out);
}

.impact-card--link:hover .impact-card__cta {
  opacity: 1;
  transform: translateY(0);
}


/* --- Trust Strip --- */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 100px;
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(240, 230, 214, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-strip__item svg {
  color: var(--color-primary-light);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(212, 148, 42, 0.45));
}

.trust-strip__divider {
  width: 1px;
  height: 16px;
  background: rgba(240, 230, 214, 0.15);
  flex-shrink: 0;
}


/* --- Floating Mobile Donate FAB --- */
.fab-donate {
  display: none;
}

@media (max-width: 768px) {
  .fab-donate {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: fixed;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    right: calc(20px + env(safe-area-inset-right, 0px));
    z-index: 98;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-terra));
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 12px rgba(212, 148, 42, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
  }

  .fab-donate:hover,
  .fab-donate:active {
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 148, 42, 0.45), 0 3px 8px rgba(0, 0, 0, 0.25);
  }

  .fab-donate svg {
    flex-shrink: 0;
  }
}


/* --- Hide QR on Mobile, show reassurance --- */
.donate-hub__mobile-reassurance {
  display: none;
}

@media (max-width: 768px) {
  .donate-hub__qr {
    display: none !important;
  }

  .donate-hub__mobile-reassurance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(240, 230, 214, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
  }

  .donate-hub__or {
    display: none;
  }

  .donate-hub__mobile-reassurance svg {
    color: var(--color-primary-light);
    flex-shrink: 0;
  }

  .involve__donate-hub {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .trust-strip {
    border-radius: 16px;
    gap: 0.5rem 0.75rem;
    padding: 1rem;
  }

  .trust-strip__divider {
    display: none;
  }

  .trust-strip__item {
    font-size: 0.7rem;
  }
}


/* ============================================================
   VAN FUNDRAISER PROGRESS BAR
   ============================================================ */
.van__fundraiser {
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 520px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--glass-radius);
  background: var(--glass-panel-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.van__fundraiser--growth {
  max-width: 580px;
  padding: clamp(1.5rem, 3.5vw, 2.35rem);
  background:
    radial-gradient(ellipse 130% 90% at 50% -20%, rgba(74, 122, 58, 0.18) 0%, transparent 52%),
    radial-gradient(ellipse 80% 50% at 80% 100%, rgba(212, 148, 42, 0.08) 0%, transparent 45%),
    var(--glass-panel-bg);
  border-color: rgba(74, 122, 58, 0.32);
  box-shadow:
    0 0 0 1px rgba(212, 148, 42, 0.15),
    0 24px 56px rgba(0, 0, 0, 0.38);
}

.van__fundraiser-kicker {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #7cb86a;
  margin: 0 0 0.4rem;
}

.van__fundraiser-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.05rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.45rem;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(212, 148, 42, 0.25);
}

.van__fundraiser-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  color: rgba(253, 246, 236, 0.88);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.van__growth-meter {
  position: relative;
  margin: 0.35rem 0 0;
  padding: 1.1rem 0.5rem 0.5rem;
}

.van__growth-meter .van__progress-wrap {
  position: relative;
  z-index: 2;
}

.van__growth-rings {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 440px);
  height: 100px;
  pointer-events: none;
  opacity: 0.9;
  background: repeating-radial-gradient(
    circle at 50% 100%,
    transparent 0,
    transparent 11px,
    rgba(74, 122, 58, 0.11) 11px,
    rgba(74, 122, 58, 0.11) 13px
  );
  mask-image: linear-gradient(to top, black 0%, black 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 0%, black 55%, transparent 100%);
  animation: van-growth-rings-pulse 6s ease-in-out infinite;
}

.van__growth-canopy {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: min(52%, 200px);
  height: 28px;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 120% at 50% 100%, rgba(74, 122, 58, 0.45) 0%, transparent 70%);
  filter: blur(5px);
  opacity: 0.85;
}

.van__growth-caption {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(253, 246, 236, 0.76);
  margin: 0.25rem 0 0.9rem;
  line-height: 1.55;
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}

@keyframes van-growth-rings-pulse {
  0%,
  100% {
    opacity: 0.75;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.02);
  }
}

.van__progress-meter-label {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 700;
  color: var(--color-primary-light);
  margin: 0 0 0.75rem;
  min-height: 1.35em;
  letter-spacing: 0.03em;
}

.van__progress-wrap {
  position: relative;
  margin: 0;
  padding: 0.4rem 0 0.2rem;
}

.van__progress-wrap::before,
.van__progress-wrap::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.van__progress-wrap--alive::before {
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(226, 176, 89, 0.22) 0%, transparent 70%);
  animation: van-meter-orb-drift 4s ease-in-out infinite;
  opacity: 1;
}

.van__progress-wrap--alive::after {
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(242, 234, 234, 0.12) 0%, transparent 68%);
  animation: van-meter-orb-drift 5.2s ease-in-out infinite reverse;
  opacity: 1;
}

@keyframes van-meter-orb-drift {
  0%,
  100% {
    transform: translateY(-50%) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-58%) translateX(6px) scale(1.08);
  }
}

.van__progress-spark {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  color: rgba(255, 252, 245, 0.95);
  text-shadow:
    0 0 10px rgba(226, 176, 89, 0.95),
    0 0 18px rgba(226, 176, 89, 0.5);
  line-height: 1;
  will-change: transform, opacity;
}

.van__progress-wrap--alive .van__progress-bar {
  animation: van-meter-bar-breathe 2.6s ease-in-out infinite;
}

@keyframes van-meter-bar-breathe {
  0%,
  100% {
    border-color: rgba(212, 168, 83, 0.25);
    box-shadow:
      inset 0 1px 4px rgba(0, 0, 0, 0.35),
      0 0 0 0 rgba(226, 176, 89, 0);
  }
  50% {
    border-color: rgba(226, 176, 89, 0.45);
    box-shadow:
      inset 0 1px 4px rgba(0, 0, 0, 0.35),
      0 0 22px 3px rgba(226, 176, 89, 0.28);
  }
}

.van__progress-bar {
  width: 100%;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212, 168, 83, 0.25);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.35);
}

.van__progress-bar--organic {
  height: 34px;
  border-radius: 22px 10px 20px 12px;
  border: 2px solid rgba(74, 122, 58, 0.4);
  background: linear-gradient(180deg, rgba(55, 42, 28, 0.55) 0%, rgba(22, 14, 8, 0.85) 100%);
  box-shadow:
    inset 0 3px 8px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 148, 42, 0.18),
    0 8px 28px rgba(74, 122, 58, 0.12);
}

.van__progress-fill {
  height: 100%;
  width: 0%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--color-primary), var(--color-teal));
  border-radius: 14px;
  box-shadow:
    0 0 20px rgba(226, 176, 89, 0.45),
    0 0 8px rgba(242, 234, 234, 0.2);
  transform-origin: left center;
}

.van__progress-fill--growth {
  border-radius: 18px 8px 16px 10px;
  background: linear-gradient(
    90deg,
    #355a28 0%,
    var(--color-green) 22%,
    var(--color-primary) 55%,
    var(--color-teal-light) 100%
  );
  box-shadow:
    0 0 28px rgba(74, 122, 58, 0.45),
    0 0 16px rgba(212, 148, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.van__progress-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 45%,
    rgba(255, 255, 255, 0.38) 50%,
    rgba(255, 255, 255, 0.22) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: van-progress-shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}

.van__progress-fill::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 70%;
  transform: translate(40%, -50%);
  border-radius: 50%;
  background: rgba(242, 234, 234, 0.85);
  box-shadow: 0 0 12px rgba(226, 176, 89, 0.9), 0 0 4px rgba(255, 255, 255, 0.6);
  opacity: 0.95;
  pointer-events: none;
}

@keyframes van-progress-shimmer {
  0% {
    background-position: 130% 0;
  }
  100% {
    background-position: -130% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .van__growth-rings {
    animation: none;
  }

  .van__progress-fill::before {
    animation: none;
    background-position: 50% 0;
    opacity: 0.15;
  }

  .van__progress-wrap--alive::before,
  .van__progress-wrap--alive::after {
    animation: none;
    opacity: 0;
  }

  .van__progress-wrap--alive .van__progress-bar {
    animation: none;
  }
}

.van__progress-stats {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  color: rgba(253, 246, 236, 0.82);
  margin: 0.85rem 0 1.35rem;
}

.van__progress-raised {
  font-weight: 700;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--color-primary-light);
  text-shadow: 0 0 20px rgba(212, 148, 42, 0.35);
}

.van__fundraiser--growth .van__progress-goal {
  font-weight: 600;
  color: rgba(253, 246, 236, 0.75);
}

@media (max-width: 600px) {
  .van__fundraiser {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  .van__fundraiser-title {
    font-size: 1.15rem;
  }
}
