/* ============================================
   Helping Beyond the Storm — stylesheet
   Brand: forest green + deep navy/teal + sky blue, warm gold accent
   ============================================ */

:root, [data-theme="light"] {
  /* Surfaces — warm, soft off-white */
  --color-bg: #fbfaf6;
  --color-surface: #ffffff;
  --color-surface-2: #f4f6f3;
  --color-surface-offset: #eef1ed;
  --color-border: #e0e3dd;
  --color-divider: #e8eae5;

  /* Text */
  --color-text: #1c2b30;
  --color-text-muted: #56666b;
  --color-text-faint: #94a1a3;
  --color-text-inverse: #fbfaf6;

  /* Brand */
  --color-primary: #0f3a4d;        /* deep navy-teal */
  --color-primary-hover: #0a2d3c;
  --color-green: #3f7d4e;           /* forest green */
  --color-green-hover: #336641;
  --color-sky: #5fa8c4;             /* sky blue */
  --color-gold: #d99a2b;            /* warm gold for donate */
  --color-gold-hover: #c2841d;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 3px rgba(15,58,77,0.07);
  --shadow-md: 0 8px 24px rgba(15,58,77,0.10);
  --shadow-lg: 0 20px 48px rgba(15,58,77,0.16);

  --content: 1140px;

  --font-display: 'Zodiak', Georgia, serif;
  --font-body: 'General Sans', 'Helvetica Neue', sans-serif;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.85rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 0.95rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  --text-lg: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.6vw, 3.4rem);
  --text-hero: clamp(2.6rem, 1.6rem + 4.4vw, 4.8rem);

  --space-2: 0.5rem;  --space-3: 0.75rem; --space-4: 1rem;
  --space-6: 1.5rem;  --space-8: 2rem;    --space-10: 2.5rem;
  --space-12: 3rem;   --space-16: 4rem;   --space-20: 5rem;  --space-24: 6rem;
}

[data-theme="dark"] {
  --color-bg: #0e1a1f;
  --color-surface: #14242b;
  --color-surface-2: #16282f;
  --color-surface-offset: #1a2f37;
  --color-border: #2a3f47;
  --color-divider: #22363d;
  --color-text: #e6ecea;
  --color-text-muted: #9bafb2;
  --color-text-faint: #6b8086;
  --color-text-inverse: #0e1a1f;
  --color-primary: #4c97b3;
  --color-primary-hover: #6cb0c9;
  --color-green: #5fa572;
  --color-green-hover: #74b886;
  --color-sky: #79bdd6;
  --color-gold: #e6ad44;
  --color-gold-hover: #f0bd5e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0e1a1f; --color-surface: #14242b; --color-surface-2: #16282f;
    --color-surface-offset: #1a2f37; --color-border: #2a3f47; --color-divider: #22363d;
    --color-text: #e6ecea; --color-text-muted: #9bafb2; --color-text-faint: #6b8086;
    --color-text-inverse: #0e1a1f; --color-primary: #4c97b3; --color-primary-hover: #6cb0c9;
    --color-green: #5fa572; --color-green-hover: #74b886; --color-sky: #79bdd6;
    --color-gold: #e6ad44; --color-gold-hover: #f0bd5e;
  }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; scroll-behavior: smooth; scroll-padding-top: 90px;
}
body {
  min-height: 100dvh; line-height: 1.65;
  font-family: var(--font-body); font-size: var(--text-base);
  color: var(--color-text); background: var(--color-bg);
}
img { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.12; font-family: var(--font-display); font-weight: 600; }
p { text-wrap: pretty; }
::selection { background: rgba(95,168,196,0.3); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

a, button, .btn { transition: color var(--transition-interactive), background var(--transition-interactive),
  border-color var(--transition-interactive), box-shadow var(--transition-interactive), transform var(--transition-interactive); }

.container { width: 100%; max-width: var(--content); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--color-primary); color: #fff; padding: var(--space-3) var(--space-4); border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  padding: 0.7rem 1.4rem; border-radius: var(--radius-full); white-space: nowrap;
}
.btn--sm { padding: 0.5rem 1.1rem; }
.btn--lg { padding: 0.95rem 2rem; font-size: var(--text-base); }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--color-gold); color: #2a1d04; }
.btn--gold:hover { background: var(--color-gold-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--color-text); border: 1.5px solid var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
/* Ghost button used over the dark hero image: force light, readable text */
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.hero .btn--ghost:hover { background: rgba(255,255,255,0.16); border-color: #fff; color: #fff; }
.btn--ghost-light { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); border-color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); height: 76px; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark { border-radius: 50%; flex-shrink: 0; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 1.05; color: var(--color-primary); }
[data-theme="dark"] .brand__name { color: var(--color-text); }
.brand__name-sub { color: var(--color-green); }
.nav { display: flex; gap: var(--space-8); }
.nav a { font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted); }
.nav a:hover { color: var(--color-primary); }
.header__actions { display: flex; align-items: center; gap: var(--space-3); }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; color: var(--color-text-muted);
}
.icon-btn:hover { background: var(--color-surface-2); color: var(--color-primary); }

.menu-btn { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: var(--transition-interactive); }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: var(--space-2); padding: var(--space-4) clamp(1.25rem,4vw,2.5rem) var(--space-6); border-bottom: 1px solid var(--color-divider); background: var(--color-bg); }
.mobile-nav a { padding: 0.7rem 0; font-size: var(--text-base); font-weight: 500; color: var(--color-text); border-bottom: 1px solid var(--color-divider); }
.mobile-nav a.btn { border-bottom: none; margin-top: var(--space-3); justify-content: center; color: #fff; }
.mobile-nav.open { display: flex; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(560px, 82vh, 760px); display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,30,38,0.92) 0%, rgba(11,30,38,0.7) 42%, rgba(11,30,38,0.25) 75%, rgba(11,30,38,0.1) 100%);
}
.hero__content { position: relative; z-index: 1; color: #fff; padding-block: var(--space-16); max-width: 720px; }
.hero__eyebrow { font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: #9fd0c5; margin-bottom: var(--space-4); }
.hero__title { font-size: var(--text-hero); font-weight: 600; line-height: 1.04; margin-bottom: var(--space-6); }
.hero__lead { font-size: var(--text-lg); color: rgba(255,255,255,0.92); max-width: 56ch; margin-bottom: var(--space-8); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* ---------- Mission strip ---------- */
.mission { background: var(--color-primary); color: #fff; padding-block: clamp(var(--space-12), 7vw, var(--space-20)); }
.mission__text { font-family: var(--font-display); font-size: var(--text-xl); line-height: 1.4; text-align: center; max-width: 44ch; margin-inline: auto; font-weight: 500; }
.mission__text em { color: var(--color-gold); font-style: italic; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(var(--space-16), 9vw, var(--space-24)); }
.section--alt { background: var(--color-surface-2); }
.eyebrow { font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-green); margin-bottom: var(--space-3); }
.eyebrow--light { color: var(--color-gold); }
.section__title { font-size: var(--text-2xl); margin-bottom: var(--space-6); color: var(--color-text); }
.section__head { max-width: 660px; margin-bottom: clamp(var(--space-10), 5vw, var(--space-16)); }
.section__intro { font-size: var(--text-lg); color: var(--color-text-muted); }
.section p { color: var(--color-text-muted); margin-bottom: var(--space-4); max-width: 60ch; }
.section p strong { color: var(--color-text); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-10), 6vw, var(--space-20)); align-items: center; }

.story__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-8); box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-sky); }
.card__icon { font-size: 2rem; margin-bottom: var(--space-4); }
.card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); color: var(--color-text); }
.card p { font-size: var(--text-base); color: var(--color-text-muted); margin-bottom: 0; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.stat {
  text-align: center; padding: var(--space-10) var(--space-6);
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
}
.stat__num { display: block; font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--color-green); margin-bottom: var(--space-2); line-height: 1; }
.stat__label { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---------- Donate ---------- */
.donate {
  background:
    linear-gradient(135deg, rgba(15,58,77,0.95), rgba(20,70,90,0.9)),
    radial-gradient(circle at 80% 20%, rgba(95,168,196,0.35), transparent 60%);
  background-color: var(--color-primary);
  color: #fff; padding-block: clamp(var(--space-20), 10vw, var(--space-24));
}
.donate__inner { max-width: 720px; margin-inline: auto; text-align: center; }
.donate__title { font-size: var(--text-2xl); color: #fff; margin-bottom: var(--space-6); }
.donate__lead { font-size: var(--text-lg); color: rgba(255,255,255,0.9); margin-bottom: var(--space-8); margin-inline: auto; }
.donate__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; margin-bottom: var(--space-6); }
.donate__note { font-size: var(--text-sm); color: rgba(255,255,255,0.7); }
.donate__note a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 3px; }
.donate__fineprint { font-size: var(--text-xs); color: rgba(255,255,255,0.55); margin-top: var(--space-4); max-width: 56ch; margin-inline: auto; }
.donate__fineprint a { color: rgba(255,255,255,0.8); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Hurricane Helene chapter (full-bleed) ---------- */
.helene { position: relative; display: flex; align-items: center; min-height: clamp(520px, 70vh, 680px); overflow: hidden; }
.helene__media { position: absolute; inset: 0; z-index: 0; }
.helene__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.helene__scrim { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,30,38,0.94) 0%, rgba(11,30,38,0.78) 48%, rgba(11,30,38,0.4) 80%, rgba(11,30,38,0.2) 100%); }
.helene__content { position: relative; z-index: 1; color: #fff; max-width: 640px; padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.helene__title { font-size: var(--text-2xl); color: #fff; margin-bottom: var(--space-6); }
.helene__lead { font-size: var(--text-lg); color: rgba(255,255,255,0.92); margin-bottom: var(--space-6); max-width: 56ch; }
.helene__content .btn { margin-top: var(--space-2); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin-top: var(--space-10); }
.gallery__item { position: relative; }
.gallery__item--wide { grid-column: span 2; }
.gallery__btn { display: block; width: 100%; padding: 0; border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); background: var(--color-surface); }
.gallery__btn img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform var(--transition-interactive); }
.gallery__item--wide .gallery__btn img { aspect-ratio: 16/9; }
.gallery__btn:hover img { transform: scale(1.05); }
.gallery__btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,30,38,0.55), transparent 55%); opacity: 0; transition: opacity var(--transition-interactive); }
.gallery__btn:hover::after, .gallery__btn:focus-visible::after { opacity: 1; }
.gallery__cap { position: absolute; left: var(--space-4); bottom: var(--space-3); right: var(--space-4); z-index: 1; color: #fff; font-size: var(--text-sm); font-weight: 600; text-align: left; opacity: 0; transform: translateY(8px); transition: opacity var(--transition-interactive), transform var(--transition-interactive); text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.gallery__btn:hover .gallery__cap, .gallery__btn:focus-visible .gallery__cap { opacity: 1; transform: none; }
.gallery__note { text-align: center; margin-top: var(--space-8); font-size: var(--text-sm); color: var(--color-text-faint); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: var(--space-6); background: rgba(8,20,26,0.92); backdrop-filter: blur(4px); }
.lightbox.open { display: flex; }
.lightbox__figure { max-width: min(1100px, 92vw); max-height: 88vh; margin: 0; display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }
.lightbox__figure img { max-width: 100%; max-height: 78vh; width: auto; height: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox__figure figcaption { color: rgba(255,255,255,0.92); font-size: var(--text-base); text-align: center; max-width: 60ch; }
.lightbox__close { position: absolute; top: var(--space-4); right: var(--space-6); width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; line-height: 1; color: #fff; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; }
.lightbox__close:hover { background: rgba(255,255,255,0.24); }

/* ---------- Storms metaphor strip ---------- */
.storms { background: var(--color-surface-2); }
.storms__inner { max-width: 720px; margin-inline: auto; text-align: center; }
.storms__title { font-size: var(--text-xl); color: var(--color-text); margin-bottom: var(--space-6); }
.storms__text { font-size: var(--text-lg); color: var(--color-text-muted); margin-inline: auto; max-width: 60ch; }

/* ---------- Founder ---------- */
.founder { max-width: 820px; margin-inline: auto; }
.founder__head { margin-bottom: var(--space-6); }
.founder__body p { font-size: var(--text-lg); color: var(--color-text-muted); }
.founder__body p strong { color: var(--color-text); }

/* ---------- Partners ---------- */
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .section__intro { margin-inline: auto; }
.partner-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(var(--space-8), 5vw, var(--space-20)); margin-top: var(--space-10); }
.partner-list__item { display: flex; align-items: center; justify-content: center; }
.partner-list__item img { max-height: 64px; width: auto; border-radius: var(--radius-sm); }
.partner-list__item--text { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; color: var(--color-text-muted); }

/* ---------- Contact ---------- */
.contact { align-items: start; }
.contact__list { margin-top: var(--space-8); display: flex; flex-direction: column; gap: var(--space-6); }
.contact__list li { display: flex; flex-direction: column; gap: 0.2rem; }
.contact__label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-text-faint); }
.contact__list a { color: var(--color-primary); font-weight: 600; font-size: var(--text-lg); }
[data-theme="dark"] .contact__list a { color: var(--color-sky); }
.contact__list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact__social { display: flex; gap: var(--space-6); }
.contact__social a { font-size: var(--text-base); }
.contact__cta-card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 4vw, var(--space-12)); box-shadow: var(--shadow-md);
}
.contact__cta-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-6); color: var(--color-text); }
.contact__cta-card ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); }
.contact__cta-card li { position: relative; padding-left: 1.8rem; color: var(--color-text-muted); }
.contact__cta-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--color-green); font-weight: 700; }

/* ---------- Footer ---------- */
.footer { background: var(--color-primary); color: rgba(255,255,255,0.85); padding-block: var(--space-16) var(--space-8); }
[data-theme="dark"] .footer { background: #0a161b; }
.footer__inner { display: flex; flex-wrap: wrap; gap: var(--space-8); justify-content: space-between; align-items: center; padding-bottom: var(--space-8); border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer__brand { display: flex; align-items: center; gap: var(--space-4); }
.footer__brand img { border-radius: 50%; }
.footer__brand strong { display: block; font-family: var(--font-display); font-size: var(--text-lg); color: #fff; }
.footer__brand span { font-size: var(--text-sm); color: rgba(255,255,255,0.7); }
.footer__nav { display: flex; flex-wrap: wrap; gap: var(--space-6); }
.footer__nav a { font-size: var(--text-sm); color: rgba(255,255,255,0.8); }
.footer__nav a:hover { color: #fff; }
.footer__legal { padding-top: var(--space-8); }
.footer__legal p { font-size: var(--text-xs); color: rgba(255,255,255,0.6); }

/* ---------- Legal pages ---------- */
.legal { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.legal__inner { max-width: 760px; margin-inline: auto; }
.legal__title { font-size: var(--text-2xl); margin-bottom: var(--space-3); color: var(--color-text); }
.legal__updated { font-size: var(--text-sm); color: var(--color-text-faint); margin-bottom: var(--space-10); }
.legal h2 { font-size: var(--text-lg); margin-top: var(--space-10); margin-bottom: var(--space-3); color: var(--color-text); }
.legal p { color: var(--color-text-muted); margin-bottom: var(--space-4); }
.legal p strong { color: var(--color-text); }
.legal ul { margin: 0 0 var(--space-4) var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); color: var(--color-text-muted); }
.legal a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
[data-theme="dark"] .legal a { color: var(--color-sky); }
.legal__back { margin-top: var(--space-12); font-weight: 600; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }

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

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
  .btn--sm.btn--primary { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .story__media { order: 2; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  /* On mobile, captions always visible since there's no hover */
  .gallery__cap { opacity: 1; transform: none; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .hero__actions .btn, .donate__actions .btn { flex: 1 1 auto; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
