/* ============================================================
   Design tokens
   ============================================================ */
:root {
  --bg:           #ffffff;
  --bg-alt:       #f8fafc;
  --bg-warm:      #fffbeb;
  --text:         #111827;
  --text-muted:   #6b7280;
  --accent:       #1a56db;
  --accent-light: #dbeafe;
  --accent-dark:  #1e40af;
  --gold:         #f59e0b;
  --gold-dark:    #d97706;
  --gold-light:   #fef3c7;
  --tier-gold:    #f59e0b;
  --tier-silver:  #9ca3af;
  --tier-bronze:  #b45309;
  --success:      #10b981;
  --border:       #e5e7eb;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:    0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.05);
  --shadow-lg:    0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --radius:       12px;
  --radius-sm:    6px;
  --nav-h:        68px;
  --max-w:        1100px;
  --font:         'Inter', system-ui, sans-serif;
  --mono:         'JetBrains Mono', 'Courier New', monospace;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav-logo-paw { font-size: 1.2rem; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width .25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,86,219,.3);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-sm {
  padding: .4rem 1rem;
  font-size: .82rem;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
}
.btn-sm:hover { background: var(--accent-light); }

/* ============================================================
   Tags / badges
   ============================================================ */
.tag {
  font-size: .75rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-weight: 500;
  border: 1px solid rgba(26,86,219,.15);
}
.tag-arts    { background: #fce7f3; color: #9d174d; border-color: rgba(157,23,77,.15); }
.tag-academic{ background: #d1fae5; color: #065f46; border-color: rgba(6,95,70,.15); }
.tag-athletics{ background: #fee2e2; color: #991b1b; border-color: rgba(153,27,27,.15); }
.tag-community{ background: var(--gold-light); color: #92400e; border-color: rgba(146,64,14,.15); }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 6rem 2rem; }
.section-alt  { background: var(--bg-alt); }
.section-warm { background: var(--bg-warm); }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 3rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-top: -.5rem;
  margin-bottom: 3rem;
}

/* ============================================================
   Hero (homepage)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
  background: linear-gradient(135deg, #fff 0%, #eff6ff 50%, #fffbeb 100%);
}
.hero-bg-accent {
  position: absolute;
  top: -10%; right: -5%;
  width: 60vw; height: 80vh;
  background: radial-gradient(ellipse at 70% 30%, rgba(26,86,219,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-gold {
  position: absolute;
  bottom: -10%; left: -5%;
  width: 50vw; height: 60vh;
  background: radial-gradient(ellipse at 30% 70%, rgba(245,158,11,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: .9rem;
  color: var(--accent);
  margin-bottom: .75rem;
  opacity: 0;
  animation: fadeUp .6s .1s forwards;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
  opacity: 0;
  animation: fadeUp .6s .2s forwards;
}
.hero-title .highlight { color: var(--accent); }
.hero-title .highlight-gold { color: var(--gold-dark); }
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 600px;
  opacity: 0;
  animation: fadeUp .6s .3s forwards;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .6s .4s forwards;
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 4rem;
  color: var(--text-muted);
  font-size: .8rem;
  font-family: var(--mono);
  opacity: 0;
  animation: fadeUp .6s .6s forwards;
}
.scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--text-muted), transparent);
}

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) 2rem 3.5rem;
  background: linear-gradient(135deg, #fff 0%, #eff6ff 60%, #fffbeb 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40vw; height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(26,86,219,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
  opacity: 0;
  animation: fadeUp .5s .05s forwards;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  opacity: 0;
  animation: fadeUp .5s .1s forwards;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: .75rem;
  max-width: 580px;
  opacity: 0;
  animation: fadeUp .5s .15s forwards;
}

/* ============================================================
   Impact bar
   ============================================================ */
.impact-bar {
  background: var(--text);
  padding: 3rem 2rem;
}
.impact-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  font-family: var(--mono);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-top: .4rem;
  font-weight: 500;
}

/* ============================================================
   What We Do (homepage)
   ============================================================ */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.what-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.what-text strong { color: var(--text); font-weight: 600; }
.fund-bar-wrap { margin: 2rem 0; }
.fund-bar-label {
  font-family: var(--mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: .6rem;
}
.fund-bar {
  display: flex;
  height: 36px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fund-bar-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--mono);
}
.fund-bar-classroom { background: var(--accent); width: 80%; }
.fund-bar-programs  { background: var(--gold);   width: 20%; }
.fund-bar-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.fund-bar-legend span { display: flex; align-items: center; gap: .4rem; }
.fund-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fund-dot-blue { background: var(--accent); }
.fund-dot-gold { background: var(--gold); }

.program-highlights {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.program-highlight-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-muted);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.program-highlight-item:hover { background: var(--bg-alt); }
.program-highlight-icon { font-size: 1.1rem; flex-shrink: 0; }

.what-sidebar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.sidebar-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

/* ============================================================
   News cards
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.news-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  background: var(--bg);
}
.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--accent);
}
.news-date {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.news-title { font-size: 1.05rem; font-weight: 700; }
.news-excerpt { font-size: .92rem; color: var(--text-muted); flex: 1; }
.news-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}
.news-link:hover { text-decoration: underline; }

/* ============================================================
   Event preview items
   ============================================================ */
.events-preview { display: flex; flex-direction: column; gap: 1rem; }
.event-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: box-shadow .2s, border-color .2s;
}
.event-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.event-date-badge {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: .4rem .5rem;
}
.event-date-month {
  font-family: var(--mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .85;
}
.event-date-day {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}
.event-info { flex: 1; }
.event-name { font-weight: 700; font-size: 1rem; }
.event-meta { font-size: .85rem; color: var(--text-muted); margin-top: .2rem; }
.event-tag { margin-top: .5rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--accent);
  padding: 4.5rem 2rem;
  text-align: center;
  color: #fff;
}
.cta-band-warm {
  background: var(--bg-warm);
  color: var(--text);
}
.cta-band-dark {
  background: #111827;
  color: #fff;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: .75rem;
}
.cta-band p {
  font-size: 1.05rem;
  opacity: .85;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.cta-band-warm p { color: var(--text-muted); opacity: 1; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
}
.btn-white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   Sponsors (homepage strip)
   ============================================================ */
.sponsors-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 2.5rem 0 1.5rem;
}
.sponsor-logo-placeholder {
  height: 52px;
  min-width: 120px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--text-muted);
  padding: 0 1.25rem;
  font-family: var(--mono);
}

/* ============================================================
   Board cards
   ============================================================ */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.board-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.board-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.board-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--accent);
  overflow: hidden;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(26,86,219,.15);
}
.board-avatar img { width: 100%; height: 100%; object-fit: cover; }
.board-name { font-weight: 700; font-size: 1.05rem; }
.board-title {
  font-size: .82rem;
  font-family: var(--mono);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .3rem;
}
.board-bio {
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: .75rem;
  line-height: 1.6;
}
.board-contact {
  margin-top: 1rem;
  font-size: .82rem;
}
.board-contact a { color: var(--accent); }
.board-contact a:hover { text-decoration: underline; }

/* ============================================================
   Mission & fast facts
   ============================================================ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.mission-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.mission-quote {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  border-left: 4px solid var(--accent);
  padding-left: 1.25rem;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.facts-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.facts-card-title {
  font-weight: 700;
  font-size: .88rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.fact-item {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .9rem;
}
.fact-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.fact-label {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fact-value { font-size: .95rem; font-weight: 600; }
.fact-link { color: var(--accent); }
.fact-link:hover { text-decoration: underline; }

/* ============================================================
   Community links
   ============================================================ */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.community-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all .2s;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.community-card:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.community-icon { font-size: 1.8rem; }
.community-name { font-weight: 700; font-size: .95rem; }
.community-desc { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   Program cards
   ============================================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.program-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: var(--bg);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.program-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--accent);
}
.program-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.program-icon { font-size: 1.8rem; }
.program-name { font-size: 1.05rem; font-weight: 700; }
.program-desc { font-size: .9rem; color: var(--text-muted); flex: 1; }

/* ============================================================
   Calendar
   ============================================================ */
.calendar-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--bg-alt);
}
.calendar-frame {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
}
.calendar-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ============================================================
   Steps (How it Works)
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.6% + 1rem);
  right: calc(16.6% + 1rem);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 4px var(--accent-light);
}
.step-title { font-weight: 700; font-size: 1rem; margin-bottom: .4rem; }
.step-desc { font-size: .9rem; color: var(--text-muted); }

/* ============================================================
   Goal bar (fundraiser)
   ============================================================ */
.goal-bar-wrap { margin: 1.5rem 0; }
.goal-bar {
  height: 20px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.08);
}
.goal-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  border-radius: 999px;
  transition: width 1s ease-out;
}
.goal-meta {
  display: flex;
  justify-content: space-between;
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  font-family: var(--mono);
}
.goal-meta strong { color: var(--text); }

/* ============================================================
   Fundraiser results stats
   ============================================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}
.result-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.result-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-dark);
  font-family: var(--mono);
  letter-spacing: -1px;
  line-height: 1;
}
.result-label {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .4rem;
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
details.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); }
summary.faq-q {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: .97rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color .2s;
}
summary.faq-q:hover { color: var(--accent); }
summary.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] summary.faq-q::after {
  content: '−';
  color: var(--accent);
}
.faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ============================================================
   Volunteer cards
   ============================================================ */
.vol-group { margin-bottom: 3rem; }
.vol-group-title {
  font-weight: 700;
  font-size: .78rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--accent-light);
}
.vol-list { display: flex; flex-direction: column; gap: .75rem; }
.vol-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: box-shadow .2s, border-color .2s;
}
.vol-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.vol-icon { font-size: 1.5rem; flex-shrink: 0; }
.vol-info { flex: 1; }
.vol-name { font-weight: 700; font-size: .97rem; }
.vol-time { font-size: .82rem; color: var(--text-muted); margin-top: .2rem; }
.vol-action { flex-shrink: 0; }

/* ============================================================
   Donate — method cards
   ============================================================ */
.donate-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.donate-method-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .2s, transform .2s;
}
.donate-method-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.donate-method-icon { font-size: 2rem; }
.donate-method-title { font-weight: 700; font-size: 1.05rem; }
.donate-method-desc { font-size: .9rem; color: var(--text-muted); flex: 1; }

/* ============================================================
   Sponsor tiers
   ============================================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.tier-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.tier-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.tier-card-gold    { border-color: var(--tier-gold);   background: #fffdf5; }
.tier-card-silver  { border-color: var(--tier-silver); }
.tier-card-bronze  { border-color: var(--tier-bronze); background: #fdf8f3; }
.tier-card-friend  { border-color: var(--border); }
.tier-badge {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: .25rem .65rem;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}
.tier-badge-gold   { background: var(--gold-light); color: #92400e; }
.tier-badge-silver { background: #f3f4f6; color: #374151; }
.tier-badge-bronze { background: #fef3c7; color: var(--tier-bronze); }
.tier-badge-friend { background: var(--bg-alt); color: var(--text-muted); }
.tier-featured {
  position: absolute;
  top: -12px; right: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  font-family: var(--mono);
  padding: .2rem .65rem;
  border-radius: 999px;
  letter-spacing: .5px;
}
.tier-amount {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--mono);
  letter-spacing: -1px;
}
.tier-amount-gold   { color: var(--gold-dark); }
.tier-amount-silver { color: #4b5563; }
.tier-amount-bronze { color: var(--tier-bronze); }
.tier-amount-friend { color: var(--text); }
.tier-divider { border: none; border-top: 1px solid var(--border); }
.tier-benefits { display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.tier-benefit {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .88rem;
  color: var(--text-muted);
}
.tier-check { color: var(--success); font-size: .9rem; flex-shrink: 0; }

/* ============================================================
   Sponsor logo grid
   ============================================================ */
.sponsor-logos-section { margin-top: 3rem; }
.sponsor-logos-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.sponsor-logos-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.sponsor-tier-badge-inline {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .2rem .5rem;
  border-radius: 4px;
}
.badge-gold-inline   { background: var(--gold-light); color: #92400e; }
.badge-silver-inline { background: #f3f4f6; color: #374151; }
.badge-bronze-inline { background: #fef3c7; color: var(--tier-bronze); }
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}
.logo-tile {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.25rem;
  transition: box-shadow .2s, transform .2s;
}
.logo-tile:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}
.logo-tile img { max-height: 48px; width: auto; }
.logo-tile-placeholder {
  height: 56px;
  min-width: 140px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--text-muted);
  padding: 0 1.25rem;
  font-family: var(--mono);
}

/* ============================================================
   Tax disclosure
   ============================================================ */
.tax-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.tax-block strong { color: var(--text); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  background: var(--bg-alt);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.footer-left { display: flex; flex-direction: column; gap: .3rem; }
.footer-logo {
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
}
.footer-center {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-center a { color: var(--text-muted); transition: color .2s; font-size: .85rem; }
.footer-center a:hover { color: var(--accent); }
.footer-right { text-align: right; }

/* ============================================================
   Benefit cards (volunteer page)
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.benefit-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.benefit-title { font-weight: 700; font-size: 1rem; margin-bottom: .4rem; }
.benefit-desc { font-size: .9rem; color: var(--text-muted); }

/* ============================================================
   Section header row (title + view all link)
   ============================================================ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-header .section-title { margin-bottom: 0; }
.view-all {
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.view-all:hover { text-decoration: underline; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s, transform .6s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .what-grid    { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .facts-card   { position: static; }
  .what-sidebar { position: static; }
  .steps-row    { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .impact-bar .container { grid-template-columns: 1fr 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(255,255,255,.98);
    padding: 2rem;
    gap: 1.5rem;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .hero-title { letter-spacing: -1.5px; }
  .impact-bar .container { grid-template-columns: 1fr; gap: 2rem; }
  .tier-grid { grid-template-columns: 1fr; }
  .donate-methods { grid-template-columns: 1fr; }
  .vol-card { flex-wrap: wrap; }
  .vol-action { width: 100%; }
  .vol-action .btn-sm { width: 100%; justify-content: center; }
}

/* ============================================================
   Added: Platinum tier token + accessibility helpers
   ============================================================ */
:root {
  --tier-platinum:       #475569;
  --tier-platinum-light: #e2e8f0;
}

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
  font-size: .9rem;
}
.skip-link:focus { left: 0; }

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   Platinum sponsor tier card
   ============================================================ */
.tier-card-platinum {
  border-color: var(--tier-platinum);
  background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 100%);
}
.tier-badge-platinum {
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  color: #1f2937;
}
.tier-amount-platinum { color: var(--tier-platinum); }

/* ============================================================
   Tiered sponsor display wall (logo size scales with tier)
   ============================================================ */
.sponsor-wall { display: flex; flex-direction: column; gap: 2.5rem; }
.sponsor-tier-row { }
.sponsor-tier-heading {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.sponsor-tier-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.sponsor-tier-name {
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: .3rem .75rem;
  border-radius: 999px;
}
.tier-name-platinum { background: var(--tier-platinum-light); color: var(--tier-platinum); }
.tier-name-gold     { background: var(--gold-light);          color: #92400e; }
.tier-name-silver   { background: #f3f4f6;                    color: #374151; }
.tier-name-bronze   { background: #fef3c7;                    color: var(--tier-bronze); }

.sponsor-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.sponsor-tile {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  overflow: hidden;
}
.sponsor-tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.sponsor-tile img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
.sponsor-tile-empty {
  border-style: dashed;
  color: var(--text-muted);
  font-weight: 500;
  font-family: var(--mono);
  font-size: .8rem;
  box-shadow: none;
}
/* tier-scaled sizing */
.sponsor-tier-platinum .sponsor-tile { height: 96px;  min-width: 240px; border-top: 3px solid var(--tier-platinum); font-size: 1.15rem; }
.sponsor-tier-gold     .sponsor-tile { height: 80px;  min-width: 200px; border-top: 3px solid var(--gold);          font-size: 1.05rem; }
.sponsor-tier-silver   .sponsor-tile { height: 64px;  min-width: 160px; border-top: 3px solid var(--tier-silver);   font-size: .95rem; }
.sponsor-tier-bronze   .sponsor-tile { height: 54px;  min-width: 140px; border-top: 3px solid var(--tier-bronze);   font-size: .88rem; }

/* ============================================================
   Photo gallery
   ============================================================ */
.gallery-group { margin-bottom: 3.5rem; }
.gallery-group:last-child { margin-bottom: 0; }
.gallery-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.gallery-group-title { font-size: 1.3rem; font-weight: 800; letter-spacing: -.5px; }
.gallery-group-date {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem .85rem .7rem;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.gallery-item:hover .gallery-item-caption,
.gallery-item:focus-visible .gallery-item-caption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(17,24,39,.92);
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox-figure { max-width: 1000px; width: 100%; text-align: center; }
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.lightbox-caption {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  margin-top: 1rem;
  font-weight: 500;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* Homepage photo teaser */
.photo-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.photo-teaser-grid .gallery-item { aspect-ratio: 1 / 1; }

@media (max-width: 900px) {
  .photo-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .sponsor-tier-platinum .sponsor-tile,
  .sponsor-tier-gold .sponsor-tile { min-width: 140px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  [class*="hero-"][style], .hero-eyebrow, .hero-title, .hero-sub, .hero-cta { opacity: 1 !important; }
}
