:root {
  --teal-950: #052f32;
  --teal-900: #063f43;
  --teal-800: #075f64;
  --teal-600: #0d948f;
  --teal-500: #17b8ad;
  --ink: #132326;
  --muted: #667476;
  --paper: #fbfaf5;
  --surface: #fff;
  --surface-soft: #f6f3e8;
  --section-soft: #f1f5eb;
  --footer-bg: #092f32;
  --sun: #f4b63f;
  --clay: #b95836;
  --leaf: #597f43;
  --line: rgba(19, 35, 38, 0.13);
  --shadow: 0 22px 70px rgba(10, 51, 55, 0.15);
  --shadow-strong: 0 26px 70px rgba(10, 51, 55, 0.22);
  --ambient-a: rgba(23, 184, 173, 0.16);
  --ambient-b: rgba(244, 182, 63, 0.14);
  --hero-wash: rgba(6,63,67,.94);
  --heading: "Montserrat", sans-serif;
  --body: "Work Sans", sans-serif;
  --serif: "Source Serif 4", serif;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --teal-950: #02191b;
  --teal-900: #062d31;
  --teal-800: #0b585c;
  --teal-600: #20c7bd;
  --teal-500: #69e7dd;
  --ink: #edf8f6;
  --muted: #a7bfbd;
  --paper: #061d20;
  --surface: #0d2a2d;
  --surface-soft: #102f32;
  --section-soft: #09282b;
  --footer-bg: #031416;
  --sun: #f7c85d;
  --clay: #f0976f;
  --leaf: #9bbd78;
  --line: rgba(204, 239, 235, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.52);
  --ambient-a: rgba(105, 231, 221, 0.12);
  --ambient-b: rgba(247, 200, 93, 0.1);
  --hero-wash: rgba(2, 25, 27, .95);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { position: relative; margin: 0; overflow-x: hidden; color: var(--ink); background: radial-gradient(circle at 12% 8%, var(--ambient-a), transparent 28rem), radial-gradient(circle at 88% 18%, var(--ambient-b), transparent 26rem), var(--paper); font-family: var(--body); font-size: 16px; line-height: 1.65; transition: color 220ms ease, background-color 220ms ease; }
body::before, body::after { position: fixed; z-index: 0; width: 28rem; height: 28rem; content: ""; pointer-events: none; border-radius: 999px; filter: blur(18px); opacity: .46; animation: ambient-drift 18s ease-in-out infinite alternate; }
body::before { top: 12%; left: -12rem; background: radial-gradient(circle, var(--ambient-a), transparent 67%); }
body::after { right: -13rem; bottom: 9%; background: radial-gradient(circle, var(--ambient-b), transparent 68%); animation-duration: 22s; animation-delay: -6s; }
body > * { position: relative; z-index: 1; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.skip-link, .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:focus { z-index: 1000; top: 1rem; left: 1rem; width: auto; height: auto; padding: .75rem 1rem; clip: auto; color: #fff; background: var(--teal-900); }

.site-header { position: fixed; z-index: 50; inset: 0 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem clamp(1rem,4vw,3rem); color: #fff; transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease; }
.site-header.inner, .site-header.is-scrolled, .site-header.is-open { color: var(--ink); background: color-mix(in srgb, var(--paper) 94%, transparent); box-shadow: 0 10px 34px rgba(19,35,38,.12); backdrop-filter: blur(14px); }
.brand, .menu-toggle, .theme-toggle { position: relative; z-index: 2; flex: 0 0 auto; }
.brand img { width: 82px; height: 82px; object-fit: contain; background: #fff; border-radius: 50%; filter: drop-shadow(0 7px 18px rgba(0,0,0,.2)); }
.site-header.inner .brand img, .site-header.is-scrolled .brand img, .site-header.is-open .brand img { filter: none; }
.site-nav { display: flex; align-items: center; gap: .85rem; font-size: .86rem; font-weight: 800; }
.site-nav a { padding: .55rem 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.is-active { color: var(--teal-600); border-color: currentColor; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; color: inherit; background: rgba(255,255,255,.12); border: 1px solid currentColor; border-radius: 999px; box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.site-header.inner .menu-toggle, .site-header.is-scrolled .menu-toggle, .site-header.is-open .menu-toggle { background: var(--surface); }
.menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; }
.theme-toggle { display: inline-flex; align-items: center; gap: .5rem; min-height: 42px; margin-left: auto; padding: .3rem .72rem .3rem .38rem; color: inherit; background: rgba(255,255,255,.14); border: 1px solid currentColor; border-radius: 999px; cursor: pointer; font: 800 .78rem/1 var(--body); transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease; }
.site-header.inner .theme-toggle, .site-header.is-scrolled .theme-toggle, .site-header.is-open .theme-toggle { background: var(--surface); }
.theme-toggle:hover, .theme-toggle:focus-visible { transform: translateY(-2px); }
.theme-toggle__icon { position: relative; display: inline-grid; place-items: center; width: 30px; height: 30px; background: var(--sun); border-radius: 999px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.38); transition: background 220ms ease, transform 220ms ease; }
.theme-toggle__icon::before { width: 12px; height: 12px; content: ""; background: var(--teal-900); border-radius: 999px; transform: scale(.55); opacity: 0; transition: opacity 220ms ease, transform 220ms ease; }
:root[data-theme="dark"] .theme-toggle__icon { background: #dcefed; transform: rotate(-18deg); }
:root[data-theme="dark"] .theme-toggle__icon::before { opacity: 1; transform: translate(4px, -2px) scale(1); }

.hero { position: relative; min-height: 92dvh; display: grid; align-items: end; padding: 8rem clamp(1rem,5vw,5rem) 2rem; color: #fff; overflow: hidden; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media { background-size: cover; background-position: center; transform: scale(1.02); animation: hero-drift 18s ease-in-out infinite alternate; }
.youth-classroom { background-image: url("assets/gallery/home-hero-featured/graduation-group-celebration.jpg"); }
.hero-overlay { background: linear-gradient(90deg, var(--hero-wash), rgba(6,63,67,.6) 50%, rgba(6,63,67,.14)), linear-gradient(0deg, rgba(6,63,67,.92), rgba(6,63,67,.08) 48%); }
.hero::after, .page-hero::after, .donate-section::after { position: absolute; inset: auto 8% 8% auto; width: clamp(9rem, 18vw, 17rem); aspect-ratio: 1; content: ""; pointer-events: none; border: 1px solid rgba(143,228,223,.28); border-radius: 50%; box-shadow: inset 0 0 0 18px rgba(143,228,223,.04); animation: orbit-pulse 9s ease-in-out infinite; }
.hero-content, .hero-proof { position: relative; z-index: 1; }
.hero-content { max-width: 900px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 4rem; }
.hero-proof span { padding: .45rem .75rem; font-weight: 800; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; }

.page-hero { position: relative; overflow: hidden; padding: 9.5rem clamp(1rem,5vw,5rem) clamp(3rem,6vw,5rem); color: #fff; background: linear-gradient(135deg, rgba(6,63,67,.98), rgba(7,95,100,.88)), url("assets/gallery/home-hero-featured/st-martins-learning-together.jpg") center/cover; }
.page-hero > * { position: relative; z-index: 1; }
.page-hero::after { inset: 16% 11% auto auto; opacity: .72; }
.page-hero h1 { max-width: 1050px; }
.page-hero p:last-child { max-width: 760px; color: rgba(255,255,255,.82); font-family: var(--serif); font-size: 1.35rem; }

.eyebrow { margin: 0 0 .8rem; color: var(--teal-500); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero .eyebrow, .page-hero .eyebrow, .donate-section .eyebrow { color: #8fe4df; }
h1, h2, h3 { margin: 0; font-family: var(--heading); line-height: 1.04; letter-spacing: 0; }
h1 { max-width: 980px; font-size: clamp(3rem,7.2vw,6.5rem); }
h2 { font-size: clamp(2rem,4vw,3.7rem); }
h3 { font-size: 1.2rem; }
p { margin-top: 0; }
.hero-copy { max-width: 650px; margin: 1.25rem 0 0; font-family: var(--serif); font-size: clamp(1.2rem,2vw,1.55rem); }
.hero-actions, .donate-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button { position: relative; isolation: isolate; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .85rem 1.15rem; font-weight: 800; border-radius: 999px; transition: transform 160ms ease, box-shadow 160ms ease; border: 0; cursor: pointer; font-family: var(--body); font-size: 1rem; }
.button::after { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent); transform: translateX(-120%); transition: transform 420ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.12); }
.button:hover::after, .button:focus-visible::after { transform: translateX(120%); }
.button.primary { color: var(--teal-900); background: var(--sun); }
.button.secondary { color: #fff; border: 1px solid rgba(255,255,255,.72); }
.button.dark { color: var(--ink); border-color: rgba(6,63,67,.3); }
.donate-section .button.dark { color: #fff; border-color: rgba(255,255,255,.72); }
.text-link { display: inline-flex; margin-top: .9rem; color: var(--teal-700, var(--teal-800)); font-weight: 800; border-bottom: 2px solid currentColor; }

.section { padding: clamp(4rem,8vw,7rem) clamp(1rem,5vw,5rem); }
.section-heading { max-width: 830px; margin-bottom: clamp(2rem,5vw,4rem); }
.intro-grid, .about-grid, .split-section, .mission-values, .program-row, .contact-section, .video-feature { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); gap: clamp(2rem,5vw,5rem); align-items: center; }
.about-copy { max-width: 760px; font-size: 1.05rem; }
.mission-panel, .contact-card, .map-card, .gap-section .mission-panel { padding: clamp(1.5rem,3vw,2.5rem); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }

.impact-strip, .dashboard-grid { display: grid; grid-template-columns: repeat(4,1fr); color: #fff; background: var(--teal-900); }
.impact-strip div, .dashboard-grid article { min-height: 155px; padding: 1.5rem; border-right: 1px solid rgba(255,255,255,.15); }
.impact-strip strong, .dashboard-grid strong { display: block; margin-bottom: .4rem; color: var(--sun); font-family: var(--heading); font-size: clamp(2rem,4vw,3.4rem); line-height: 1; }
.impact-strip span, .dashboard-grid span { display: block; max-width: 270px; color: rgba(255,255,255,.82); line-height: 1.35; }
.dashboard-grid { grid-template-columns: repeat(3,1fr); background: transparent; color: var(--ink); }
.dashboard-grid article { color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; }

.programs-section { background: linear-gradient(180deg, color-mix(in srgb, var(--teal-500) 9%, transparent), transparent), var(--paper); }
.video-feature { padding-top: 0; background: var(--paper); }
.video-copy { max-width: 740px; }
.video-shell { overflow: hidden; background: var(--teal-950); border: 1px solid rgba(6,63,67,.18); border-radius: 8px; box-shadow: var(--shadow); }
.video-shell video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--teal-950); }
.video-caption { display: grid; gap: .25rem; padding: 1rem 1.15rem; color: #fff; border-top: 1px solid rgba(255,255,255,.14); }
.video-caption strong { color: var(--sun); font-family: var(--heading); }
.video-caption span { color: rgba(255,255,255,.76); }
.focus-grid, .value-grid, .team-grid, .partner-grid, .involvement-grid, .story-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1rem; }
.focus-card, .value-grid article, .team-card, .partner-card, .involvement-card, .story-card { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.focus-card, .value-grid article, .team-card, .partner-card, .involvement-card { min-height: 250px; padding: 1.35rem; }
.focus-card, .value-grid article, .team-card, .partner-card, .involvement-card, .story-card, .media-card, .flagship-card, .mission-panel, .contact-card, .map-card { transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease; }
.focus-card:hover, .value-grid article:hover, .team-card:hover, .partner-card:hover, .involvement-card:hover, .story-card:hover, .media-card:hover, .flagship-card:hover, .mission-panel:hover { border-color: color-mix(in srgb, var(--teal-500) 45%, var(--line)); box-shadow: var(--shadow-strong); transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px); }
.focus-card span { color: var(--clay); font-family: var(--heading); font-weight: 800; }
.focus-card h3 { margin-top: 2.4rem; }
.focus-card p, .value-grid p, .team-card small, .partner-card p, .involvement-card p, .story-card p, .split-copy p, .mission-panel p, .contact-card p, .donate-content p { color: var(--muted); }

.image-panel { min-height: 560px; overflow: hidden; border-radius: 8px; }
.image-panel img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.split-section { background: var(--surface); }
.split-copy { max-width: 680px; }
.check-list, .flagship-card ul { display: grid; gap: .85rem; padding: 0; margin: 1.5rem 0 0; list-style: none; }
.check-list li, .flagship-card li { position: relative; padding-left: 1.55rem; }
.check-list li::before, .flagship-card li::before { position: absolute; left: 0; top: .48rem; width: .65rem; height: .65rem; content: ""; background: var(--teal-500); border-radius: 999px; }

.program-overview { display: grid; gap: 3rem; }
.program-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; }
.program-row.reverse img { order: 2; }
.flagship-grid { display: grid; gap: 1.2rem; }
.flagship-card { display: grid; grid-template-columns: minmax(280px,.9fr) minmax(0,1.1fr); gap: 1.5rem; padding: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; }
.flagship-card img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; border-radius: 6px; }
.flagship-card div { padding: 1rem; }
.gallery-note { padding-top: 0; }

.partner-list { display: flex; flex-wrap: wrap; gap: .75rem; }
.partner-list span { padding: .8rem 1rem; color: var(--ink); background: var(--surface); border: 1px solid rgba(89,127,67,.2); border-radius: 999px; font-weight: 800; transition: transform 180ms ease, background 180ms ease; }
.partner-list span:hover { transform: translateY(-3px); background: var(--sun); }
.partners-section { background: var(--section-soft); }
.team-card span { display: grid; place-items: center; width: 72px; height: 72px; margin-bottom: 1.5rem; color: #fff; background: var(--teal-800); border-radius: 50%; font-family: var(--heading); font-weight: 800; }
.team-card h2, .partner-card h2, .involvement-card h2 { font-size: 1.35rem; }
.team-card p { color: var(--clay); font-weight: 800; }

.map-section { background: var(--section-soft); }
.map-card { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.map-card span { padding: 1rem 1.25rem; color: #fff; background: var(--teal-800); border-radius: 999px; font-weight: 800; }
.map-card p { flex-basis: 100%; margin: 1rem 0 0; color: var(--muted); }
.donate-section { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 2rem; align-items: center; padding: clamp(4rem,7vw,6rem) clamp(1rem,5vw,5rem); color: #fff; background: linear-gradient(135deg, rgba(6,63,67,.96), rgba(7,95,100,.9)), url("assets/gallery/home-hero-featured/community-climate-service.jpg") center/cover; }
.donate-content { max-width: 780px; }
.donate-content p { max-width: 680px; color: rgba(255,255,255,.78); }

.contact-section { align-items: start; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; margin-top: 2rem; }
.contact-grid a, .contact-grid div { min-height: 120px; padding: 1rem; overflow-wrap: anywhere; background: var(--surface-soft); border-radius: 8px; }
.contact-grid span, .story-meta { display: block; margin-bottom: .65rem; color: var(--clay); font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-form { display: grid; gap: 1rem; padding: clamp(1.5rem,3vw,2.5rem); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: .45rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 48px; padding: .8rem .9rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 8px; font: inherit; }
.contact-form textarea { resize: vertical; }

.story-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.story-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-card div { padding: 1.25rem; }
.media-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.media-card { overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 18px 46px rgba(10,51,55,.08); }
.media-card img, .media-card video { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--teal-950); }
.media-card img, .story-card img, .image-panel img, .program-row img, .flagship-card img { transition: transform 520ms ease, filter 220ms ease; }
.media-card:hover img, .story-card:hover img, .image-panel:hover img, .program-row:hover img, .flagship-card:hover img { transform: scale(1.045); }
.media-card div { padding: 1rem; }
.media-card h3 { font-size: 1.1rem; }
.media-card p { margin: .5rem 0 0; color: var(--muted); }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 2rem clamp(1rem,5vw,5rem); color: #fff; background: var(--footer-bg); }
.site-footer p { margin: .2rem 0 0; color: rgba(255,255,255,.72); }
.site-footer a { font-weight: 800; overflow-wrap: anywhere; }

.reveal { opacity: 0; transform: translateY(22px) scale(.985); transition: opacity 520ms ease var(--reveal-delay, 0ms), transform 520ms ease var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes ambient-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4rem, 2rem, 0) scale(1.08); }
}

@keyframes hero-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2rem, .7rem, 0); }
}

@keyframes orbit-pulse {
  0%, 100% { transform: scale(.86) rotate(0deg); opacity: .42; }
  50% { transform: scale(1.04) rotate(16deg); opacity: .82; }
}

@media (max-width: 1180px) {
  .site-nav { gap: .55rem; font-size: .78rem; }
  .theme-toggle__text { display: none; }
  .theme-toggle { padding-right: .38rem; }
  .focus-grid, .value-grid, .team-grid, .partner-grid, .involvement-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .impact-strip { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .site-header { align-items: flex-start; min-height: 92px; padding-right: 5rem; }
  .brand img { width: 70px; height: 70px; }
  .menu-toggle { position: absolute !important; z-index: 80; top: 1.25rem; left: min(calc(100vw - 64px), 326px); right: auto; display: block !important; flex: 0 0 auto; color: inherit; background: rgba(255,255,255,.12); box-shadow: none; }
  .site-header.inner .menu-toggle, .site-header.is-scrolled .menu-toggle, .site-header.is-open .menu-toggle { color: var(--ink); background: var(--surface); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
  .theme-toggle { position: fixed !important; z-index: 80; right: 1rem; bottom: 1rem; left: auto; margin-left: 0; color: var(--ink); background: var(--surface); box-shadow: var(--shadow); }
  .theme-toggle + .menu-toggle { margin-left: 0; }
  .site-nav { position: fixed; z-index: 70; top: 92px; left: 1rem; right: 1rem; display: none; max-height: calc(100dvh - 120px); overflow-y: auto; flex-direction: column; align-items: stretch; gap: 0; padding: .9rem 1rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); font-size: .95rem; }
  .site-header.is-open .site-nav { display: flex; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; }
  .hero { min-height: 88dvh; padding-top: 7rem; }
  .page-hero { padding-inline: 1.5rem; }
  .page-hero h1 { max-width: 15ch; }
  .page-hero p:last-child { max-width: 31ch; }
  h1 { font-size: clamp(2.45rem,10.5vw,4.2rem); }
  .intro-grid, .about-grid, .split-section, .mission-values, .program-row, .contact-section, .donate-section, .flagship-card, .video-feature { grid-template-columns: 1fr; }
  .program-row.reverse img { order: 0; }
  .image-panel, .image-panel img { min-height: 380px; }
  .dashboard-grid, .story-grid, .media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .brand img { width: 66px; height: 66px; }
  .site-header { gap: .55rem; padding-inline: 1rem; }
  .theme-toggle__icon { width: 28px; height: 28px; }
  .theme-toggle { min-height: 42px; }
  .page-hero { padding-inline: 1.25rem; }
  .page-hero h1 { max-width: 14ch; }
  .page-hero p:last-child { max-width: 30ch; }
  h1 { max-width: 100%; overflow-wrap: break-word; word-break: normal; font-size: clamp(1.9rem,7.7vw,2.35rem); line-height: 1.08; }
  h2 { font-size: clamp(1.9rem,9vw,2.55rem); }
  .hero-copy, .page-hero p:last-child { font-size: 1.12rem; }
  .hero-actions, .donate-actions, .button { width: 100%; }
  .impact-strip, .focus-grid, .value-grid, .team-grid, .partner-grid, .involvement-grid, .contact-grid { grid-template-columns: 1fr; }
  .impact-strip div { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .reveal, .focus-card, .value-grid article, .team-card, .partner-card, .involvement-card, .story-card, .media-card, .flagship-card, .mission-panel { opacity: 1; transform: none !important; }
}
