/* ============================================================
   MISSION MEALS — Shared Stylesheet
   missionmealspost9.org
   American Legion Brunswick Post 9 · Brunswick, GA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Merriweather:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:        #1B2A4A;
  --navy-dark:   #111D33;
  --navy-mid:    #253a61;
  --navy-light:  #344876;
  --red:         #B22222;
  --red-dark:    #8B1A1A;
  --gold:        #C8923A;
  --gold-light:  #E5A94A;
  --gold-tint:   #FFFAEE;
  --blue-tint:   #E8EDF5;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --border:      #E0E4EC;
  --text:        #1A1A1A;
  --text-mid:    #4A4A4A;
  --text-light:  #777777;

  --font-display: 'Oswald', sans-serif;
  --font-serif:   'Merriweather', serif;
  --font-body:    'Source Sans 3', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 3px;
  --transition: all 0.25s ease;
}

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

/* ── UTILITIES ──────────────────────────────────────────────── */
.container        { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 800px;  margin: 0 auto; padding: 0 40px; }
.container-wide   { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

.text-center { text-align: center; }
.text-white  { color: white; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--white { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-title--sm    { font-size: 32px; }

.gold-rule        { width: 48px; height: 3px; background: var(--gold); margin-bottom: 28px; }
.gold-rule-center { width: 48px; height: 3px; background: var(--gold); margin: 0 auto 28px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-red     { background: var(--red);  color: white; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold    { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-navy    { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: white; }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: white; }
.btn-sm { padding: 9px 22px; font-size: 11px; }
.btn-lg { padding: 16px 40px; font-size: 15px; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--red);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.45); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-shield {
  width: 38px; height: 44px;
  background: var(--navy-mid);
  border: 2px solid var(--gold);
  border-radius: 4px 4px 50% 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  flex-shrink: 0;
  border-radius: 4px;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
  transition: opacity 0.2s;
}
.nav-brand:hover .nav-logo-img { opacity: 0.9; }
.nav-brand-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 2px;
  color: white;
  display: none;
  line-height: 1;
}
.nav-brand-sub {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  display: block;
  margin-top: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-donate-btn {
  background: var(--red);
  color: white !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 12px !important;
  letter-spacing: 2px !important;
  transition: background 0.2s !important;
}
.nav-donate-btn::after { display: none !important; }
.nav-donate-btn:hover { background: var(--red-dark) !important; color: white !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); background: rgba(255,255,255,0.04); }
.mobile-menu .m-donate {
  background: var(--red);
  color: white !important;
  margin: 12px 24px;
  text-align: center;
  border-radius: var(--radius);
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO BANNER (interior pages)
══════════════════════════════════════════════════════════════ */
.page-banner {
  margin-top: 68px;
  background: var(--navy);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent 0, transparent 60px,
    rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px
  );
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--red));
}
.page-banner-inner { position: relative; z-index: 2; }
.page-banner-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 54px;
  color: white;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.page-banner p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   HOME HERO
══════════════════════════════════════════════════════════════ */
.home-hero {
  margin-top: 68px;
  background: var(--navy);
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent 0, transparent 60px,
    rgba(255,255,255,0.018) 60px, rgba(255,255,255,0.018) 61px
  );
  pointer-events: none;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,58,0.15);
  border: 1px solid rgba(200,146,58,0.45);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 90px;
  line-height: 0.87;
  color: white;
  letter-spacing: -2px;
  margin-bottom: 6px;
}
.hero-h1 .accent { color: var(--red); display: block; }
.hero-ribbon {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  margin: 20px 0 22px;
  width: fit-content;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 380px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
}
.hero-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 2px;
  gap: 14px; text-align: center; text-transform: uppercase;
  position: absolute; inset: 0;
}
.hero-photo-placeholder .ph-icon { font-size: 52px; opacity: 0.25; }
.hero-post-badge {
  position: absolute;
  bottom: 36px; right: 36px;
  width: 108px; height: 108px;
  background: var(--navy-dark);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  z-index: 3;
}
.post-badge-label { font-family: var(--font-display); font-size: 8px; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; line-height: 1.3; }
.post-badge-num   { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: white; line-height: 1; }

/* ══════════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--navy-dark);
  border-bottom: 4px solid var(--red);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1140px;
  margin: 0 auto;
}
.stat-item {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-icon  { font-size: 22px; color: var(--gold); margin-bottom: 8px; display: block; }
.stat-num   { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: white; line-height: 1; margin-bottom: 5px; display: block; }
.stat-label { font-family: var(--font-display); font-size: 10px; letter-spacing: 1.5px; color: rgba(255,255,255,0.45); text-transform: uppercase; display: block; }

/* ══════════════════════════════════════════════════════════════
   CONTENT SECTIONS — shared
══════════════════════════════════════════════════════════════ */
.section       { padding: 90px 0; }
.section-sm    { padding: 60px 0; }
.section-lg    { padding: 110px 0; }
.section-navy  { background: var(--navy); }
.section-dark  { background: var(--navy-dark); }
.section-tint  { background: var(--blue-tint); }
.section-gold  { background: var(--gold-tint); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.section-white { background: var(--white); }
.section-off   { background: var(--off-white); }

.section-header        { margin-bottom: 56px; }
.section-header-center { text-align: center; margin-bottom: 56px; }

/* Two-column layout */
.two-col      { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-wide { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: center; }
.two-col-rev  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-rev > :first-child { order: 2; }
.two-col-rev > :last-child  { order: 1; }

/* Three column */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.four-col  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-body  { padding: 32px; }
.card-top   { border-top: 4px solid var(--navy); }
.card-red   { border-top: 4px solid var(--red); }
.card-gold  { border-top: 4px solid var(--gold); }

.card-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.icon-navy { background: var(--navy); color: var(--gold); }
.icon-red  { background: var(--red);  color: white; }
.icon-gold { background: var(--gold); color: white; }

.card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.card p { font-size: 15px; color: var(--text-mid); line-height: 1.75; }

/* ── QUOTE BLOCK ────────────────────────────────────────────── */
.quote-block {
  background: var(--blue-tint);
  border-left: 5px solid var(--navy);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}
.quote-block cite {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  font-style: normal;
  margin-top: 10px;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── CALLOUT BOX ────────────────────────────────────────────── */
.callout {
  background: var(--blue-tint);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}
.callout-red { border-left-color: var(--red); }

/* ── IMAGE PLACEHOLDERS ─────────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.22);
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; text-align: center;
  gap: 12px;
  border-radius: var(--radius);
  min-height: 280px;
}
.img-placeholder .ph-icon { font-size: 44px; opacity: 0.3; }
.img-placeholder-tall { min-height: 420px; }
.img-placeholder-short { min-height: 200px; }

/* ══════════════════════════════════════════════════════════════
   SPONSOR TIERS
══════════════════════════════════════════════════════════════ */
.goal-bar {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  border-left: 6px solid var(--gold);
}
.goal-label { font-family: var(--font-display); font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 4px; }
.goal-sub   { font-size: 13px; color: rgba(255,255,255,0.4); font-style: italic; }
.goal-amount { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--gold); white-space: nowrap; }
.goal-note  { font-size: 13px; color: rgba(255,255,255,0.4); text-align: right; }

.tier-list  { display: flex; flex-direction: column; gap: 14px; }
.tier-card  {
  display: grid;
  grid-template-columns: 6px 1fr auto auto;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: white;
}
.tier-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.tier-stripe  { align-self: stretch; min-height: 96px; }
.tier-body    { padding: 22px 28px; }
.tier-name    { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 5px; }
.tier-desc    { font-size: 14px; color: var(--text-mid); margin-bottom: 4px; line-height: 1.5; }
.tier-recog   { font-size: 12px; color: var(--text-light); font-style: italic; line-height: 1.5; }
.tier-price   { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--red); padding: 0 28px; white-space: nowrap; }
.tier-price small { font-size: 13px; font-weight: 400; }
.tier-badge-wrap { padding: 0 28px 0 0; }
.badge-open   { background: var(--red); color: white; font-family: var(--font-display); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; white-space: nowrap; display: inline-block; }
.badge-filled { background: #228822; color: white; font-family: var(--font-display); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; white-space: nowrap; display: inline-block; }

.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 32px; }
.ind-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ind-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.ind-name   { font-family: var(--font-display); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.ind-amount { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--red); margin-bottom: 10px; }
.ind-desc   { font-size: 12px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════
   FOUNDING SPONSORS
══════════════════════════════════════════════════════════════ */
.founding-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.founding-card {
  background: white;
  border: 2px solid rgba(200,146,58,0.3);
  border-radius: var(--radius);
  padding: 32px 40px;
  text-align: center;
  min-width: 220px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.founding-card:hover { box-shadow: var(--shadow-md); }
.founding-icon   { font-size: 34px; color: var(--gold); margin-bottom: 14px; }
.founding-org    { font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.founding-tier   { font-size: 12px; color: var(--gold); font-style: italic; margin-bottom: 10px; }
.founding-amount { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--red); }

/* ══════════════════════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════════════════════ */
.cta-strip {
  background: var(--red);
  padding: 48px 0;
  text-align: center;
}
.cta-strip h2 { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: white; letter-spacing: 1px; margin-bottom: 10px; }
.cta-strip p  { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.cta-strip-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   NUMBERS ROW
══════════════════════════════════════════════════════════════ */
.numbers-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.num-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.num-item:last-child { border-right: none; }
.num-big   { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.num-label { font-family: var(--font-display); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════════════
   CONTACT / FOOTER
══════════════════════════════════════════════════════════════ */
.contact-bar {
  background: var(--navy-dark);
  border-top: 4px solid var(--red);
  padding: 52px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  text-align: center;
}
.contact-icon  { font-size: 26px; color: var(--gold); margin-bottom: 10px; display: block; }
.contact-label { font-family: var(--font-display); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: white; margin-bottom: 8px; display: block; }
.contact-info  { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.85; }
.contact-info a { color: var(--gold); transition: color 0.2s; }
.contact-info a:hover { color: var(--gold-light); }

.site-footer {
  background: #090F1E;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-brand { font-family: var(--font-display); font-size: 12px; letter-spacing: 2px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.5); }
.footer-tax { font-size: 11px; color: rgba(255,255,255,0.2); font-style: italic; }

/* ══════════════════════════════════════════════════════════════
   PAGE-SPECIFIC — DONATE
══════════════════════════════════════════════════════════════ */
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.donate-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; }
.form-sub   { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; line-height: 1.6; }
.amount-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.amount-btn {
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.amount-btn:hover, .amount-btn.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.amount-btn .a-num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: inherit; display: block; }
.amount-btn .a-label { font-size: 11px; color: inherit; opacity: 0.7; }
.zeffy-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-top: 20px;
}
.zeffy-placeholder p { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.zeffy-placeholder strong { color: var(--navy); }

/* ══════════════════════════════════════════════════════════════
   PAGE-SPECIFIC — VOLUNTEER
══════════════════════════════════════════════════════════════ */
.role-card {
  background: white;
  border: 1px solid var(--border);
  border-left: 5px solid var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.role-card:hover { box-shadow: var(--shadow-sm); }
.role-icon { font-size: 28px; flex-shrink: 0; margin-top: 4px; }
.role-title { font-family: var(--font-display); font-size: 17px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.role-desc  { font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.role-note  { font-size: 12px; color: var(--text-light); font-style: italic; margin-top: 6px; }

.contact-form-placeholder {
  background: white;
  border: 1px solid var(--border);
  border-top: 5px solid var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: var(--font-display); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--navy); background: white; }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 16px; font-style: italic; text-align: center; }

/* Tax note */
.tax-note { text-align: center; font-size: 12px; color: var(--text-light); font-style: italic; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .two-col, .two-col-wide, .two-col-rev { grid-template-columns: 1fr; gap: 40px; }
  .two-col-rev > :first-child { order: 0; }
  .two-col-rev > :last-child  { order: 0; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .numbers-row { grid-template-columns: repeat(2,1fr); }
  .donate-grid { grid-template-columns: 1fr; }
  .tier-card { grid-template-columns: 6px 1fr; }
  .tier-price, .tier-badge-wrap { padding-left: 28px; padding-bottom: 16px; padding-right: 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  .section-title { font-size: 34px; }
  .hero-h1 { font-size: 62px; }
  .page-banner h1 { font-size: 38px; }
  .three-col, .four-col { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stats-inner .stat-item:last-child { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .founding-row { flex-direction: column; align-items: center; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .goal-bar { flex-direction: column; text-align: center; gap: 12px; }
  .hero-left { padding: 60px 28px; }
  .site-footer { flex-direction: column; text-align: center; }
  .cta-strip-btns { flex-direction: column; align-items: center; }
  .home-hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 280px; }
  .amount-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 480px) {
  .ind-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 52px; }
  .hero-btns { flex-direction: column; }
  .amount-grid { grid-template-columns: repeat(2,1fr); }
  .numbers-row { grid-template-columns: 1fr 1fr; }
}
