/* ==========================================================================
   KINDRA FOUNDATION — Premium NGO Homepage
   Palette: Deep Forest Green / Dark Emerald / Warm Gold / Off-White
   ========================================================================== */

:root {
  --forest: #063f35;
  --forest-deep: #04302a;
  --emerald: #075548;
  --gold: #f5d547;
  --gold-soft: rgba(245, 213, 71, 0.16);
  --off-white: #f7f7f2;
  --white: #ffffff;
  --ink: #10201c;
  --muted: #5c6f6a;
  --muted-light: rgba(247, 247, 242, 0.72);
  --line: rgba(16, 32, 28, 0.12);
  --line-light: rgba(247, 247, 242, 0.16);

  --font: "Manrope", system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --section-pad: clamp(84px, 12vw, 150px);

  --radius: 20px;
  --radius-sm: 12px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);

  --header-h: 92px;
  --header-h-scrolled: 68px;
}

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

html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input { font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold); color: var(--forest); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 4000;
  background: var(--gold);
  color: var(--forest);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  transition: top 0.3s var(--ease-out);
}
.skip-link:focus-visible { top: 16px; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: var(--section-pad); }

.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 22px;
}
.eyebrow-line {
  width: 34px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex: none;
}
.eyebrow-light { color: var(--gold); }

.section-title {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title-light { color: var(--off-white); }

.section-text {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.075rem);
  max-width: 54ch;
}
.section-text + .section-text { margin-top: 16px; }
.section-text-light { color: var(--muted-light); }

.line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em; /* protect descenders */
}
.line-mask .line { display: block; will-change: transform; }

/* Word masks injected by JS for the hero title */
.hw-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.hw { display: inline-block; will-change: transform; }

.accent { font-style: normal; color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head-split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.45s var(--ease-out), background 0.45s var(--ease-smooth),
              color 0.45s var(--ease-smooth), border-color 0.45s var(--ease-smooth),
              box-shadow 0.45s var(--ease-out);
  will-change: transform;
}
.btn-sm { padding: 12px 22px; font-size: 12px; }

.btn-arrow {
  display: inline-block;
  transition: transform 0.45s var(--ease-out);
  font-size: 1.05em;
}
.btn:hover .btn-arrow { transform: translateX(6px); }

.btn-primary {
  background: var(--gold);
  color: var(--forest);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(245, 213, 71, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(247, 247, 242, 0.45);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--forest);
  color: var(--off-white);
}
.btn-dark:hover {
  background: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(6, 63, 53, 0.6);
}

/* ---------- Load curtain ---------- */
.load-curtain {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--forest);
  pointer-events: none;
}
.is-loaded .load-curtain { display: none; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth),
              backdrop-filter 0.5s var(--ease-smooth);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: height 0.5s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(247, 247, 242, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px -24px rgba(16, 32, 28, 0.35);
}
.site-header.is-scrolled .header-inner { height: var(--header-h-scrolled); }
.site-header.is-scrolled .logo,
.site-header.is-scrolled .nav-list a { color: var(--ink); }
.site-header.is-scrolled .nav-list a::after { background: var(--emerald); }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--off-white);
  transition: color 0.5s var(--ease-smooth);
}
.logo-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gold);
  color: var(--forest);
  transition: transform 0.5s var(--ease-out);
}
.logo-mark svg { width: 21px; height: 21px; }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-text em { font-style: normal; color: var(--gold); }

.nav-list { display: flex; gap: clamp(18px, 2.4vw, 34px); }
.nav-list a {
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--off-white);
  padding: 6px 0;
  transition: color 0.5s var(--ease-smooth);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: 12px;
}
.nav-toggle-bar {
  display: block;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.site-header:not(.is-scrolled) .nav-toggle { color: var(--off-white); }
.site-header.is-scrolled .nav-toggle,
.nav-toggle.is-open { color: var(--off-white); }

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--pad) 48px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav-list a {
  display: inline-block;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--off-white);
  padding: 6px 0;
  transition: color 0.3s, transform 0.45s var(--ease-out);
}
.mobile-nav-list a:hover { color: var(--gold); }
.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.mobile-menu-mail a {
  color: var(--muted-light);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.mobile-menu-mail a:hover { color: var(--gold); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--off-white);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 48, 42, 0.55) 0%, rgba(4, 48, 42, 0.25) 40%, rgba(4, 48, 42, 0.82) 100%),
    radial-gradient(120% 90% at 85% 20%, transparent 40%, rgba(4, 48, 42, 0.45) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(96px, 14vh, 150px);
  padding-top: 160px;
}
.hero-eyebrow { color: var(--gold); }

.hero-title {
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: clamp(20px, 3vh, 30px);
  max-width: 14ch;
}

.hero-text {
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(247, 247, 242, 0.85);
  margin-bottom: clamp(28px, 4vh, 40px);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(247, 247, 242, 0.75);
}
.scroll-indicator-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-indicator-track {
  width: 1.5px; height: 52px;
  background: rgba(247, 247, 242, 0.25);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.scroll-indicator-dot {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px; height: 30%;
  background: var(--gold);
  animation: scroll-dot 2.2s var(--ease-smooth) infinite;
}
@keyframes scroll-dot {
  0% { top: -30%; }
  60%, 100% { top: 110%; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--off-white); overflow: hidden; }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.about-media {
  position: relative;
  padding: 0 44px 60px 0;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  will-change: clip-path;
}
.about-img-small-1 {
  position: absolute;
  right: 0; top: -34px;
  width: 44%;
  aspect-ratio: 1 / 1.1;
  border: 6px solid var(--off-white);
  box-shadow: 0 30px 60px -30px rgba(16, 32, 28, 0.45);
  will-change: transform;
}
.about-img-small-2 {
  position: absolute;
  left: -14px; bottom: 0;
  width: 40%;
  aspect-ratio: 1.25 / 1;
  border: 6px solid var(--off-white);
  box-shadow: 0 30px 60px -30px rgba(16, 32, 28, 0.45);
  will-change: transform;
}

/* Rotating badge */
.about-badge {
  position: absolute;
  right: -6px; bottom: 18px;
  width: 118px; height: 118px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--forest);
  box-shadow: 0 22px 44px -20px rgba(6, 63, 53, 0.55);
}
.about-badge svg { width: 100%; height: 100%; animation: spin 16s linear infinite; }
.about-badge text {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  fill: var(--forest);
  text-transform: uppercase;
}
.about-badge-heart {
  position: absolute;
  width: 30px; height: 30px;
  display: grid; place-items: center;
}
.about-badge-heart svg { width: 22px; height: 22px; animation: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.about-content .section-title { margin-bottom: 26px; }
.about-content .btn { margin-top: 34px; }

.about-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.check-dot {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-soft);
  position: relative;
}
.check-dot::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  background: var(--forest);
  color: var(--off-white);
  padding-block: clamp(70px, 9vw, 110px);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 420px; height: 420px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  pointer-events: none;
}
.stats-eyebrow { margin-bottom: 44px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 8px clamp(18px, 2.6vw, 40px);
  border-left: 1px solid var(--line-light);
  position: relative;
}
.stat-item:first-child { border-left: none; padding-left: 0; }
.stat-item::before {
  content: "";
  position: absolute;
  top: 0; left: clamp(18px, 2.6vw, 40px);
  width: 26px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.stat-item:first-child::before { left: 0; }

.stat-number {
  display: block;
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* ==========================================================================
   PURPOSE CARDS
   ========================================================================== */
.purpose { background: var(--white); }

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.purpose-card {
  position: relative;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
  overflow: hidden;
  transition: transform 0.55s var(--ease-out), background 0.55s var(--ease-smooth),
              border-color 0.55s var(--ease-smooth), box-shadow 0.55s var(--ease-out);
  cursor: default;
}
.purpose-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.purpose-card:hover,
.purpose-card:focus-visible {
  transform: translateY(-10px);
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 34px 60px -34px rgba(6, 63, 53, 0.65);
}
.purpose-card:hover::after,
.purpose-card:focus-visible::after { transform: scaleX(1); }

.purpose-icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--emerald);
  margin-bottom: 26px;
  transition: background 0.55s var(--ease-smooth), color 0.55s var(--ease-smooth),
              border-color 0.55s var(--ease-smooth), transform 0.55s var(--ease-out);
}
.purpose-icon svg { width: 25px; height: 25px; }
.purpose-card:hover .purpose-icon,
.purpose-card:focus-visible .purpose-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
  transform: rotate(-8deg) scale(1.06);
}

.purpose-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  transition: color 0.55s var(--ease-smooth);
}
.purpose-card-text {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 34ch;
  transition: color 0.55s var(--ease-smooth);
}
.purpose-card:hover .purpose-card-title,
.purpose-card:focus-visible .purpose-card-title { color: var(--off-white); }
.purpose-card:hover .purpose-card-text,
.purpose-card:focus-visible .purpose-card-text { color: var(--muted-light); }

.purpose-arrow {
  position: absolute;
  right: clamp(24px, 2.6vw, 38px);
  bottom: clamp(24px, 2.6vw, 38px);
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform 0.55s var(--ease-out), background 0.55s var(--ease-smooth),
              color 0.55s var(--ease-smooth), border-color 0.55s var(--ease-smooth);
}
.purpose-arrow svg { width: 18px; height: 18px; }
.purpose-card:hover .purpose-arrow,
.purpose-card:focus-visible .purpose-arrow {
  transform: translate(5px, -5px);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}

/* ==========================================================================
   EVENTS
   ========================================================================== */
.events { background: var(--off-white); }

.events-intro { max-width: 40ch; margin-bottom: 6px; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out),
              border-color 0.55s var(--ease-smooth);
}
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 70px -42px rgba(16, 32, 28, 0.4);
  border-color: transparent;
}

.event-media {
  border-radius: 0;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
}
.event-media img {
  transition: transform 1s var(--ease-out);
  will-change: transform;
}
.event-card:hover .event-media img { transform: scale(1.07); }

.event-date {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--forest);
  line-height: 1.05;
}
.event-date strong { font-size: 1.35rem; font-weight: 800; }
.event-date span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

.event-body {
  padding: clamp(22px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-category {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(7, 85, 72, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.event-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}
.event-location svg { width: 15px; height: 15px; flex: none; color: var(--gold); }
.event-text {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.event-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
  transition: color 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
}
.event-link span { transition: transform 0.45s var(--ease-out); }
.event-link:hover { color: var(--emerald); }
.event-link:hover span { transform: translateX(6px); }

/* ==========================================================================
   SPONSORS
   ========================================================================== */
.sponsors {
  background: var(--forest-deep);
  color: var(--off-white);
  padding-bottom: clamp(70px, 8vw, 100px);
  overflow: hidden;
}
.sponsors-head {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: clamp(48px, 6vw, 72px);
  text-align: center;
}
.sponsors-head .eyebrow { justify-content: center; }
.sponsors-head .eyebrow-line { display: none; }
.sponsors-head .section-title { margin-bottom: 16px; }
.sponsors-head .section-text { margin-inline: auto; }

.marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 90px);
  padding-right: clamp(48px, 6vw, 90px);
}
.sponsor-logo {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--off-white);
  opacity: 0.38;
  filter: grayscale(1);
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-out), color 0.5s var(--ease-smooth);
  cursor: default;
}
.sponsor-logo strong { font-weight: 800; }
.sponsor-logo span { font-weight: 300; }
.sponsor-logo:hover {
  opacity: 1;
  transform: scale(1.06);
  color: var(--gold);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   STORY (parallax)
   ========================================================================== */
.story {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--off-white);
  overflow: hidden;
  padding-block: clamp(90px, 12vw, 150px);
}
.story-media { position: absolute; inset: -12% 0; }
.story-img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.story-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4, 48, 42, 0.9) 0%, rgba(4, 48, 42, 0.68) 45%, rgba(4, 48, 42, 0.35) 100%);
}
.story-ring {
  position: absolute;
  border: 1px solid rgba(245, 213, 71, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.story-ring-1 { width: 340px; height: 340px; right: 8%; top: 12%; }
.story-ring-2 { width: 180px; height: 180px; right: 16%; bottom: 10%; border-style: dashed; }

.story-content { position: relative; z-index: 2; }
.story-title {
  font-size: clamp(1.9rem, 4.4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 26px;
}
.story-text {
  color: rgba(247, 247, 242, 0.85);
  max-width: 52ch;
  margin-bottom: 34px;
}

/* ==========================================================================
   CTA / GET INVOLVED
   ========================================================================== */
.cta {
  position: relative;
  background: var(--forest);
  color: var(--off-white);
  text-align: center;
  overflow: hidden;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-shape-1 {
  width: 520px; height: 520px;
  left: -200px; top: -200px;
  border: 1px solid var(--line-light);
}
.cta-shape-2 {
  width: 380px; height: 380px;
  right: -140px; bottom: -160px;
  background: radial-gradient(circle at center, var(--gold-soft), transparent 70%);
}

.cta-content { position: relative; z-index: 2; }
.cta .eyebrow { justify-content: center; }
.cta .eyebrow-line { display: none; }
.cta .section-title { margin-bottom: 20px; }
.cta-text { margin-inline: auto; max-width: 52ch; }
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.newsletter {
  margin: clamp(44px, 6vw, 64px) auto 0;
  max-width: 520px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter input {
  flex: 1;
  min-width: 240px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(247, 247, 242, 0.07);
  color: var(--off-white);
  transition: border-color 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth);
}
.newsletter input::placeholder { color: rgba(247, 247, 242, 0.5); }
.newsletter input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(247, 247, 242, 0.11);
}
.newsletter input:focus-visible { outline: none; }
.newsletter-note {
  width: 100%;
  font-size: 13px;
  color: var(--gold);
  min-height: 1.2em;
  margin-top: 4px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--forest-deep);
  color: var(--muted-light);
  padding-top: clamp(64px, 8vw, 96px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--line-light);
}

.footer-logo { color: var(--off-white); margin-bottom: 20px; }
.footer-desc {
  font-size: 0.95rem;
  max-width: 34ch;
  margin-bottom: 26px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  color: var(--off-white);
  transition: background 0.45s var(--ease-smooth), color 0.45s var(--ease-smooth),
              border-color 0.45s var(--ease-smooth), transform 0.45s var(--ease-out);
}
.footer-social svg { width: 17px; height: 17px; }
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-list { display: flex; flex-direction: column; gap: 12px; font-size: 0.95rem; }
.footer-list a { transition: color 0.35s var(--ease-smooth), padding-left 0.35s var(--ease-out); }
.footer-list a:hover { color: var(--off-white); padding-left: 6px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 26px;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { transition: color 0.35s var(--ease-smooth); }
.footer-legal a:hover { color: var(--gold); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-list { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-media { max-width: 560px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 0; }
  .stat-item:nth-child(3) { border-left: none; padding-left: 0; }
  .stat-item:nth-child(3)::before { left: 0; }

  .purpose-grid { grid-template-columns: 1fr; max-width: 560px; }

  .events-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .section-head-split { flex-direction: column; align-items: flex-start; gap: 18px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-title { max-width: none; }
  .hero-content { padding-bottom: 110px; }
  .scroll-indicator { display: none; }

  .about-media { padding-right: 30px; }
  .about-badge { width: 96px; height: 96px; right: -4px; bottom: 8px; }
  .about-badge-heart svg { width: 18px; height: 18px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 38px 20px; }
  .stat-item { border-left: none; padding-left: 0; }
  .stat-item::before { left: 0 !important; }

  .story { min-height: 80vh; }
  .story-ring-1 { width: 220px; height: 220px; right: -60px; }
  .story-ring-2 { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .newsletter { flex-direction: column; }
  .newsletter .btn { justify-content: center; }
  .about-img-small-1 { width: 46%; top: -22px; }
  .about-img-small-2 { width: 44%; left: -8px; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .about-badge svg { animation: none; }
}
