:root {
  --ink: #060c09;
  --ink-2: #0d1812;
  --green: #00ef79;
  --green-dark: #009c50;
  --gold: #ffd044;
  --sun: #ff874f;
  --paper: #fff9ed;
  --white: #ffffff;
  --muted: #a7b0a9;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: var(--body); font-size: 16px; line-height: 1.65; overflow-x: hidden; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
::selection { background: var(--gold); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
section[id] { scroll-margin-top: 78px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 0; left: 1rem; z-index: 100; transform: translateY(-120%); background: var(--green); color: var(--ink); padding: .75rem 1rem; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 50; inset: 0 0 auto; height: 92px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(1.25rem, 4vw, 4.5rem); transition: background .3s, height .3s, border-color .3s; border-bottom: 1px solid transparent; }
.site-header.scrolled { height: 76px; background: rgba(6,12,9,.92); backdrop-filter: blur(18px); border-color: rgba(255,255,255,.1); }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark { width: 58px; height: 58px; display: grid; place-items: center; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0,230,118,.16)); animation: crest-float 4.5s ease-in-out infinite; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; text-transform: uppercase; }
.brand-copy strong { font: 800 1.55rem/1 var(--display); letter-spacing: .03em; }
.brand-copy small { margin-top: .35rem; font-size: .65rem; letter-spacing: .15em; color: var(--green); }
.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.5rem); }
.site-nav a { font-size: .82rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 700; text-decoration: none; }
.site-nav a:not(.nav-cta) { color: rgba(255,255,255,.8); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--green); }
.nav-cta { border: 1px solid var(--green); padding: .8rem 1rem; color: var(--green); }
.nav-cta:hover { background: var(--green); color: var(--ink) !important; }
.menu-toggle { display: none; background: none; border: 0; color: white; width: 48px; height: 48px; padding: 11px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.hero { min-height: 100svh; position: relative; display: grid; align-items: end; overflow: hidden; background: #101612; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(1.08) contrast(1.03) brightness(1.08); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,8,5,.96) 0%, rgba(3,8,5,.72) 37%, rgba(3,8,5,.18) 70%), linear-gradient(0deg, rgba(3,8,5,.92) 0%, transparent 45%); }
.pitch-lines { position: absolute; width: 44vw; aspect-ratio: 1; right: -13vw; top: 17%; border: 1px solid rgba(0,230,118,.38); border-radius: 50%; opacity: .8; }
.pitch-lines::before, .pitch-lines::after { content: ""; position: absolute; background: rgba(0,230,118,.38); }
.pitch-lines::before { width: 100vw; height: 1px; top: 50%; right: -8vw; transform: rotate(-18deg); }
.pitch-lines::after { width: 1px; height: 90vh; top: -22vh; left: 50%; transform: rotate(18deg); }
.hero-content { position: relative; z-index: 2; width: min(770px, 90vw); padding: 10rem clamp(1.25rem, 8vw, 8rem) 12rem; }
.eyebrow, .section-kicker { margin: 0 0 1.35rem; color: var(--green); text-transform: uppercase; letter-spacing: .2em; font-size: .76rem; font-weight: 800; }
.eyebrow { display: flex; align-items: center; gap: .75rem; }
.eyebrow span { width: 36px; height: 2px; background: var(--green); }
.hero h1 { margin: 0; font: 900 clamp(5rem, 11vw, 10.5rem)/.73 var(--display); letter-spacing: -.035em; text-transform: uppercase; }
.hero h1 span { display: block; }
.hero h1 .green { color: var(--green); text-shadow: 0 .06em 0 rgba(255,208,68,.2); }
.hero-intro { max-width: 620px; margin: 2.3rem 0 0; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.3rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1.5rem; min-height: 56px; padding: 0 1.5rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .09em; text-decoration: none; font-size: .78rem; font-weight: 800; transition: transform .2s, background .2s, box-shadow .2s; }
.button-primary { background: linear-gradient(100deg, var(--green), #77ff9f); color: var(--ink); box-shadow: 0 12px 38px rgba(0,239,121,.2); }
.button:hover { transform: translateY(-2px); }
.button-primary span { animation: nudge 1.2s ease-in-out infinite; }
.text-link { text-transform: uppercase; letter-spacing: .09em; text-underline-offset: .45rem; font-size: .78rem; font-weight: 800; }
.text-link:hover { color: var(--green); }
.hero-stats { position: absolute; z-index: 3; right: clamp(1.25rem, 5vw, 5rem); bottom: 2rem; display: grid; grid-template-columns: repeat(4, minmax(110px, 1fr)); background: rgba(6,12,9,.85); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); }
.hero-stats div { padding: 1rem 1.25rem; border-right: 1px solid rgba(255,255,255,.12); transition: background .25s, transform .25s; }
.hero-stats div:hover { background: rgba(0,230,118,.12); transform: translateY(-5px); }
.hero-stats div:last-child { border: 0; }
.hero-stats strong { display: block; font: 800 2.2rem/1 var(--display); color: var(--gold); }
.hero-stats span { display: block; margin-top: .35rem; color: rgba(255,255,255,.62); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; }

.ticker { overflow: hidden; background: linear-gradient(90deg, var(--green), #9cff75 38%, var(--gold) 64%, var(--green)); color: var(--ink); }
.ticker-track { display: flex; align-items: center; gap: 2.2rem; width: max-content; padding: .65rem 0; animation: ticker 26s linear infinite; font: 800 1.1rem/1 var(--display); text-transform: uppercase; letter-spacing: .12em; }
.ticker i { font-style: normal; font-size: .55rem; }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes crest-float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-5px) rotate(1deg); } }
@keyframes nudge { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(4px,-3px); } }
@keyframes whatsapp-pop { 0%, 100% { box-shadow: 0 14px 40px rgba(0,230,118,.25); } 50% { box-shadow: 0 18px 52px rgba(0,230,118,.48); } }

.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 7rem); }
.story { background: radial-gradient(circle at 92% 8%, rgba(255,208,68,.34), transparent 25%), radial-gradient(circle at 4% 96%, rgba(0,239,121,.18), transparent 24%), var(--paper); color: var(--ink); display: grid; grid-template-columns: minmax(300px, .9fr) minmax(350px, 1.05fr); gap: clamp(3rem, 7vw, 8rem); align-items: center; }
.story-image { position: relative; }
.story-image::before { content: ""; position: absolute; width: 68%; height: 102%; left: -1rem; bottom: -1rem; background: var(--green); }
.story-image img { position: relative; width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(1.12) brightness(1.05); }
.image-label { position: absolute; right: -2rem; bottom: 2rem; background: var(--ink); color: white; padding: .85rem 1rem; text-transform: uppercase; letter-spacing: .13em; font-size: .7rem; font-weight: 800; }
.story-copy h2, .section-heading h2, .impact-content h2, .partner h2 { margin: 0; font: 800 clamp(3.2rem, 6vw, 6.5rem)/.88 var(--display); text-transform: uppercase; letter-spacing: -.025em; }
.story-copy h2 em, .partner h2 em { color: var(--green-dark); font-style: normal; }
.lede { margin-top: 2rem; font-size: 1.15rem; font-weight: 600; line-height: 1.55; }
.story-copy > p:not(.section-kicker):not(.lede) { color: #495149; }
blockquote { margin: 2.6rem 0 0; padding: 1.4rem 1.4rem 1.45rem 1.6rem; background: rgba(255,208,68,.2); border-left: 4px solid var(--gold); border-radius: 0 18px 18px 0; font: italic 700 clamp(1.4rem, 2.2vw, 2rem)/1.22 var(--display); }
blockquote cite { display: block; margin-top: 1rem; font: 700 .7rem/1 var(--body); letter-spacing: .12em; text-transform: uppercase; color: #687068; }
.heartline { display: flex; align-items: center; flex-wrap: wrap; gap: .65rem; margin-top: 1.25rem; color: #38443b; font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.heartline i { color: var(--sun); font-style: normal; animation: heartbeat 2s ease-in-out infinite; }

.teams { background: radial-gradient(circle at 8% 6%, rgba(255,135,79,.16), transparent 23%), radial-gradient(circle at 92% 92%, rgba(0,239,121,.14), transparent 26%), var(--ink); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: 4rem; }
.section-heading > p { max-width: 500px; color: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.13); }
.team-card { min-height: 390px; padding: 2rem; background: var(--ink-2); display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.team-card { transition: transform .3s cubic-bezier(.2,.9,.3,1), background .3s; }
.team-card::after { content: ""; position: absolute; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; top: -100px; right: -70px; }
.team-card.featured { background: var(--green); color: var(--ink); transform: translateY(-1.2rem); }
.team-card.featured::after { border-color: rgba(6,12,9,.18); }
.team-number { position: absolute; top: 1.5rem; left: 2rem; color: var(--gold); font: 700 1rem/1 var(--display); }
.team-card.featured .team-number { color: var(--ink); }
.team-card > p { margin: 0; text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; font-weight: 800; opacity: .65; }
.team-card h3 { margin: .3rem 0 .8rem; font: 800 clamp(3rem, 5vw, 5rem)/1 var(--display); text-transform: uppercase; }
.team-line { width: 42px; height: 3px; background: var(--green); margin-bottom: 1.3rem; }
.team-card.featured .team-line { background: var(--ink); }
.team-card small { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .72; }
.training-details { margin-top: 2.5rem; padding: clamp(1.5rem, 4vw, 3rem); display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.6fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; border: 1px solid rgba(255,255,255,.14); background: radial-gradient(circle at 8% 0%, rgba(255,208,68,.14), transparent 30%), linear-gradient(135deg, #13221a, #09100c); }
.training-intro .section-kicker { color: var(--gold); }
.training-intro h3 { max-width: 420px; margin: 0; font: 800 clamp(2.5rem, 4.5vw, 4.6rem)/.9 var(--display); text-transform: uppercase; }
.training-intro > p:last-child { max-width: 410px; margin: 1.2rem 0 0; color: var(--muted); }
.training-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.training-facts article { min-height: 190px; padding: .4rem 1.5rem 0; border-left: 1px solid rgba(255,255,255,.15); }
.training-facts article > span { display: block; margin-bottom: 2rem; color: var(--green); font-size: .67rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.training-facts strong { display: block; font: 800 clamp(1.4rem, 2.2vw, 2rem)/1 var(--display); text-transform: uppercase; }
.training-facts p { margin: .75rem 0 0; color: var(--muted); font-size: .88rem; }
.training-facts a { color: inherit; text-underline-offset: .25rem; }
.training-facts article > a { display: inline-block; margin-top: .7rem; color: var(--gold); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.training-facts a:hover { color: var(--green); }

.impact { min-height: 800px; display: grid; grid-template-columns: 1fr 1fr; background: linear-gradient(135deg, #fffdf7 0%, #fff5dc 55%, #edfff4 100%); color: var(--ink); }
.impact-photo { min-height: 620px; }
.impact-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.12) brightness(1.06); }
.impact-content { padding: clamp(4rem, 7vw, 7rem); display: flex; flex-direction: column; justify-content: center; }
.impact-list { margin-top: 3rem; }
.impact-list article { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid #cbd0cb; }
.impact-list article > span { color: var(--green-dark); font: 800 1rem/1 var(--display); padding-top: .35rem; }
.impact-list h3 { margin: 0 0 .35rem; font: 800 1.55rem/1 var(--display); text-transform: uppercase; }
.impact-list p { margin: 0; color: #566056; font-size: .9rem; }

.gallery { background: radial-gradient(circle at 88% 12%, rgba(255,208,68,.13), transparent 25%), #0a120d; }
.section-heading.compact { max-width: 850px; }
.gallery-grid { display: grid; grid-template-columns: 1.4fr .75fr .85fr; grid-template-rows: 520px; gap: 1rem; }
.gallery-grid figure { margin: 0; position: relative; overflow: hidden; background: #1a241e; }
.gallery-grid figure:nth-child(2) { transform: rotate(1deg); }
.gallery-grid figure:nth-child(3) { transform: rotate(-1deg); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1) brightness(1.04); transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.gallery-grid figcaption { position: absolute; left: 1rem; bottom: 1rem; background: rgba(6,12,9,.85); padding: .65rem .8rem; text-transform: uppercase; letter-spacing: .12em; font-size: .67rem; font-weight: 800; }

.partner { position: relative; background: radial-gradient(circle at 96% 8%, rgba(0,239,121,.19), transparent 26%), radial-gradient(circle at 2% 88%, rgba(255,135,79,.14), transparent 22%), var(--paper); color: var(--ink); overflow: hidden; }
.partner::before { content: "MBFC"; position: absolute; right: -2vw; top: -3vw; font: 900 19vw/1 var(--display); color: rgba(6,12,9,.035); }
.partner-intro { position: relative; max-width: 920px; }
.partner-intro > p:last-child { max-width: 700px; margin-top: 2rem; color: #4f5b52; font-size: 1.1rem; }
.needs-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 4rem; border: 1px solid #cbd0cb; }
.need { min-height: 280px; padding: 1.75rem; border-right: 1px solid #cbd0cb; transition: background .25s, transform .25s; }
.need:last-child { border: 0; }
.need > span { display: inline-block; color: var(--green-dark); text-transform: uppercase; letter-spacing: .16em; font-size: .65rem; font-weight: 800; }
.need h3 { margin: 4rem 0 .8rem; font: 800 1.8rem/1 var(--display); text-transform: uppercase; }
.need p { color: #59635a; font-size: .85rem; }
.partner-banner { position: relative; margin-top: 2rem; min-height: 250px; padding: clamp(2rem, 5vw, 4.5rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: var(--ink); color: white; overflow: hidden; }
.partner-banner::after { content: ""; position: absolute; width: 340px; height: 340px; border: 70px solid var(--green); border-radius: 50%; right: -150px; top: -110px; opacity: .16; }
.partner-banner small { color: var(--gold); text-transform: uppercase; letter-spacing: .17em; font-weight: 800; }
.partner-banner h3 { margin: .5rem 0; font: 800 clamp(2.4rem, 5vw, 5rem)/1 var(--display); text-transform: uppercase; }
.partner-banner p { max-width: 620px; margin: 0; color: #aeb8b0; }
.runnerz-link { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.2rem; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; text-underline-offset: .35rem; }
.runnerz-link:hover { color: var(--green); }
.runnerz-wordmark { position: relative; z-index: 1; color: var(--green); font: italic 900 clamp(2.5rem, 6vw, 6.5rem)/1 var(--display); letter-spacing: -.03em; text-decoration: none; transition: color .2s, transform .2s; }
.runnerz-wordmark:hover { color: var(--gold); transform: translateY(-2px); }
.contact-note { display: flex; align-items: center; gap: 2rem; padding: 2rem 0 0; }
.contact-note > span { font: 800 1.5rem/1 var(--display); text-transform: uppercase; }
.contact-note p { margin-right: auto; color: #626b63; font-size: .85rem; }
.contact-note a { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; text-underline-offset: .3rem; }
.contact-actions { display: flex; align-items: center; gap: .75rem; }
.contact-note .contact-whatsapp { display: inline-flex; align-items: center; min-height: 50px; padding: 0 1.15rem; border-radius: 999px; background: var(--green); color: var(--ink); text-decoration: none; white-space: nowrap; }
.contact-note .contact-whatsapp:hover { background: var(--gold); }
.contact-note .contact-email { display: inline-flex; align-items: center; gap: .5rem; min-height: 50px; padding: 0 1.15rem; border: 1px solid #bac2bb; border-radius: 999px; color: var(--ink); text-decoration: none; white-space: nowrap; }
.contact-note .contact-email:hover { border-color: var(--green-dark); color: var(--green-dark); }

.whatsapp-float { position: fixed; z-index: 45; right: max(1.2rem, env(safe-area-inset-right)); bottom: max(1.2rem, env(safe-area-inset-bottom)); display: flex; align-items: center; gap: .65rem; min-height: 50px; padding: .65rem 1rem; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: linear-gradient(100deg, var(--green), #78ff9f); color: var(--ink); text-decoration: none; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; animation: whatsapp-pop 2.4s ease-in-out infinite; }
.whatsapp-float span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: var(--green); }
.whatsapp-float:hover { transform: translateY(-3px) rotate(-1deg); }

.site-footer { padding: 4rem clamp(1.25rem, 7vw, 7rem) 2rem; background: #030705; border-top: 1px solid rgba(255,255,255,.1); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 76px; height: 76px; object-fit: contain; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font: 800 2rem/1 var(--display); text-transform: uppercase; }
.footer-brand span { color: var(--green); font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; }
.site-footer > p { text-align: right; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer .safeguarding { grid-column: 1/-1; text-align: left; max-width: 700px; text-transform: none; letter-spacing: 0; color: #7d8980; }
.footer-bottom { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); color: #687168; }
.footer-bottom a { color: #aab4ac; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration-color: rgba(0,239,121,.45); text-underline-offset: .35rem; }
.footer-bottom a:hover { color: var(--green); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes heartbeat { 0%, 100% { transform: scale(1); } 12% { transform: scale(1.3); } 24% { transform: scale(1); } }

@media (hover: hover) and (pointer: fine) {
  .team-card:hover { transform: translateY(-10px) rotate(-.4deg); background: #13251a; }
  .team-card.featured:hover { transform: translateY(-1.8rem) rotate(.4deg); background: #17f184; }
  .gallery-grid figure:hover img { transform: scale(1.045); }
  .need:hover { background: rgba(255,208,68,.22); transform: translateY(-6px); }
}

@media (max-width: 960px) {
  .site-header { height: 76px; }
  .brand-copy small { display: none; }
  .menu-toggle { display: block; z-index: 2; }
  .site-nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; background: rgba(6,12,9,.98); transform: translateX(100%); transition: transform .3s; }
  .site-nav.open { transform: none; }
  .site-nav a { display: grid; place-items: center; min-height: 52px; font: 800 2.4rem/1 var(--display); }
  .nav-cta { margin-top: 1rem; }
  .hero { display: flex; flex-direction: column; justify-content: flex-end; min-height: 100svh; }
  .hero-content { width: auto; padding: 9rem 1.25rem 2rem; margin-top: auto; }
  .hero-stats { position: relative; left: auto; right: auto; bottom: auto; width: calc(100% - 2.5rem); margin: 0 1.25rem 1.25rem; grid-template-columns: repeat(2, 1fr); }
  .hero-stats div:nth-child(2) { border-right: 0; }
  .hero-stats div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .story, .impact { grid-template-columns: 1fr; }
  .story-image { max-width: 600px; }
  .team-grid, .needs-grid { grid-template-columns: 1fr; }
  .training-details { grid-template-columns: 1fr; }
  .team-card { min-height: 280px; }
  .team-card.featured { transform: none; }
  .need { min-height: 220px; border-right: 0; border-bottom: 1px solid #cbd0cb; }
  .need h3 { margin-top: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 400px 400px; }
  .gallery-grid .wide { grid-column: 1/-1; }
  .partner-banner { align-items: flex-start; flex-direction: column; }
  .contact-note { flex-wrap: wrap; }
  .contact-actions { width: 100%; }
}

@media (max-width: 640px) {
  .site-header { padding: 0 .9rem 0 .8rem; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 1.35rem; }
  .hero-image { object-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,8,5,.98) 0%, rgba(3,8,5,.52) 72%, rgba(3,8,5,.65) 100%); }
  .hero-content { padding: 7rem 1rem 1.5rem; }
  .hero h1 { font-size: clamp(4.25rem, 24vw, 6.5rem); line-height: .75; }
  .hero-intro { margin-top: 1.5rem; font-size: 1rem; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .hero-stats { width: calc(100% - 2rem); margin: 0 1rem 1rem; font-size: .8rem; }
  .hero-stats div { padding: .8rem; }
  .hero-stats strong { font-size: 1.8rem; }
  .section { padding: 4.75rem 1rem; }
  .story { gap: 3.5rem; }
  .story-image img { aspect-ratio: 1/1.05; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .section-heading { gap: 1.5rem; margin-bottom: 2.5rem; }
  .section-heading h2, .story-copy h2, .impact-content h2, .partner h2 { font-size: clamp(2.8rem, 15vw, 4.3rem); }
  .story-image::before { width: 85%; }
  .image-label { right: -.5rem; }
  .team-card { min-height: 245px; padding: 1.5rem; }
  .team-number { left: 1.5rem; }
  .training-details { padding: 2rem 1.25rem; }
  .training-facts { grid-template-columns: 1fr; }
  .training-facts article { min-height: 0; padding: 1.35rem 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .training-facts article > span { margin-bottom: .75rem; }
  .impact-photo { min-height: 470px; }
  .impact-content { padding: 4.75rem 1rem; }
  .impact-list { margin-top: 2rem; }
  .gallery-grid { display: block; }
  .gallery-grid figure, .gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(3) { height: 350px; margin-bottom: .9rem; transform: none; }
  .need { min-height: 200px; padding: 1.5rem; }
  .partner-banner { margin-left: -.1rem; margin-right: -.1rem; padding: 2rem 1.25rem; }
  .partner-banner h3 { font-size: 2.65rem; }
  .runnerz-wordmark { font-size: 3.25rem; }
  .contact-note { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .contact-actions { width: 100%; align-items: stretch; flex-direction: column; margin-top: .5rem; }
  .contact-note .contact-whatsapp { width: 100%; justify-content: space-between; white-space: normal; }
  .contact-note .contact-email { width: 100%; justify-content: space-between; white-space: normal; }
  .site-footer { grid-template-columns: 1fr; padding: 3.5rem 1rem 7.5rem; }
  .site-footer > p { text-align: left; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { left: max(.75rem, env(safe-area-inset-left)); right: max(.75rem, env(safe-area-inset-right)); bottom: max(.75rem, env(safe-area-inset-bottom)); justify-content: center; }
}

@media (max-width: 380px) {
  .brand-copy strong { font-size: 1.18rem; }
  .hero h1 { font-size: 4.15rem; }
  .eyebrow { letter-spacing: .13em; }
  .hero-stats span { letter-spacing: .06em; }
  .partner-banner h3 { font-size: 2.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
