/* ============================================================
   Pure Parkour Inc — Premium Stylesheet
   Top-tier nonprofit design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --black:        #080808;
  --white:        #ffffff;
  --orange:       #2a7a47;
  --orange-dark:  #1a4d2e;
  --orange-light: #f0f7f2;
  --navy:         #0f172a;
  --gray-100:     #f9fafb;
  --gray-200:     #f1f5f9;
  --gray-300:     #e2e8f0;
  --gray-500:     #64748b;
  --gray-700:     #374151;
  --green:        #16a34a;
  --font-body:    'Inter', 'Segoe UI', Arial, sans-serif;
  --font-display: 'Montserrat', 'Inter', Arial, sans-serif;
  --max:          1140px;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 580px;
}

.text-white .section-title { color: var(--white); }
.text-white .section-sub   { color: rgba(255,255,255,0.72); }
.text-white .tag            { color: #86efac; }

section { padding: 96px 0; }
.bg-gray   { background: var(--gray-100); }
.bg-dark   { background: var(--orange-dark); }
.bg-navy   { background: var(--navy); }
.bg-orange { background: var(--orange); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(42,122,71,0.35); }

.bg-dark .btn-orange {
  background: var(--white);
  color: var(--orange-dark);
  border-color: var(--white);
}
.bg-dark .btn-orange:hover { background: var(--gray-200); border-color: var(--gray-200); box-shadow: none; }

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover { background: #222; transform: translateY(-1px); }

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gray-200); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-300);
}
.btn-outline-dark:hover { border-color: var(--black); }

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }

.nav-donate {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 7px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-donate:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.65)), url('images/hero.jpg') center 20%/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  width: 100%;
  padding: 140px 28px 96px;
  max-width: 820px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-badge {
  margin-bottom: 36px;
}

.hero-logo-badge img {
  height: 88px;
  width: auto;
  background: white;
  padding: 10px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,122,71,0.15);
  border: 1px solid rgba(42,122,71,0.35);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 24px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--orange);
  display: block;
}

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================================================
   IMPACT BAR
   ============================================================ */
.impact-bar {
  background: var(--orange);
  color: var(--white);
  padding: 0;
}

.impact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.impact-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.impact-item:last-child { border-right: none; }

.impact-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
}

.impact-label {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.serve-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

.serve-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.serve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.serve-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.serve-card:hover::before { transform: scaleX(1); }

.serve-icon {
  width: 56px; height: 56px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.serve-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.serve-card p {
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   MISSION SECTION
   ============================================================ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-text .section-sub { margin-bottom: 32px; }

.mission-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}

.mission-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumb-link {
  display: block;
  text-decoration: none;
}

.video-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumb-link:hover img {
  transform: scale(1.03);
}

.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange-dark);
  padding-left: 5px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-thumb-link:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
}

.mission-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 20px;
  border-left: 3px solid var(--orange);
}

.pillar h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.pillar p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================================
   GOALS / FUNDING
   ============================================================ */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.goal-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s;
}

.goal-card:hover { background: rgba(255,255,255,0.08); }

.goal-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #86efac;
  margin-bottom: 8px;
}

.goal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.goal-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.goal-progress {
  margin-top: 20px;
  background: rgba(255,255,255,0.1);
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}

.goal-bar {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}

.weekly-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-300);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.weekly-card-header {
  background: var(--orange-dark);
  color: var(--white);
  padding: 24px 28px;
}

.weekly-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.weekly-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0;
}

.weekly-card-body { padding: 28px; }

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--gray-700);
}

.event-meta-icon {
  width: 36px; height: 36px;
  background: var(--orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.event-meta-item strong { font-weight: 700; color: var(--black); display: block; font-size: 0.88rem; }
.event-meta-item span { font-size: 0.83rem; color: var(--gray-500); }

.event-free-badge {
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.events-flyer {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.events-flyer img { width: 100%; display: block; }

.events-flyer-placeholder {
  background: var(--gray-200);
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================================
   BOARD
   ============================================================ */
.board-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.board-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-300);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s;
}

.board-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.board-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--gray-200);
  margin: 0 auto 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 3px solid var(--gray-300);
}

.board-avatar img { width: 100%; height: 100%; object-fit: cover; }

.board-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.board-card .role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.board-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================================
   DONATE
   ============================================================ */
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.donate-text .section-sub { margin-bottom: 36px; }

.donate-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tier {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
}

.tier:hover { background: rgba(255,255,255,0.1); border-color: rgba(42,122,71,0.4); }

.tier-amt {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
  margin-bottom: 4px;
}

.tier-name {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 6px;
}

.tier-perk {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  min-height: 18px;
}

.tier a { display: block; }

.donate-legal {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

.donate-legal strong { color: rgba(255,255,255,0.7); }

/* ============================================================
   UPDATES / BLOG
   ============================================================ */
.updates-box {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 56px;
  text-align: center;
  border: 1px solid var(--gray-300);
  max-width: 700px;
  margin: 0 auto;
}

.updates-box .section-title { font-size: 2rem; }
.updates-box .section-sub { margin: 0 auto 32px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--orange-dark);
  color: var(--white);
  padding: 160px 28px 80px;
  text-align: center;
}

.page-hero .tag { color: #86efac; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px; height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 0.97rem;
  color: var(--black);
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }

.form-group textarea { min-height: 130px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   PRIVACY
   ============================================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-300);
}

.prose p, .prose li {
  font-size: 0.97rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 14px;
}

.prose ul { list-style: disc; padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--orange); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--orange-dark);
  color: rgba(255,255,255,0.55);
  padding: 72px 28px 36px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.footer-brand img {
  height: 48px;
  background: white;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-501 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(42,122,71,0.12);
  border: 1px solid rgba(42,122,71,0.25);
  color: #86efac;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  margin-left: 20px;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .impact-inner { grid-template-columns: repeat(2, 1fr); }
  .impact-item { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .donate-layout { grid-template-columns: 1fr; gap: 48px; }
  .board-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .serve-grid { grid-template-columns: 1fr; }
  .goals-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .events-layout { grid-template-columns: 1fr; }
  .donate-tiers { grid-template-columns: 1fr 1fr; }
  .mission-pillars { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2.8rem; }
  .hero-logo-badge img { height: 68px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .updates-box { padding: 36px 24px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .board-grid { grid-template-columns: 1fr; }
  .donate-tiers { grid-template-columns: 1fr; }
  .impact-inner { grid-template-columns: 1fr; }
  .impact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin-left: 10px; }
  .page-hero { padding: 140px 20px 60px; }
}

/* ============================================================
   MOBILE NAV — open state
   ============================================================ */
@media (max-width: 768px) {
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 28px 20px;
    border-bottom: 1px solid var(--gray-200);
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.is-open li { border-bottom: 1px solid var(--gray-200); }
  .nav-links.is-open li:last-child { border-bottom: none; padding-top: 8px; }
  .nav-links.is-open a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    color: var(--black) !important;
    background: none !important;
    border-radius: 0 !important;
    padding-left: 0 !important;
  }
  .nav-links.is-open .nav-donate {
    display: block;
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 12px 0 !important;
    border-radius: 7px !important;
    text-align: center;
  }
  .nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ============================================================
   HERO SECONDARY LINKS
   ============================================================ */
.btn-hero {
  padding: 18px 44px;
  font-size: 1.1rem;
  border-radius: 10px;
}

.hero-secondary-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
}

.hero-secondary-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.hero-secondary-links a:hover { color: var(--white); }

/* ============================================================
   IMPACT STORY / TESTIMONIAL
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--black);
  margin: 20px 0 24px;
  padding-left: 22px;
  border-left: 4px solid var(--orange);
  font-style: italic;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.story-author-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.story-author-name { font-weight: 700; font-size: 0.95rem; color: var(--black); }
.story-author-role { font-size: 0.83rem; color: var(--gray-500); margin-top: 2px; }

/* ============================================================
   LEADERSHIP SPLIT
   ============================================================ */
.leadership-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.leadership-stat {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 48px 40px;
  border: 1px solid var(--gray-300);
  text-align: center;
}

/* ============================================================
   EMAIL CAPTURE
   ============================================================ */
.email-capture-box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.email-form { margin-top: 32px; }

.email-form-row {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.email-form-row input[type="email"] {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.email-form-row input[type="email"]:focus { border-color: var(--orange); }

.email-form-sub {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 12px;
}

/* ============================================================
   FOOTER SOCIAL
   ============================================================ */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-social a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .leadership-split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .email-form-row { flex-direction: column; }
  .hero-secondary-links { flex-direction: column; gap: 8px; }
  .serve-grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .serve-grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   DONATE PAGE — section divider
   ============================================================ */
.giving-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 32px;
}

.giving-divider::before,
.giving-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-300);
}

.giving-divider span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  white-space: nowrap;
  padding: 0 4px;
}

/* ============================================================
   DONATE PAGE — simple giving grid
   ============================================================ */
.donate-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

.donate-simple-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all 0.2s;
}

.donate-simple-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--orange);
}

.donate-simple-card-featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
}

.donate-simple-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.donate-simple-amt {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
  margin-bottom: 4px;
}

.donate-simple-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.donate-simple-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 36px;
}

/* ============================================================
   DONATE PAGE — merch grid
   ============================================================ */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.merch-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
}

.merch-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.merch-card-featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
}

.merch-featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
}

.merch-img-wrap {
  background: var(--gray-100);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.merch-img-wrap img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.merch-card-body {
  padding: 20px;
}

.merch-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}

.merch-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.merch-desc {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 16px;
  min-height: 40px;
}

@media (max-width: 1024px) {
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-simple-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .merch-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .donate-simple-grid { grid-template-columns: 1fr 1fr; }
  .merch-img-wrap { padding: 16px; }
}
