/* ==========================================================================
   #PROJECTHOPE Design Tokens
   ========================================================================== */
:root {
  /* Color: masculine lighter blue + brand gold, accessible on white */
  --blue: #2F6FBF;
  --blue-hover: #255B9E;
  --blue-light: #5C93D6;
  --navy: #12233F;
  --navy-2: #1B3A63;
  --blue-tint: #EAF3FD;
  --blue-tint-soft: #F5F9FE;
  --yellow: #FFD700;
  --yellow-dark: #E6C200;
  --ink: #15233A;
  --muted: #55677E;
  --white: #FFFFFF;
  --border: #DCE7F5;
  --success: #1E8E5A;
  --danger: #C63333;

  --shadow-sm: 0 2px 10px rgba(18, 35, 63, 0.07);
  --shadow-md: 0 10px 28px rgba(18, 35, 63, 0.12);
  --shadow-lg: 0 24px 56px rgba(18, 35, 63, 0.20);
  --shadow-yellow: 0 10px 24px rgba(230, 194, 0, 0.35);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 0.9, 0.32, 1);
  --dur-fast: 180ms;
  --dur-med: 360ms;
  --dur-slow: 640ms;

  --header-h: 76px;
  --container: 1180px;

  --font-head: 'Lexend', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ==========================================================================
   Type scale
   ========================================================================== */
h1, .h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.6rem); font-weight: 700; letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(1.9rem, 3vw + 1rem, 3rem); font-weight: 700; letter-spacing: -0.01em; }
h3, .h3 { font-size: clamp(1.25rem, 1.4vw + 1rem, 1.6rem); }
p { max-width: 68ch; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.lede { font-size: 1.15rem; color: var(--muted); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(230,194,0,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(18, 35, 63, 0.0);
  transition: background var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), height var(--dur-med) var(--ease);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(18, 35, 63, 0.96);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  backdrop-filter: saturate(150%) blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  height: 68px;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-hash, .brand-hope { color: var(--yellow); }

.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  position: relative;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.86);
  border-radius: var(--radius-pill);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--navy); background: var(--yellow); }
.nav-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--navy);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease), visibility var(--dur-med);
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a {
  padding: 16px 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a.active { color: var(--yellow); }
.mobile-menu a.btn {
  margin-top: 20px;
  padding: 15px 30px;
  border-bottom: none;
  font-size: 0.98rem;
}
.mobile-menu a.btn-primary { color: var(--navy); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: radial-gradient(120% 120% at 15% 10%, #1B3A63 0%, var(--navy) 55%, #0D1B30 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
  animation: float 14s ease-in-out infinite;
}
.hero-orb--blue { width: 460px; height: 460px; background: #3E7CD1; top: -120px; right: -80px; }
.hero-orb--yellow { width: 320px; height: 320px; background: var(--yellow); opacity: 0.22; bottom: -100px; left: -60px; animation-duration: 18s; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.06); }
}

.hero-content { position: relative; text-align: center; padding: 96px 0 88px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px auto 36px;
  padding: 12px 22px;
  max-width: min(90%, 460px);
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
.hero-eyebrow .dot { flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); animation: pulse 1.8s ease-in-out infinite; }
.hero-eyebrow .eyebrow-text { flex: 1 1 auto; min-width: 0; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-quotes { max-width: 640px; margin: 0 auto 36px; }
.hero-quote-line {
  font-size: clamp(1.05rem, 1.1vw + 0.75rem, 1.3rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin-bottom: 18px;
}
.hero-quote-line:last-child { margin-bottom: 0; }
.hero-quote-attr {
  display: block;
  margin-top: 6px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
  color: var(--yellow);
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.5rem, 11vw, 6.2rem);
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 auto 26px;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}
.hero-title .hash { color: var(--yellow); }
.hero-title .word-hope {
  background: linear-gradient(100deg, var(--yellow) 0%, #FFE873 60%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-actions-break { flex-basis: 100%; height: 0; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.scroll-cue svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ==========================================================================
   Donate page (dedicated, dark)
   ========================================================================== */
.donate-qr-plate {
  width: 176px;
  height: 176px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: var(--shadow-md);
}
.donate-qr-plate img { width: 100%; height: 100%; object-fit: contain; }
.give-section { padding: 88px 0; background: var(--navy); color: rgba(255,255,255,0.85); }
.give-section + .give-section { padding-top: 0; }

.give-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 56px;
  border-radius: var(--radius-lg);
  background: var(--navy-2);
  border: 1px solid rgba(255, 215, 0, 0.18);
}
.give-card--solo { justify-content: center; }
.give-card--solo .give-card-text { max-width: 520px; }
.give-card-text { flex: 1 1 300px; text-align: center; }
.give-card-text .eyebrow { color: var(--yellow); justify-content: center; }
.give-card-text .eyebrow::before { background: var(--yellow); }
.give-card-text h2 { color: var(--white); margin: 12px 0 14px; }
.give-card-text p { color: rgba(255,255,255,0.7); max-width: 44ch; margin: 0 auto; }
.give-card-text .btn-primary { margin-top: 22px; }
.give-qr { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.give-qr-label {
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.give-qr-link { margin-top: 4px; font-weight: 700; color: var(--yellow); font-size: 1rem; }
.give-qr-link:hover { text-decoration: underline; }

.give-steps {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 88px auto 0;
  text-align: center;
}
@media (min-width: 768px) { .give-steps { grid-template-columns: repeat(3, 1fr); } }
.give-step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--yellow);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.give-step h3 { color: var(--white); margin-bottom: 8px; }
.give-step p { color: rgba(255,255,255,0.6); font-size: 0.98rem; margin: 0 auto; }

.give-tiers-head { max-width: 560px; margin: 0 auto 40px; text-align: center; }
.give-tiers-head .eyebrow { color: var(--yellow); justify-content: center; }
.give-tiers-head .eyebrow::before { background: var(--yellow); }
.give-tiers-head h2 { color: var(--white); margin-top: 14px; }

@media (max-width: 640px) {
  .give-card { padding: 40px 28px; }
}

/* ── Donor Roll ── */
.give-roll-sub { color: rgba(255,255,255,0.6); margin: 14px auto 0; }

.roll-stats { display: flex; justify-content: center; gap: 56px; margin: 0 auto 48px; }
.roll-stat { text-align: center; }
.roll-stat-num { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--yellow); }
.roll-stat-label { font-family: var(--font-head); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }

.roll-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--navy-2);
  border: 1px solid rgba(255,215,0,0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.roll-table { width: 100%; border-collapse: collapse; }
.roll-table th {
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,215,0,0.14);
}
.roll-table th.right, .roll-table td.right { text-align: right; }
.roll-table td {
  padding: 14px 22px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.roll-table tr:last-child td { border-bottom: none; }
.roll-table td.roll-amount { color: var(--yellow); font-weight: 700; }
.roll-table td.roll-date { color: rgba(255,255,255,0.5); }

.roll-empty {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: var(--navy-2);
  border: 1px dashed rgba(255,215,0,0.3);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.65);
}
.roll-empty strong { color: var(--yellow); }

@media (max-width: 640px) {
  .roll-stats { gap: 36px; }
  .roll-table th, .roll-table td { padding: 12px 14px; font-size: 0.85rem; }
}

/* ==========================================================================
   Story / narrative section
   ========================================================================== */
.story {
  padding: 110px 0;
  background: var(--white);
}
.story-head { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.story-head h2 { margin-top: 14px; }

.story-flow { max-width: 700px; margin: 0 auto; }
.story-lead {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
  max-width: none;
}
.story-lead strong { color: var(--ink); }

.story-statement {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw + 1.1rem, 2.3rem);
  color: var(--blue);
  text-align: center;
  max-width: 620px;
  margin: 48px auto;
  line-height: 1.35;
  position: relative;
  padding-top: 32px;
}
.story-statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: var(--yellow);
}

.story-turn {
  max-width: 760px;
  margin: 64px auto 0;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.story-turn-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.story-turn p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 2vw + 1.2rem, 2.4rem);
  color: var(--white);
  margin: 0;
}

.story-outcomes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 900px;
  margin: 56px auto 0;
}
@media (min-width: 768px) { .story-outcomes { grid-template-columns: 1fr 1fr; } }
.story-outcome {
  background: var(--blue-tint-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.story-outcome:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.story-outcome .outcome-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.story-outcome .outcome-icon svg { width: 22px; height: 22px; color: var(--white); }
.story-outcome p { color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: none; margin: 0; }
.story-outcome p strong { color: var(--ink); }

/* ==========================================================================
   What we do: cards
   ========================================================================== */
.programs { padding: 100px 0; background: var(--blue-tint-soft); }
.programs-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }

.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.program-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.program-icon svg { width: 26px; height: 26px; color: var(--white); }
.program-card:nth-child(4) .program-icon { background: var(--navy); }
.program-card h3 { margin-bottom: 10px; }
.program-card p { color: var(--muted); font-size: 0.98rem; max-width: none; }

/* ==========================================================================
   Values band
   ========================================================================== */
.values { padding: 92px 0; background: var(--navy); color: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 24px; height: 24px; color: var(--yellow); }
.value-title { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.value-desc { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 30ch; margin: 0 auto; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  position: relative;
  padding: 84px 0;
  background: var(--yellow);
  text-align: center;
  overflow: hidden;
}
.cta-banner h2 { max-width: 620px; margin: 0 auto 16px; }
.cta-banner p { max-width: 560px; margin: 0 auto 34px; color: var(--navy); opacity: 0.85; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta-banner .btn-secondary { color: var(--navy); border-color: rgba(18,35,63,0.35); }
.cta-banner .btn-secondary:hover { background: rgba(18,35,63,0.08); border-color: var(--navy); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 48px 0 28px; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 32px; }
.footer-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  transition: color var(--dur-fast);
}
.footer-nav a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 767px) {
  .footer-top { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.social-row a:hover { background: var(--yellow); color: var(--navy); transform: translateY(-3px); }
.social-row svg { width: 17px; height: 17px; }

/* ==========================================================================
   Page hero (Videos / Contact)
   ========================================================================== */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: linear-gradient(135deg, var(--navy) 0%, #1B3A63 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--yellow); justify-content: center; }
.page-hero .eyebrow::before { background: var(--yellow); }
.page-hero h1 { color: var(--white); margin: 14px 0 16px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto; font-size: 1.08rem; }

/* ==========================================================================
   Videos page
   ========================================================================== */
.video-section { padding: 80px 0 100px; background: var(--white); }

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.video-grid[hidden] { display: none; }
@media (min-width: 640px) { .video-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.video-thumb:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18,35,63,0.22);
  transition: background var(--dur-fast) var(--ease);
}
.video-thumb:hover .play-badge { background: rgba(18,35,63,0.38); }
.play-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.94);
  color: var(--blue);
  transform: scale(0.92);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.video-thumb:hover .play-circle { transform: scale(1); background: var(--yellow); color: var(--navy); }
.play-circle svg { margin-left: 2px; }

.video-title { margin-top: 14px; font-size: 1.02rem; font-weight: 600; color: var(--navy); line-height: 1.4; }

.video-skel .video-thumb { cursor: default; animation: skelPulse 1.4s ease-in-out infinite; }
.video-skel .video-thumb:hover { transform: none; box-shadow: var(--shadow-sm); }
.skel-line { height: 13px; border-radius: 6px; background: var(--border); margin-top: 14px; animation: skelPulse 1.4s ease-in-out infinite; }
.skel-line.short { width: 55%; margin-top: 8px; height: 10px; }
@keyframes skelPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.video-fallback {
  max-width: 480px;
  margin: 0 auto;
  padding: 56px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--blue-tint-soft);
  text-align: center;
}
.video-fallback svg { margin: 0 auto 18px; color: var(--blue); }
.video-fallback h3 { margin-bottom: 8px; }
.video-fallback p { color: var(--muted); max-width: none; margin: 0 auto 24px; }

.video-meta {
  max-width: 1120px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
}
.live-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 1.8s ease-in-out infinite; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-section { padding: 80px 0 110px; background: var(--white); }
.contact-grid {
  display: flex;
  justify-content: center;
}

.form-card {
  width: 100%;
  max-width: 640px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
@media (min-width: 640px) { .form-card { padding: 44px; } }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.field .req { color: var(--blue); margin-left: 2px; }
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--blue-tint-soft);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:hover, .field textarea:hover { border-color: var(--blue-light); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47,111,191,0.14);
}
.field-error {
  display: none;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--danger);
  font-weight: 600;
}
.field.has-error input,
.field.has-error textarea { border-color: var(--danger); background: #FDF2F2; }
.field.has-error .field-error { display: block; }

.form-status {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-status.show { display: flex; }
.form-status.success { background: #E9F7EF; color: var(--success); }
.form-status.error { background: #FCEAEA; color: var(--danger); }
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; }

.donation-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   FAQ page
   ========================================================================== */
.faq-section { padding: 80px 0 110px; background: var(--white); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item:has(.faq-q[aria-expanded="true"]) { background: var(--blue-tint-soft); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 8px;
  text-align: left;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color var(--dur-fast) var(--ease);
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--blue); }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  position: relative;
  transition: background var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--blue);
  border-radius: 2px;
  transition: opacity var(--dur-fast) var(--ease);
}
.faq-icon::before { width: 13px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 13px; }
.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--blue-tint);
  border-color: var(--blue-light);
  transform: rotate(45deg);
}
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease); }
.faq-a.open { max-height: 600px; }
.faq-a p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 8px 24px 22px;
  margin: 0;
  max-width: none;
  border-left: 2px solid var(--border);
  margin-left: 4px;
}
@media (max-width: 640px) {
  .faq-q { font-size: 0.98rem; padding: 20px 4px; }
  .faq-icon { width: 28px; height: 28px; }
  .faq-a p { padding: 0 4px 20px 16px; }
}

