@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Bebas+Neue&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #3E4095;
  --primary-dark: #2d2f7a;
  --primary-deeper: #1e2060;
  --secondary: #EE3137;
  --secondary-dark: #c5181e;
  --navy: #0d1b2a;
  --hero-bg: #2d3082;
}

body { font-family: 'Be Vietnam Pro', sans-serif; color: #333; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 1.5px;
}

/* ── Utility ── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 960px;  margin: 0 auto; padding: 0 40px; }

.red-tag {
  background-color: var(--secondary);
  color: #fff;
  padding: 2px 10px;
  display: inline;
}

/* ── Buttons ── */
.btn-green {
  background: var(--primary);
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 2px solid var(--primary);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-green:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 2px solid #fff;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-white:hover { background: #fff; color: #333; }

.btn-outline-dark {
  background: transparent;
  color: #333;
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 2px solid #333;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: #333; color: #fff; }

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 28px rgba(0,0,0,0.1);
  border-bottom-color: rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* NDC Logo */
.ndc-logo {
  height: 54px;
  width: 54px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

/* All nav links — anchors AND the dropdown button */
.nav-link,
button.nav-link {
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 12px;
  white-space: nowrap;
  color: #333;
  transition: color 0.2s;
}
.nav-link:hover,
button.nav-link:hover { color: var(--primary); }

/* Group hamburger + join-us together */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-toggle svg { width: 10px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--primary-deeper);
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dropdown-menu a:hover { background: var(--primary); }

.nav-join {
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 20px;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.nav-join:hover { background: var(--primary); color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: absolute;
  top: 70px; left: 0; right: 0;
  background: var(--primary-deeper);
  padding: 16px 20px 20px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #EE3137; }

/* ── Hero - Homepage ── */
.hero-home {
  min-height: 540px;
  background: linear-gradient(to right, rgba(40,42,130,0.97) 55%, rgba(40,42,130,0.6) 100%), var(--hero-bg);
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
/* Hero inner — replaces inline style, uses same container padding */
.hero-content-wrap {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-content { flex: 1; max-width: 580px; }

.hero-home h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-sub { color: rgba(255,255,255,0.8); font-size: 13px; max-width: 340px; line-height: 1.7; margin-bottom: 28px; }

.hero-btns { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }

.hero-image {
  flex: 0 0 auto;
  width: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: bottom;
  border-radius: 8px 8px 0 0;
}

/* ── Countdown ── */
.countdown { display: flex; gap: 10px; align-items: flex-end; flex-wrap: wrap; }
.countdown-item { text-align: center; }
.countdown-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 8px 12px;
  min-width: 60px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.countdown-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}
.countdown-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.countdown-num {
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  display: block;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.countdown-label {
  color: rgba(255,255,255,0.6);
  font-family: 'Bebas Neue', cursive;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}
.countdown-sep {
  color: rgba(255,255,255,0.4);
  font-family: 'Bebas Neue', cursive;
  font-size: 34px;
  line-height: 1;
  padding-bottom: 20px;
  letter-spacing: 0;
  user-select: none;
}
.countdown-caption {
  color: rgba(255,255,255,0.5);
  font-family: 'Bebas Neue', cursive;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* Red movement banner */
.movement-banner {
  background: var(--secondary);
  padding: 14px 0;
  text-align: center;
}
.movement-banner h2 {
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Join form strip */
.join-strip {
  background: var(--primary-deeper);
  padding: 20px 0;
  border-top: 3px solid var(--secondary);
}
.join-form {
  display: flex;
  gap: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  border-radius: 4px;
  overflow: hidden;
}
.join-form input {
  flex: 1;
  background: rgba(255,255,255,0.96);
  border: none;
  border-right: 1px solid #dde;
  color: #222;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 16px 20px;
  outline: none;
  transition: background 0.2s;
}
.join-form input::placeholder { color: #888; }
.join-form input:focus { background: #fff; }
.join-form .btn-green {
  flex-shrink: 0;
  padding: 16px 40px;
  font-size: 17px;
  border-radius: 0;
  border: none;
}

/* ── Hero Eyebrow + Accent ── */
.hero-eyebrow {
  display: block;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.hero-accent { color: var(--secondary); }

/* ── Nav Donate Button ── */
.nav-donate-btn {
  font-family: 'Bebas Neue', cursive;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 18px;
  white-space: nowrap;
  background: var(--secondary);
  color: #fff !important;
  transition: background 0.2s;
  border-radius: 2px;
}
.nav-donate-btn:hover { background: var(--secondary-dark); }

/* ── Section Eyebrow ── */
.section-eyebrow {
  display: block;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

/* ── Stats Bar ── */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 36px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 44px;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 1px;
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: #eee;
  flex-shrink: 0;
}

/* ── Pull Quote ── */
.pull-quote-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.pull-quote-section::before {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 320px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.pull-quote {
  text-align: center;
  position: relative;
  z-index: 1;
}
.pull-quote p {
  font-family: 'Bebas Neue', cursive;
  font-size: 40px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.pull-quote cite {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Track Record ── */
.track-record-section {
  background: #fff;
  padding: 100px 0;
}
.track-record-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.track-record-header h2 {
  font-size: 40px;
  color: #222;
  line-height: 1.1;
  margin-bottom: 16px;
}
.track-record-header p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}
.track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #f0f0f5;
}
.track-card {
  background: #fff;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.track-card:hover { background: #f8f9ff; }
.track-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.track-card-icon i { color: #fff; font-size: 20px; }
.track-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 48px;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1;
}
.track-label {
  font-family: 'Bebas Neue', cursive;
  font-size: 14px;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.track-desc {
  font-size: 12.5px;
  color: #666;
  line-height: 1.7;
  margin-top: 4px;
}

/* ── Vision subtitle ── */
.vision-sub {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── 3 Core Promises ── */
.promises-section {
  background: #0d1b2a;
  padding: 100px 0;
}
.promises-header {
  text-align: center;
  margin-bottom: 60px;
}
.promises-header h2 {
  font-size: 40px;
  color: #fff;
  line-height: 1.1;
}
.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.promise-card {
  background: #0d1b2a;
  padding: 48px 36px;
  transition: background 0.3s ease;
  border-top: 3px solid transparent;
  position: relative;
}
.promise-card:hover {
  background: #162030;
  border-top-color: var(--secondary);
}
.promise-icon {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.promise-icon i { color: #fff; font-size: 22px; }
.promise-card h3 {
  font-size: 26px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.promise-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ── Stakes Section ── */
.stakes-section {
  background: linear-gradient(135deg, #1e2061 0%, #282a82 100%);
  padding: 100px 0;
}
.stakes-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.stakes-header h2 {
  font-size: 40px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.stakes-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.stakes-eyebrow { color: rgba(255,255,255,0.45) !important; }
.stakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 64px;
}
.stakes-stat {
  background: rgba(255,255,255,0.03);
  padding: 48px 36px;
  text-align: center;
  transition: background 0.3s ease;
}
.stakes-stat:hover { background: rgba(255,255,255,0.07); }
.stakes-num {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 60px;
  color: var(--secondary);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 16px;
}
.stakes-stat p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.stakes-cta { text-align: center; }
.stakes-quote {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-family: 'Be Vietnam Pro', sans-serif;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.stakes-btn {
  font-size: 18px;
  padding: 16px 48px;
  animation: none !important;
}

/* ── Why Running Section ── */
.why-running { background: #fff; padding: 100px 0; }
.why-running-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}
.why-running-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.why-running-image img {
  width: 340px;
  border-radius: 8px;
  object-fit: cover;
}
.why-running-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.why-running h2 {
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.why-running .lead {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #222;
}
.why-running p { font-size: 13px; line-height: 1.8; color: #555; margin-bottom: 28px; }
.why-running .btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Vision Section ── */
.vision-section {
  background: linear-gradient(rgba(30,32,96,0.9), rgba(30,32,96,0.9)), var(--primary-dark);
  padding: 80px 0;
  text-align: center;
}
.vision-section h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  max-width: 800px;
  margin: 0 auto;
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Meet Peter Section ── */
.meet-section {
  background: linear-gradient(to right, rgba(0,0,0,0.82) 55%, rgba(0,0,0,0.45) 100%),
              url('assets/peter-speaking.png') center / cover no-repeat;
  padding: 100px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.meet-section h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.meet-section .lead {
  color: #e8e8e8;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 16px;
}
.meet-section p { color: rgba(255,255,255,0.75); font-size: 13px; line-height: 1.8; margin-bottom: 28px; }

/* ── Footer ── */
.site-footer { background: var(--navy); padding: 56px 0 0; }
.footer-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-logo img { width: 90px; height: 90px; object-fit: contain; margin-bottom: 4px; }
.footer-social { display: flex; gap: 14px; margin: 20px 0; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); }

.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  line-height: 1.7;
  max-width: 460px;
  margin: 20px 0 0;
}
.footer-tagline em { font-style: italic; }

.footer-nav {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 28px 0 0;
}
.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
  margin-bottom: 16px;
}
.footer-nav-links a {
  color: rgba(255,255,255,0.7);
  font-family: 'Bebas Neue', cursive;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: #fff; }
.footer-nav-links .join-btn-sm {
  border: 1px solid rgba(255,255,255,0.5);
  padding: 4px 16px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-nav-links .join-btn-sm:hover { background: #fff; color: var(--navy); border-color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 11px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-powered { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.4); font-size: 11px; }
.footer-powered strong { color: #f97316; }

/* ══════════════════════════════════════════
   INNER PAGE STYLES
   ══════════════════════════════════════════ */

/* ── About Page ── */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.62) 100%),
              url('assets/peter-crowd.png') center / cover no-repeat;
  min-height: 420px;
  padding-top: 70px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}
.about-hero h1 { color:#fff; font-size:56px; text-transform:uppercase; line-height:1; margin-bottom:8px; }
.about-hero-sub { color:rgba(255,255,255,0.65); font-size:14px; font-family:'Be Vietnam Pro',sans-serif; letter-spacing:1px; }

.about-timeline-section { background:#f8f9ff; padding:100px 0; }
.timeline { position:relative; padding-left:36px; margin-top:0; }
.timeline::before {
  content:''; position:absolute; left:7px; top:8px; bottom:0;
  width:2px; background:linear-gradient(to bottom, var(--primary), rgba(62,64,149,0.1));
}
.timeline-item { position:relative; padding-bottom:36px; }
.timeline-item:last-child { padding-bottom:0; }
.timeline-dot {
  position:absolute; left:-29px; top:5px;
  width:16px; height:16px; border-radius:50%;
  background:var(--primary); border:3px solid #f8f9ff;
  box-shadow:0 0 0 2px var(--primary);
}
.timeline-year {
  font-family:'Bebas Neue',cursive; font-size:12px; color:var(--secondary);
  letter-spacing:2px; margin-bottom:4px;
}
.timeline-title { font-family:'Bebas Neue',cursive; font-size:18px; color:#222; margin-bottom:6px; letter-spacing:0.5px; }
.timeline-desc { font-size:12.5px; color:#666; line-height:1.8; max-width:600px; }

.values-section { background:#fff; padding:100px 0; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.value-card {
  background:#fff; padding:32px 24px;
  border-top:3px solid var(--primary);
  box-shadow:0 4px 20px rgba(62,64,149,0.07);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(62,64,149,0.12); }
.value-card h3 { font-size:20px; color:#222; margin-bottom:12px; letter-spacing:1px; }
.value-card p { font-size:13px; color:#555; line-height:1.8; }

.about-cta { background:var(--primary); padding:100px 0; text-align:center; }
.about-cta h2 { color:#fff; font-size:40px; margin-bottom:12px; }
.about-cta p { color:rgba(255,255,255,0.7); font-size:14px; margin-bottom:36px; max-width:480px; margin-left:auto; margin-right:auto; line-height:1.7; }
.about-cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── Agenda Page ── */
.agenda-hero-v2 {
  background: linear-gradient(rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.72) 100%),
              url('assets/peter-crowd.png') center / cover no-repeat;
  min-height: 400px;
  padding-top: 140px;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}
.agenda-hero-v2 h1 { color:#fff; font-size:56px; text-transform:uppercase; line-height:1.05; margin-bottom:16px; }
.agenda-hero-v2 p { color:rgba(255,255,255,0.7); font-size:14px; max-width:520px; line-height:1.7; }

.agenda-priority-strip { background:#fff; border-bottom:1px solid #eee; padding:24px 0; }
.agenda-priorities { display:flex; justify-content:center; align-items:center; }
.agenda-priority { display:flex; align-items:center; gap:10px; padding:0 36px; border-right:1px solid #eee; }
.agenda-priority:last-child { border-right:none; }
.agenda-priority i { color:var(--secondary); font-size:18px; }
.agenda-priority span { font-family:'Bebas Neue',cursive; font-size:17px; letter-spacing:1.5px; color:#333; }

.policy-v2-section { padding:80px 0; background:#fff; }
.policy-v2-section.alt { background:#f8f9ff; }
.policy-v2-grid {
  display:grid; grid-template-columns:1fr 1.5fr; gap:0;
  align-items:stretch; max-width:960px; margin:0 auto;
  box-shadow:0 8px 40px rgba(0,0,0,0.08);
}
.policy-icon-block {
  background:var(--primary); padding:48px 32px; text-align:center;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
  min-height:300px;
}
.policy-icon-block i { color:rgba(255,255,255,0.9); font-size:52px; }
.policy-area { color:rgba(255,255,255,0.5); font-family:'Bebas Neue',cursive; font-size:12px; letter-spacing:3px; }
.policy-title-big { color:#fff; font-family:'Bebas Neue',cursive; font-size:40px; letter-spacing:2px; }
.policy-tag { color:rgba(255,255,255,0.35); font-size:10px; letter-spacing:1.5px; font-family:'Be Vietnam Pro',sans-serif; }
.policy-v2-content { padding:48px 44px; background:#fff; }
.policy-v2-section.alt .policy-v2-content { background:#f8f9ff; }
.policy-v2-content h3 { font-size:11px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; color:var(--secondary); margin-bottom:8px; }
.policy-v2-content h2 { font-size:30px; color:#222; margin-bottom:20px; line-height:1.1; }
.policy-v2-content p { font-size:13px; color:#555; line-height:1.8; margin-bottom:14px; }
.policy-v2-content blockquote { border-left:3px solid var(--secondary); padding-left:16px; margin:16px 0; color:#444; font-style:italic; font-size:13px; line-height:1.7; }

.agenda-cta { background:var(--primary-deeper); padding:100px 0; text-align:center; }
.agenda-cta h2 { color:#fff; font-size:40px; margin-bottom:12px; }
.agenda-cta p { color:rgba(255,255,255,0.6); font-size:14px; margin-bottom:36px; max-width:480px; margin-left:auto; margin-right:auto; line-height:1.7; }
.agenda-cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── News Page ── */
.news-hero {
  background: linear-gradient(rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.68) 100%),
              url('assets/peter-crowd.png') center / cover no-repeat;
  min-height:360px; padding-top:140px;
  display:flex; align-items:flex-end; padding-bottom:52px;
}
.news-hero h1 { color:#fff; font-size:52px; text-transform:uppercase; line-height:1; }
.news-hero-sub { color:rgba(255,255,255,0.65); font-size:14px; margin-top:10px; max-width:480px; line-height:1.7; }
.news-img-block { overflow:hidden; }
.media-kit-section { background:var(--primary); padding:64px 0; text-align:center; }
.media-kit-section h2 { color:#fff; font-size:32px; letter-spacing:2px; margin-bottom:12px; }
.media-kit-section p { color:rgba(255,255,255,0.65); font-size:14px; max-width:480px; margin:0 auto 28px; line-height:1.7; }

/* ── Contact Page ── */
.contact-types { background:#f8f9ff; padding:64px 0; }

.contact-types-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.contact-type-card {
  background:#fff; padding:36px 28px;
  border-top:3px solid var(--primary);
  box-shadow:0 4px 20px rgba(62,64,149,0.07);
  transition:transform 0.3s ease;
}
.contact-type-card:hover { transform:translateY(-4px); }
.contact-type-card i { font-size:28px; color:var(--primary); margin-bottom:16px; display:block; }
.contact-type-card h3 { font-size:20px; color:#222; margin-bottom:10px; letter-spacing:0.5px; }
.contact-type-card p { font-size:13px; color:#666; line-height:1.8; margin-bottom:16px; }
.contact-type-card a { font-size:12px; color:var(--primary); font-weight:700; text-decoration:none; letter-spacing:0.5px; border-bottom:1px solid transparent; transition:border-color 0.2s; }
.contact-type-card a:hover { border-bottom-color:var(--primary); }

.social-handles-section { background:var(--primary-deeper); padding:80px 0; text-align:center; }
.social-handles-section h2 { color:#fff; font-size:32px; letter-spacing:2px; margin-bottom:8px; }
.social-handles-section .sub { color:rgba(255,255,255,0.5); font-size:13px; margin-bottom:48px; max-width:400px; margin-left:auto; margin-right:auto; }
.social-handles-grid { display:flex; justify-content:center; gap:48px; flex-wrap:wrap; }
.social-handle-item { display:flex; flex-direction:column; align-items:center; gap:10px; }
.social-handle-circle {
  width:68px; height:68px; border-radius:50%;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:24px; text-decoration:none;
  transition:background 0.2s, border-color 0.2s;
}
.social-handle-circle:hover { background:var(--secondary); border-color:var(--secondary); }
.social-handle-name { color:#fff; font-family:'Bebas Neue',cursive; font-size:15px; letter-spacing:2px; }
.social-handle-at { color:rgba(255,255,255,0.45); font-size:11px; font-weight:600; font-family:'Be Vietnam Pro',sans-serif; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(rgba(50,20,10,0.82), rgba(50,20,10,0.82)), #3d1010;
  min-height: 260px;
  padding-top: 70px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}
.page-hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

/* ── About Page ── */
.biography-section { padding: 80px 0; background: #fff; }
.biography-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 60px;
}
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bio-image img { width: 100%; max-width: 380px; object-fit: cover; border-radius: 4px; }
.bio-content h3 { font-size: 26px; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; }
.bio-content .lead { font-size: 15px; font-weight: 700; line-height: 1.7; color: #222; margin-bottom: 20px; }
.bio-content p { font-size: 13px; line-height: 1.8; color: #555; }

.babe-section { background: var(--primary-deeper); padding: 60px 0; }
.babe-grid { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }
.babe-section h2 { color: #fff; font-size: 26px; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; }
.babe-section p { color: rgba(255,255,255,0.75); font-size: 13px; line-height: 1.8; margin-bottom: 14px; }
.babe-image { width: 280px; }
.babe-image img { width: 100%; border-radius: 4px; }

/* ── Agenda Page ── */
.agenda-intro { background: #fff; padding: 48px 0; border-bottom: 1px solid #eee; text-align: center; }
.agenda-intro p { font-size: 15px; font-weight: 600; color: #444; max-width: 640px; margin: 0 auto 8px; }
.agenda-intro .hashtag { font-weight: 700; color: #333; font-size: 14px; }

.policy-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.policy-card {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.policy-card img { width: 80%; max-height: 260px; object-fit: cover; margin-bottom: 16px; }
.policy-card-labels { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.peter-obi-label { display: flex; flex-direction: column; align-items: flex-start; }
.peter-label-top { color: #fff; font-size: 20px; font-weight: 900; line-height: 1; }
.peter-label-obi { background: var(--secondary); color: #fff; font-size: 24px; font-weight: 900; padding: 0 8px; line-height: 1.2; }
.peter-label-year { color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 700; }

.peter-for-label { display: flex; flex-direction: column; align-items: center; }
.peter-for-top { color: #fff; font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.peter-for-bottom { color: #fff; font-size: 28px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }

.hashtag-label { color: rgba(255,255,255,0.65); font-size: 11px; font-weight: 600; }

.policy-text {
  background: var(--primary-deeper);
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.policy-text h3 { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.policy-text h2 { font-size: 32px; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.policy-text h2 span { background: var(--secondary); padding: 0 8px; }
.policy-text p { color: rgba(255,255,255,0.75); font-size: 12.5px; line-height: 1.8; margin-bottom: 14px; }
.policy-quote {
  border-left: 3px solid var(--secondary);
  padding-left: 16px;
  margin: 14px 0;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-size: 13px;
  line-height: 1.7;
}

.policy-text.light { background: #f8f8f8; }
.policy-text.light h3 { color: #666; }
.policy-text.light h2 { color: #222; }
.policy-text.light p { color: #555; }
.policy-text.light .policy-quote { color: #333; border-left-color: var(--secondary); }

/* ── News Page ── */
.news-slider {
  min-height: 380px;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), #222;
  padding-top: 70px;
  display: flex;
  align-items: center;
  position: relative;
}
.news-slide-content { max-width: 520px; padding: 40px 0; }
.news-slide-content h1 { color: #fff; font-size: 30px; font-weight: 900; text-transform: uppercase; line-height: 1.2; margin-bottom: 16px; }
.news-date { color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.news-slide-content p { color: rgba(255,255,255,0.8); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.read-more { color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; }
.read-more:hover { color: var(--secondary); }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: #fff; border: none;
  width: 36px; height: 60px; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10;
}
.slider-arrow:hover { background: var(--primary); }
.slider-arrow.left { left: 0; }
.slider-arrow.right { right: 0; }

.slider-dots { display: flex; gap: 8px; position: absolute; left: 24px; bottom: 20px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; }
.slider-dot.active { background: var(--primary); }

.news-section { padding: 60px 0; background: #fff; }
.news-section h2 {
  font-size: 24px; font-weight: 900; text-transform: uppercase;
  text-align: center; letter-spacing: 2px; margin-bottom: 36px;
  padding-bottom: 14px; border-bottom: 2px solid #eee;
}
.news-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.news-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.news-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.news-card-body { padding: 12px 0; }
.news-card-body .date { color: #888; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.news-card-body h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; line-height: 1.4; color: #222; margin-bottom: 8px; }
.news-card-body p { font-size: 12px; line-height: 1.7; color: #555; margin-bottom: 8px; }

.newspaper-card { border: 1px solid #eee; overflow: hidden; border-radius: 2px; }
.newspaper-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.newspaper-card-body { padding: 12px; background: #fff; }
.newspaper-card-body h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; line-height: 1.4; color: #222; }

.article-card { background: #fff; border: 1px solid #eee; }
.article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.article-card-body { padding: 12px 14px 16px; }
.article-card-body .date { color: #888; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; display: block; }
.article-card-body h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; color: #222; line-height: 1.4; margin-bottom: 8px; }
.article-card-body p { font-size: 11px; color: #666; line-height: 1.7; margin-bottom: 8px; }

.news-section-dark { background: #f5f5f5; padding: 60px 0; }

/* ── Videos Page ── */
.video-hero {
  background: linear-gradient(rgba(30,32,96,0.88), rgba(30,32,96,0.88)), var(--primary);
  min-height: 260px; padding-top: 70px;
  display: flex; align-items: flex-end; padding-bottom: 48px;
}
.video-hero h1 { color: #fff; font-size: 48px; font-weight: 900; text-transform: uppercase; }

.videos-grid { padding: 60px 0; background: #fff; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }

.video-thumb {
  position: relative; aspect-ratio: 16/9; background: #111;
  overflow: hidden; cursor: pointer;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.8; transition: opacity 0.3s; }
.video-thumb:hover img { opacity: 1; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9); font-size: 20px; background: rgba(0,0,0,0.3);
  transition: background 0.2s, border-color 0.2s;
}
.video-thumb:hover .play-btn { background: var(--primary); border-color: var(--primary); }
.video-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.75); color: #fff; font-size: 10px;
  font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 10px 12px;
}
.video-source-badge {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,0.7); color: #fff; font-size: 9px;
  font-weight: 700; padding: 3px 7px; text-transform: uppercase;
}
.video-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 644px; }

/* ── Contact Page ── */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.68) 100%),
              url('assets/peter-crowd.png') center / cover no-repeat;
  min-height: 320px;
  padding-top: 140px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
}
.contact-hero h1 { color: #fff; font-size: 48px; font-weight: 900; text-transform: uppercase; }

.contact-section { padding: 80px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: 22px; font-weight: 900; text-transform: uppercase; margin-bottom: 16px; }
.contact-info p { font-size: 13px; line-height: 1.7; color: #555; margin-bottom: 24px; }
.contact-info hr { border: none; border-top: 1px solid #e5e5e5; margin: 24px 0; }
.contact-info address { font-style: normal; font-size: 13px; color: #555; line-height: 1.8; margin-bottom: 24px; }
.contact-info .contact-links { font-size: 13px; color: #555; line-height: 1.8; }
.contact-info .contact-links strong { color: #333; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-input {
  border: 1px solid #ccc; padding: 14px 16px;
  font-family: 'Be Vietnam Pro', sans-serif; font-size: 13px; color: #333;
  width: 100%; outline: none; transition: border-color 0.2s;
}
.form-input::placeholder { color: #aaa; }
.form-input:focus { border-color: var(--primary); }
textarea.form-input { min-height: 140px; resize: vertical; }
.btn-submit {
  background: var(--primary); color: #fff;
  font-family: 'Bebas Neue', cursive; font-weight: 400;
  font-size: 18px; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 16px; border: none; cursor: pointer; width: 100%;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--primary-dark); }

.social-section { background: var(--primary-deeper); padding: 60px 0; text-align: center; }
.social-section h2 { color: #fff; font-size: 22px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 48px; }
.social-icons-grid { display: flex; justify-content: center; gap: 80px; }
.social-icon-item { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.social-icon-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 32px; text-decoration: none; transition: background 0.2s;
}
.social-icon-circle:hover { background: var(--secondary); }
.social-icon-label { color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-home h1 { font-size: 46px; }
  .hero-image { width: 320px; }
  .why-running-grid { gap: 48px; }
  .track-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 0 28px; }
  .stat-num { font-size: 36px; }
}

@media (max-width: 768px) {
  /* Consistent horizontal padding on mobile */
  .container, .container-sm { padding: 0 20px; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-home { padding: 90px 0 50px; }
  .hero-home h1 { font-size: 38px; }
  .hero-content-wrap {
    flex-direction: column;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 48px;
  }
  .hero-image {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-image img { width: 100%; max-height: 360px; object-fit: contain; }

  /* Join form */
  .join-form { flex-direction: column; }
  .join-form input { border-right: none; border-bottom: 1px solid #dde; }
  .join-form .btn-green { width: 100%; text-align: center; }

  /* Why Running */
  .why-running { padding: 64px 0; }
  .why-running-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-running-image img.main-photo { max-width: 280px; margin: 0 auto; }

  /* About */
  .bio-grid { grid-template-columns: 1fr; gap: 36px; }
  .babe-grid { grid-template-columns: 1fr; }
  .babe-image { width: 100%; max-width: 280px; margin: 0 auto; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .social-icons-grid { gap: 40px; flex-wrap: wrap; }

  /* News */
  .news-grid-2 { grid-template-columns: 1fr; }
  .news-grid-3 { grid-template-columns: 1fr; }
  .news-grid-4 { grid-template-columns: 1fr 1fr; }

  /* Videos */
  .video-grid { grid-template-columns: 1fr; }
  .video-grid-2 { grid-template-columns: 1fr; max-width: 100%; }

  /* Page heroes */
  .page-hero { padding-bottom: 32px; }
  .page-hero h1, .contact-hero h1, .video-hero h1 { font-size: 34px; }

  /* Footer */
  .footer-bottom-bar { flex-direction: column; text-align: center; }
  .policy-section { grid-template-columns: 1fr; }

  /* PVC */
  .pvc-grid { grid-template-columns: 1fr; }
  .pvc-section { padding: 64px 0; }

  /* Volunteer */
  .volunteer-inner { grid-template-columns: 1fr; }
  .vol-form-row { grid-template-columns: 1fr; }
  .volunteer-section { padding: 64px 0; }

  /* Share */
  .share-v2-grid { grid-template-columns: 1fr; }
  .share-v2-image {
    min-height: 300px;
    max-height: none;
    padding: 32px 20px;
  }
  .share-v2-image img {
    max-width: 280px;
    max-height: 360px;
    object-fit: contain;
    object-position: center;
  }
  .share-v2-content { padding: 48px 24px; }
  .share-v2-inner { max-width: 100%; }
  .share-v2-heading { font-size: 48px; }
  .share-v2-btn { font-size: 17px; gap: 14px; }

  /* About page */
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-hero h1 { font-size: 40px; }
  .about-cta h2 { font-size: 32px; }
  .about-timeline-section { padding: 64px 0; }
  .values-section { padding: 64px 0; }
  .about-cta { padding: 64px 0; }

  /* Agenda page */
  .agenda-hero-v2 h1 { font-size: 40px; }
  .agenda-priorities { flex-wrap: wrap; gap: 16px; justify-content: flex-start; padding: 0 20px; }
  .agenda-priority { border-right: none; padding: 8px 0; }
  .policy-v2-grid { grid-template-columns: 1fr !important; }
  .policy-icon-block { min-height: 200px; padding: 36px 24px; }
  .policy-icon-block i { font-size: 40px; }
  .policy-v2-content { padding: 36px 28px; }
  .agenda-cta h2 { font-size: 30px; }
  .agenda-cta { padding: 64px 0; }

  /* Contact page */
  .contact-types-grid { grid-template-columns: 1fr; }
  .social-handles-grid { gap: 32px; }

  /* News page */
  .news-hero h1 { font-size: 38px; }

  /* New sections */
  .stats-grid { flex-wrap: wrap; gap: 24px 0; }
  .stat-item { flex: 0 0 50%; padding: 16px 24px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 38px; }
  .pull-quote p { font-size: 28px; }
  .track-grid { grid-template-columns: repeat(2, 1fr); }
  .promises-grid { grid-template-columns: 1fr; gap: 2px; }
  .promise-card { padding: 36px 28px; }
  .stakes-grid { grid-template-columns: 1fr; }
  .stakes-num { font-size: 48px; }
  .track-record-section { padding: 64px 0; }
  .promises-section { padding: 64px 0; }
  .stakes-section { padding: 64px 0; }
  .pull-quote-section { padding: 56px 0; }
  .nav-donate-btn { display: none; }
}

@media (max-width: 480px) {
  .container, .container-sm { padding: 0 16px; }
  .hero-home h1 { font-size: 32px; }
  .countdown { gap: 4px; }
  .countdown-box { min-width: 54px; padding: 8px 8px; }
  .countdown-num { font-size: 30px; }
  .countdown-sep { font-size: 28px; padding-bottom: 20px; }
  .movement-banner h2 { font-size: 14px; letter-spacing: 2px; }
  .news-grid-4 { grid-template-columns: 1fr; }
  .share-v2-image { min-height: 240px; padding: 24px 16px; }
  .share-v2-image img { max-width: 220px; max-height: 280px; }
  .share-v2-content { padding: 36px 16px; }
  .share-v2-heading { font-size: 40px; }
  .share-v2-btn { font-size: 15px; gap: 10px; padding: 13px 14px; }
  .share-v2-btn > i:first-child { font-size: 18px; }
  .volunteer-form { padding: 28px 20px; }
  .pvc-step { padding: 16px; }
  .footer-top { padding: 40px 0 32px; }
  .stat-item { flex: 0 0 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .about-cta-btns { flex-direction: column; align-items: center; }
  .agenda-cta-btns { flex-direction: column; align-items: center; }
  .track-grid { grid-template-columns: 1fr; }
  .pull-quote p { font-size: 22px; }
  .stakes-num { font-size: 40px; }
  .track-record-header h2 { font-size: 30px; }
  .promises-header h2 { font-size: 30px; }
  .stakes-header h2 { font-size: 30px; }
  .stakes-quote { font-size: 14px; }
  .stakes-btn { font-size: 15px; padding: 14px 28px; }
}

/* ── HTML5 Video ── */
.section-video {
  width: 100%;
  max-width: 840px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  outline: none;
}

/* ── Animations ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulseRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(238,49,55,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(238,49,55,0); }
}

/* Hero entrance */
.hero-content h1       { animation: heroFadeUp 0.75s 0.1s ease both; }
.hero-content .hero-sub{ animation: heroFadeUp 0.75s 0.25s ease both; }
.hero-content .hero-btns{ animation: heroFadeUp 0.75s 0.4s ease both; }
.hero-content .countdown{ animation: heroFadeUp 0.75s 0.55s ease both; }
.hero-content .countdown-caption { animation: heroFadeUp 0.75s 0.65s ease both; }
.hero-image            { animation: heroSlideRight 0.9s 0.3s ease both; }

/* Join Us button pulse */
.btn-green { animation: pulseRed 2.8s 2s infinite; }
.btn-green:hover { animation: none; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* Card hover lift */
.news-card, .newspaper-card, .article-card, .video-thumb {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover, .newspaper-card:hover, .article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Button hover slide */
.btn-green, .btn-outline-white, .btn-outline-dark, .btn-submit {
  position: relative;
  overflow: hidden;
}
.btn-green::after, .btn-outline-white::after, .btn-outline-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn-green:hover::after, .btn-outline-white:hover::after, .btn-outline-dark:hover::after {
  transform: translateX(0);
}

/* Why running image */
.why-running-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.why-running-image img.main-photo {
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(62,64,149,0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.why-running-image img.main-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(62,64,149,0.26);
}
.why-running-logo {
  display: flex;
  justify-content: center;
}
.why-running-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

/* ── PVC Section ── */
.pvc-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #eef0ff 100%);
  padding: 100px 0;
}
.pvc-section h2 { font-size: 42px; color: #222; margin-bottom: 12px; }
.pvc-section .section-sub {
  font-size: 14px; color: #666; max-width: 480px; line-height: 1.7; margin-bottom: 48px;
}
.pvc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pvc-steps { display: flex; flex-direction: column; gap: 24px; }
.pvc-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(62,64,149,0.08);
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pvc-step:hover { transform: translateX(4px); box-shadow: 0 8px 28px rgba(62,64,149,0.14); }
.pvc-step-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 1px;
}
.pvc-step-body h4 {
  font-size: 16px; color: #222; margin-bottom: 4px; font-family: 'Bebas Neue', cursive; letter-spacing: 1px;
}
.pvc-step-body p { font-size: 12px; color: #666; line-height: 1.6; }
.pvc-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.pvc-img-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  box-shadow: 0 20px 50px rgba(62,64,149,0.3);
}
.pvc-img-placeholder i { font-size: 64px; margin-bottom: 16px; opacity: 0.85; }
.pvc-img-placeholder p {
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
}
.pvc-cta { text-align: center; }
.pvc-cta .btn-green {
  font-size: 18px;
  padding: 16px 48px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(62,64,149,0.35);
}
.pvc-cta p {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
  font-family: 'Be Vietnam Pro', sans-serif;
}

/* ── Volunteer Section ── */
.volunteer-section {
  background: var(--primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.volunteer-section::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.04'%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");
}
.volunteer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.volunteer-content h2 { color: #fff; font-size: 48px; margin-bottom: 16px; line-height: 1.1; }
.volunteer-content .highlight { color: var(--secondary); }
.volunteer-content p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.8; margin-bottom: 28px; }
.volunteer-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.volunteer-perk {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.9); font-size: 13px;
}
.volunteer-perk i { color: var(--secondary); font-size: 16px; width: 20px; flex-shrink: 0; }

.volunteer-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.volunteer-form h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--primary);
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.vol-form { display: flex; flex-direction: column; gap: 14px; }
.vol-form input, .vol-form select {
  border: 1px solid #e0e0e0;
  padding: 14px 16px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 13px;
  color: #333;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  background: #fff;
}
.vol-form input::placeholder { color: #aaa; }
.vol-form input:focus, .vol-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(62,64,149,0.1);
}
.vol-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vol-submit {
  background: var(--primary);
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.2s;
}
.vol-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ── Spread The Word (Figma design) ── */
.share-section-v2 {
  overflow: hidden;
  background: var(--primary-deeper);
}
.share-v2-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  min-height: 620px;
}
.share-v2-image {
  background: var(--primary-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  overflow: hidden;
}
.share-v2-image img {
  width: 100%;
  max-width: 390px;
  max-height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.share-v2-content {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
.share-v2-inner {
  max-width: 306px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.share-v2-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 58px;
  line-height: 1;
}
.share-v2-spread { color: #ee3137; }
.share-v2-word   { color: #1e2061; }
.share-v2-sub {
  font-size: 12px;
  color: #1e2061;
  line-height: 1.6;
}
.share-v2-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.share-v2-btn {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 16px;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  transition: filter 0.2s;
  width: 100%;
}
.share-v2-btn:hover { filter: brightness(0.9); }
.share-v2-btn > i:first-child { font-size: 22px; flex-shrink: 0; }
.share-v2-btn span { flex: 1; text-align: left; white-space: nowrap; }
.share-v2-btn > i:last-child { font-size: 16px; flex-shrink: 0; }
.share-fb { background: #1a77f2; }
.share-tw { background: #1ea1f3; }
.share-wa { background: #28d366; }
.share-v2-tagline {
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #1e2061;
  text-transform: uppercase;
}
.share-v2-tagline strong { color: #ee3137; font-weight: 400; }

/* ── Footer (Beautiful redesign) ── */
.site-footer {
  background: linear-gradient(180deg, #0a1628 0%, #0d1b2a 100%);
  padding: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-brand-logo img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 16px; }
.footer-brand-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer-brand-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.8;
  max-width: 260px;
}
.footer-brand-tagline em { color: rgba(255,255,255,0.65); font-style: italic; }

.footer-links-col h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  color: var(--secondary);
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(238,49,55,0.3);
}
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.footer-links-grid a {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links-grid a:hover { color: #fff; padding-left: 4px; }

.footer-connect h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  color: var(--secondary);
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(238,49,55,0.3);
}
.footer-social-row { display: flex; gap: 10px; margin-bottom: 24px; }
.footer-social-row a {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 15px; text-decoration: none;
  transition: all 0.2s;
  background: rgba(255,255,255,0.05);
}
.footer-social-row a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-connect .btn-green {
  display: block;
  text-align: center;
  font-size: 16px;
  padding: 12px 24px;
  animation: none;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { color: rgba(255,255,255,0.35); font-size: 11px; }
.footer-copyright a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-copyright a:hover { color: #fff; }
.footer-powered-logo {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px;
}
.footer-powered-logo img {
  height: 22px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s;
  filter: brightness(10);
}
.footer-powered-logo:hover img { opacity: 1; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-connect { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
  .pvc-grid { grid-template-columns: 1fr; }
  .volunteer-inner { grid-template-columns: 1fr; }
  .vol-form-row { grid-template-columns: 1fr; }
}
