/* Community Staffing Partners — Premium Static Site */
:root {
  --navy: #0f2740;
  --navy-mid: #1a3a5c;
  --teal: #1a8a8a;
  --teal-light: #2aa8a8;
  --gold: #c9a227;
  --gold-light: #e0bc4a;
  --slate: #334155;
  --slate-light: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow: 0 4px 24px rgba(15, 39, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 39, 64, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--slate);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Announcement ── */
.announcement {
  background: linear-gradient(90deg, var(--navy), var(--navy-mid), #0f6b6b);
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
}
.announcement a { color: #fff; text-decoration: none; }
.announcement a:hover { text-decoration: underline; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,39,64,0.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  gap: 1rem;
}
.logo { height: 3.25rem; width: auto; }
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
  padding: 0.25rem;
}
.nav-desktop { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: var(--slate-light);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { background: rgba(26,138,138,0.1); color: var(--teal); }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
  border-top: 1px solid #f1f5f9;
  background: var(--white);
}
.nav-mobile.open { display: flex; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: #158080; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--teal); color: var(--teal); background: transparent; }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 2px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }

/* ── Typography ── */
.eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.text-gradient {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy-mid); }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--navy-mid); font-weight: 800; line-height: 1.2; }
.section-head p { color: var(--slate-light); margin-top: 1rem; font-size: 1.05rem; }

/* ── Hero (inner pages) ── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.page-hero.tall { min-height: 70vh; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,39,64,0.92), rgba(26,58,92,0.85), rgba(15,107,107,0.75));
}
.page-hero-content { position: relative; z-index: 1; padding: 5rem 0; max-width: 40rem; }
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201,162,39,0.35);
  background: rgba(201,162,39,0.12);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 1rem 0;
}
.page-hero-lead { font-size: 1.125rem; color: #cbd5e1; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ── Home Hero Premium ── */
.hero-premium {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-premium-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-premium-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
  padding: 6rem 0 4rem;
}
@media (min-width: 1024px) {
  .hero-premium-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.hero-collage img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.hero-collage .main { grid-row: span 2; aspect-ratio: 3/4; }
.hero-collage .sub { aspect-ratio: 4/3; }
.hero-collage .sub2 { aspect-ratio: 4/3; margin-top: -2rem; }

/* ── Stats ── */
.stats-section { margin-top: -4rem; position: relative; z-index: 10; padding-bottom: 1rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat-card {
  background: var(--navy-mid);
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
}
.stat-card strong {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
}
.stat-card span { font-size: 0.8rem; color: #94a3b8; margin-top: 0.25rem; display: block; }

/* ── Marquee ── */
.marquee-wrap {
  background: var(--navy);
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-track span::before { content: '◆'; color: var(--gold); margin-right: 1rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.bg-light { background: var(--bg); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy .section-head h2 { color: #fff; }
.bg-navy .section-head p { color: #94a3b8; }

/* ── Cards ── */
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 2rem; }
.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.align-center { align-items: center; }

.audience-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.audience-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.audience-card-body { padding: 2rem; }
.audience-card h3 { color: var(--navy-mid); font-size: 1.35rem; margin-bottom: 0.75rem; }
.audience-card p { color: var(--slate-light); margin-bottom: 1.5rem; font-size: 0.95rem; }

/* ── Bento Programs ── */
.bento-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(12, 1fr);
}
.bento-card {
  grid-column: span 12;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  position: relative;
}
.bento-card:hover { transform: translateY(-3px); }
.bento-card img { width: 100%; object-fit: cover; }
.bento-card-body { padding: 1.5rem 2rem 2rem; }
.bento-card h3 { color: var(--navy-mid); font-size: 1.15rem; margin-bottom: 0.5rem; }
.bento-card p { color: var(--slate-light); font-size: 0.9rem; }
.bento-card .icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(26,138,138,0.1);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .bento-card:nth-child(1) { grid-column: span 7; }
  .bento-card:nth-child(1) img { aspect-ratio: 16/9; }
  .bento-card:nth-child(2) { grid-column: span 5; }
  .bento-card:nth-child(2) img { aspect-ratio: 4/3; }
  .bento-card:nth-child(3) { grid-column: span 4; }
  .bento-card:nth-child(3) img { aspect-ratio: 4/3; }
  .bento-card:nth-child(4) { grid-column: span 4; }
  .bento-card:nth-child(4) img { aspect-ratio: 4/3; }
  .bento-card:nth-child(5) { grid-column: span 4; }
  .bento-card:nth-child(5) img { aspect-ratio: 4/3; }
  .bento-card:nth-child(6) { grid-column: span 12; display: grid; grid-template-columns: 1fr 1fr; }
  .bento-card:nth-child(6) img { aspect-ratio: 16/9; height: 100%; }
}

/* ── Split Section ── */
.split-section { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .split-section { grid-template-columns: 1fr 1fr; } }
.split-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ── Values ── */
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: rgba(26,138,138,0.3); }
.value-icon {
  width: 3rem; height: 3rem;
  background: rgba(26,138,138,0.1);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.value-card h3 { color: var(--navy-mid); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--slate-light); }

/* ── Team ── */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top center; }
.team-card-body { padding: 1.5rem; }
.team-card h3 { color: var(--navy-mid); font-size: 1.1rem; }
.team-card .role { color: var(--teal); font-size: 0.85rem; font-weight: 600; margin-top: 0.25rem; }

/* ── Gallery Masonry ── */
.gallery-masonry {
  columns: 1;
  column-gap: 1rem;
}
@media (min-width: 640px) { .gallery-masonry { columns: 2; } }
@media (min-width: 1024px) { .gallery-masonry { columns: 3; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
  border: none;
  padding: 0;
  background: none;
  width: 100%;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(15,39,64,0.9));
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
}
.gallery-item .cat-badge {
  display: inline-block;
  background: rgba(26,138,138,0.8);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  margin-bottom: 0.35rem;
}

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 2px solid #e2e8f0;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--slate-light);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: #fff;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,39,64,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: #fff; font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-caption { position: absolute; bottom: 2rem; color: #fff; font-weight: 600; text-align: center; width: 100%; }

/* ── Testimonials ── */
.testimonial-slider { position: relative; max-width: 48rem; margin: 0 auto; }
.testimonial-track { overflow: hidden; }
.testimonial-slides { display: flex; transition: transform 0.5s ease; }
.testimonial-slide {
  min-width: 100%;
  padding: 2rem;
  text-align: center;
}
.testimonial-slide blockquote {
  font-size: 1.2rem;
  color: var(--navy-mid);
  font-weight: 500;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-slide cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.9rem;
}
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.testimonial-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.testimonial-dot.active { background: var(--teal); width: 1.5rem; border-radius: 999px; }

/* ── Blog ── */
.blog-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card-body { padding: 1.75rem; }
.badge {
  display: inline-block;
  background: rgba(26,138,138,0.1);
  color: var(--teal);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card h3 { margin: 0.75rem 0; font-size: 1.15rem; }
.blog-card h3 a { text-decoration: none; color: var(--navy-mid); }
.blog-card h3 a:hover { color: var(--teal); }
.blog-card .date { color: var(--slate-light); font-size: 0.85rem; }
.blog-card .read-more { color: var(--teal); font-weight: 600; font-size: 0.9rem; text-decoration: none; margin-top: 1rem; display: inline-block; }

/* ── Prose (blog posts) ── */
.prose { max-width: 48rem; margin: 0 auto; }
.prose h2 { color: var(--navy-mid); margin: 2rem 0 1rem; font-size: 1.5rem; }
.prose p { margin-bottom: 1.25rem; line-height: 1.8; color: var(--slate); }
.prose a { color: var(--teal); }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--teal); font-weight: 600; text-decoration: none; margin-bottom: 2rem; }

/* ── Forms ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-card h2, .form-card h3 { color: var(--navy-mid); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--navy-mid); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font: inherit;
  color: var(--slate);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  text-align: center;
  padding: 3rem;
}
.form-success .icon { font-size: 3rem; margin-bottom: 1rem; }

/* ── Donate ── */
.donate-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .donate-tiers { grid-template-columns: repeat(4, 1fr); } }
.tier {
  padding: 1.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  background: var(--white);
}
.tier:hover, .tier.selected { border-color: var(--teal); background: rgba(26,138,138,0.06); }
.tier strong { display: block; font-size: 1.5rem; color: var(--teal); }
.tier span { font-size: 0.8rem; color: var(--slate-light); }
.impact-list { margin: 1.5rem 0; }
.impact-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
}
.impact-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── Info Card ── */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.info-card h3 { color: var(--navy-mid); margin-bottom: 1rem; font-size: 1.1rem; }
.info-row { display: flex; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid #f1f5f9; font-size: 0.95rem; }
.info-row:last-child { border: none; }
.info-row .label { font-weight: 600; color: var(--navy-mid); min-width: 5rem; }
.info-row a { color: var(--teal); text-decoration: none; }
.map-frame {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 1rem;
}

/* ── Tax Box ── */
.tax-box {
  background: var(--bg);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
}
.tax-box strong { color: var(--navy-mid); display: block; margin-bottom: 0.5rem; }
.tax-box p { font-size: 0.9rem; color: var(--slate-light); margin-bottom: 0.25rem; }

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,39,64,0.95), rgba(26,58,92,0.9));
}
.cta-banner-content { position: relative; z-index: 1; max-width: 36rem; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.cta-banner p { color: #cbd5e1; margin-bottom: 2rem; font-size: 1.05rem; }

/* ── Newsletter ── */
.newsletter-box {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #fff;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .newsletter-box { grid-template-columns: 1fr 1fr; } }
.newsletter-form { display: flex; gap: 0.75rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font: inherit;
}
.newsletter-form button { flex-shrink: 0; }

/* ── Wave Divider ── */
.wave-divider { line-height: 0; margin-top: -1px; }
.wave-divider svg { width: 100%; height: 60px; }

/* ── Timeline (Impact) ── */
.timeline { max-width: 48rem; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 2.4rem;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}
.timeline-item:last-child::before { display: none; }
.timeline-year {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal);
  text-align: right;
}
.timeline-content h3 { color: var(--navy-mid); margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.95rem; color: var(--slate-light); }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-logo-wrap {
  display: inline-block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.footer-logo { height: 2.75rem; width: auto; }
.footer-tagline { color: var(--gold); font-weight: 700; letter-spacing: 0.1em; font-size: 0.8rem; margin-bottom: 0.75rem; }
.footer-mission { font-size: 0.9rem; line-height: 1.7; max-width: 20rem; }
.site-footer h4 {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: color var(--transition); }
.site-footer a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
}

/* ── Legal ── */
.legal-content { max-width: 48rem; margin: 0 auto; }
.legal-content h2 { color: var(--navy-mid); font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.legal-content p, .legal-content li { line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Utilities ── */
.center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .menu-btn { display: block; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero-premium { min-height: auto; }
  .hero-collage .sub2 { margin-top: 0; }
  .donate-tiers { grid-template-columns: 1fr 1fr; }
  .bento-card:nth-child(6) { display: block; }
}
