/* =========================================================================
   RBY Wrestling Foundation
   Navy + gold, athletic editorial. Oswald (display) / Inter (body).
   ========================================================================= */

:root {
  --navy-900: #0c121d;   /* page base            */
  --navy-800: #111a29;   /* deep sections        */
  --navy-700: #192132;   /* logo navy / cards    */
  --navy-600: #22304a;   /* raised cards / lines */
  --navy-500: #2e3f5e;

  --gold:     #d4a857;
  --gold-200: #e7c684;
  --gold-700: #b88a35;

  --text:     #eaf0f8;
  --muted:    #9aa7bd;
  --line:     rgba(255, 255, 255, 0.08);

  --maxw: 1200px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--navy-900);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }

section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section-alt { background: var(--navy-800); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head.wide { max-width: 100%; }
@media (min-width: 769px) { .nowrap-lg { white-space: nowrap; } }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
.section-head p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }

/* ---- Creed bar (the everywhere sentence) ----------------------------- */
.creed {
  background:
    linear-gradient(90deg, rgba(212,168,87,0.10), rgba(212,168,87,0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.creed p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 980px;
  margin: 0 auto;
  line-height: 1.25;
}
.creed .accent { color: var(--gold); }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-200), var(--gold));
  color: #2a1e05;
  box-shadow: 0 10px 28px rgba(212, 168, 87, 0.28);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(212, 168, 87, 0.42); }
.btn-outline { border-color: rgba(255,255,255,0.28); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

/* =========================================================================
   Header / nav
   ========================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.2rem, 4vw, 2.5rem);
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(12, 18, 29, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.site-header .brand img { height: clamp(40px, 6vw, 50px); width: auto; display: block; transition: height 0.3s; }
.site-header.scrolled .brand img { height: clamp(34px, 5vw, 42px); }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.82;
  transition: opacity 0.2s, color 0.2s;
}
.nav a:hover { opacity: 1; color: var(--gold); }
.nav .btn { padding: 0.6rem 1.2rem; }
/* keep the Donate button's dark label even though it's an <a> inside .nav */
.nav a.btn-primary, .nav a.btn-primary:hover { color: #2a1e05; opacity: 1; }
.nav a.btn-outline:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle svg { width: 28px; height: 28px; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  background:
    linear-gradient(180deg, transparent 62%, var(--navy-900) 100%),
    linear-gradient(95deg, rgba(12,18,29,0.94) 0%, rgba(12,18,29,0.82) 38%, rgba(12,18,29,0.5) 100%),
    radial-gradient(1100px 700px at 78% 16%, rgba(212,168,87,0.12), transparent 60%),
    url("/assets/img/hero-bg.jpg");
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center bottom;
  position: relative;
  overflow: hidden;
}
.hero::after {
  /* faint shooting-star streak echoing the logo */
  content: "";
  position: absolute;
  top: 16%; right: -8%;
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,168,87,0.5));
  transform: rotate(-18deg);
  filter: blur(0.5px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  letter-spacing: 0.005em;
}
.hero h1 .accent { color: var(--gold); }
.hero .lede { color: var(--muted); font-size: 1.15rem; max-width: 540px; margin: 1.5rem 0 2.2rem; }
.hero-cta { display: flex; flex-wrap: nowrap; gap: 0.7rem; }
.hero-cta .btn { padding: 0.95rem 1.35rem; font-size: 0.92rem; flex: 0 1 auto; }
.hero-logo { justify-self: center; }
.hero-logo img {
  width: clamp(220px, 32vw, 420px);
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.55));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* =========================================================================
   Mission / about
   ========================================================================= */
.mission-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.mission p { font-size: 1.15rem; max-width: 820px; }
.mission p + p { margin-top: 1.2rem; color: var(--muted); }
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,18,29,0.55));
  pointer-events: none;
}
.media-frame.tall { aspect-ratio: 4 / 5; }

.founder {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.cred-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--navy-700);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.cred-chip svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
/* =========================================================================
   RBY Academy (coming soon)
   ========================================================================= */
.academy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.academy h2 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.academy p { color: var(--muted); margin: 1rem 0 1.6rem; font-size: 1.08rem; max-width: 46ch; }
.pill-soon {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(212,168,87,0.12); color: var(--gold-200);
  border: 1px solid rgba(212,168,87,0.35);
  padding: 0.6rem 1.15rem; border-radius: 999px;
  font-family: var(--font-display); letter-spacing: 0.12em;
  text-transform: uppercase; font-size: 0.85rem;
}
.pill-soon svg { width: 17px; height: 17px; }

/* =========================================================================
   Programs
   ========================================================================= */
#programs {
  background-image:
    linear-gradient(180deg, rgba(12,18,29,0.93) 0%, rgba(14,21,33,0.96) 100%),
    url("/assets/img/programs-bg.jpg");
  background-size: cover;
  background-position: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem;
}
.card {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(212,168,87,0.4); box-shadow: var(--shadow); }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(212,168,87,0.12);
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.card ul { list-style: none; }
.card ul li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.card ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
}

/* =========================================================================
   Impact stories
   ========================================================================= */
.stories { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
.story {
  background: var(--navy-700);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.story .photo {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--navy-500), var(--navy-700));
  display: grid; place-items: center;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.story .photo.has-img { background: var(--navy-800); }
.story .photo.has-img img { width: 100%; height: 100%; object-fit: cover; }
.story .body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.story blockquote {
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.story blockquote::before { content: "\201C"; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.35em; margin-right: 0.15rem; }
.story .who { margin-top: auto; font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem; color: var(--gold); }
.placeholder-note {
  margin-top: 1.5rem; font-size: 0.85rem; color: var(--muted);
  text-align: center; font-style: italic;
}

/* =========================================================================
   Sponsor levels
   ========================================================================= */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.2rem; }
.tier {
  position: relative;
  background: var(--navy-700);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.tier:hover { transform: translateY(-6px); }
.tier .name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.12em; font-size: 1.15rem; }
.tier .amt { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); margin: 0.5rem 0 0.2rem; }
.tier .bar { height: 4px; width: 40px; margin: 0.9rem auto 0; border-radius: 4px; background: var(--gold); opacity: 0.8; }
.tier.bronze   { border-top: 3px solid #b87333; }
.tier.silver   { border-top: 3px solid #b9c2cf; }
.tier.gold     { border-top: 3px solid var(--gold); }
.tier.champion { border-top: 3px solid #6fd3ff; }
.tier.legacy   { border-top: 3px solid #d96fff; }

.benefits {
  margin-top: 2.5rem;
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.benefits h3 { color: var(--gold); margin-bottom: 1rem; font-size: 1.25rem; }
.benefits ul { columns: 2; column-gap: 2rem; list-style: none; }
.benefits li { padding-left: 1.5rem; position: relative; margin-bottom: 0.6rem; color: var(--muted); break-inside: avoid; }
.benefits li::before { content: "\2713"; color: var(--gold); position: absolute; left: 0; font-weight: 700; }
.partner-logos { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; opacity: 0.85; }
.partner-logos .slot {
  height: 64px; flex: 0 0 150px;
  border: 1px dashed var(--line); border-radius: 10px;
  display: grid; place-items: center; color: var(--muted);
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
}

/* =========================================================================
   Donate
   ========================================================================= */
#donate {
  background-image:
    linear-gradient(180deg, rgba(12,18,29,0.93) 0%, rgba(14,21,33,0.96) 100%),
    url("/assets/img/donate-bg.jpg");
  background-size: cover;
  background-position: center;
}
.donate-card {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.tax-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,168,87,0.12); color: var(--gold-200);
  border: 1px solid rgba(212,168,87,0.3);
  padding: 0.5rem 1rem; border-radius: 999px;
  font-size: 0.85rem; margin-bottom: 1.5rem;
}
.tax-badge svg { width: 16px; height: 16px; }

.give-toggle { display: inline-flex; background: var(--navy-900); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 1.6rem; }
.give-toggle button {
  font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.85rem; padding: 0.55rem 1.3rem; border: 0; border-radius: 999px;
  background: transparent; color: var(--muted); cursor: pointer; transition: 0.2s;
}
.give-toggle button.active { background: var(--gold); color: #2a1e05; }

.amounts { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 0.7rem; margin-bottom: 1.2rem; }
.amounts button, .amounts .custom {
  font-family: var(--font-display); font-size: 1.15rem;
  padding: 0.9rem 0; border-radius: 10px;
  border: 1px solid var(--line); background: var(--navy-900); color: var(--text);
  cursor: pointer; transition: 0.15s; text-align: center;
}
.amounts button:hover { border-color: var(--gold); }
.amounts button.active { background: var(--gold); color: #2a1e05; border-color: var(--gold); }
.amounts .custom { display: flex; align-items: center; gap: 2px; padding: 0 0.6rem; }
.amounts .custom span { color: var(--muted); }
.amounts .custom input { width: 100%; background: none; border: 0; color: var(--text); font: inherit; outline: none; }

.give-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 0.5rem 0 1.5rem; }
.give-extra label {
  display: flex; gap: 0.7rem; align-items: flex-start;
  background: var(--navy-900); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.9rem 1rem; cursor: pointer; font-size: 0.95rem; transition: border-color 0.2s;
}
.give-extra label:hover { border-color: rgba(212,168,87,0.4); }
.give-extra input { margin-top: 0.25rem; accent-color: var(--gold); }
.give-extra .t { font-family: var(--font-display); letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.85rem; display: block; }
.give-extra .d { color: var(--muted); font-size: 0.82rem; }

.donate-note { margin-top: 1.2rem; font-size: 0.8rem; color: var(--muted); text-align: center; }

/* =========================================================================
   Forms
   ========================================================================= */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,87,0.18);
}
.field select option { background: var(--navy-800); }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.checks label {
  display: flex; gap: 0.6rem; align-items: center;
  background: var(--navy-900); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.7rem 0.9rem; cursor: pointer; font-size: 0.95rem; text-transform: none; letter-spacing: 0;
  color: var(--text); font-family: var(--font-body);
}
.checks input { accent-color: var(--gold); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.alert { padding: 1rem 1.2rem; border-radius: 10px; margin-bottom: 1.5rem; font-size: 0.95rem; }
.alert-ok { background: rgba(70,180,110,0.15); border: 1px solid rgba(70,180,110,0.45); color: #b9f0cd; }
.alert-err { background: rgba(220,80,80,0.14); border: 1px solid rgba(220,80,80,0.4); color: #f3c2c2; }

/* =========================================================================
   Contact
   ========================================================================= */
#contact {
  background-image:
    linear-gradient(180deg, rgba(12,18,29,0.92) 0%, rgba(14,21,33,0.95) 100%),
    url("/assets/img/clinic.jpg");
  background-size: cover;
  background-position: center 30%;
}
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info .row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2.25rem; }
.contact-info .row svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 3px; }
.contact-info .row a:hover { color: var(--gold); }
.contact-info h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.contact-info .row .muted { color: var(--muted); font-size: 0.95rem; }
.socials { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.1rem; }
.socials a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--text);
  font-family: var(--font-display); letter-spacing: 0.06em; font-size: 0.92rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; flex: none; }

/* =========================================================================
   Footer  (credits replicate baschsolutions.com pattern)
   ========================================================================= */
.site-footer { background: var(--navy-900); border-top: 1px solid var(--line); padding: 3.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-brand img { height: 80px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { color: var(--gold); letter-spacing: 0.16em; font-size: 0.85rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-bottom .copy { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.06em; }
.credits { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.credit {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: #6b778c; font-weight: 600; transition: color 0.2s;
}
.credit:hover { color: var(--gold); }
.credit img { height: 22px; width: auto; opacity: 0.6; transition: opacity 0.2s; }
.credit:hover img { opacity: 0.95; }
.credit-sep { color: #2a3346; }

/* =========================================================================
   Reveal-on-scroll
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-logo img { animation: none; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; flex-wrap: wrap; }
  .hero-logo { grid-row: 1; max-width: 280px; justify-self: center; }
  .mission-grid, .academy-grid { grid-template-columns: 1fr; }
  .mission-grid .media-frame, .academy-grid .media-frame { max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
         background: var(--navy-800); flex-direction: column; align-items: flex-start;
         padding: 6rem 2rem 2rem; gap: 1.4rem; transform: translateX(100%);
         transition: transform 0.3s ease; box-shadow: var(--shadow); }
  .nav.open { transform: none; }
  .nav .btn { width: 100%; }
  .nav-toggle { display: block; z-index: 101; }
  .form-wrap, .give-extra, .checks, .benefits ul { grid-template-columns: 1fr; columns: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { justify-content: center; text-align: center; }
}
