/* EAO — fresh site styles (v2) */
:root {
  --green-900: #04342C;
  --green-700: #0F6E56;
  --green-500: #1D9E75;
  --green-100: #E1F5EE;
  --teal: #5DCAA5;
  --amber: #C47D0E;
  --amber-soft: #FEF3DC;
  --rose: #E8A0A8;
  --rose-bg: #FDF0F1;
  --sky: #7EB8E8;
  --sky-bg: #EDF6FC;
  --bg: #FAFCFB;
  --surface: #FFFFFF;
  --text: #1A1A18;
  --text-muted: #5F5E5A;
  --border: rgba(4, 52, 44, 0.1);
  --topbar-h: 36px;
  --header-h: 104px;
  --header-h-scrolled: 88px;
  --header-border: #EAEAEA;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 12px 40px rgba(4, 52, 44, 0.08);
  --shadow-lg: 0 24px 60px rgba(4, 52, 44, 0.14);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --bg: #0a1412;
  --surface: #12201c;
  --text: #f0f5f3;
  --text-muted: #9eb5ad;
  --border: rgba(255, 255, 255, 0.08);
  --green-100: #1a2e28;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
  --amber-soft: #2a2418;
  --rose-bg: #2a1a1c;
  --sky-bg: #152228;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  transition: background 0.35s ease, color 0.35s ease;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
.container { width: min(1140px, 100% - 40px); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  padding: 10px 16px; background: var(--green-700); color: #fff;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer; transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn--donate { background: var(--amber); color: #fff; box-shadow: 0 8px 24px rgba(196, 125, 14, 0.35); }
.btn--donate:hover { background: #a8690a; transform: translateY(-2px); }
.btn--primary { background: var(--green-700); color: #fff; }
.btn--primary:hover { background: var(--green-900); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); }
[data-theme="dark"] .btn--ghost { color: #fff; }
.support-cta .btn--ghost { color: var(--text); border-color: var(--border); background: var(--surface); }
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); cursor: pointer;
  display: grid; place-items: center; transition: background 0.25s, transform 0.2s, border-color 0.25s;
  box-shadow: 0 2px 8px rgba(4, 52, 44, 0.04);
}
.icon-btn:hover { background: var(--green-100); border-color: rgba(15, 110, 86, 0.2); transform: scale(1.05); }
[data-theme="dark"] .icon-btn { background: rgba(255,255,255,0.06); }

/* ─── Header: premium top bar + main ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
}

/* Top bar */
.top-bar {
  height: var(--topbar-h);
  background: linear-gradient(135deg, #021a16 0%, var(--green-900) 45%, var(--green-700) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}
[data-theme="dark"] .top-bar {
  background: linear-gradient(135deg, #010d0b 0%, #021210 50%, var(--green-900) 100%);
}
.top-bar__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.top-bar__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.9);
  text-decoration: none; white-space: nowrap;
  transition: color 0.25s, transform 0.2s;
}
.top-bar__cta:hover { color: var(--teal); transform: translateY(-1px); }
.top-bar__cta i {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid; place-items: center; font-size: 0.65rem;
}
.top-bar__contact {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 10px 14px;
}
.top-bar__link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.82); text-decoration: none;
  font-weight: 500; font-size: 0.74rem; white-space: nowrap;
  transition: color 0.2s;
}
.top-bar__link i {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid; place-items: center; font-size: 0.62rem;
}
.top-bar__link:hover { color: #fff; }
.top-bar__sep {
  width: 1px; height: 12px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.top-bar__end {
  display: flex;
  align-items: center;
  gap: 10px;
}
.theme-toggle-btn--topbar {
  width: 28px;
  height: 28px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}
.theme-toggle-btn--topbar:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.theme-toggle-btn--topbar .theme-toggle-btn__icon { font-size: 0.78rem; }

/* Main header — frosted glass */
.site-header__main {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(1.45);
  -webkit-backdrop-filter: blur(20px) saturate(1.45);
  border-bottom: 1px solid rgba(4, 52, 44, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 24px rgba(4, 52, 44, 0.05);
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.site-header__main::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--green-500) 30%, var(--teal) 50%, var(--green-500) 70%, transparent 95%);
  opacity: 0.65;
  pointer-events: none;
}
[data-theme="dark"] .site-header__main {
  background: rgba(8, 16, 14, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 24px rgba(0, 0, 0, 0.25);
}
.site-header.is-scrolled .site-header__main {
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 8px 32px rgba(4, 52, 44, 0.1);
}
[data-theme="dark"] .site-header.is-scrolled .site-header__main {
  background: rgba(8, 16, 14, 0.97);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.45);
}
.site-header.is-scrolled .site-header__row {
  padding-block: 8px;
  min-height: 0;
}
.site-header.is-scrolled .site-header__brand-logo--real { height: 42px; }
.site-header.is-scrolled { --header-h: var(--header-h-scrolled); }

.site-header__wrap { padding: 0; }
.site-header__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: 10px 0;
  min-height: 68px;
}

/* Brand — logo left with optional name */
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  justify-self: start;
  transition: opacity 0.25s;
}
.site-header__brand:hover { opacity: 0.88; }
.site-header__brand-logo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
}
.site-header__brand-logo--real {
  width: auto;
  height: 52px;
  max-width: min(220px, 38vw);
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transition: height 0.35s var(--ease);
}
.site-header__brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.site-header__brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-header__brand-loc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.site-header__brand-loc i {
  font-size: 0.58rem;
  color: var(--amber);
}
.site-header__brand--logo-only .site-header__brand-copy { display: none; }
.site-header__brand--logo-only .site-header__brand-logo--real {
  height: 56px;
  max-width: min(240px, 42vw);
}

/* Nav — centred in header */
.site-header__nav {
  justify-self: center;
  max-width: 100%;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(4, 52, 44, 0.03);
  border: 1px solid rgba(4, 52, 44, 0.05);
}
[data-theme="dark"] .site-header__nav {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}
.site-header.is-scrolled .site-header__nav {
  background: transparent;
  border-color: transparent;
  padding: 0;
}
.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}
.site-header__cta-group {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 5px 4px 4px;
  border-radius: 999px;
  background: rgba(4, 52, 44, 0.04);
  border: 1px solid rgba(4, 52, 44, 0.06);
}
[data-theme="dark"] .site-header__cta-group {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

/* Brand / logo (shared) */
.site-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); text-decoration: none; flex-shrink: 0; min-width: 0;
}
.site-brand__logo {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15, 110, 86, 0.22), 0 0 0 1px rgba(255,255,255,0.5) inset;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, height 0.3s;
}
/* Full logo lockup (icon + abbreviation) — natural aspect ratio */
.site-brand__logo--real {
  width: auto;
  height: clamp(52px, 8vw, 64px);
  max-width: min(200px, 40vw);
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 2px 12px rgba(4, 52, 44, 0.12));
  transition: filter 0.35s var(--ease);
}
.site-brand--compact .site-brand__logo--real {
  height: 40px;
  max-width: 120px;
}
.site-brand__name {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 1.1rem; letter-spacing: -0.02em; color: var(--text);
  white-space: nowrap;
}

.btn--donate-header {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, #b86d08 0%, var(--amber) 40%, #e8a020 70%, #f5c842 100%);
  border: 2px solid rgba(255, 248, 220, 0.55);
  box-shadow:
    0 4px 16px rgba(196, 125, 14, 0.42),
    0 0 0 1px rgba(196, 125, 14, 0.3),
    0 0 14px rgba(245, 200, 66, 0.35);
  transition: transform 0.2s var(--ease), filter 0.2s, border-color 0.25s;
  animation: donate-header-glow 3s ease-in-out infinite;
  z-index: 0;
}
.btn--donate-header::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 248, 220, 0.95),
    rgba(245, 200, 66, 0.85),
    rgba(255, 255, 255, 0.7),
    rgba(232, 160, 32, 0.9)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.75;
  z-index: -1;
  animation: donate-header-ring 3s ease-in-out infinite;
  pointer-events: none;
}
.btn--donate-header__icon {
  font-size: 0.9rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: transform 0.25s var(--ease);
}
.btn--donate-header:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  border-color: rgba(255, 255, 255, 0.75);
  animation: none;
  box-shadow:
    0 8px 28px rgba(196, 125, 14, 0.55),
    0 0 0 2px rgba(255, 248, 220, 0.65),
    0 0 24px rgba(245, 200, 66, 0.55);
}
.btn--donate-header:hover::before {
  opacity: 1;
  animation: none;
}
.btn--donate-header:hover .btn--donate-header__icon {
  transform: scale(1.12);
}
@keyframes donate-header-glow {
  0%, 100% {
    box-shadow:
      0 4px 16px rgba(196, 125, 14, 0.42),
      0 0 0 1px rgba(196, 125, 14, 0.3),
      0 0 14px rgba(245, 200, 66, 0.3);
  }
  50% {
    box-shadow:
      0 6px 22px rgba(196, 125, 14, 0.52),
      0 0 0 2px rgba(255, 248, 220, 0.55),
      0 0 22px rgba(245, 200, 66, 0.55),
      0 0 38px rgba(196, 125, 14, 0.22);
  }
}
@keyframes donate-header-ring {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* Theme toggle */
.theme-toggle-btn {
  position: relative;
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid rgba(4, 52, 44, 0.08);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  display: grid; place-items: center;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 1px 4px rgba(4, 52, 44, 0.04);
}
.theme-toggle-btn:hover {
  border-color: rgba(15, 110, 86, 0.35);
  background: var(--green-100);
  color: var(--green-700);
  transform: scale(1.05);
}
[data-theme="dark"] .theme-toggle-btn {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
[data-theme="dark"] .theme-toggle-btn:hover {
  background: rgba(29, 158, 117, 0.15);
  color: var(--teal);
}
.theme-toggle-btn__icon {
  position: absolute; font-size: 1rem;
  transition: opacity 0.3s, transform 0.35s var(--ease);
}
.theme-toggle-btn__icon--to-dark { opacity: 1; transform: rotate(0deg); }
.theme-toggle-btn__icon--to-light { opacity: 0; transform: rotate(-90deg) scale(0.6); }
[data-theme="dark"] .theme-toggle-btn__icon--to-dark { opacity: 0; transform: rotate(90deg) scale(0.6); }
[data-theme="dark"] .theme-toggle-btn__icon--to-light { opacity: 1; transform: rotate(0deg); }

/* Drawer header: compact theme icon (same as desktop) */
.theme-toggle-btn--drawer {
  width: 38px; height: 38px;
}

/* Nav */
.site-nav__list {
  display: flex; align-items: center; justify-content: center;
  gap: 2px; list-style: none; flex-wrap: nowrap;
}
.site-nav__list a {
  position: relative;
  padding: 7px 12px;
  font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--text-muted); text-decoration: none;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.site-nav__list a::after {
  content: ''; position: absolute; left: 50%; bottom: 4px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--green-500);
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--ease);
}
.site-nav__list a:hover {
  color: var(--text);
  background: rgba(4, 52, 44, 0.04);
}
[data-theme="dark"] .site-nav__list a:hover { background: rgba(255, 255, 255, 0.05); }
.site-nav__list a.is-active {
  color: var(--green-700); font-weight: 600;
  background: rgba(29, 158, 117, 0.08);
}
[data-theme="dark"] .site-nav__list a.is-active {
  color: var(--teal);
  background: rgba(29, 158, 117, 0.12);
}
.site-nav__list a.is-active::after { transform: translateX(-50%) scale(1); }

.menu-toggle { display: none; }
.icon-btn.menu-toggle {
  width: 38px; height: 38px;
  border-color: rgba(4, 52, 44, 0.1);
}

/* Mobile drawer */
.mobile-drawer { pointer-events: none; }
.mobile-drawer.is-open { pointer-events: auto; }
.mobile-drawer__backdrop {
  position: fixed; inset: 0; background: rgba(4, 52, 44, 0.5);
  opacity: 0; transition: opacity 0.35s; z-index: 1001;
}
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
.mobile-drawer__panel {
  position: fixed; top: 0; right: 0; width: min(300px, 86vw); height: 100%;
  height: 100dvh;
  background: var(--surface); z-index: 1002;
  padding:
    max(14px, env(safe-area-inset-top, 0px))
    max(16px, env(safe-area-inset-right, 0px))
    max(14px, env(safe-area-inset-bottom, 0px))
    16px;
  display: flex; flex-direction: column; gap: 10px;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  box-shadow: -12px 0 48px rgba(0,0,0,0.15);
  overflow: hidden;
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__head {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.mobile-drawer__head .site-brand { min-width: 0; flex: 1; }
.mobile-drawer__head .site-brand__name {
  font-size: 1rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mobile-drawer__head-actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.mobile-drawer__links {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.mobile-drawer__links a {
  display: block; padding: 10px 12px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem; text-align: center;
  color: var(--text); transition: background 0.2s;
}
.mobile-drawer__links a:hover { background: var(--green-100); }
.mobile-drawer__foot {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto; padding-top: 8px; flex-shrink: 0;
}
.mobile-drawer__foot .btn--donate-header {
  padding: 10px 18px; font-size: 0.78rem;
}

/* Hero — slider + floating quick links (inset, on-screen) */
/* Hero — cinematic full-bleed */
.hero {
  margin-top: var(--header-h);
  padding: 0;
  background: var(--bg);
  overflow-x: clip;
}
.hero--cinema {
  margin-bottom: 0;
  background: transparent;
}
.hero__bleed {
  width: 100%;
  padding: 0;
}
.hero__slider {
  position: relative;
  margin-bottom: 28px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
@media (min-width: 768px) {
  .hero__bleed { padding: 0 12px; }
  .hero__slider {
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(4, 52, 44, 0.18);
  }
}
@media (max-width: 767px) {
  .hero--cinema {
    margin-top: var(--header-h);
    padding-top: 0;
  }
  .hero--cinema .hero__slider { margin-bottom: 0; }
  .hero--cinema .hero__bleed { padding: 0; }
}
[data-theme="dark"] .hero__slider { box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45); }
.hero-swiper {
  position: relative;
  border-radius: inherit;
  overflow: hidden;
}
.hero-swiper .swiper-slide { position: relative; }
.hero-swiper,
.hero-swiper .swiper-slide { height: clamp(400px, 62vh, 560px); }
@media (max-width: 768px) {
  .hero-swiper,
  .hero-swiper .swiper-slide { height: clamp(320px, 52vh, 440px); }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.06);
  transition: transform 9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.swiper-slide-active .hero__bg {
  transform: scale(1.12);
}
.hero__slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 28px clamp(24px, 5vw, 56px) 88px;
  max-width: 1280px;
  margin: 0 auto;
  transition: transform 1.1s var(--ease), opacity 1.1s var(--ease);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.94;
  transition: opacity 1.1s var(--ease);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='480' height='320' viewBox='0 0 480 320'%3E%3Cellipse cx='120' cy='110' rx='70' ry='48' fill='none' stroke='%23ffffff' stroke-width='0.6' opacity='0.22'/%3E%3Cellipse cx='200' cy='130' rx='55' ry='38' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.18'/%3E%3Cellipse cx='80' cy='170' rx='45' ry='32' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.16'/%3E%3Cpath d='M40 200 Q90 180 140 195 T240 185' fill='none' stroke='%23ffffff' stroke-width='0.4' opacity='0.14'/%3E%3C/svg%3E") left center / 55% auto no-repeat,
    linear-gradient(100deg, rgba(18, 22, 24, 0.93) 0%, rgba(18, 22, 24, 0.8) 26%, rgba(18, 22, 24, 0.38) 46%, rgba(18, 22, 24, 0.1) 62%, transparent 74%);
}
.swiper-slide-active .hero__overlay { opacity: 1; }
.hero__copy {
  position: relative;
  max-width: 540px;
  padding-left: clamp(18px, 2.5vw, 24px);
}
.hero__copy::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--amber) 100%);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.75s var(--ease) 0.15s;
}
.swiper-slide-active .hero__copy::before { transform: scaleY(1); }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(93, 202, 165, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: balance;
}
.hero__line {
  position: relative;
  font-size: clamp(0.95rem, 1.55vw, 1.08rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 26px;
  padding-top: 16px;
  line-height: 1.55;
  max-width: 36ch;
}
.hero__line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), transparent);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.btn--hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #e8750a 0%, #f59a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 28px rgba(232, 117, 10, 0.42);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, filter 0.2s, gap 0.25s var(--ease);
}
.btn--hero-action i {
  font-size: 0.82rem;
  transition: transform 0.25s var(--ease);
}
.btn--hero-action:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  gap: 14px;
  box-shadow: 0 14px 36px rgba(232, 117, 10, 0.5);
}
.btn--hero-action:hover i { transform: translateX(3px); }
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__trust strong { color: var(--teal); font-weight: 700; }
.hero__trust--desktop { display: inline-flex; }

.hero__torn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 22px;
  z-index: 8;
  background: var(--bg);
  clip-path: polygon(
    0% 100%, 1.5% 55%, 3% 85%, 4.5% 40%, 6% 75%, 7.5% 35%, 9% 80%, 10.5% 45%,
    12% 90%, 13.5% 50%, 15% 78%, 16.5% 38%, 18% 82%, 19.5% 48%, 21% 88%,
    22.5% 42%, 24% 76%, 25.5% 52%, 27% 84%, 28.5% 36%, 30% 72%, 31.5% 55%,
    33% 86%, 34.5% 44%, 36% 78%, 37.5% 58%, 39% 90%, 40.5% 40%, 42% 74%,
    43.5% 50%, 45% 82%, 46.5% 38%, 48% 70%, 49.5% 54%, 51% 88%, 52.5% 42%,
    54% 76%, 55.5% 56%, 57% 84%, 58.5% 36%, 60% 72%, 61.5% 52%, 63% 86%,
    64.5% 44%, 66% 78%, 67.5% 58%, 69% 90%, 70.5% 40%, 72% 74%, 73.5% 50%,
    75% 82%, 76.5% 38%, 78% 70%, 79.5% 54%, 81% 88%, 82.5% 42%, 84% 76%,
    85.5% 56%, 87% 84%, 88.5% 36%, 90% 72%, 91.5% 52%, 93% 86%, 94.5% 44%,
    96% 78%, 97.5% 58%, 99% 92%, 100% 100%
  );
}

/* Slide copy animation — staggered per element */
.hero__anim {
  opacity: 0;
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
  transition-delay: var(--hero-delay, 0s);
  will-change: opacity, transform;
}
.hero__anim--eyebrow {
  transform: translateX(-22px);
  filter: blur(8px);
}
.hero__anim--title {
  transform: translateY(36px);
}
.hero__anim--line {
  transform: translateY(28px);
}
.hero__anim--cta {
  transform: translateY(24px) scale(0.96);
}
.hero__anim--trust {
  transform: translateY(18px);
  filter: blur(4px);
}
.hero__anim--in {
  opacity: 1;
  transform: none;
  filter: none;
}
.swiper-slide:not(.swiper-slide-active) .hero__copy::before {
  transform: scaleY(0);
  transition-duration: 0.35s;
  transition-delay: 0s;
}

/* Slider chrome */
.hero__chrome {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.hero__progress.swiper-pagination-progressbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0;
}
.hero__progress .swiper-pagination-progressbar-fill {
  background: linear-gradient(90deg, var(--amber), var(--teal));
}
.hero__fraction {
  position: absolute;
  left: clamp(20px, 4vw, 40px);
  bottom: 14px;
  font-variant-numeric: tabular-nums;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}
.hero__nav {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: auto;
}
.hero__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  transition: color 0.25s, transform 0.2s var(--ease);
}
.hero__arrow:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.08);
}

/* Pillars — floating dock with tone chips */
.hero-pillars {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  z-index: 20;
  transform: translateY(46%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero-pillars { left: 28px; right: 28px; }
}
.hero-pillars__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 100%;
  padding: 9px 7px 7px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(4, 52, 44, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 8px 24px rgba(4, 52, 44, 0.1),
    0 20px 48px rgba(4, 52, 44, 0.14);
  pointer-events: auto;
  isolation: isolate;
}
.hero-pillars__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 2px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--green-500), var(--teal), var(--amber));
  opacity: 0.85;
}
[data-theme="dark"] .hero-pillars__inner {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}
.hero-pillar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--green-900);
  background: var(--bg);
  border-radius: 11px;
  border: 1px solid transparent;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, background 0.22s, border-color 0.22s;
  min-width: 0;
}
[data-theme="dark"] .hero-pillar { background: rgba(255, 255, 255, 0.04); color: var(--text); }
.hero-pillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 52, 44, 0.1);
  border-color: rgba(4, 52, 44, 0.08);
}
.hero-pillar__icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 0.88rem;
  transition: transform 0.22s var(--ease);
}
.hero-pillar:hover .hero-pillar__icon { transform: scale(1.06); }
.hero-pillar__text { flex: 1; min-width: 0; }
.hero-pillar__label {
  display: block;
  font-size: 0.74rem; font-weight: 700; line-height: 1.15;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-pillar__arrow {
  font-size: 0.62rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s var(--ease), color 0.2s;
  flex-shrink: 0;
}
.hero-pillar:hover .hero-pillar__arrow {
  opacity: 1;
  transform: none;
  color: var(--green-700);
}

/* Tone-coded icons — matches service cards */
.hero-pillar--rose .hero-pillar__icon { background: var(--rose-bg); color: #a64d58; }
.hero-pillar--rose:hover { background: var(--rose-bg); }
.hero-pillar--amber .hero-pillar__icon { background: var(--amber-soft); color: var(--amber); }
.hero-pillar--amber:hover { background: var(--amber-soft); }
.hero-pillar--sky .hero-pillar__icon { background: var(--sky-bg); color: #3d7ab0; }
.hero-pillar--sky:hover { background: var(--sky-bg); }
.hero-pillar--teal .hero-pillar__icon { background: var(--green-100); color: var(--green-700); }
.hero-pillar--teal:hover { background: var(--green-100); }
.hero-pillar--donate {
  background: linear-gradient(145deg, var(--amber-soft) 0%, #fffaf3 100%);
  border-color: rgba(196, 125, 14, 0.2);
}
.hero-pillar--donate .hero-pillar__icon {
  background: linear-gradient(135deg, var(--amber), #e09a1a);
  color: #fff;
  box-shadow: 0 4px 12px rgba(196, 125, 14, 0.35);
}
.hero-pillar--donate:hover {
  background: linear-gradient(145deg, #fde8c4 0%, #fff 100%);
  border-color: rgba(196, 125, 14, 0.35);
  box-shadow: 0 8px 24px rgba(196, 125, 14, 0.2);
}
.hero-pillar--donate .hero-pillar__label { color: #8a5a08; }
[data-theme="dark"] .hero-pillar--donate {
  background: linear-gradient(145deg, #2a2418, var(--surface));
  border-color: rgba(196, 125, 14, 0.25);
}

/* Tight gap hero → services */
.hero--cinema + .section { padding-top: clamp(28px, 4vw, 48px); }

/* ─── Hero mobile UX ─── */
@media (max-width: 768px) {
  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(18, 22, 24, 0.92) 0%, rgba(18, 22, 24, 0.55) 45%, rgba(18, 22, 24, 0.15) 68%, transparent 82%),
      linear-gradient(100deg, rgba(18, 22, 24, 0.7) 0%, transparent 55%);
  }
  .hero__slide-inner {
    align-items: flex-end;
    padding: 16px 18px 56px;
  }
  .hero__copy {
    max-width: 100%;
    padding-left: 16px;
  }
  .hero__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 10px;
  }
  .hero__line {
    display: block;
    margin-bottom: 18px;
    padding-top: 12px;
    font-size: 0.88rem;
  }
  .hero__line::before { width: 36px; }
  .hero__eyebrow {
    margin-bottom: 12px;
    padding: 5px 12px;
    font-size: 0.6rem;
  }
  .hero__trust--desktop { display: none; }
  .btn--hero-action {
    padding: 12px 22px;
    font-size: 0.85rem;
  }
  .hero__nav { display: none; }
  .hero__fraction {
    left: 16px;
    bottom: 8px;
    color: rgba(255, 255, 255, 0.35);
  }
  .hero__torn { height: 14px; }
  .hero__bg { background-position: center 30%; }

  /* Service dock — 2×2 grid, all four visible */
  .hero-pillars {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 0;
    padding: 10px 12px 0;
  }
  .hero-pillars__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 6px;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
    border-radius: 12px;
  }
  .hero-pillars__inner::before { left: 10px; right: 10px; }
  .hero-pillar {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-width: 0;
    padding: 9px 10px;
  }
  .hero-pillar__icon {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
    border-radius: 8px;
  }
  .hero-pillar__text { flex: 1; min-width: 0; }
  .hero-pillar__label {
    font-size: 0.64rem;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-pillar__arrow { display: none; }
  .hero-pillar:hover { transform: none; box-shadow: none; }

  .hero--cinema + .section { padding-top: 16px; }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .hero-pillar { padding: 9px 8px; gap: 8px; }
  .hero-pillar__icon { width: 32px; height: 32px; font-size: 0.8rem; }
  .hero-pillar__label { font-size: 0.68rem; }
  .hero-pillar__arrow { display: none; }
}
@media (max-width: 576px) {
  .hero-pillars { padding: 8px 10px 0; }
  .hero-pillar { padding: 10px 8px; gap: 8px; }
  .hero-pillar__label { font-size: 0.72rem; line-height: 1.2; }
}

/* Section common */
.section-head--row {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: flex-end; gap: 20px 24px; max-width: none;
}
.section-head--row .section-head__cta { flex-shrink: 0; }
.section { padding: clamp(64px, 10vw, 100px) 0; }
.section.services {
  padding: clamp(32px, 5vw, 52px) 0 clamp(36px, 5vw, 56px);
}
.section.how-works {
  padding: clamp(44px, 6vw, 64px) 0 clamp(56px, 7vw, 80px);
}
.section-head { margin-bottom: clamp(36px, 5vw, 48px); max-width: 560px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--light .section-head__title,
.section-head--light .section-head__sub { color: inherit; }
.section-head__eyebrow {
  display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--green-700); margin-bottom: 10px;
}
.section-head__title {
  font-family: var(--font-serif); font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1.12; color: var(--text);
}
.section-head__sub { margin-top: 12px; color: var(--text-muted); font-size: 1.05rem; }

/* Services — light ambient bg + premium cards */
.services {
  position: relative;
  background: var(--bg);
  overflow: visible;
}
.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(29, 158, 117, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(93, 202, 165, 0.07), transparent 50%),
    linear-gradient(180deg, #fafcfb 0%, #f2f8f5 50%, #fafcfb 100%);
}
[data-theme="dark"] .services__bg {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(29, 158, 117, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(93, 202, 165, 0.1), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #0e1a17 50%, var(--bg) 100%);
}
.services__mesh {
  position: absolute;
  inset: -40%;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(15, 110, 86, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 110, 86, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: servicesMeshDrift 36s linear infinite;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, #000 10%, transparent 68%);
}
[data-theme="dark"] .services__mesh {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(93, 202, 165, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 202, 165, 0.06) 1px, transparent 1px);
}
.services__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.38;
  animation: servicesBlob 20s ease-in-out infinite;
  will-change: transform;
}
.services__blob--1 {
  width: 420px;
  height: 420px;
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.7), transparent 70%);
}
.services__blob--2 {
  width: 380px;
  height: 380px;
  bottom: -90px;
  right: -60px;
  background: radial-gradient(circle, rgba(93, 202, 165, 0.65), transparent 70%);
  animation-delay: -7s;
}
.services__blob--3 {
  width: 320px;
  height: 320px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, rgba(196, 125, 14, 0.45), transparent 70%);
  opacity: 0.28;
  animation-delay: -13s;
}
@keyframes servicesBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(32px, -24px) scale(1.06); }
  66% { transform: translate(-22px, 20px) scale(0.96); }
}

@keyframes servicesMeshDrift {
  to { transform: translate(56px, 56px); }
}

/* Services — light motion (few pills, one ring, soft particles) */
.services__motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.services__ring {
  position: absolute;
  width: min(440px, 82vw);
  height: min(440px, 82vw);
  top: -8%;
  left: 50%;
  margin-left: calc(min(440px, 82vw) / -2);
  border-radius: 50%;
  border: 1px dashed rgba(15, 110, 86, 0.12);
  animation: servicesRingSpin 48s linear infinite;
}
[data-theme="dark"] .services__ring {
  border-color: rgba(93, 202, 165, 0.14);
}

.services__float {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 20px rgba(4, 52, 44, 0.05);
  animation: servicesFloat var(--float-dur, 16s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}
.services__float i { font-size: 1rem; }
.services__float--rose {
  background: rgba(232, 160, 168, 0.14);
  color: #c45a66;
  border: 1px solid rgba(232, 160, 168, 0.28);
}
.services__float--amber {
  background: rgba(196, 125, 14, 0.12);
  color: #a8690a;
  border: 1px solid rgba(196, 125, 14, 0.22);
}
.services__float--sky {
  background: rgba(126, 184, 232, 0.14);
  color: #4a8fc4;
  border: 1px solid rgba(126, 184, 232, 0.26);
}
.services__float--teal {
  background: rgba(93, 202, 165, 0.14);
  color: var(--green-700);
  border: 1px solid rgba(93, 202, 165, 0.26);
}
.services__float--1 { width: 46px; height: 46px; top: 14%; left: 8%; --float-dur: 17s; --float-delay: 0s; }
.services__float--2 { width: 50px; height: 50px; top: 16%; right: 10%; --float-dur: 19s; --float-delay: -4s; }
.services__float--3 { width: 44px; height: 44px; top: 36%; left: 5%; --float-dur: 18s; --float-delay: -7s; }
.services__float--4 { width: 46px; height: 46px; top: 34%; right: 7%; --float-dur: 16s; --float-delay: -2s; }

.services__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.services__particles span {
  position: absolute;
  display: grid;
  place-items: center;
  width: var(--p-size, 28px);
  height: var(--p-size, 28px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(15, 110, 86, 0.07);
  color: rgba(15, 110, 86, 0.18);
  font-size: calc(var(--p-size, 28px) * 0.4);
  animation: servicesParticleRise linear infinite;
}
[data-theme="dark"] .services__particles span {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(93, 202, 165, 0.1);
  color: rgba(93, 202, 165, 0.28);
}

@keyframes servicesRingSpin {
  to { transform: rotate(360deg); }
}
@keyframes servicesFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -16px); }
}
@keyframes servicesParticleRise {
  0% { transform: translateY(105%) translateX(0); opacity: 0; }
  12% { opacity: 0.7; }
  88% { opacity: 0.5; }
  100% { transform: translateY(-105%) translateX(var(--p-drift, 12px)); opacity: 0; }
}

@media (max-width: 768px) {
  .services__float--3,
  .services__float--4 { display: none; }
  .services__ring { width: 280px; height: 280px; margin-left: -140px; }
}

@media (prefers-reduced-motion: reduce) {
  .services__blob,
  .services__mesh,
  .services__ring,
  .services__float { animation: none !important; }
  .services__particles { display: none; }
}
.services .container {
  position: relative;
  z-index: 1;
  width: min(1400px, 100% - 28px);
}
.services__head {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 4.5vw, 48px);
}
.services__head .section-head__sub { max-width: 58ch; margin-inline: auto; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
  width: 100%;
  padding: clamp(28px, 4vw, 44px) 0 clamp(40px, 5vw, 56px);
  margin-inline: auto;
  align-items: stretch;
}

/* Service cards — glass overlay, 4-in-a-row */
.service-card {
  --card-accent: var(--green-700);
  --card-accent-2: var(--teal);
  --card-bg: var(--green-100);
  --card-accent-rgb: 15, 110, 86;
  position: relative;
  display: block;
  min-height: clamp(360px, 32vw, 420px);
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg);
  border: none;
  box-shadow:
    0 0 0 1px rgba(4, 52, 44, 0.05),
    0 16px 44px rgba(4, 52, 44, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.service-card--rose { --card-accent: #db5461; --card-accent-2: #f08a96; --card-bg: #fdf0f1; --card-accent-rgb: 219, 84, 97; }
.service-card--amber { --card-accent: #d97706; --card-accent-2: #f5b84a; --card-bg: #fef3dc; --card-accent-rgb: 217, 119, 6; }
.service-card--sky { --card-accent: #2563eb; --card-accent-2: #60a5fa; --card-bg: #edf6fc; --card-accent-rgb: 37, 99, 235; }
.service-card--teal { --card-accent: var(--green-700); --card-accent-2: var(--teal); --card-bg: var(--green-100); --card-accent-rgb: 15, 110, 86; }

[data-theme="dark"] .service-card {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 22px 52px rgba(0, 0, 0, 0.34);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(var(--card-accent-rgb), 0.12),
    0 26px 60px rgba(var(--card-accent-rgb), 0.14),
    0 8px 22px rgba(4, 52, 44, 0.06);
}
.service-card:focus-visible {
  outline: 2px solid var(--card-accent);
  outline-offset: 3px;
}

.service-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 16px 12px 42%;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.55), transparent 52%),
    var(--card-bg);
}
.service-card__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.22), transparent);
}
[data-theme="dark"] .service-card__media::after {
  background: linear-gradient(to top, rgba(18, 32, 28, 0.18), transparent);
}
.service-card__art {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: brightness(1.03) saturate(1.06);
  transition: transform 0.65s var(--ease), filter 0.45s;
}
.service-card:hover .service-card__art {
  transform: scale(1.06) translateY(-4px);
  filter: brightness(1.05) saturate(1.1);
}
.service-card__art-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 2.5rem;
  color: var(--card-accent);
}

.service-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--card-accent);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(var(--card-accent-rgb), 0.1);
  box-shadow: 0 6px 18px rgba(4, 52, 44, 0.1);
  backdrop-filter: blur(10px);
}
[data-theme="dark"] .service-card__tag {
  background: rgba(18, 32, 28, 0.88);
  color: var(--card-accent-2);
}

.service-card__glass {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 14px;
  border-radius: 16px;
  text-align: left;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 10px 28px rgba(4, 52, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: transform 0.45s var(--ease), background 0.35s, box-shadow 0.35s;
}
[data-theme="dark"] .service-card__glass {
  background: rgba(18, 32, 28, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
.service-card:hover .service-card__glass {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 40px rgba(var(--card-accent-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
[data-theme="dark"] .service-card:hover .service-card__glass {
  background: rgba(18, 32, 28, 0.9);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.service-card:hover .service-card__title { color: var(--card-accent); }

.service-card__desc {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(var(--card-accent-rgb), 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--card-accent);
  transition: gap 0.3s var(--ease);
}
.service-card__cta i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  color: #fff;
  background: linear-gradient(135deg, var(--card-accent), var(--card-accent-2));
  box-shadow: 0 6px 14px rgba(var(--card-accent-rgb), 0.3);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.service-card:hover .service-card__cta { gap: 12px; }
.service-card:hover .service-card__cta i {
  transform: translateX(2px);
  box-shadow: 0 8px 18px rgba(var(--card-accent-rgb), 0.4);
}

.service-card.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    box-shadow 0.45s var(--ease);
  transition-delay: var(--delay, 0s);
}
.service-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card.reveal.is-visible:hover {
  transform: translateY(-8px);
}

@media (max-width: 1023px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .service-card { min-height: 380px; }
  .service-card__title { font-size: 1.15rem; }
  .service-card__desc { font-size: 0.84rem; -webkit-line-clamp: 4; }
}

@media (max-width: 768px) {
  .section.services {
    padding: clamp(28px, 5vw, 44px) 0 clamp(40px, 6vw, 52px);
  }
  .services .container { width: min(1140px, 100% - 32px); }
  .services__head { margin-bottom: clamp(20px, 4vw, 28px); }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 8px 0 0;
  }
  .service-card {
    min-height: 400px;
    border-radius: 20px;
  }
  .service-card:hover,
  .service-card.reveal.is-visible:hover { transform: none; }
  .service-card:active { transform: scale(0.985); }
  .service-card__media { padding: 16px 14px 44%; }
  .service-card__glass { left: 12px; right: 12px; bottom: 12px; padding: 18px 16px 16px; }
  .service-card__title { font-size: 1.22rem; }
  .service-card__desc {
    font-size: 0.88rem;
    line-height: 1.6;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .service-card__tag { top: 10px; left: 10px; font-size: 0.58rem; }
  .service-card__cta { margin-top: 14px; font-size: 0.72rem; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .service-card.reveal.is-visible:hover { transform: none; }
  .service-card:hover .service-card__art,
  .service-card:hover .service-card__glass,
  .service-card:hover .service-card__cta i { transform: none; }
}



/* How it works — 3-step arc flow (reference layout) */
.how-works {
  position: relative;
  background:
    radial-gradient(ellipse 55% 45% at 12% 8%, rgba(29, 158, 117, 0.1), transparent 58%),
    linear-gradient(180deg, var(--surface) 0%, #f3faf7 48%, var(--surface) 100%);
  overflow: hidden;
}
[data-theme="dark"] .how-works {
  background:
    radial-gradient(ellipse 55% 45% at 12% 8%, rgba(29, 158, 117, 0.14), transparent 58%),
    linear-gradient(180deg, var(--surface) 0%, #0e1a17 48%, var(--surface) 100%);
}
.how-works__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  top: -90px;
  left: -70px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.1);
  filter: blur(80px);
  pointer-events: none;
}
.how-works .section-head--center {
  margin-inline: auto;
  text-align: center;
  max-width: 560px;
}
.how-works .section-head__sub {
  max-width: 52ch;
  margin-inline: auto;
}
.how-works__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 5vw, 52px);
}

.how-flow {
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
}

/* Curved arc through the three node centres */
.how-flow__arc {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(100px, 14vw, 130px);
  pointer-events: none;
}
.how-flow__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.how-flow__path-bg,
.how-flow__path-line {
  fill: none;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}
.how-flow__path-bg {
  stroke: rgba(4, 52, 44, 0.07);
}
[data-theme="dark"] .how-flow__path-bg { stroke: rgba(255, 255, 255, 0.07); }
.how-flow__path-line {
  stroke: url(#how-flow-gradient);
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}
.how-flow.is-visible .how-flow__path-line { stroke-dashoffset: 0; }

.how-flow__dot {
  position: absolute;
  top: 76%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease 1.2s;
}
.how-flow__dot--start {
  left: 11.666%;
  background: #c45c68;
  box-shadow: 0 0 0 4px rgba(196, 92, 104, 0.2);
}
.how-flow__dot--end {
  left: 88.333%;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}
.how-flow.is-visible .how-flow__dot { opacity: 1; }

.how-flow__steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: clamp(28px, 4vw, 40px) 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.how-flow__step {
  --flow-accent: var(--green-700);
  --flow-accent-2: var(--teal);
  --flow-bg: var(--green-100);
  --flow-rgb: 15, 110, 86;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(22px, 3vw, 28px);
}
.how-flow__step--rose { --flow-accent: #c45c68; --flow-accent-2: var(--rose); --flow-bg: var(--rose-bg); --flow-rgb: 196, 92, 104; }
.how-flow__step--teal { --flow-accent: var(--green-700); --flow-accent-2: var(--teal); --flow-bg: var(--green-100); --flow-rgb: 15, 110, 86; }
.how-flow__step--amber { --flow-accent: #d97706; --flow-accent-2: #f5b84a; --flow-bg: var(--amber-soft); --flow-rgb: 217, 119, 6; }
.how-flow__step--sky { --flow-accent: #2563eb; --flow-accent-2: #60a5fa; --flow-bg: var(--sky-bg); --flow-rgb: 37, 99, 235; }

@media (min-width: 901px) {
  .how-flow__step:nth-child(1),
  .how-flow__step:nth-child(3) { margin-top: 10px; }
  .how-flow__step:nth-child(2) { margin-top: -38px; }
}

.how-flow__node {
  position: relative;
  width: clamp(100px, 11vw, 118px);
  height: clamp(100px, 11vw, 118px);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.how-flow__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(var(--flow-rgb), 0.22);
  pointer-events: none;
}
.how-flow__orbit--1 {
  inset: -4px;
  animation: how-orbit-spin 22s linear infinite;
}
.how-flow__orbit--2 {
  inset: -14px;
  border-color: rgba(var(--flow-rgb), 0.14);
  animation: how-orbit-spin 30s linear infinite reverse;
}
.how-flow__orbit--3 {
  inset: -24px;
  border-style: solid;
  border-color: rgba(var(--flow-rgb), 0.08);
  animation: how-orbit-spin 38s linear infinite;
}

@keyframes how-orbit-spin {
  to { transform: rotate(360deg); }
}

.how-flow__core {
  position: relative;
  z-index: 1;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  color: var(--flow-accent);
  background: #fff;
  border: 1px solid rgba(var(--flow-rgb), 0.12);
  box-shadow:
    0 12px 32px rgba(var(--flow-rgb), 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
[data-theme="dark"] .how-flow__core {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.how-flow__step.is-visible .how-flow__core {
  animation: how-node-float 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.how-flow__step:nth-child(2).is-visible .how-flow__core { animation-delay: 0.45s; }
.how-flow__step:nth-child(3).is-visible .how-flow__core { animation-delay: 0.9s; }

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

.how-flow__step:hover .how-flow__core,
.how-flow__step:focus-within .how-flow__core {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(var(--flow-rgb), 0.2);
}

.how-flow__badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--flow-accent), var(--flow-accent-2));
  box-shadow: 0 4px 14px rgba(var(--flow-rgb), 0.35);
  border: 2px solid var(--surface);
}

.how-flow__copy {
  max-width: 300px;
  padding: 0 6px;
}
.how-flow__title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.3rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--text);
}
.how-flow__text {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.how-flow__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--flow-accent);
  transition: gap 0.25s var(--ease), color 0.25s;
}
.how-flow__link i {
  font-size: 0.68rem;
  transition: transform 0.25s var(--ease);
}
.how-flow__link:hover {
  gap: 12px;
  color: var(--flow-accent-2);
}
.how-flow__link:hover i { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .how-flow__orbit,
  .how-flow__step.is-visible .how-flow__core { animation: none; }
  .how-flow__path-line { transition: none; stroke-dashoffset: 0; }
}

@media (max-width: 900px) {
  .how-flow__arc { display: none; }
  .how-flow__steps {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
    gap: 0;
    padding: 0 0 0 28px;
  }
  .how-flow__step { margin-top: 0 !important; }

  .how-flow__steps::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 32px;
    bottom: 32px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, #c45c68, #C47D0E, #2563eb);
    opacity: 0.2;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }
  .how-flow.is-visible .how-flow__steps::before { transform: scaleY(1); }

  .how-flow__step {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
    padding: 0 0 36px;
  }
  .how-flow__step:last-child { padding-bottom: 0; }
  .how-flow__node {
    width: 76px;
    height: 76px;
    margin-left: -28px;
    flex-shrink: 0;
  }
  .how-flow__copy { max-width: none; flex: 1; padding-top: 4px; }
}

@media (max-width: 480px) {
  .how-flow__steps { padding-left: 24px; }
  .how-flow__node { width: 68px; height: 68px; margin-left: -24px; }
  .how-flow__badge { min-width: 24px; height: 24px; font-size: 0.62rem; }
}

/* FAQ accordions */
.faq-sec__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.faq-sec__head {
  margin: 0;
  max-width: 34ch;
  text-align: left;
  position: sticky;
  top: calc(var(--header-h, 88px) + 24px);
}
.faq-sec__wrap { max-width: none; margin: 0; }

.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-sec .accordion__item { background: var(--surface); }
.accordion__item.is-open {
  border-color: rgba(15, 110, 86, 0.25);
  box-shadow: var(--shadow);
}
.accordion__trigger {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border: none; background: transparent;
  cursor: pointer; text-align: left; color: var(--text);
  font-family: inherit;
}
.accordion__num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-100); color: var(--green-700);
  font-weight: 800; font-size: 0.9rem;
  display: grid; place-items: center;
}
.accordion__title {
  flex: 1; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700;
}
.accordion--faq .accordion__title { font-size: 1.02rem; font-family: var(--font-sans, var(--font-body, inherit)); }
.accordion__chevron {
  flex-shrink: 0; font-size: 0.85rem; color: var(--green-700);
  transition: transform 0.35s var(--ease);
}
.accordion__item.is-open .accordion__chevron { transform: rotate(180deg); }
.accordion__chevron--plus { transition: transform 0.3s; }
.accordion__item.is-open .accordion__chevron--plus { transform: rotate(45deg); }
.accordion__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel-inner { overflow: hidden; padding: 0 20px; }
.accordion__panel-inner p {
  margin: 0 0 12px; color: var(--text-muted); line-height: 1.7;
}
.accordion__link {
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 18px;
  font-weight: 700; color: var(--green-700); text-decoration: none;
}
.accordion__link:hover { gap: 12px; }
.accordion--faq .accordion__panel-inner { padding-bottom: 18px; }
.accordion--faq .accordion__panel-inner p { margin-bottom: 0; }

/* About (homepage preview) */
.about {
  position: relative;
  background:
    radial-gradient(ellipse 55% 45% at 8% 20%, rgba(29, 158, 117, 0.1), transparent 60%),
    radial-gradient(ellipse 50% 40% at 92% 75%, rgba(196, 125, 14, 0.08), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, #f3faf7 50%, var(--surface) 100%);
  overflow: hidden;
}
[data-theme="dark"] .about {
  background:
    radial-gradient(ellipse 55% 45% at 8% 20%, rgba(29, 158, 117, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 92% 75%, rgba(196, 125, 14, 0.1), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, #0d1815 50%, var(--surface) 100%);
}
.about__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.55;
}
.about__glow--1 {
  width: 280px; height: 280px;
  top: -40px; left: -60px;
  background: rgba(29, 158, 117, 0.22);
}
.about__glow--2 {
  width: 220px; height: 220px;
  bottom: 10%; right: -40px;
  background: rgba(196, 125, 14, 0.16);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.about__media { position: relative; min-height: 440px; }

/* Premium image frame */
.about__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  padding: 14px;
  background:
    radial-gradient(ellipse 70% 55% at 20% 0%, rgba(29, 158, 117, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 55% at 90% 30%, rgba(196, 125, 14, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.25));
  border: 1px solid rgba(4, 52, 44, 0.08);
  box-shadow:
    0 18px 48px rgba(4, 52, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
[data-theme="dark"] .about__frame {
  background:
    radial-gradient(ellipse 70% 55% at 20% 0%, rgba(29, 158, 117, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 55% at 90% 30%, rgba(196, 125, 14, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.35);
}
.about__img { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.about__img--main { width: 84%; }
.about__img--accent {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 46%;
  border-radius: 18px;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(4, 52, 44, 0.16);
}
[data-theme="dark"] .about__img--accent { border-color: rgba(18, 32, 28, 0.95); }

.about__badge {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(4, 52, 44, 0.1);
  box-shadow: 0 18px 44px rgba(4, 52, 44, 0.14);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: float-badge 4s ease-in-out infinite;
}
.about__badge strong { display: block; font-family: var(--font-serif); font-size: 1.6rem; color: var(--green-700); }
.about__badge span { font-size: 0.78rem; color: var(--text-muted); font-weight: 700; }

.about__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(4, 52, 44, 0.1);
  box-shadow: 0 14px 34px rgba(4, 52, 44, 0.12);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.about__caption i { color: var(--amber); }

.about__logo-plate {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 72px;
  height: 72px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(4, 52, 44, 0.1);
  box-shadow: 0 14px 36px rgba(4, 52, 44, 0.14);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}
[data-theme="dark"] .about__logo-plate {
  background: rgba(18, 32, 28, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
}
.about__logo-plate-img { width: 100%; height: auto; object-fit: contain; }
.about__logo-plate-img--real { max-height: 52px; width: auto; }

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

.about__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(4, 52, 44, 0.08);
  box-shadow: 0 10px 28px rgba(4, 52, 44, 0.06);
  max-width: 100%;
}
[data-theme="dark"] .about__brand {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.about__brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.about__brand-logo--real {
  width: auto;
  height: 56px;
  max-width: 80px;
}
.about__brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
[data-theme="dark"] .about__brand-name { color: var(--text); }

.about__text p { color: var(--text-muted); margin-bottom: 14px; }
.about__text p:last-child { margin-bottom: 0; }

/* Small connective line before highlights */
.about__microcopy {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(4, 52, 44, 0.55);
}

/* Highlights as mini-cards */
.about__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 26px;
}
.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(4, 52, 44, 0.08);
  box-shadow: 0 10px 26px rgba(4, 52, 44, 0.06);
  transform: translateY(0);
  opacity: 0.98;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s;
}
[data-theme="dark"] .about__highlight {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.about__highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 52, 44, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(4, 52, 44, 0.14);
}
.about__highlight-ico {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-700);
  border: 1px solid rgba(29, 158, 117, 0.2);
  font-size: 0.9rem;
}
.about__highlight--rose .about__highlight-ico { background: var(--rose-bg); color: #b85a64; border-color: rgba(184, 90, 100, 0.2); }
.about__highlight--amber .about__highlight-ico { background: var(--amber-soft); color: var(--amber); border-color: rgba(196, 125, 14, 0.25); }
.about__highlight--sky .about__highlight-ico { background: var(--sky-bg); color: #4a8fc4; border-color: rgba(74, 143, 196, 0.22); }
.about__highlight-text { font-weight: 700; color: var(--text); font-size: 0.86rem; line-height: 1.25; }

.about__cta-row { margin-top: 4px; }
.about__cta { box-shadow: 0 12px 32px rgba(15, 110, 86, 0.28); }
.about__cta i { transition: transform 0.25s var(--ease); }
.about__cta:hover i { transform: translateX(4px); }

@media (max-width: 991px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { min-height: 360px; }
  .about__highlights { grid-template-columns: 1fr; }
  .about__img--main { width: 100%; }
  .about__img--accent { width: 54%; }
  .about__brand { width: 100%; }
}

/* About page */
.about-page-hero {
  position: relative;
  padding: calc(var(--header-h) + 36px) 0 48px;
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(29, 158, 117, 0.14), transparent 55%),
    linear-gradient(180deg, #f3faf7 0%, var(--surface) 100%);
  overflow: hidden;
}
[data-theme="dark"] .about-page-hero {
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(29, 158, 117, 0.18), transparent 55%),
    linear-gradient(180deg, #0d1815 0%, var(--surface) 100%);
}
.about-page-hero__glow {
  position: absolute;
  inset: auto -80px -120px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(196, 125, 14, 0.12);
  filter: blur(60px);
  pointer-events: none;
}
.about-page-hero__crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.about-page-hero__crumb a { color: var(--green-700); font-weight: 600; }
.about-page-hero__crumb a:hover { text-decoration: underline; }
.about-page-hero__brand {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  flex-wrap: wrap;
}
.about-page-hero__logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  padding: 12px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-page-hero__logo--real {
  width: auto;
  height: 96px;
  max-width: 120px;
  padding: 10px 14px;
}
.about-page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  color: var(--green-900);
  margin: 6px 0 10px;
}
[data-theme="dark"] .about-page-hero__title { color: var(--text); }
.about-page-hero__sub {
  margin: 0 0 10px;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}
.about-page-hero__loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.about-page-hero__loc i { color: var(--amber); }

.about-page-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.about-page-story__frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-page-story__frame img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.about-page-story__badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(4, 52, 44, 0.1);
  text-align: center;
  backdrop-filter: blur(8px);
}
.about-page-story__badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--green-700);
}
.about-page-story__badge span { font-size: 0.78rem; color: var(--text-muted); font-weight: 700; }
.about-page-story__heading {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 14px;
  color: var(--green-900);
}
[data-theme="dark"] .about-page-story__heading { color: var(--text); }
.about-page-story__copy p { color: var(--text-muted); margin-bottom: 14px; }
.about-page-story__stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.92rem;
}
.about-page-story__stat i { color: var(--green-700); }

.about-page-legal { background: var(--bg); }
.about-page-legal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin-top: 28px;
}
.about-page-legal__intro {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-page-legal__intro strong { color: var(--text); }
.about-page-legal__list {
  display: grid;
  gap: 14px;
  margin: 0;
}
.about-page-legal__item {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.about-page-legal__item dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.about-page-legal__item dd {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  font-size: 0.94rem;
}
.about-page-legal__cert { margin: 0; }
.about-page-legal__cert-link {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.about-page-legal__cert-link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s var(--ease);
}
.about-page-legal__cert-link:hover img { transform: scale(1.02); }
.about-page-legal__cert-zoom {
  position: absolute;
  inset: auto 12px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(4, 52, 44, 0.82);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.about-page-legal__cert figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.about-page-pillars { background: var(--bg); }
.about-page-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.about-page-pillar {
  padding: 24px 22px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.about-page-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.about-page-pillar__ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.about-page-pillar--rose .about-page-pillar__ico { background: var(--rose-bg); color: #b85a64; }
.about-page-pillar--amber .about-page-pillar__ico { background: var(--amber-soft); color: var(--amber); }
.about-page-pillar--sky .about-page-pillar__ico { background: var(--sky-bg); color: #4a8fc4; }
.about-page-pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--green-900);
}
[data-theme="dark"] .about-page-pillar h3 { color: var(--text); }
.about-page-pillar p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }

.about-page-cta {
  padding: 56px 0 72px;
  background: linear-gradient(135deg, var(--green-900) 0%, #0a4a3d 100%);
  color: #fff;
}
.about-page-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.about-page-cta__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
}
.about-page-cta__logo--real {
  width: auto;
  height: 68px;
  max-width: 88px;
}
.about-page-cta__inner h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.about-page-cta__inner p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 0.95rem;
}
.about-page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 991px) {
  .about-page-story__grid { grid-template-columns: 1fr; }
  .about-page-legal__grid { grid-template-columns: 1fr; }
  .about-page-pillars__grid { grid-template-columns: 1fr; }
  .about-page-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .about-page-cta__actions { justify-content: center; }
}

/* Team page */
.team-page { padding-top: 0; }
.team-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  max-width: 820px;
  margin-inline: auto;
}
.team-card {
  padding: 24px 20px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card__avatar {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--green-100);
  color: var(--green-700);
  overflow: hidden;
}
.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card--rose .team-card__avatar { background: var(--rose-bg); color: #b85a64; }
.team-card--amber .team-card__avatar { background: var(--amber-soft); color: var(--amber); }
.team-card--sky .team-card__avatar { background: var(--sky-bg); color: #4a8fc4; }
.team-card--teal .team-card__avatar { background: var(--green-100); color: var(--green-700); }
.team-card__initials {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
.team-card__ico {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 4px;
  color: var(--green-900);
}
[data-theme="dark"] .team-card__name { color: var(--text); }
.team-card__role {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
}
.team-card__email {
  margin: 0 0 10px;
  font-size: 0.88rem;
}
.team-card__email a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}
.team-card__email a:hover { color: var(--teal); }
.team-card__email i { font-size: 0.82rem; opacity: 0.85; }
.team-card__bio {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.team-page__join {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding: 24px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--green-900) 0%, #0a4a3d 100%);
  color: #fff;
}
.team-page__join h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 6px;
}
.team-page__join p {
  margin: 0;
  max-width: 52ch;
  font-size: 0.94rem;
  opacity: 0.92;
  line-height: 1.55;
}

/* Donation page */
.donation-page { padding-top: 0; }
.section-head--left { text-align: left; }
.donation-page__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.donation-page__purposes {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.donation-page__purposes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--text-muted);
}
.donation-page__purposes i {
  color: var(--green-700);
  margin-top: 3px;
}
.donation-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.donation-page__bank {
  padding: 24px 22px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.donation-page__bank-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 18px;
  color: var(--green-900);
}
[data-theme="dark"] .donation-page__bank-title { color: var(--text); }
.donation-page__bank-title i { color: var(--amber); }
.donation-page__bank-list {
  margin: 0;
  display: grid;
  gap: 14px;
}
.donation-page__bank-list div {
  display: grid;
  gap: 4px;
}
.donation-page__bank-list dt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.donation-page__bank-list dd {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}
.donation-page__bank-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .team-page__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; }
  .donation-page__grid { grid-template-columns: 1fr; }
  .team-page__join {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .team-page__grid { grid-template-columns: 1fr; }
}

/* Legal page */
.legal-page__block { padding-top: 0; }
.legal-page__block--muted { background: var(--bg); }
.legal-page__prose {
  max-width: 760px;
}
.legal-page__prose p,
.legal-page__prose li {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}
.legal-page__prose h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 24px 0 8px;
  color: var(--green-900);
}
[data-theme="dark"] .legal-page__prose h3 { color: var(--text); }
.legal-page__prose ul {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}
.legal-page__prose a {
  color: var(--green-700);
  font-weight: 600;
}
.legal-page__prose a:hover { color: var(--teal); }
.section-head__sub a {
  color: var(--green-700);
  font-weight: 600;
}
.section-head__sub a:hover { color: var(--teal); }

/* Gallery — cinematic slider */
.gallery-sec {
  position: relative;
  background: linear-gradient(165deg, #032821 0%, var(--green-900) 45%, #021a16 100%);
  color: #fff;
  overflow: hidden;
}
.gallery-sec__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.gallery-sec__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.gallery-sec__glow--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: rgba(29, 158, 117, 0.28);
}
.gallery-sec__glow--2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -60px;
  background: rgba(196, 125, 14, 0.18);
}
.gallery-sec__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.gallery-sec__inner { position: relative; z-index: 1; }
.gallery-sec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.gallery-sec__head-copy { max-width: 560px; }
.gallery-sec .section-head__eyebrow { color: var(--teal); }
.gallery-sec .section-head__title { color: #fff; }
.gallery-sec .section-head__sub { color: rgba(255, 255, 255, 0.72); margin-top: 10px; }
.gallery-sec__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.gallery-sec--page { padding-top: 0; }
.gallery-sec__controls--solo {
  justify-content: flex-end;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.gallery-sec__counter {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  min-width: 4.5rem;
}
.gallery-sec__nav { display: flex; gap: 10px; }
.gallery-sec__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s var(--ease), border-color 0.25s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.gallery-sec__arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(93, 202, 165, 0.45);
  transform: scale(1.05);
}
.gallery-sec__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.gallery-showcase { position: relative; }
.gallery-swiper {
  overflow: visible;
  padding: 8px 0 20px;
}
.gallery-slide {
  width: min(78%, 820px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  opacity: 0.45;
  transform: scale(0.92);
}
.gallery-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.gallery-slide__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.gallery-slide__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  background: #0a1f1a;
}
.gallery-slide__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.gallery-slide.swiper-slide-active .gallery-slide__frame img,
.gallery-slide__link:hover .gallery-slide__frame img {
  transform: scale(1.03);
}
.gallery-slide__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 52, 44, 0.88) 100%);
  pointer-events: none;
}
.gallery-slide__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.gallery-slide__index {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  opacity: 0.9;
}
.gallery-slide__cap {
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  line-height: 1.3;
}
.gallery-slide__zoom {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
}
.gallery-slide__link:hover .gallery-slide__zoom {
  background: rgba(93, 202, 165, 0.35);
  transform: scale(1.08);
}

.gallery-thumbs-wrap {
  margin-top: 6px;
  padding: 0 clamp(8px, 2vw, 24px);
}
.gallery-thumbs-swiper { overflow: hidden; }
.gallery-thumb {
  width: auto;
  max-width: 100px;
  opacity: 0.55;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s;
}
.gallery-thumb.swiper-slide-thumb-active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(93, 202, 165, 0.25);
}
.gallery-thumb img {
  display: block;
  width: 88px;
  height: 58px;
  object-fit: cover;
}
.gallery-thumb__cap {
  display: block;
  width: 88px;
  padding: 5px 4px 6px;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gallery-thumb.swiper-slide-thumb-active .gallery-thumb__cap {
  color: var(--teal);
}

/* Impact */
.impact {
  position: relative;
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: clamp(52px, 8vw, 80px);
  padding-bottom: clamp(64px, 10vw, 100px);
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(93, 202, 165, 0.12), transparent 55%),
    linear-gradient(165deg, var(--green-700) 0%, var(--green-900) 100%);
  color: #fff;
}
.impact .section-head__eyebrow { color: var(--teal); }
.impact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.impact-card {
  text-align: center; padding: 32px 20px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease), background 0.35s;
}
.impact-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.impact-card__num {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--teal); line-height: 1;
}
.impact-card__label {
  margin-top: 10px; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.75);
}

/* Page close — join, partners, FAQ, support */
.page-close {
  background: linear-gradient(180deg, var(--surface) 0%, #f4faf7 35%, #f4faf7 70%, var(--surface) 100%);
}
[data-theme="dark"] .page-close {
  background: linear-gradient(180deg, var(--surface) 0%, #0e1a17 35%, #0e1a17 70%, var(--surface) 100%);
}
.page-close .section { padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(40px, 5vw, 56px); }
.page-close .section-head--center { margin-inline: auto; text-align: center; max-width: 620px; }

.get-involved {
  position: relative;
  overflow: hidden;
}
.get-involved__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.12);
  filter: blur(70px);
  pointer-events: none;
}
.get-involved__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.get-involved__card {
  padding: 22px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(4, 52, 44, 0.08);
  box-shadow: 0 10px 28px rgba(4, 52, 44, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
[data-theme="dark"] .get-involved__card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.get-involved__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(4, 52, 44, 0.1);
  border-color: rgba(4, 52, 44, 0.14);
}
.get-involved__ico {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
}
.get-involved__card--rose .get-involved__ico { background: var(--rose-bg); color: #b85a64; }
.get-involved__card--amber .get-involved__ico { background: var(--amber-soft); color: var(--amber); }
.get-involved__card--sky .get-involved__ico { background: var(--sky-bg); color: #4a8fc4; }
.get-involved__card--teal .get-involved__ico { background: var(--green-100); color: var(--green-700); }
.get-involved__card p {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--text);
}
.get-involved__cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.allies {
  padding-top: 0 !important;
  padding-bottom: clamp(40px, 5vw, 56px) !important;
}
.allies__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.allies__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.allies__pill {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(4, 52, 44, 0.08);
}
[data-theme="dark"] .allies__pill {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-sec { padding-top: clamp(40px, 5vw, 56px) !important; }
.faq-sec .accordion__item {
  border-radius: 16px;
  border-left: 3px solid transparent;
}
.faq-sec .accordion__item.is-open {
  border-left-color: var(--green-500);
}

.give-sec {
  padding-bottom: clamp(72px, 10vw, 100px) !important;
}
.give-sec__panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  padding: clamp(24px, 4vw, 36px) clamp(24px, 4vw, 40px);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--green-900) 0%, #0a4a3d 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.give-sec__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
}
.give-sec__logo--real {
  width: auto;
  height: 68px;
  max-width: 88px;
}
.give-sec__copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 6px;
  line-height: 1.15;
}
.give-sec__copy p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 48ch;
}
.give-sec__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.give-sec__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.25s, gap 0.25s;
}
.give-sec__link:hover {
  color: var(--teal);
  gap: 12px;
}

/* Section wave dividers — seamless looping curves */
.section-wave {
  --wave-speed-main: 32s;
  --wave-speed-soft: 48s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(56px, 11vw, 108px);
  transform: translateY(calc(-100% + 2px));
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
  isolation: isolate;
}
.section-wave__layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.section-wave__layer--soft {
  z-index: 1;
  opacity: 0.55;
  transform: translateY(-10px) scale(1.02);
  filter: blur(0.5px);
}
.section-wave__layer--main {
  z-index: 2;
}
.section-wave__track {
  display: flex;
  width: 200%;
  height: 100%;
  will-change: transform;
}
.section-wave__track svg {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  display: block;
}
.section-wave__fill {
  transition: fill 0.3s ease;
}
.section-wave__crest {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
[data-theme="dark"] .section-wave__crest {
  stroke: rgba(255, 255, 255, 0.08);
}

/* Impact wave colours */
.section-wave[data-wave-theme="impact"] .section-wave__layer--main .section-wave__fill {
  fill: var(--green-700);
}
.section-wave[data-wave-theme="impact"] .section-wave__layer--soft .section-wave__fill {
  fill: #178564;
}
[data-theme="dark"] .section-wave[data-wave-theme="impact"] .section-wave__layer--soft .section-wave__fill {
  fill: rgba(29, 158, 117, 0.55);
}

/* Footer wave colours */
.section-wave[data-wave-theme="footer"] .section-wave__layer--main .section-wave__fill {
  fill: var(--green-900);
}
.section-wave[data-wave-theme="footer"] .section-wave__layer--soft .section-wave__fill {
  fill: var(--green-700);
}
[data-theme="dark"] .section-wave[data-wave-theme="footer"] .section-wave__layer--soft .section-wave__fill {
  fill: rgba(15, 110, 86, 0.75);
}

@media (prefers-reduced-motion: no-preference) {
  .section-wave__layer--main .section-wave__track {
    animation: waveFlow var(--wave-speed-main) linear infinite;
  }
  .section-wave__layer--soft .section-wave__track {
    animation: waveFlow var(--wave-speed-soft) linear infinite reverse;
  }
  .section-wave__layer--main .section-wave__crest {
    animation: waveCrestGlow 6s ease-in-out infinite alternate;
  }
}
@keyframes waveFlow {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes waveCrestGlow {
  from { opacity: 0.45; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .section-wave__track,
  .section-wave__crest { animation: none !important; }
  .section-wave__layer--soft {
    transform: translateY(-6px);
    filter: none;
  }
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: clamp(40px, 6vw, 72px);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(29, 158, 117, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(219, 84, 97, 0.08), transparent 50%),
    var(--green-900);
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(52px, 8vw, 84px) 0 clamp(24px, 4vw, 32px);
}
.section-wave[data-wave-theme="footer"] {
  --wave-speed-main: 36s;
  --wave-speed-soft: 54s;
}
.site-footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  padding: clamp(22px, 3vw, 28px) clamp(22px, 3.5vw, 36px);
  margin-bottom: clamp(40px, 5vw, 56px);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.site-footer__cta-copy {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 22px);
  min-width: 0;
}
.site-footer__cta-logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
  padding: 7px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
}
.site-footer__cta-logo--real {
  width: auto;
  height: 60px;
  max-width: 76px;
  padding: 4px 8px;
}
.site-footer__cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.15;
  margin: 0 0 6px;
  color: #fff;
}
.site-footer__cta-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
}
.site-footer__cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.site-footer__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.25s, gap 0.25s;
}
.site-footer__cta-link:hover {
  color: var(--teal);
  gap: 12px;
}
.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-bottom: clamp(32px, 4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 18px);
  max-width: 58ch;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
}
.site-footer__logo-img {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
.site-footer__logo-img--real {
  height: 48px;
  max-width: 150px;
}
.site-footer__logo-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.site-footer__lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.02rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48ch;
}
.site-footer__aside {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  padding-top: 6px;
}
.site-footer__heading {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.site-footer__links,
.site-footer__reach {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.site-footer__links {
  grid-template-columns: 1fr;
}
.site-footer__links a,
.site-footer__reach a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.site-footer__links a:hover,
.site-footer__reach a:hover { color: var(--teal); }
.site-footer__reach li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}
.site-footer__reach i {
  width: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--teal);
  opacity: 0.9;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 20px;
  padding-top: clamp(20px, 3vw, 28px);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__legal a:hover { color: rgba(255, 255, 255, 0.78); }

@media (max-width: 992px) {
  .faq-sec__layout {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 36px);
  }
  .faq-sec__head {
    position: static;
    max-width: 620px;
    text-align: center;
    margin-inline: auto;
  }
  .site-footer,
  .impact {
    padding-top: clamp(44px, 6vw, 60px);
  }
  .section-wave {
    height: clamp(44px, 8vw, 72px);
  }
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer__brand {
    max-width: none;
    align-items: flex-start;
    text-align: left;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-footer__aside {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .site-footer__cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    margin-bottom: 28px;
  }
  .site-footer__cta-copy {
    align-items: flex-start;
    text-align: left;
  }
  .site-footer__cta-actions {
    align-items: stretch;
    width: 100%;
  }
  .site-footer__cta-actions .btn { width: 100%; max-width: none; }
  .site-footer__heading {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }
  .site-footer__links a,
  .site-footer__reach li {
    font-size: 0.84rem;
  }
}
@media (max-width: 576px) {
  .site-footer__cta-copy {
    flex-direction: row;
    align-items: center;
  }
  .site-footer__cta-logo {
    width: 48px;
    height: 48px;
  }
  .site-footer__cta-title { font-size: 1.05rem; }
  .site-footer__cta-text { font-size: 0.84rem; }
  .site-footer__lead { font-size: 0.9rem; }
  .site-footer__aside {
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
  }
  .site-footer__col--reach {
    grid-column: 1 / -1;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .site-footer__legal { gap: 12px; }
}

/* Student contact */
.student-contact {
  position: relative;
  padding: clamp(48px, 6vw, 72px) 0 clamp(24px, 4vw, 36px);
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(15, 110, 86, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(219, 84, 97, 0.06), transparent 50%),
    var(--bg);
  overflow: hidden;
}
[data-theme="dark"] .student-contact {
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(29, 158, 117, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #0e1a17 100%);
}
.student-contact__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  border-radius: 50%;
  background: rgba(93, 202, 165, 0.12);
  filter: blur(70px);
  pointer-events: none;
}
.student-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.student-contact__head {
  margin: 0;
  max-width: 38ch;
  text-align: left;
  position: sticky;
  top: calc(var(--header-h, 88px) + 24px);
}
.student-contact__panel {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 20px);
  align-items: stretch;
}
.student-contact__open {
  grid-column: 1 / -1;
  margin-top: 4px;
}
.student-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 40px);
}
.student-contact__info { display: grid; gap: 20px; }
.student-contact__card {
  padding: 24px 22px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.student-contact__ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
  color: var(--green-700);
  background: var(--green-100);
}
.student-contact__card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.student-contact__card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.student-contact__channels {
  list-style: none;
  display: grid;
  gap: 14px;
}
.student-contact__channels li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
}
[data-theme="dark"] .student-contact__channels li {
  background: rgba(255, 255, 255, 0.04);
}
.student-contact__channels i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--green-700);
  background: var(--green-100);
}
.student-contact__channels strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.student-contact__channels a { color: var(--green-700); font-weight: 600; }
.contact-email-list {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}
.contact-email-list__item {
  display: grid;
  gap: 2px;
}
.contact-email-list__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.contact-email-list--footer .contact-email-list__label {
  color: rgba(255, 255, 255, 0.45);
}
.contact-email-list--footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}
.contact-email-list--footer a:hover { color: var(--teal); }
.site-footer__email-block { min-width: 0; }
.student-contact__form-wrap {
  padding: clamp(22px, 3vw, 28px);
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.student-contact__form { display: grid; gap: 16px; }
.student-contact__form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.student-contact__field {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.student-contact__field em { color: var(--rose); font-style: normal; }
.student-contact__field input,
.student-contact__field select,
.student-contact__field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.student-contact__field input:focus,
.student-contact__field select:focus,
.student-contact__field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.15);
}
.student-contact__field textarea { resize: vertical; min-height: 120px; }
.student-contact__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.student-contact__error {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}
[data-theme="dark"] .student-contact__error {
  color: #fecdd3;
  background: rgba(159, 18, 57, 0.2);
  border-color: rgba(254, 205, 211, 0.2);
}
.student-contact__success {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--green-700);
  background: var(--green-100);
  border: 1px solid rgba(15, 110, 86, 0.2);
}
.student-contact__submit { margin-top: 4px; }
.student-contact__submit[disabled] { opacity: 0.65; cursor: wait; }
@media (max-width: 900px) {
  .student-contact__grid { grid-template-columns: 1fr; }
  .student-contact__form-row--2 { grid-template-columns: 1fr; }
}

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }
.service-card.reveal.is-visible:hover { transform: translateY(-8px); }
@media (max-width: 768px) {
  .service-card.reveal.is-visible:hover { transform: none; }
}

/* Responsive */
.mobile-drawer__links a.is-active {
  color: var(--green-700); background: var(--green-100);
}

/* Mobile drawer — compact contact + nav grid */
.mobile-drawer__contact {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  flex-shrink: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer__contact-chip {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 6px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.68rem; line-height: 1.25;
  color: var(--text); text-decoration: none; text-align: center;
  background: var(--bg); transition: background 0.2s;
  min-width: 0;
}
.mobile-drawer__contact-chip span {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  max-width: 100%;
}
.mobile-drawer__contact-chip i {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center; font-size: 0.75rem; flex-shrink: 0;
}
.mobile-drawer__contact-chip:hover { background: var(--green-100); }
.mobile-drawer__nav { flex-shrink: 0; }
@media (max-height: 640px) {
  .mobile-drawer__panel { gap: 6px; }
  .mobile-drawer__links a { padding: 8px 10px; font-size: 0.85rem; }
  .mobile-drawer__contact-chip { padding: 6px 4px; font-size: 0.64rem; }
  .mobile-drawer__foot .btn--donate-header { padding: 9px 16px; }
}
@media (max-width: 991px) {
  .top-bar { display: none; }
  .site-header__nav { display: none; }
  .site-header { --header-h: 56px; --topbar-h: 0px; }
  .site-header.is-scrolled { --header-h: 50px; }
  .site-header__row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 8px 0;
    min-height: 0;
  }
  .site-header__brand { max-width: calc(100% - 120px); }
  .site-header__brand--logo-only .site-header__brand-logo--real {
    height: 40px;
    max-width: min(150px, 48vw);
  }
  .site-header__brand-logo--real { height: 40px; max-width: 120px; }
  .site-header.is-scrolled .site-header__brand-logo--real,
  .site-header.is-scrolled .site-header__brand--logo-only .site-header__brand-logo--real {
    height: 36px;
  }
  .site-header__brand-copy { display: none; }
  .site-header__main {
    box-shadow: none;
    border-bottom: 1px solid rgba(4, 52, 44, 0.06);
  }
  .site-header__wrap .container { width: 100%; padding-inline: 14px; }
  .menu-toggle { display: grid; flex-shrink: 0; }
  .site-header__actions { gap: 8px; }
  .btn--donate-header { padding: 8px 14px; font-size: 0.72rem; }
  .site-header.is-scrolled .site-header__row { padding-block: 6px; }
  .site-header__cta-group { padding: 3px 4px 3px 3px; }
  .get-involved__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .student-contact__layout {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 36px);
  }
  .student-contact__head {
    position: static;
    max-width: 620px;
    text-align: center;
    margin-inline: auto;
  }
  .student-contact__panel {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { min-height: 320px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-slide { width: 88%; }
  .gallery-sec__head { align-items: flex-start; }
  .gallery-thumb img { width: 72px; height: 48px; }
}
@media (min-width: 992px) {
  .menu-toggle { display: none; }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .site-nav__list a { padding: 6px 8px; font-size: 0.76rem; }
  .site-header__brand--logo-only .site-header__brand-logo--real { height: 44px; max-width: 160px; }
  .site-header__brand-loc { display: none; }
  .btn--donate-header { padding: 8px 14px; font-size: 0.72rem; }
}
@media (max-width: 576px) {
  .get-involved__grid { grid-template-columns: 1fr; }
  .btn--donate-header { padding: 7px 12px; font-size: 0.66rem; }
  .hero__arrow { width: 36px; height: 36px; }
  .gallery-slide { width: 94%; }
  .gallery-slide__meta { padding: 14px 16px; gap: 10px; }
  .gallery-slide__index { font-size: 1.2rem; }
  .gallery-slide__cap { font-size: 0.88rem; }
  .gallery-thumb img { width: 64px; height: 44px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
}

/* Form modals — donate + contact (mobile-first bottom sheet) */
.form-modal,
.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.form-modal.is-open,
.donate-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.form-modal__backdrop,
.donate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 52, 44, 0.55);
  backdrop-filter: blur(4px);
}
.form-modal__dialog,
.donate-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(560px, 100%);
  max-height: min(90dvh, 720px);
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 28px 0;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s var(--ease);
}
.form-modal__pane[hidden],
.donate-modal__pane[hidden] {
  display: none !important;
}
.form-modal__pane,
.donate-modal__pane {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.form-modal__pane[data-contact-step="2"],
.donate-modal__pane[data-donate-step="2"] {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
}
.form-modal__head {
  flex-shrink: 0;
}
.form-modal__form,
.donate-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.form-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: grid;
  gap: 12px;
  padding-bottom: 8px;
}
.form-modal__footer {
  flex-shrink: 0;
  display: grid;
  gap: 10px;
  padding: 14px 0 max(20px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.form-modal__dialog > .form-modal__pane:not([hidden]),
.donate-modal__dialog > .donate-modal__pane:not([hidden]) {
  flex: 1 1 auto;
  min-height: 0;
}
.form-modal__scroll {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.form-modal__scroll > .form-modal__pane:not([hidden]),
.form-modal__scroll > .donate-modal__pane:not([hidden]) {
  flex: 1 1 auto;
  min-height: 0;
}
.form-modal.is-open .form-modal__dialog,
.donate-modal.is-open .donate-modal__dialog { transform: none; }
.form-modal__topbar {
  display: block;
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 3;
  pointer-events: none;
  min-height: 0;
  margin: 0;
}
.form-modal__handle {
  display: none;
  width: 40px;
  height: 4px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--text-muted) 40%, transparent);
}
.form-modal__topbar .form-modal__close,
.form-modal__topbar .donate-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  pointer-events: auto;
}
.form-modal__close,
.donate-modal__close {
  z-index: 2;
}
.form-modal__title,
.donate-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 8px;
  padding-right: 36px;
}
.form-modal__sub,
.donate-modal__sub {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.form-modal__row { display: grid; gap: 14px; }
.form-modal__row--2 { grid-template-columns: 1fr 1fr; }
.form-modal__field {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}
.form-modal__field em { color: var(--rose); font-style: normal; }
.form-modal__field input,
.form-modal__field select,
.form-modal__field textarea,
.donate-form__field input,
.donate-form__field select,
.donate-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-modal__field input:focus,
.form-modal__field select:focus,
.form-modal__field textarea:focus,
.donate-form__field input:focus,
.donate-form__field select:focus,
.donate-form__field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.15);
}
.form-modal__field textarea { resize: vertical; min-height: 88px; max-height: 140px; }
.form-modal__hp,
.donate-form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-modal__error,
.donate-form__error {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  margin: 0;
}
.form-modal__footer .form-modal__error,
.form-modal__footer .donate-form__error {
  margin-bottom: 0;
}
.form-modal__submit,
.donate-form__submit {
  margin: 0;
  width: 100%;
}
.form-modal__submit[disabled],
.donate-form__submit[disabled] { opacity: 0.65; cursor: wait; }
#donate-modal-done,
#contact-modal-done {
  margin-top: 12px;
  width: 100%;
}
.form-modal__success {
  text-align: center;
  margin-bottom: 18px;
}
.form-modal__success-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  color: var(--green-700);
  background: var(--green-100);
}
.form-modal__ref {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 12px 14px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.form-modal__ref-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-700);
}
.form-modal__ref-code {
  font-family: ui-monospace, monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-900);
}
.form-modal__note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Donate modal — two-step flow */
.donate-modal__progress {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.donate-modal__step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
}
.donate-modal__step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--border);
  font-size: 0.72rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.donate-modal__step--active .donate-modal__step-num,
.donate-modal__step--done .donate-modal__step-num {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}
.donate-modal__step--active { color: var(--text); }
.donate-modal__step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}
.donate-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--green-900);
}
[data-theme="dark"] .donate-modal__title { color: var(--text); }
.donate-modal__sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.donate-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.donate-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.donate-form__field em { color: var(--amber); font-style: normal; }
.donate-form__field input,
.donate-form__field select,
.donate-form__field textarea {
  font: inherit;
  font-weight: 400;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.donate-form__field input:focus,
.donate-form__field select:focus,
.donate-form__field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.15);
}
.donate-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.donate-form__error {
  color: #b42318;
  font-size: 0.85rem;
  margin: 0;
}
.donate-status-pill {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  background: var(--amber-soft);
  border: 1px solid rgba(196, 125, 14, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}
.donate-status-pill i { color: var(--amber); margin-top: 2px; flex-shrink: 0; }
.donate-status-pill strong { color: var(--text); }
[data-theme="dark"] .donate-status-pill { background: var(--amber-soft); }
.donate-ref {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 12px 14px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.donate-ref__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-700);
}
.donate-ref__code {
  font-family: ui-monospace, monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-900);
}
[data-theme="dark"] .donate-ref__code { color: var(--text); }
.donate-copy {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.donate-copy:hover { color: var(--green-700); border-color: var(--green-500); }
.donate-copy--sm { padding: 4px 8px; margin-left: 6px; vertical-align: middle; }
.donate-copy.is-copied { color: var(--green-700); border-color: var(--green-500); }
.donate-pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.donate-bank,
.donate-qr {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
}
.donate-bank__title,
.donate-qr__title {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--green-900);
  display: flex;
  align-items: center;
  gap: 8px;
}
[data-theme="dark"] .donate-bank__title,
[data-theme="dark"] .donate-qr__title { color: var(--text); }
.donate-bank__list { display: flex; flex-direction: column; gap: 8px; }
.donate-legal-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.donate-legal-note i { color: var(--green-700); margin-right: 4px; }
.donate-legal-note__sep { margin: 0 4px; opacity: 0.45; }
.donate-bank__item { display: grid; grid-template-columns: 90px 1fr; gap: 6px; font-size: 0.8rem; }
.donate-bank__item dt { color: var(--text-muted); font-weight: 600; }
.donate-bank__item dd { color: var(--text); font-weight: 500; word-break: break-all; }
.donate-qr { text-align: center; }
.donate-qr__img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  margin: 0 auto 8px;
  display: block;
}
.donate-qr__placeholder {
  padding: 20px 12px;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.donate-qr__placeholder i { font-size: 2rem; opacity: 0.35; margin-bottom: 8px; display: block; }
.donate-qr__placeholder code { font-size: 0.7rem; word-break: break-all; }
.donate-qr__hint { font-size: 0.72rem; color: var(--text-muted); }
.donate-modal__note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.donate-modal__note a { color: var(--green-700); font-weight: 600; }
@media (max-width: 576px) {
  .form-modal,
  .donate-modal {
    padding: 0;
    align-items: flex-end;
  }
  .form-modal__dialog,
  .donate-modal__dialog {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: min(94dvh, 100%);
    height: min(94dvh, 100%);
    border-radius: 20px 20px 0 0;
    padding: 8px 16px 0;
    overflow: hidden;
  }
  .form-modal__dialog.is-keyboard-open,
  .donate-modal__dialog.is-keyboard-open {
    max-height: var(--modal-vh, 94dvh);
    height: var(--modal-vh, 94dvh);
  }
  .form-modal__topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    pointer-events: auto;
    padding: 4px 44px 8px;
    margin-bottom: 0;
    inset: auto;
  }
  .form-modal__handle {
    display: block;
  }
  .form-modal__topbar .form-modal__close,
  .form-modal__topbar .donate-modal__close {
    top: 2px;
    right: 0;
  }
  .form-modal__scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scroll-padding-bottom: 120px;
    touch-action: pan-y;
  }
  .donate-modal__progress {
    flex-shrink: 0;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
  .form-modal__pane,
  .donate-modal__pane {
    display: block;
    overflow: visible;
    min-height: unset;
  }
  .form-modal__pane[data-contact-step="2"],
  .donate-modal__pane[data-donate-step="2"] {
    overflow: visible;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  .form-modal__form,
  .donate-form {
    display: block;
  }
  .form-modal__head {
    margin-bottom: 2px;
  }
  .form-modal__body {
    overflow: visible;
    display: grid;
    gap: 12px;
    padding-bottom: 4px;
  }
  .form-modal__footer {
    position: sticky;
    bottom: 0;
    z-index: 6;
    margin: 10px -16px 0;
    padding: 12px 16px max(14px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 -10px 28px rgba(4, 52, 44, 0.1);
  }
  [data-theme="dark"] .form-modal__footer {
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.4);
  }
  .form-modal__title,
  .donate-modal__title {
    font-size: 1.2rem;
    margin-bottom: 4px;
    padding-right: 0;
  }
  .form-modal__sub,
  .donate-modal__sub {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .form-modal__row--2,
  .donate-form__row--2,
  .donate-pay-grid { grid-template-columns: 1fr; }
  .form-modal__row,
  .form-modal__body { gap: 10px; }
  .form-modal__field input,
  .form-modal__field select,
  .form-modal__field textarea,
  .donate-form__field input,
  .donate-form__field select,
  .donate-form__field textarea {
    font-size: 16px;
    padding: 12px 14px;
  }
  .form-modal__field textarea {
    min-height: 72px;
    max-height: 112px;
  }
  .donate-modal__step-label { display: none; }
}

/* ─── Site loader (Lottie book opening) ─── */
html.loader-skip .site-loader { display: none !important; }
html.loader-skip body.is-loading { overflow: auto; }
body.is-loading { overflow: hidden; }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 32px);
  background: #ffffff;
  color: var(--text);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.site-loader__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: loaderOrbDrift 10s ease-in-out infinite;
}
.site-loader__orb--1 {
  width: 50vmax;
  height: 50vmax;
  top: -18%;
  left: -8%;
  background: radial-gradient(circle, rgba(93, 202, 165, 0.18) 0%, transparent 68%);
}
.site-loader__orb--2 {
  width: 42vmax;
  height: 42vmax;
  bottom: -12%;
  right: -6%;
  background: radial-gradient(circle, rgba(196, 125, 14, 0.1) 0%, transparent 70%);
  animation-delay: -4s;
}
.site-loader__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 38%, transparent 0%, rgba(255, 255, 255, 0.15) 72%, rgba(250, 252, 251, 0.85) 100%);
}

.site-loader__panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
}

.site-loader__lottie {
  width: min(360px, 92vw);
  height: min(200px, 52vw);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderLottieIn 0.8s var(--ease) both;
}
.site-loader__lottie svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.site-loader__brand {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(14px);
  animation: loaderBrandIn 0.75s var(--ease) 0.55s forwards;
}
.site-loader__logo-shell {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 14px;
}
.site-loader__logo-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 110, 86, 0.15);
  border-top-color: var(--green-700);
  animation: loaderRingSpin 2.2s linear infinite;
}
.site-loader__logo {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  margin: 8px auto 0;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 6px 24px rgba(4, 52, 44, 0.1);
}
.site-loader__logo--real { background: #fff; }
.site-loader__name {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 3.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-900);
  max-width: 22ch;
  margin: 0 0 10px;
}
.site-loader__tagline {
  font-size: clamp(0.92rem, 2.8vw, 1rem);
  font-weight: 600;
  color: var(--green-700);
  max-width: 30ch;
  line-height: 1.5;
  margin: 0 0 8px;
}
.site-loader__stat {
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  margin: 0;
  max-width: 36ch;
  line-height: 1.55;
}

@keyframes loaderLottieIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes loaderBrandIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderRingSpin {
  to { transform: rotate(360deg); }
}
@keyframes loaderOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, -2%) scale(1.04); }
}

@media (max-width: 480px) {
  .site-loader__lottie { height: min(170px, 46vw); }
  .site-loader__name { font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .site-loader__lottie,
  .site-loader__brand,
  .site-loader__logo-ring,
  .site-loader__orb { animation: none !important; }
  .site-loader__brand { opacity: 1; transform: none; }
  *, .reveal, .about__badge { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__anim { opacity: 1; transform: none; filter: none; transition: none; }
  .hero__copy::before { transform: scaleY(1); transition: none; }
  .hero__bg { transition: none !important; transform: scale(1.03) !important; }
  .hero-pillar:hover { transform: none; }
  .hero-pillar__arrow { opacity: 1; transform: none; }
}
