/* ============================================================
   Run4OfficeWR — Design System
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #0D1B4B;
  --navy-dark:  #080f2e;
  --navy-mid:   #162260;
  --gold:       #F5C518;
  --gold-dark:  #d4a800;
  --gold-light: #fff3b0;
  --white:      #ffffff;
  --off-white:  #F8F9FC;
  --gray-100:   #f1f3f8;
  --gray-200:   #e2e6f0;
  --gray-400:   #9aa3bf;
  --gray-600:   #5a637d;
  --gray-800:   #2c3350;
  --text:       #1a2038;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 4px rgba(13,27,75,.08);
  --shadow:     0 4px 20px rgba(13,27,75,.12);
  --shadow-lg:  0 12px 48px rgba(13,27,75,.18);
  --transition: .2s ease;
  --max-width:  1200px;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
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); border: none; background: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { line-height: 1.75; color: var(--gray-600); }
.lead { font-size: 1.15rem; line-height: 1.8; }

/* ── Layout Utilities ───────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }
.text-navy   { color: var(--navy) !important; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1  { gap: 8px; }
.gap-2  { gap: 16px; }
.gap-3  { gap: 24px; }
.gap-4  { gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,.35);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ── Section Labels ─────────────────────────────────────────── */
.section-label {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label-white {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 28px; }
.card-img { width: 100%; height: 220px; object-fit: cover; }

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--gray-100);
  color: var(--navy);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-200);
  gap: 4px;
}
.nav-mobile a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--gray-800);
  transition: background var(--transition);
}
.nav-mobile a:hover { background: var(--gray-100); }
.nav-mobile .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3a8f 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.3);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero .lead { color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.6); }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.hero-img-main {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(245,197,24,.3);
}
.hero-img-placeholder {
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(245,197,24,.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
}
.hero-img-placeholder svg { opacity: .4; }
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.hero-badge-text strong { display: block; font-size: .9rem; color: var(--navy); }
.hero-badge-text span { font-size: .75rem; color: var(--gray-400); }

/* ── Marquee/Trust bar ──────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 500;
  flex-shrink: 0;
}
.trust-bar-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Mission ────────────────────────────────────────────────── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-img {
  position: relative;
}
.mission-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.mission-img-placeholder {
  width: 100%;
  height: 440px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: .85rem;
}
.mission-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
.mission-accent span { display: block; font-size: .75rem; font-weight: 500; opacity: .7; }
.mission-content h2 { color: var(--navy); margin-bottom: 20px; }
.mission-content p  { margin-bottom: 20px; }
.check-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--gray-800);
}
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: .7rem;
}

/* ── Pillars / What We Do ───────────────────────────────────── */
.pillars { background: var(--off-white); }
.pillars-header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-bottom: 4px solid transparent;
}
.pillar-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-bottom-color: var(--gold);
}
.pillar-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.pillar-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.2rem; }

/* ── Project 3000 Feature ───────────────────────────────────── */
.p3000 {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.p3000::after {
  content: '3000';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 280px;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
}
.p3000-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.p3000-content h2 { color: var(--white); margin-bottom: 20px; }
.p3000-content h2 span { color: var(--gold); }
.p3000-content p  { color: rgba(255,255,255,.75); margin-bottom: 20px; }
.p3000-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.p3000-metric {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
}
.p3000-metric-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.p3000-metric-label { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.p3000-visual {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
  padding: 40px;
}
.p3000-steps { display: flex; flex-direction: column; gap: 20px; }
.p3000-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.p3000-step-num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}
.p3000-step-text strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.p3000-step-text span { font-size: .82rem; color: rgba(255,255,255,.55); }

/* ── Team ───────────────────────────────────────────────────── */
.team { background: var(--off-white); }
.team-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}
.team-img-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.team-body { padding: 24px; }
.team-body h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 4px; }
.team-role {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 8px;
}

/* ── Events ─────────────────────────────────────────────────── */
.events-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
  border-left: 4px solid transparent;
}
.event-card:hover { box-shadow: var(--shadow); border-left-color: var(--gold); }
.event-date-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}
.event-date-box .month { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.event-date-box .day   { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.event-info h4 { color: var(--navy); margin-bottom: 6px; }
.event-meta { font-size: .8rem; color: var(--gray-400); display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.event-meta span { display: flex; align-items: center; gap: 4px; }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* ── News ───────────────────────────────────────────────────── */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-img { width: 100%; height: 200px; object-fit: cover; }
.news-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.news-body { padding: 24px; }
.news-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  display: block;
}
.news-body h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.news-date { font-size: .78rem; color: var(--gray-400); margin-top: 12px; }
.news-read { display: inline-flex; align-items: center; gap: 4px; color: var(--navy); font-weight: 600; font-size: .85rem; margin-top: 12px; transition: gap var(--transition); }
.news-read:hover { gap: 8px; }

/* ── Quotes ─────────────────────────────────────────────────── */
.quotes { background: var(--navy); color: var(--white); padding: 80px 0; }
.quotes-header { text-align: center; margin-bottom: 48px; }
.quotes-header h2 { color: var(--white); }
.quote-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.quote-mark {
  font-size: 4rem;
  color: var(--gold);
  line-height: .5;
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: .6;
}
.quote-text { font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.quote-author strong { display: block; color: var(--gold); font-size: .9rem; }
.quote-author span   { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--gold);
  padding: 60px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--navy); }
.cta-banner p  { color: rgba(13,27,75,.7); margin-top: 8px; }

/* ── Resources page ─────────────────────────────────────────── */
.resources-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); padding: 80px 0; text-align: center; }
.resources-hero h1 { color: var(--white); margin-bottom: 16px; }
.gov-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.gov-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}
.gov-tab:hover, .gov-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.resource-section { padding: 60px 0; border-bottom: 1px solid var(--gray-200); }
.resource-section:last-of-type { border-bottom: none; }
.resource-section h2 { color: var(--navy); margin-bottom: 16px; }
.responsibility-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin: 24px 0; }
.responsibility-tag {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
}
.municipality-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.municipality-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.municipality-card h4 { color: var(--navy); margin-bottom: 8px; }
.municipality-card p  { font-size: .85rem; }

/* ── Contact page ───────────────────────────────────────────── */
.contact-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); padding: 80px 0; text-align: center; }
.form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: .85rem;
}
.radio-option:has(input:checked) { border-color: var(--navy); background: var(--off-white); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy);
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: .85rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .85rem; padding: 4px 0; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0 64px;
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ── About page ─────────────────────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.about-stat {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.about-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.about-stat-num span { color: var(--gold); }
.about-stat p { font-size: .85rem; margin-top: 8px; }
.helpful-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.helpful-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: var(--navy);
  font-weight: 500;
  transition: all var(--transition);
}
.helpful-link:hover { border-color: var(--gold); background: var(--gold-light); }

/* ── Donate Banner ──────────────────────────────────────────── */
.donate-banner {
  background: linear-gradient(90deg, var(--gold) 0%, #ffdb4a 100%);
  padding: 20px 0;
  text-align: center;
}
.donate-banner p { color: var(--navy); font-weight: 600; font-size: .9rem; }
.donate-banner a { color: var(--navy); text-decoration: underline; font-weight: 700; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner   { grid-template-columns: 1fr; }
  .hero-visual  { display: none; }
  .hero         { padding: 80px 0; }
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .p3000-inner  { grid-template-columns: 1fr; gap: 48px; }
  .p3000::after { display: none; }
}

@media (max-width: 768px) {
  .section    { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .p3000-metrics { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .hero-stats  { flex-direction: column; gap: 16px; }
  .helpful-links-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
  .mission-accent { position: static; display: inline-block; margin-top: 20px; }
  .events-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .btn-lg { padding: 14px 24px; font-size: .95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }

/* ── Accessibility ──────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
