/* ============================================================
   THE MAX STRONG PROJECT — Shared Styles
   Multi-page: Main, Story, Vision, Donate
============================================================ */

/* ── Brand Fonts ─────────────────────────────────────────── */
@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/Archivo-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kiwi';
  src: url('../assets/fonts/Kiwi.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ──────────────────────────────────────────── */
:root {
  --red:   #E8200E;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray:  #141414;
  --gray2: #1E1E1E;
  --font-d: 'Barlow Condensed', sans-serif;
  --font-b: 'Archivo', 'Barlow', sans-serif;
  --font-k: 'Kiwi', 'Barlow Condensed', sans-serif;
  --nav-h: 64px;
  --px: clamp(24px, 5vw, 80px);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Custom cursor ──────────────────────────────────────── */
.cursor {
  width: 12px; height: 12px;
  border-radius: 50%; background: var(--red);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor--large {
  width: 38px; height: 38px;
  background: transparent; border: 2px solid var(--red);
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px); height: var(--nav-h);
  transition: background .4s, backdrop-filter .4s;
}
.nav--scrolled {
  background: rgba(10,10,10,.93);
  backdrop-filter: blur(14px);
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__bolt { width: 44px; height: 44px; }
.nav__wordmark {
  font-family: var(--font-d); font-weight: 800; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--white);
}
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-family: var(--font-d); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.75); transition: color .2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__donate {
  border: 1.5px solid var(--red) !important;
  padding: 7px 18px; color: var(--white) !important;
  transition: background .2s !important;
}
.nav__donate:hover { background: var(--red) !important; }

/* ── Section background helper ──────────────────────────── */
.section { position: relative; overflow: hidden; }
.section__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.section__overlay { position: absolute; inset: 0; }

/* ── Grainy texture overlay (brand texture) ─────────────── */
.section__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url('../assets/images/grainy-bg.jpg');
  background-repeat: repeat; background-size: 340px;
  opacity: .035; mix-blend-mode: screen;
}

/* ── Bolt-icon watermark (brand accent) ─────────────────── */
.section__bolt-mark {
  position: absolute; right: -3%; bottom: -6%; z-index: 1;
  pointer-events: none; opacity: .045;
}
.section__bolt-mark img { width: clamp(180px, 28vw, 380px); }

/* ── Button ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 26px; border: 1.5px solid var(--white);
  color: var(--white); background: transparent; cursor: none;
  transition: background .25s, color .25s;
}
.btn:hover { background: var(--white); color: var(--black); }
.btn--red { border-color: var(--red); background: var(--red); }
.btn--red:hover { background: #c41a0b; border-color: #c41a0b; color: var(--white); }
.btn__arrow { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 52px var(--px) 40px;
}
.footer__inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
}
.footer__top {
  display: flex; align-items: center; justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__bolt { width: 22px; height: 22px; }
.footer__name {
  font-family: var(--font-d); font-weight: 800; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--white);
}
.footer__tagline {
  font-size: 12px; letter-spacing: .05em;
  color: rgba(255,255,255,.35); font-style: italic;
}
.footer__divider { height: 1px; background: rgba(255,255,255,.07); width: 100%; }
.footer__contact {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 14px;
  font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .03em;
}
.footer__link { color: rgba(255,255,255,.5); transition: color .2s; }
.footer__link:hover { color: var(--red); }
.footer__sep { color: rgba(255,255,255,.2); }
.footer__legal { text-align: center; }
.footer__legal p {
  font-size: 11px; line-height: 1.78;
  color: rgba(255,255,255,.26); letter-spacing: .02em;
}
.footer__copy { margin-top: 10px; color: rgba(255,255,255,.18); }

/* ============================================================
   MAIN PAGE — index.html
============================================================ */

.hero {
  height: 100vh; min-height: 640px;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + clamp(48px, 6vw, 88px)) var(--px) clamp(48px, 6vw, 80px);
}
.section__bg--hero {
  background-image: url('../assets/images/hero-soccer.jpg');
  background-position: 82% center;
  filter: grayscale(60%) brightness(.38) contrast(1.15);
  will-change: transform;
}
.section__overlay--hero {
  background: linear-gradient(to right, rgba(10,10,10,.94) 0%, rgba(10,10,10,.65) 55%, rgba(10,10,10,.08) 100%);
}
.hero__content {
  position: relative; z-index: 2; max-width: 62%;
}

/* ── Hero title — tight editorial lockup ─────────────────── */
.hero__title {
  margin-bottom: 28px;
  /* Tight optical lockup: all lines flush-left, proportional */
}
.hero__word {
  display: block; font-family: var(--font-k); font-weight: 400;
  text-transform: uppercase; color: var(--white);
  opacity: 0; transform: translateY(32px);
  line-height: 1;
}
.hero__word--the {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(11px, 1.1vw, 15px);
  letter-spacing: .42em;
  color: var(--red);
  margin-bottom: 8px;
}
.hero__word--maxstrong {
  font-size: clamp(52px, 8vw, 112px);
  letter-spacing: -.025em; line-height: .9;
  margin-bottom: 4px;
}
.hero__word--project {
  font-size: clamp(52px, 8vw, 112px);
  letter-spacing: -.025em; line-height: .9;
}

.hero__tagline {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(12px, 1.4vw, 17px); letter-spacing: .18em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px; opacity: 0; transform: translateY(18px);
}
.hero__body {
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.65;
  color: rgba(255,255,255,.82); max-width: 480px;
  margin-bottom: 10px; opacity: 0; transform: translateY(16px);
}
.hero__sub {
  font-size: clamp(13px, 1.2vw, 16px); line-height: 1.7;
  color: rgba(255,255,255,.6); max-width: 480px;
  margin-bottom: 34px; opacity: 0; transform: translateY(16px);
}
.hero__cta { opacity: 0; transform: translateY(16px); }

.hero__bolt-accent {
  position: absolute; top: calc(var(--nav-h) + 20px);
  right: var(--px); z-index: 2; opacity: 0; transform: translateY(-14px);
}
.hero__bolt-accent img { width: 46px; height: 46px; transition: filter .3s ease; }
.hero__bolt-accent:hover img { animation: boltZap .55s ease forwards; }
@keyframes boltZap {
  0%   { transform: scale(1)    rotate(0deg);   filter: drop-shadow(0 0 0px transparent); }
  25%  { transform: scale(1.22) rotate(-11deg); filter: drop-shadow(0 0 10px var(--red)); }
  55%  { transform: scale(1.18) rotate(7deg);   filter: drop-shadow(0 0 20px var(--red)); }
  80%  { transform: scale(1.08) rotate(-3deg);  filter: drop-shadow(0 0 6px var(--red)); }
  100% { transform: scale(1)    rotate(0deg);   filter: drop-shadow(0 0 0px transparent); }
}

.hero__scroll {
  position: absolute; bottom: 40px; right: var(--px);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 10px; opacity: 0;
}
.hero__scroll-line {
  width: 1px; height: 48px; background: rgba(255,255,255,.2);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 1px; height: 100%; background: rgba(255,255,255,.7);
  animation: scrollDrop 1.8s cubic-bezier(.4,0,.2,1) infinite;
}
.hero__scroll-text {
  font-family: var(--font-d); font-size: 9px;
  letter-spacing: .35em; color: rgba(255,255,255,.28); writing-mode: vertical-rl;
}
@keyframes scrollDrop { 0% { top: -100%; } 100% { top: 200%; } }

/* Mission */
.mission {
  padding: clamp(48px, 6vw, 88px) var(--px);
  background: var(--black); text-align: center;
}
.mission__eyebrow {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  font-family: var(--font-d); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--red); margin-bottom: 24px; opacity: 0;
}
.mission__eyebrow::before, .mission__eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--red);
}
.mission__heading {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(40px, 6vw, 80px); text-transform: uppercase;
  letter-spacing: -.01em; margin-bottom: 32px;
  opacity: 0; transform: translateY(24px);
}
.mission__text {
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.82;
  color: rgba(255,255,255,.74); max-width: 740px; margin: 0 auto;
  opacity: 0; transform: translateY(20px);
}

/* Founder */
.founder {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px; background: var(--gray);
}
.founder__photo { position: relative; overflow: hidden; }
.founder__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: grayscale(15%) brightness(.88);
}
.founder__content {
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.founder__eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-d); font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--red); margin-bottom: 20px;
  opacity: 0; transform: translateX(-20px);
}
.founder__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--red); }
.founder__heading {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(32px, 4.5vw, 60px); text-transform: uppercase;
  line-height: .9; letter-spacing: -.01em; margin-bottom: 24px;
  opacity: 0; transform: translateY(24px);
}
.founder__text {
  font-size: clamp(13px, 1.3vw, 16px); line-height: 1.82;
  color: rgba(255,255,255,.72); margin-bottom: 28px;
  opacity: 0; transform: translateY(16px);
}
.founder__stats {
  display: flex; gap: 36px;
  opacity: 0; transform: translateY(16px);
}
.founder__stat-num {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px); color: var(--red); line-height: 1;
}
.founder__stat-label {
  font-size: 11px; letter-spacing: .1em;
  color: rgba(255,255,255,.45); text-transform: uppercase; margin-top: 4px;
}

/* ============================================================
   STORY PAGE — story.html
============================================================ */
.story-hero {
  height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  padding: 0 var(--px) clamp(48px, 7vw, 88px);
}
.section__bg--story {
  background-image: url('../assets/images/story.jpg');
  background-position: center 20%;
  filter: grayscale(40%) brightness(.44) contrast(1.12);
}
.section__overlay--story {
  background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.3) 50%, rgba(10,10,10,.06) 100%);
}
/* ── Ghost word system (atmospheric background typography) ── */
/* Shared base — used on all pages */
.ghost-word {
  position: absolute; z-index: 1;
  font-family: var(--font-k); font-weight: 400;
  text-transform: uppercase; line-height: 1;
  color: var(--white);
  pointer-events: none; user-select: none; white-space: nowrap;
  animation: ghostReveal 1.8s cubic-bezier(.25, 0, .1, 1) both;
}
@keyframes ghostReveal { from { opacity: 0; } to { opacity: 0.032; } }

/* Main hero — words live in the right/photo half, never touching the title zone */
.ghost-word--together {
  font-size: clamp(80px, 12vw, 175px);
  top: 10%; right: -1%;
  transform: rotate(8deg);
  animation-delay: 0.5s;
}
.ghost-word--strong {
  font-size: clamp(70px, 11vw, 155px);
  bottom: 22%; right: 2%;
  transform: rotate(-5deg);
  animation-delay: 0.9s;
}

/* Vision hero — both words on right side, clear of bottom-left title zone */
.ghost-word--build {
  font-size: clamp(100px, 16vw, 240px);
  top: 6%; right: -1%;
  transform: rotate(-9deg);
  animation-delay: 0.5s;
  animation-name: ghostRevealVision;
}
.ghost-word--change {
  font-size: clamp(80px, 12vw, 185px);
  top: 44%; right: -1%;
  transform: rotate(6deg);
  animation-delay: 0.9s;
  animation-name: ghostRevealVision;
}
@keyframes ghostRevealVision { from { opacity: 0; } to { opacity: 0.06; } }

/* Story hero ghost words (GSAP-controlled — opacity set by JS) */
.story-ghost {
  position: absolute; z-index: 1;
  font-family: var(--font-k); font-weight: 400;
  text-transform: uppercase; line-height: 1;
  color: var(--white); opacity: 0;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.story-ghost--warrior {
  font-size: clamp(120px, 20vw, 300px);
  top: 8%; right: -1%;
  transform: rotate(-9deg);
}
.story-ghost--survivor {
  font-size: clamp(80px, 13vw, 200px);
  bottom: 24%; left: -1%;
  transform: rotate(5deg);
}
.story-ghost--fighter {
  font-size: clamp(100px, 16vw, 250px);
  top: 38%; right: 6%;
  transform: rotate(-4deg);
}

.story-hero__inner {
  position: relative; z-index: 2; width: 100%;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
}
.story-hero__left { display: flex; flex-direction: column; gap: 24px; }
.story-hero__title {
  font-family: var(--font-k); font-weight: 400;
  text-transform: uppercase; line-height: .88; letter-spacing: -.01em;
}
.story-hero__title .t-our   { display: block; font-size: clamp(44px, 7vw, 96px);   opacity: 0; transform: translateY(32px); }
.story-hero__title .t-story { display: block; font-size: clamp(76px, 13vw, 176px); opacity: 0; transform: translateY(32px); }
.story-hero__right { flex-shrink: 0; }
.story-hero__quote {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(16px, 2.2vw, 28px); line-height: 1.2;
  color: rgba(255,255,255,.5); max-width: 320px; text-align: right;
  opacity: 0; transform: translateX(20px);
}
.story-hero__quote em { color: var(--white); font-style: normal; }

.story-body {
  background: var(--black); padding: clamp(64px, 9vw, 120px) var(--px);
}
.story-body__inner { max-width: 820px; margin: 0 auto; }
.story-body__eyebrow {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(22px, 3vw, 40px); text-transform: uppercase;
  letter-spacing: .06em; color: var(--red); margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
}
.story-body__pull {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(18px, 2.5vw, 32px); line-height: 1.15;
  border-left: 4px solid var(--red); padding-left: 24px;
  margin: 48px 0; opacity: 0; transform: translateX(-16px);
}
.story-body__p {
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.9;
  color: rgba(255,255,255,.76); margin-bottom: 24px;
  opacity: 0; transform: translateY(16px);
}
.story-body__p strong { color: var(--white); font-weight: 600; }
.story-photo {
  margin: 52px 0; opacity: 0; transform: translateY(24px);
}
.story-photo img {
  width: 100%; max-height: 560px; object-fit: cover;
  filter: grayscale(15%) brightness(.88);
}
.story-photo figcaption {
  font-size: 11px; letter-spacing: .12em;
  color: rgba(255,255,255,.32); text-transform: uppercase; margin-top: 10px;
}
.story-photos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 52px 0; opacity: 0; transform: translateY(24px);
}
.story-photos-grid img {
  width: 100%; height: 300px; object-fit: cover;
  filter: grayscale(20%) brightness(.85);
}

.story-statement {
  padding: clamp(64px, 9vw, 112px) var(--px);
  background: var(--gray); text-align: center;
}
.story-statement__heading {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(36px, 7vw, 100px); text-transform: uppercase;
  line-height: .88; letter-spacing: -.02em; margin-bottom: 28px;
  opacity: 0; transform: translateY(28px);
}
.story-statement__heading .accent { color: var(--red); }
.story-statement__sub {
  font-size: clamp(14px, 1.5vw, 18px); line-height: 1.78;
  color: rgba(255,255,255,.66); max-width: 640px; margin: 0 auto 40px;
  opacity: 0; transform: translateY(16px);
}

.story-sig {
  padding: clamp(48px, 6vw, 72px) var(--px);
  background: var(--black); text-align: center;
}
.story-sig__name {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(18px, 2.5vw, 30px); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 8px;
}
.story-sig__title {
  font-size: 13px; letter-spacing: .1em;
  color: rgba(255,255,255,.42); text-transform: uppercase;
}

/* ============================================================
   VISION PAGE — vision.html
============================================================ */
.vision-hero {
  height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  padding: 0 var(--px) clamp(48px, 7vw, 88px);
}
.section__bg--vision {
  background-image: url('../assets/images/vision-family.jpg');
  background-position: center 25%;
  filter: grayscale(25%) brightness(.4) contrast(1.1);
}
.section__overlay--vision {
  background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.3) 50%, rgba(10,10,10,.06) 100%);
}
.vision-hero__inner { position: relative; z-index: 2; }
.vision-hero__eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-d); font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--red); margin-bottom: 22px;
  opacity: 0; transform: translateX(-20px);
}
.vision-hero__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--red); }
.vision-hero__title {
  font-family: var(--font-k); font-weight: 400;
  text-transform: uppercase; line-height: .88; letter-spacing: -.01em;
}
.vision-hero__title .t-our  { display: block; font-size: clamp(44px, 7vw, 96px);   opacity: 0; transform: translateY(32px); }
.vision-hero__title .t-work { display: block; font-size: clamp(76px, 13vw, 176px); opacity: 0; transform: translateY(32px); }
.vision-hero__meta {
  font-family: var(--font-d); font-weight: 600;
  font-size: clamp(10px, 1vw, 12px); letter-spacing: .32em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
  margin-top: 24px; opacity: 0; transform: translateY(12px);
}

.vision-programs {
  background: var(--black); padding: clamp(64px, 9vw, 120px) var(--px);
}
.vision-programs__inner { max-width: 900px; margin: 0 auto; }
.vision-section {
  margin-bottom: clamp(56px, 8vw, 100px);
  display: grid; grid-template-columns: 72px 1fr; gap: 28px;
  opacity: 0; transform: translateY(28px);
}
.vision-section__num {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(56px, 8vw, 104px); color: rgba(255,255,255,.06);
  line-height: 1; padding-top: 4px;
}
.vision-section__heading {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(22px, 2.8vw, 38px); text-transform: uppercase;
  letter-spacing: .02em; margin-bottom: 16px;
}
.vision-section__heading .accent { color: var(--red); }
.vision-section__text {
  font-size: clamp(14px, 1.3vw, 17px); line-height: 1.82;
  color: rgba(255,255,255,.7); margin-bottom: 14px;
}
.vision-section__text strong { color: var(--white); }
.vision-section__list { margin-top: 10px; }
.vision-section__list li {
  font-size: clamp(13px, 1.2vw, 16px); color: rgba(255,255,255,.63);
  padding: 7px 0 7px 20px; border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.vision-section__list li::before { content: '—'; position: absolute; left: 0; color: var(--red); }

.vision-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px;
}
.vision-card {
  background: var(--gray2); padding: 30px 22px;
  border-top: 3px solid var(--red);
  opacity: 0; transform: translateY(20px);
}
.vision-card__eyebrow {
  font-family: var(--font-d); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.vision-card__title {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(20px, 2.5vw, 30px); text-transform: uppercase;
  line-height: .9; margin-bottom: 18px;
}
.vision-card__text {
  font-size: clamp(12px, 1.1vw, 14px); line-height: 1.75; color: rgba(255,255,255,.65);
}
.vision-card__list { margin-top: 12px; }
.vision-card__list li {
  font-size: 13px; color: rgba(255,255,255,.58);
  padding: 5px 0 5px 16px; border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.vision-card__list li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-size: 11px; }

.vision-gallery {
  background: var(--gray);
  padding: clamp(64px, 9vw, 104px) var(--px);
}
.vision-gallery__heading {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(48px, 8vw, 110px); text-transform: uppercase;
  letter-spacing: -.02em; margin-bottom: 56px; text-align: center;
  opacity: 0; transform: translateY(24px);
}

/* ── Bubble gallery ──────────────────────────────────────── */
.gallery-bubbles {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 20px;
  max-width: 1080px; margin: 0 auto;
}
.bubble {
  border-radius: 50%; overflow: hidden;
  position: relative; flex-shrink: 0;
  opacity: 0;
  cursor: none;
}
/* Size variants */
.bubble--lg { width: 270px; height: 270px; }
.bubble--md { width: 210px; height: 210px; }
.bubble--sm { width: 160px; height: 160px; }
/* Vertical offsets for organic stagger */
.bubble:nth-child(1) { margin-top: 48px; }
.bubble:nth-child(2) { margin-top: 0; }
.bubble:nth-child(3) { margin-top: 72px; }
.bubble:nth-child(4) { margin-top: 16px; }
.bubble:nth-child(5) { margin-top: 56px; }
.bubble:nth-child(6) { margin-top: 0; }

.bubble img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(35%) brightness(.8);
  transition: filter .55s ease, transform .6s ease;
  display: block;
}
.bubble:hover img {
  filter: grayscale(0%) brightness(1.04);
  transform: scale(1.07);
}
/* Red ring on hover */
.bubble::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 0 var(--red);
  transition: box-shadow .35s ease;
  pointer-events: none;
}
.bubble:hover::after {
  box-shadow: inset 0 0 0 4px var(--red);
}

.bubble__cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 12px 16px;
  background: linear-gradient(to top, rgba(10,10,10,.78) 0%, transparent 100%);
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.9);
  text-align: center;
  transform: translateY(100%); transition: transform .35s ease;
}
.bubble:hover .bubble__cap { transform: translateY(0); }

/* ============================================================
   DONATE PAGE — donate.html
============================================================ */
.donate-hero {
  height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.section__bg--donate {
  background-image: url('../assets/images/donate.jpg');
  background-position: center;
  filter: grayscale(20%) brightness(.48) contrast(1.08);
  will-change: transform;
}
.section__overlay--donate {
  background: radial-gradient(ellipse at center, rgba(10,10,10,.25) 0%, rgba(10,10,10,.72) 100%);
}
.donate-hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.donate-hero__title {
  font-family: var(--font-k); font-weight: 400;
  font-size: clamp(80px, 16vw, 220px); text-transform: uppercase;
  letter-spacing: -.02em; line-height: .85; color: var(--white);
}
.donate-hero__title .char {
  display: inline-block;
  transform: translate(var(--rand-x), var(--rand-y)) rotate(var(--rand-r));
  opacity: 0;
}
.donate-hero__sub {
  font-family: var(--font-d); font-size: clamp(16px, 2.2vw, 28px);
  letter-spacing: .14em; text-transform: uppercase; color: var(--red); opacity: 0;
}
.donate-hero__bolt { margin-top: 24px; opacity: 0; transform: translateY(12px); }
.donate-hero__bolt img { width: 64px; height: 64px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .founder { grid-template-columns: 1fr; }
  .founder__photo { height: 400px; }
  .founder__photo img { height: 400px; }
  .vision-cards { grid-template-columns: 1fr; }
  .bubble--lg { width: 180px; height: 180px; }
  .bubble--md { width: 140px; height: 140px; }
  .bubble--sm { width: 110px; height: 110px; }
  .bubble:nth-child(n) { margin-top: 0; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display: none; }
  :root { --px: 24px; }
  .hero__content { max-width: 100%; }
  .story-hero__inner { flex-direction: column; gap: 24px; }
  .story-hero__right { display: none; }
  .story-photos-grid { grid-template-columns: 1fr; }
  .vision-section { grid-template-columns: 1fr; gap: 12px; }
  .vision-section__num { font-size: 36px; }
}
@media (max-width: 480px) {
  .nav__links li:not(:last-child) { display: none; }
}
