/* ── Variables ─────────────────────────────────────────── */
:root {
  --navy:      #051E45;
  --navy-mid:  #0a2a5e;
  --navy-dark: #020e22;
  --orange:    #FE914D;
  --orange-dk: #e07a38;
  --gold:      #FEC677;
  --white:     #FEFEFE;
  --off-white: #f5f7fa;
  --slate:     #5E6973;
  --light:     #A6AFBD;
  --text:      #2d2d2d;
  --font-body: 'Poppins', sans-serif;
  --font-head: 'Roboto Slab', serif;
  --radius:    6px;
  --shadow:    0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.65;
  background: #fff; font-size: 15px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-alt  { background: var(--off-white); }
.section-navy-mid { background: var(--navy-mid); color: var(--white); }

/* ── Typography ────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
.eyebrow { font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 3px; color: var(--orange); margin-bottom: .75rem; display: block; }
.section-title { font-size: 2.1rem; margin-bottom: 1rem; }
.section-lead { font-size: 1rem; color: var(--slate); margin-bottom: 2rem;
  max-width: 640px; line-height: 1.8; }
.section-dark .section-lead,
.section-navy-mid .section-lead { color: var(--light); }

/* ── Buttons ────────────────────────────────────────────── */
.btn { display: inline-block; padding: .7rem 1.9rem; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: .875rem;
  letter-spacing: .3px; transition: all .2s; cursor: pointer; border: none; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-dark { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }
.btn-outline-light { border: 2px solid rgba(255,255,255,.5); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: .5rem 1.25rem; font-size: .8rem; }

/* ── Top utility bar ────────────────────────────────────── */
.topbar { background: var(--navy-dark); border-bottom: 1px solid rgba(255,255,255,.06); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between;
  padding-top: .55rem; padding-bottom: .55rem; gap: 1rem; }
.topbar-tagline { font-size: .75rem; color: var(--light); font-weight: 500;
  letter-spacing: .5px; white-space: nowrap; }
.topbar-actions { display: flex; gap: .5rem; align-items: center; flex-shrink: 0; }
.topbar-btn { display: inline-flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 600; color: var(--light);
  padding: .3rem .85rem; border-radius: 20px; border: 1px solid rgba(255,255,255,.12);
  transition: all .2s; white-space: nowrap; line-height: 1; }
.topbar-btn:hover { color: var(--white); border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06); }
.topbar-btn i { font-size: .7rem; }
.topbar-btn-highlight { background: var(--orange); color: #fff; border-color: var(--orange); }
.topbar-btn-highlight:hover { background: var(--orange-dk); border-color: var(--orange-dk);
  color: #fff; transform: none; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar { background: var(--navy); position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.35); }
.nav-inner { display: flex; align-items: center; justify-content: space-between;
  padding-top: .8rem; padding-bottom: .8rem; }
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 54px !important; width: auto !important;
  max-height: 54px !important; max-width: 200px !important;
  object-fit: contain; display: block !important; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a { color: var(--light); font-size: .82rem; font-weight: 500;
  padding: .45rem .75rem; border-radius: var(--radius); transition: all .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.07); }
/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: .4rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white);
  transition: all .25s; border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.hero-content { padding: 5rem 0 3.5rem; position: relative; z-index: 2; max-width: 600px; }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: .75rem;
  font-weight: 800; line-height: 1.1; }
.hero-sub { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold);
  margin-bottom: 1.5rem; font-weight: 400; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-image-wrap { width: 100%; }
.hero-image-wrap img { width: 100%; max-height: 480px; object-fit: cover;
  border-radius: 8px 8px 0 0; }

/* ── How We Do It (4-col program grid) ─────────────────── */
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-top: 2.5rem; }
.program-cell { position: relative; overflow: hidden; border-radius: var(--radius); }
.program-cell img { width: 100%; height: 200px; object-fit: cover; display: block;
  transition: transform .35s; }
.program-cell:hover img { transform: scale(1.04); }
.program-cell-body { padding: .75rem .25rem 0; }
.program-cell-title { font-size: .9rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: .35rem; }
.program-cell-text { font-size: .82rem; color: var(--slate); line-height: 1.6; }

/* ── How You Can Help (2 big cards) ─────────────────────── */
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 2.5rem; }
.help-card { position: relative; overflow: hidden; }
.help-card img { width: 100%; height: 460px; object-fit: cover; display: block;
  transition: transform .4s; }
.help-card:hover img { transform: scale(1.03); }
.help-card-overlay { position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(5,30,69,.92) 0%, rgba(5,30,69,.5) 60%, transparent 100%);
  padding: 2.5rem 2rem 2rem; color: var(--white); }
.help-card-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  margin-bottom: .6rem; }
.help-card-text { font-size: .875rem; color: rgba(255,255,255,.8); line-height: 1.7;
  margin-bottom: 1.25rem; max-width: 380px; }

/* ── Sponsor carousel strip ──────────────────────────────── */
.sponsors-strip { display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: center; padding: 2rem 0; }
.sponsor-strip-item { display: flex; align-items: center; justify-content: center;
  padding: 1.1rem 1.75rem; border-radius: var(--radius);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  transition: background .22s, border-color .22s; text-decoration: none; }
.sponsor-strip-item:hover { background: rgba(255,255,255,.14); border-color: var(--orange); }
.sponsor-strip-item img { max-height: 52px; max-width: 140px; object-fit: contain;
  display: block; }
.sponsor-placeholder { text-align: center; color: var(--light); font-size: .9rem;
  padding: 2rem; background: rgba(255,255,255,.05); border-radius: var(--radius);
  border: 2px dashed rgba(255,255,255,.15); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
  margin-top: 2rem; }
.testimonial-card { background: #fff; border-radius: var(--radius);
  padding: 2rem 1.75rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1.25rem;
  border-top: 3px solid var(--orange); }
.testimonial-quote { font-size: .9rem; line-height: 1.8; color: #444;
  font-style: italic; flex: 1; }
.testimonial-quote::before { content: '\201C'; font-size: 2.5rem; color: var(--orange);
  font-family: var(--font-head); line-height: .5; display: block; margin-bottom: .5rem; }
.testimonial-author { display: flex; align-items: center; gap: .875rem; }
.testimonial-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; border: 2px solid var(--orange); }
.testimonial-photo-placeholder { width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-mid); flex-shrink: 0; border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--light); font-size: 1.2rem; }
.testimonial-name { font-weight: 700; font-size: .875rem; color: var(--navy); }
.testimonial-role { font-size: .75rem; color: var(--slate); }

/* ── Press Room ──────────────────────────────────────────── */
.press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem;
  margin-top: 2rem; }
.press-card { background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.press-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.press-card-img { height: 220px; overflow: hidden; }
.press-card-img img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s; }
.press-card:hover .press-card-img img { transform: scale(1.04); }
.press-card-body { padding: 1.5rem; }
.press-card-cat { font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--orange); margin-bottom: .5rem; }
.press-card-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  margin-bottom: .75rem; color: var(--navy); line-height: 1.4; }
.press-card-date { font-size: .78rem; color: var(--slate); margin-bottom: 1rem; }
.press-card-link { font-size: .82rem; font-weight: 600; color: var(--orange);
  display: inline-flex; align-items: center; gap: .3rem; }
.press-card-link:hover { color: var(--orange-dk); }

/* ── Events placeholder strip ────────────────────────────── */
.events-strip { background: var(--navy-mid); color: var(--white);
  border-radius: var(--radius); padding: 2.5rem; margin-top: 2rem; text-align: center; }
.events-strip h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.events-strip p { color: var(--light); margin-bottom: 1.25rem; font-size: .9rem; }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero { background: var(--navy); color: var(--white); padding: 4rem 0 3.5rem; }
.page-hero .eyebrow { display: block; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: .5rem; }
.page-hero p { color: var(--light); font-size: 1rem; max-width: 560px; margin-top: .5rem; }

/* ── Cards (generic) ─────────────────────────────────────── */
.card-grid { display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card { background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { height: 200px; object-fit: cover; width: 100%; }
.card-img-placeholder { height: 200px; background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--light); font-size: 2.5rem; }
.card-body { padding: 1.25rem 1.5rem 1.5rem; }
.card-label { font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--orange); margin-bottom: .35rem; }
.card-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  margin-bottom: .5rem; color: var(--navy); }
.card-meta { font-size: .82rem; color: var(--slate); margin-bottom: .6rem; }
.card-text { font-size: .875rem; color: #555; line-height: 1.7; }

/* ── Event list ──────────────────────────────────────────── */
.event-item { display: grid; grid-template-columns: 88px 1fr; gap: 1.25rem;
  align-items: start; padding: 1.25rem 0; border-bottom: 1px solid #eee; }
.event-date-block { text-align: center; background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: .75rem .5rem; flex-shrink: 0; }
.event-date-block .month { font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--orange); }
.event-date-block .day { font-size: 1.9rem; font-weight: 800; line-height: 1;
  font-family: var(--font-head); }
.event-date-block .year { font-size: .65rem; color: var(--light); }
.event-info h3 { font-size: 1rem; color: var(--navy); margin-bottom: .2rem; }
.event-info .event-loc { font-size: .82rem; color: var(--orange); font-weight: 600; }
.event-info .event-time { font-size: .78rem; color: var(--slate); margin-top: .15rem; }
.event-info .event-desc { font-size: .85rem; color: #555; margin-top: .3rem; }
.free-tag { display: inline-block; background: var(--orange); color: #fff;
  font-size: .68rem; font-weight: 700; padding: .15rem .45rem; border-radius: 3px;
  vertical-align: middle; margin-left: .4rem; }
.calendar-embed iframe { width: 100%; height: 600px; border: none; display: block;
  border-radius: var(--radius); }

/* ── Team grid ───────────────────────────────────────────── */
.team-grid { display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.team-card { text-align: center; }
.team-photo { width: 130px; height: 130px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 1rem; border: 3px solid var(--orange); }
.team-photo-placeholder { width: 130px; height: 130px; border-radius: 50%;
  background: var(--navy-mid); margin: 0 auto 1rem; border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--light); font-size: 2.5rem; }
.team-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); }
.team-role { font-size: .75rem; color: var(--orange); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: .5rem; }
.team-bio-toggle { display: inline-flex; align-items: center; gap: .35rem;
  background: none; border: 1.5px solid var(--orange); color: var(--orange);
  border-radius: 20px; padding: .3rem .85rem; font-size: .73rem; font-weight: 700;
  letter-spacing: .5px; cursor: pointer; margin-top: .35rem;
  transition: background .2s, color .2s; }
.team-bio-toggle:hover { background: var(--orange); color: #fff; }
.toggle-icon { font-size: .65rem; transition: transform .28s ease; }
.team-card.bio-open .toggle-icon { transform: rotate(180deg); }
.team-bio-wrap { max-height: 0; overflow: hidden;
  transition: max-height .38s ease; }
.team-card.bio-open .team-bio-wrap { max-height: 600px; }
.team-bio { font-size: .82rem; color: var(--slate); line-height: 1.7;
  margin-top: .75rem; text-align: left; }

/* ── Location ─────────────────────────────────────────────── */
.location-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: start; margin-bottom: 3.5rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid #e8e8e8; }
.location-row:last-child { border-bottom: none; }
.location-info h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: .4rem; }
.location-address { color: var(--slate); margin-bottom: 1rem; font-size: .9rem; }
.location-hours { font-size: .875rem; white-space: pre-line; color: #444;
  line-height: 1.8; margin-bottom: 1rem; }
.location-map iframe { width: 100%; height: 300px; border: none;
  border-radius: var(--radius); display: block; }

/* ── Inventory badges ─────────────────────────────────────── */
.badge { display: inline-block; padding: .2rem .6rem; border-radius: 20px;
  font-size: .72rem; font-weight: 600; }
.badge-new         { background: #cce5ff; color: #004085; }
.badge-refurbished { background: #fff3cd; color: #856404; }
.badge-used        { background: #e2e3e5; color: #383d41; }
.badge-parts       { background: #f8d7da; color: #721c24; }

/* ── Volunteer ────────────────────────────────────────────── */
.volunteer-grid { display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.volunteer-card { background: #fff; border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow); border-top: 4px solid var(--orange); }
.volunteer-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.volunteer-commitment { font-size: .78rem; color: var(--orange); font-weight: 600;
  margin-bottom: .75rem; }
.volunteer-desc { font-size: .875rem; color: #555; margin-bottom: 1rem; line-height: 1.7; }

/* ── Sponsor — Presenting feature cards ───────────────────── */
.sponsor-feature-grid { display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.75rem; }
.sponsor-feature-card { border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid #eee;
  transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; }
.sponsor-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sponsor-feature-logo-wrap { background: var(--navy); display: flex;
  align-items: center; justify-content: center; height: 160px; padding: 2rem; }
.sponsor-feature-logo { max-height: 90px; max-width: 200px; object-fit: contain;
  filter: brightness(0) invert(1); transition: transform .25s; }
.sponsor-feature-card:hover .sponsor-feature-logo { transform: scale(1.06); }
.sponsor-feature-name-text { font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 800; color: #fff; }
.sponsor-feature-body { padding: 1.5rem; flex: 1; display: flex;
  flex-direction: column; gap: .75rem; }
.sponsor-feature-title { font-family: var(--font-head); font-size: 1rem;
  font-weight: 700; color: var(--navy); margin: 0; }
.sponsor-feature-desc { font-size: .85rem; color: #555; line-height: 1.7;
  flex: 1; margin: 0; }

/* ── Sponsor — Dark logo grid sections ────────────────────── */
.sponsor-dark-section { background: var(--navy); }
.sponsor-dark-section--deeper { background: var(--navy-dark); }
.sponsor-dark-section + .sponsor-dark-section,
.sponsor-dark-section--deeper + .sponsor-dark-section {
  border-top: 1px solid rgba(255,255,255,.07); }
.sponsor-logo-grid { display: grid; gap: 1.25rem; }
.sponsor-logo-grid--gold    { grid-template-columns: repeat(3,1fr); }
.sponsor-logo-grid--silver  { grid-template-columns: repeat(4,1fr); }
.sponsor-logo-grid--community { grid-template-columns: repeat(3,1fr); }
.sponsor-logo-card { display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .75rem; padding: 2rem 1.5rem;
  border-radius: var(--radius); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); text-decoration: none;
  transition: background .22s, border-color .22s, transform .22s; min-height: 140px; }
.sponsor-logo-card:hover { background: rgba(255,255,255,.12);
  border-color: var(--orange); transform: translateY(-3px); }
.sponsor-logo-card--light { background: #f5f7fa; border: 1px solid #e8e8e8; }
.sponsor-logo-card--light:hover { background: #fff; border-color: var(--orange); }
.sponsor-logo-img { max-height: 64px; max-width: 160px; object-fit: contain;
  transition: transform .22s; }
.sponsor-logo-card:hover .sponsor-logo-img { transform: scale(1.07); }
.sponsor-logo-label { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.55);
  text-align: center; letter-spacing: .5px; line-height: 1.3; }
.sponsor-logo-card--light .sponsor-logo-label { color: var(--slate); }

/* ── Press (inner page) ───────────────────────────────────── */
.press-list-inner { display: flex; flex-direction: column; gap: 1.5rem; }
.press-item-inner { padding: 1.5rem; background: var(--off-white); border-radius: var(--radius);
  border-left: 4px solid var(--orange); }
.press-outlet { font-size: .72rem; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1px; }
.press-title-inner { font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  margin: .25rem 0; color: var(--navy); }
.press-date-inner { font-size: .78rem; color: var(--slate); margin-bottom: .5rem; }
.press-excerpt-inner { font-size: .875rem; color: #555; line-height: 1.7; }

/* ── Affiliates ───────────────────────────────────────────── */
.affiliate-grid { display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.affiliate-card { text-align: center; padding: 1.5rem; border-radius: var(--radius);
  background: var(--off-white); transition: box-shadow .2s; }
.affiliate-card:hover { box-shadow: var(--shadow); }
.affiliate-logo { max-height: 65px; margin: 0 auto .75rem; object-fit: contain; }
.affiliate-name { font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: .25rem; }
.affiliate-desc { font-size: .8rem; color: var(--slate); }

/* ── Contact form ─────────────────────────────────────────── */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: .85rem;
  margin-bottom: .35rem; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid #ddd;
  border-radius: var(--radius); font-family: var(--font-body); font-size: .9rem;
  color: var(--text); background: #fff; transition: border-color .2s, box-shadow .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(254,145,77,.15); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--navy-dark); color: var(--white); padding: 3.5rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { height: 70px; width: auto; object-fit: contain; }
.footer-contact-list { display: flex; flex-direction: column; gap: .65rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .6rem;
  font-size: .875rem; color: var(--light); }
.footer-contact-list i { color: var(--orange); margin-top: .2rem; font-size: .85rem; flex-shrink: 0; }
.footer-contact-list a { color: var(--light); transition: color .2s; }
.footer-contact-list a:hover { color: var(--orange); }
.footer-social { display: flex; gap: .75rem; align-items: flex-start; }
.social-icon { width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; color: var(--light); font-size: .9rem;
  transition: all .2s; border: 1px solid rgba(255,255,255,.1); }
.social-icon:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.2rem 0; text-align: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ── Stats strip ──────────────────────────────────────────── */
.stats-strip { background: var(--orange); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; }
.stat-cell { text-align: center; padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,.2); }
.stat-cell:last-child { border-right: none; }
.stat-number { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800;
  color: #fff; line-height: 1; }
.stat-label { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.8);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: .3rem; }

/* ── About page ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.about-block { padding: 2.5rem; border-radius: var(--radius); }
.about-block-dark { background: var(--navy); color: var(--white); }
.about-body { font-size: .975rem; line-height: 1.85; color: #444; margin-bottom: 1rem; }
.about-body:last-child { margin-bottom: 0; }

/* ── Affiliates list ──────────────────────────────────────── */
.affiliate-list { display: flex; flex-direction: column; gap: 0; }
.affiliate-row { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem;
  align-items: center; padding: 2.5rem 0; border-bottom: 1px solid #eee; }
.affiliate-row:last-child { border-bottom: none; }
.affiliate-row-img img { width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--radius); }
.affiliate-row-name { font-family: var(--font-head); font-size: 1.3rem; color: var(--navy);
  margin-bottom: .75rem; }
.affiliate-row-desc { font-size: .9rem; color: #555; line-height: 1.75;
  margin-bottom: 1.25rem; }

/* ── Sponsors detail ──────────────────────────────────────── */
.sponsors-detail-list { display: flex; flex-direction: column; gap: 0;
  margin-bottom: 3rem; }
.sponsor-detail-row { padding: 1.5rem 0; border-bottom: 1px solid #eee; }
.sponsor-detail-row:last-child { border-bottom: none; }
.sponsor-detail-name { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy);
  margin-bottom: .4rem; }
.sponsor-detail-desc { font-size: .875rem; color: #555; line-height: 1.7; margin-bottom: 1rem; }
.sponsor-name-only { font-size: 1rem; font-weight: 700; color: var(--navy); }
.sponsor-cta-box { background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 2.5rem; display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-top: 3rem; }
.sponsor-cta-box h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.sponsor-cta-box p { color: var(--light); font-size: .9rem; max-width: 540px; }

/* ── Volunteer page ───────────────────────────────────────── */
.volunteer-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start; }
.volunteer-map-wrap { position: relative; }
.volunteer-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start; }

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info-col { padding-top: .25rem; }
.contact-location-card { background: var(--off-white); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; margin-bottom: 1rem;
  border-left: 4px solid var(--orange); }
.contact-location-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: .6rem;
  display: flex; align-items: center; gap: .5rem; }
.contact-location-card p { font-size: .85rem; color: #555; margin-bottom: .35rem;
  display: flex; align-items: flex-start; gap: .5rem; }
.contact-location-card i { color: var(--orange); margin-top: .1rem; font-size: .8rem; flex-shrink: 0; }
.contact-location-card a { color: var(--orange); font-weight: 600; }
.location-badge { background: var(--orange); color: #fff; font-size: .65rem;
  font-weight: 700; padding: .15rem .45rem; border-radius: 3px;
  text-transform: uppercase; letter-spacing: .5px; font-family: var(--font-body); }

/* ── Programs page ───────────────────────────────────────── */
.programs-list { display: flex; flex-direction: column; gap: 0; }
.program-row { display: grid; grid-template-columns: 96px 1fr; gap: 2rem;
  align-items: start; padding: 2.5rem 0; border-bottom: 1px solid #eee; }
.program-row:last-child { border-bottom: none; }
.program-icon-wrap { width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.6rem; flex-shrink: 0; }
.program-body h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .65rem; }
.program-body p { font-size: .9rem; color: #444; line-height: 1.75; margin-bottom: .6rem; }
.program-partners-note { font-size: .83rem !important; color: var(--slate) !important; }
.program-tag-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.program-tag { background: rgba(254,145,77,.12); color: var(--orange);
  font-size: .7rem; font-weight: 700; padding: .25rem .65rem;
  border-radius: 20px; letter-spacing: .4px; }

/* ── Donate page ──────────────────────────────────────────── */
.donate-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.donate-card { background: #fff; border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow); border-top: 4px solid #eee; }
.donate-card--primary { border-top-color: var(--orange); }
.donate-card-icon { font-size: 2.5rem; color: var(--navy); margin-bottom: 1rem; }
.donate-card-icon--orange { color: var(--orange); }
.donate-card h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: .75rem; }
.donate-card p { font-size: .9rem; color: #444; line-height: 1.75; margin-bottom: 1rem; }
.donate-impact-list { list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: flex; flex-direction: column; gap: .6rem; }
.donate-impact-list li { font-size: .875rem; color: #444; display: flex;
  align-items: flex-start; gap: .6rem; }
.donate-impact-list i { color: var(--orange); margin-top: .1rem; flex-shrink: 0; }
.donate-tax-note { font-size: .78rem !important; color: var(--slate) !important;
  display: flex; align-items: flex-start; gap: .4rem; margin-bottom: 1.5rem !important; }
.donate-tax-note i { color: var(--orange); margin-top: .15rem; }
.donate-location-list { list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: 0; }
.donate-location-list li { display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; border-bottom: 1px solid #f0f0f0; font-size: .85rem; }
.donate-location-list li:last-child { border-bottom: none; }
.donate-location-list strong { color: var(--navy); }
.donate-location-list span { color: var(--slate); font-size: .8rem; }
.donate-btn { margin-top: .5rem; display: inline-block; }
.other-ways-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.other-way-card { background: #fff; border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: .65rem; }
.other-way-card i { font-size: 1.75rem; color: var(--orange); }
.other-way-card h4 { font-family: var(--font-head); font-size: 1rem; color: var(--navy); margin: 0; }
.other-way-card p { font-size: .875rem; color: #555; line-height: 1.7; margin: 0; }

/* ── Calendar layout ──────────────────────────────────────── */
.cal-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.cal-month-wrap { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.cal-header { display: flex; align-items: center; justify-content: space-between;
  background: var(--navy); color: #fff; padding: 1rem 1.25rem; }
.cal-month-label { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; }
.cal-nav { display: flex; gap: .4rem; }
.cal-nav-btn { background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 6px; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .18s; }
.cal-nav-btn:hover { background: var(--orange); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr);
  border-left: 1px solid #eee; border-top: 1px solid #eee; }
.cal-day-head { text-align: center; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px; color: var(--slate);
  padding: .6rem 0; background: #fafafa;
  border-right: 1px solid #eee; border-bottom: 1px solid #eee; }
.cal-cell { min-height: 72px; padding: .4rem .5rem; position: relative;
  border-right: 1px solid #eee; border-bottom: 1px solid #eee;
  transition: background .15s; }
.cal-cell--empty { background: #fafafa; }
.cal-cell--today { background: rgba(254,145,77,.08); }
.cal-cell--today .cal-day-num { background: var(--orange); color: #fff;
  border-radius: 50%; width: 24px; height: 24px; display: inline-flex;
  align-items: center; justify-content: center; font-weight: 700; }
.cal-cell--event { background: rgba(5,30,69,.04); }
.cal-day-num { font-size: .82rem; font-weight: 600; color: var(--navy); }
.cal-event-dot { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange); display: block; }
.cal-sidebar { position: sticky; top: 1rem; }

/* ── Press media contact ──────────────────────────────────── */
.press-media-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start; padding: 2.5rem; background: var(--off-white);
  border-radius: var(--radius); }
.press-media-assets { padding: 2rem; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); }
.press-facts-list { list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .6rem; }
.press-facts-list li { font-size: .875rem; color: #555; line-height: 1.6;
  padding-bottom: .6rem; border-bottom: 1px solid #f0f0f0; }
.press-facts-list li:last-child { border-bottom: none; padding-bottom: 0; }
.press-facts-list strong { color: var(--navy); font-weight: 700; }

/* ── Events giveaway banner ───────────────────────────────── */
.events-giveaway-banner { background: var(--navy); padding: 4rem 0; }
.events-giveaway-inner { display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap; }
.events-giveaway-banner h2 { color: var(--white); }
.event-list-wrap { margin-bottom: 1rem; }

/* ── Dividers / utilities ─────────────────────────────────── */
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-light  { color: var(--light); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .help-grid { grid-template-columns: 1fr; }
  .help-card img { height: 320px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .press-media-contact { grid-template-columns: 1fr; }
  .sponsor-feature-grid { grid-template-columns: 1fr; }
  .sponsor-logo-grid--gold { grid-template-columns: repeat(2,1fr); }
  .sponsor-logo-grid--silver { grid-template-columns: repeat(2,1fr); }
  .sponsor-logo-grid--community { grid-template-columns: repeat(2,1fr); }
  .donate-split { grid-template-columns: 1fr; }
  .other-ways-grid { grid-template-columns: 1fr; }
  .cal-layout { grid-template-columns: 1fr; }
  .program-row { grid-template-columns: 1fr; }
  .program-icon-col { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .location-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .affiliate-row { grid-template-columns: 1fr; }
  .volunteer-intro-grid { grid-template-columns: 1fr; }
  .volunteer-form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .events-giveaway-inner { flex-direction: column; }
}

@media (max-width: 640px) {
  .topbar-tagline { display: none; }
  .topbar-actions { gap: .3rem; }
  .topbar-btn { font-size: .68rem; padding: .25rem .6rem; }
  .nav-toggle { display: flex; }
  .nav-links { display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--navy);
    padding: .75rem 1.5rem 1rem; gap: .15rem;
    box-shadow: 0 12px 30px rgba(0,0,0,.35); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .6rem .75rem; border-radius: var(--radius); }
  .navbar { position: relative; }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { padding: 3rem 0 2rem; }
  .section { padding: 3.5rem 0; }
}

/* ── Language Switcher ────────────────────────────────────── */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: var(--white); font-size: .72rem; font-family: inherit;
  padding: .28rem .65rem; border-radius: var(--radius); cursor: pointer;
  transition: background .2s;
}
.lang-btn:hover { background: rgba(255,255,255,.22); }
.lang-caret { font-size: .55rem; transition: transform .2s; }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--navy); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); min-width: 148px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35); z-index: 999; list-style: none;
  padding: .4rem 0; margin: 0;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: block; padding: .45rem 1rem; color: rgba(255,255,255,.85);
  font-size: .78rem; white-space: nowrap; text-decoration: none;
  transition: background .15s, color .15s;
}
.lang-option:hover { background: rgba(255,255,255,.1); color: var(--white); }
.lang-option.active { color: var(--orange); font-weight: 600; }

/* ── Impact Report Page ───────────────────────────────────── */
.impact-pop-list { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
.impact-pop-item { display: flex; align-items: center; gap: .75rem;
  color: var(--light); font-size: .9rem; }
.impact-pop-item i { width: 1.2rem; text-align: center; flex-shrink: 0; }

.impact-program-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2rem; }
.impact-prog-card { background: #fff; border-radius: var(--radius);
  padding: 1.75rem 1.5rem; box-shadow: var(--shadow);
  border-top: 4px solid var(--orange); }
.impact-prog-icon { width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; }
.impact-prog-icon i { color: var(--orange); font-size: 1.1rem; }
.impact-prog-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .75rem; }
.impact-prog-list { list-style: none; padding: 0; margin: 0; }
.impact-prog-list li { font-size: .85rem; color: var(--slate); padding: .3rem 0;
  border-bottom: 1px solid var(--off-white); line-height: 1.5; }
.impact-prog-list li:last-child { border-bottom: none; }

.impact-include-row { display: flex; align-items: center; gap: .75rem; }

.impact-funding-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 2rem; }
.impact-pie-visual { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.impact-pie-bar { height: 2.5rem; border-radius: 4px; display: flex; align-items: center;
  padding: 0 1rem; width: var(--pct); min-width: 40%; }
.impact-pie-label { color: #fff; font-size: .78rem; font-weight: 700; white-space: nowrap; }

.impact-partner-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2rem; }
.impact-partner-card { background: var(--off-white); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.impact-partner-name { font-family: var(--font-head); font-size: 1rem;
  color: var(--navy); font-weight: 700; }
.impact-partner-card p { font-size: .875rem; color: var(--slate); flex: 1; }

.impact-thankyou-quote { color: var(--light); line-height: 1.85;
  display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; font-size: .975rem; }

.sponsor-strip-wrap { display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; align-items: center; margin-top: 1rem; }

@media (max-width: 900px) {
  .impact-program-grid { grid-template-columns: repeat(2,1fr); }
  .impact-partner-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner[style*="repeat(6"] { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 640px) {
  .impact-program-grid { grid-template-columns: 1fr; }
  .impact-partner-grid { grid-template-columns: 1fr; }
  .stats-inner[style*="repeat(6"] { grid-template-columns: repeat(2,1fr); }
  section .container > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .impact-pie-bar { width: 100% !important; }
}
