/* ================================================================
   STEELER FOOTBALL SIDELINE BOOSTER CLUB
   Main Stylesheet — Fontana High School Football
   Colors: Maroon #6B1A2B | Black #111 | White #FFF | Gray #6B6B6B
   Fonts: Bebas Neue (display) | Oswald (headings) | Inter (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --maroon:       #6B1A2B;
  --dark-maroon:  #4A1020;
  --black:        #111111;
  --white:        #FFFFFF;
  --off-white:    #F5F5F0;
  --gray:         #6B6B6B;
  --light-gray:   #E5E5E5;
  --silver:       #C0C0C0;
  --font-display: 'Bebas Neue', cursive;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   all 0.3s ease;
  --shadow:       0 4px 24px rgba(0,0,0,0.14);
  --shadow-hover: 0 10px 40px rgba(0,0,0,0.24);
  --radius:       4px;
  --radius-lg:    8px;
  --max-width:    1200px;
  --section-pad:  80px 0;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== CONTAINERS ===== */
.container        { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--narrow{ max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container--wide  { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.15; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 12px;
}
.section-label--white { color: var(--silver); }

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  position: relative;
  padding-bottom: 16px;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 4px;
  background: var(--maroon);
}
.section-heading.centered { text-align: center; }
.section-heading.centered::after { left: 50%; transform: translateX(-50%); }
.section-heading--white::after { background: var(--white); }

.section-intro {
  font-size: 17px;
  color: var(--gray);
  max-width: 620px;
  line-height: 1.75;
  margin-top: 20px;
}
.section-intro.centered  { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro--white    { color: rgba(255,255,255,0.75); }

/* ===== UTILITY ===== */
.text-center  { text-align: center; }
.text-maroon  { color: var(--maroon); }
.text-white   { color: var(--white); }
.text-gray    { color: var(--gray); }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.divider            { height: 1px; background: var(--light-gray); margin: 32px 0; }
.divider--dark      { background: rgba(255,255,255,0.1); }
.divider--maroon    { background: var(--maroon); height: 3px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary  { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.btn-primary:hover { background: var(--dark-maroon); border-color: var(--dark-maroon); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary{ background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-outline:hover { background: var(--maroon); color: var(--white); transform: translateY(-2px); }
.btn-dark     { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: #222; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 18px 38px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--maroon);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo img { height: 62px; width: auto; }
.header-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.header-logo-text .club-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}
.header-logo-text .club-sub {
  font-size: 10px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Main Nav */
.site-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10px; right: 10px;
  height: 2px;
  background: var(--maroon);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--maroon);
  min-width: 200px;
  padding: 8px 0;
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--silver);
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(107,26,43,0.25); padding-left: 28px; }

.header-cta { margin-left: 8px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: 81px; left: 0; right: 0;
  background: #0d0d0d;
  border-bottom: 3px solid var(--maroon);
  padding: 16px 24px 24px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  max-height: calc(100vh - 81px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--silver);
  padding: 12px 4px;
  border-bottom: 1px solid #1e1e1e;
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--white); padding-left: 10px; }
.mobile-nav .btn { margin-top: 16px; justify-content: center; }

/* ===== PAGE OFFSET ===== */
.page-content { padding-top: 81px; }

/* ===== HERO — HOMEPAGE ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, #060606 0%, #0f0408 35%, #2a0a13 65%, var(--maroon) 100%);
  overflow: hidden;
}
/* Football field lines overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 49px,
      rgba(255,255,255,0.025) 49px,
      rgba(255,255,255,0.025) 51px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 99px,
      rgba(255,255,255,0.015) 99px,
      rgba(255,255,255,0.015) 101px
    );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none;
}
/* Optional real stadium image: add bg-image class with background-image: url() to .hero */
.hero.bg-image { background-size: cover; background-position: center; background-blend-mode: multiply; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0 100px;
}
.hero-content { max-width: 700px; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,26,43,0.4);
  border: 1px solid rgba(107,26,43,0.6);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-pill span { color: var(--silver); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 108px);
  color: var(--white);
  line-height: 0.92;
  margin-bottom: 4px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.hero-title .accent { color: var(--maroon); }
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 300;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 16px 0 20px;
  border-left: 4px solid var(--maroon);
  padding-left: 16px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-badge {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid rgba(107,26,43,0.5);
  background: rgba(107,26,43,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.hero-badge .est-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
}
.hero-badge .year {
  font-family: var(--font-display);
  font-size: 68px;
  color: var(--white);
  line-height: 1;
}
.hero-badge .school-name {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ===== STATS BAR ===== */
.stats-bar { background: var(--maroon); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--dark-maroon); }
.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== SECTIONS ===== */
.section       { padding: var(--section-pad); }
.section-dark  { background: var(--black); color: var(--white); }
.section-maroon{ background: var(--maroon); color: var(--white); }
.section-light { background: var(--off-white); }
.section-gray  { background: #F0F0EE; }

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.card-dark { background: #1a1a1a; color: var(--white); }
.card-bordered { border: 2px solid var(--light-gray); box-shadow: none; }
.card-bordered:hover { border-color: var(--maroon); }

.card-image { position: relative; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.card:hover .card-image img { transform: scale(1.06); }
.card-image-placeholder {
  background: linear-gradient(135deg, #1a0810, #2d0f1a);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  font-size: 48px;
  color: rgba(107,26,43,0.4);
}

.card-date-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-heading);
  text-align: center;
  padding: 6px 10px;
  border-radius: var(--radius);
  min-width: 52px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.card-date-badge .month { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.card-date-badge .day   { font-size: 22px; font-weight: 700; line-height: 1; }

.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-category {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 8px;
}
.card-category--light { color: var(--silver); }
.card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.25;
}
.card-title a:hover { color: var(--maroon); }
.card-text { font-size: 14px; color: var(--gray); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.card-text--light { color: rgba(255,255,255,0.65); }

.card-footer-bar {
  padding: 14px 24px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-meta { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 6px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(150deg, #060606 0%, #0f0408 40%, #2a0a13 75%, var(--dark-maroon) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 32px,
    rgba(107,26,43,0.04) 32px,
    rgba(107,26,43,0.04) 33px
  );
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.page-hero-sub {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
}
.breadcrumb a { color: var(--silver); }
.breadcrumb a:hover { color: var(--maroon); }
.breadcrumb .sep { color: #444; }

/* ===== IMPACT GRID ===== */
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.impact-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.impact-item:hover { background: rgba(107,26,43,0.06); transform: translateY(-3px); }
.impact-icon {
  width: 76px; height: 76px;
  background: rgba(107,26,43,0.1);
  border: 2px solid var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--maroon);
  transition: var(--transition);
}
.impact-item:hover .impact-icon { background: var(--maroon); color: var(--white); transform: scale(1.1) rotate(5deg); }
.impact-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.impact-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }
.impact-desc--white { color: rgba(255,255,255,0.6); }

/* ===== DONATION SECTION ===== */
.donate-hero {
  background: var(--maroon);
  padding: var(--section-pad);
  color: var(--white);
  text-align: center;
}
.donate-amounts { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 28px 0 12px; }
.donate-amount-btn {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
  border-radius: var(--radius);
  transition: var(--transition);
  min-width: 80px;
  text-align: center;
}
.donate-amount-btn:hover, .donate-amount-btn.active {
  background: var(--white);
  color: var(--maroon);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.donate-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
}

/* ===== IMPACT LADDER (Donation page) ===== */
.impact-ladder { display: flex; flex-direction: column; gap: 12px; }
.ladder-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--maroon);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.ladder-item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.ladder-amount {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--maroon);
  min-width: 100px;
  line-height: 1;
}
.ladder-level {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.ladder-desc { font-size: 14px; color: var(--gray); }

/* ===== SPONSORSHIP TIERS ===== */
.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}
.tier-card:hover, .tier-card.featured { border-color: var(--maroon); transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.tier-featured-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 0 var(--radius);
}
.tier-header { background: var(--black); color: var(--white); padding: 28px 24px; text-align: center; }
.tier-level { font-family: var(--font-display); font-size: 36px; color: var(--white); line-height: 1; }
.tier-name  { font-family: var(--font-heading); font-size: 12px; color: var(--silver); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }
.tier-price {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--maroon);
  margin-top: 12px;
  line-height: 1;
}
.tier-price span { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.4); }
.tier-body { padding: 24px; }
.tier-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.tier-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}
.tier-benefits li::before {
  content: '✓';
  color: var(--maroon);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: -1px;
}

/* ===== VOLUNTEER CARDS ===== */
.vol-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.vol-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--maroon);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.vol-card:hover { transform: translateX(5px); box-shadow: var(--shadow); }
.vol-icon {
  width: 52px; height: 52px;
  background: rgba(107,26,43,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--maroon);
  flex-shrink: 0;
}
.vol-title { font-family: var(--font-heading); font-size: 16px; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.vol-desc  { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ===== FAQ ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  transition: var(--transition);
}
.faq-question:hover { color: var(--maroon); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--maroon); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 20px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.form-label--white { color: var(--white); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(107,26,43,0.1); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 12px; color: var(--gray); margin-top: 6px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B1A2B' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ===== SPONSOR LOGO WALL ===== */
.sponsor-wall { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center; padding: 16px 0; }
.sponsor-logo {
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--light-gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 80px;
}
.sponsor-logo:hover { border-color: var(--maroon); box-shadow: var(--shadow); transform: translateY(-3px); }
.sponsor-logo img { max-height: 48px; max-width: 140px; object-fit: contain; filter: grayscale(100%); opacity: 0.7; transition: var(--transition); }
.sponsor-logo:hover img { filter: none; opacity: 1; }
.sponsor-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  text-align: center;
}
.sponsor-name span { display: block; font-size: 10px; font-weight: 400; color: var(--silver); letter-spacing: 1px; margin-top: 2px; }

/* ===== BOARD MEMBER CARDS ===== */
.board-card { text-align: center; padding: 32px 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: var(--transition); }
.board-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.board-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--dark-maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--white);
  border: 4px solid rgba(107,26,43,0.2);
  overflow: hidden;
}
.board-avatar img { width: 100%; height: 100%; object-fit: cover; }
.board-name  { font-family: var(--font-heading); font-size: 18px; font-weight: 700; text-transform: uppercase; }
.board-title { font-size: 13px; color: var(--maroon); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 4px 0 10px; }
.board-bio   { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ===== CONTACT INFO ===== */
.contact-block { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-block-icon {
  width: 48px; height: 48px;
  background: rgba(107,26,43,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--maroon);
  flex-shrink: 0;
}
.contact-block-label { font-family: var(--font-heading); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 3px; }
.contact-block-value { font-size: 16px; color: var(--black); font-weight: 500; }
.contact-block-value a:hover { color: var(--maroon); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: #1a0810; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); aspect-ratio: 1; }
.gallery-item:hover img { transform: scale(1.1); opacity: 0.8; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107,26,43,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 26px;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: rgba(107,26,43,0.3);
  background: linear-gradient(135deg, #0f0408, #1a0810);
}

/* ===== NEWS POSTS ===== */
.post-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 12px; }
.post-tag {
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
}
.post-date { font-size: 12px; color: var(--gray); font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px; }

/* ===== PULL QUOTE ===== */
.pullquote {
  border-left: 6px solid var(--maroon);
  padding: 20px 28px;
  background: var(--off-white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 28px 0;
}
.pullquote p { font-family: var(--font-heading); font-size: 21px; font-weight: 300; font-style: italic; color: var(--black); margin: 0; line-height: 1.55; }
.pullquote cite { display: block; margin-top: 10px; font-family: var(--font-heading); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--maroon); font-style: normal; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--black); padding: 64px 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); color: var(--white); line-height: 1; margin-bottom: 16px; }
.cta-banner p { font-size: 18px; color: var(--silver); max-width: 520px; margin: 0 auto 32px; line-height: 1.65; }

/* ===== FOOTER ===== */
.site-footer {
  background: #080808;
  color: var(--white);
  padding-top: 64px;
  border-top: 4px solid var(--maroon);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { height: 84px; margin-bottom: 16px; }
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--silver);
  transition: var(--transition);
}
.social-btn:hover { background: var(--maroon); border-color: var(--maroon); color: var(--white); transform: translateY(-3px); }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--maroon);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 13px;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-link:hover { color: var(--white); padding-left: 4px; }
.footer-link::before { content: '›'; color: var(--maroon); font-weight: 700; font-size: 16px; }

.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 13px; color: var(--silver); line-height: 1.5; }
.footer-contact-item i { color: var(--maroon); flex-shrink: 0; margin-top: 2px; width: 14px; }
.footer-contact-item a:hover { color: var(--white); }

.newsletter-form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-input {
  flex: 1;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--maroon); background: rgba(255,255,255,0.1); }
.newsletter-btn {
  padding: 11px 16px;
  background: var(--maroon);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--dark-maroon); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: var(--white); }
.footer-accent-bar { height: 4px; background: linear-gradient(90deg, var(--dark-maroon), var(--maroon), var(--dark-maroon)); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--maroon);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 500;
  border: none;
  box-shadow: 0 4px 16px rgba(107,26,43,0.5);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--dark-maroon); transform: translateY(-3px); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE — 1100px ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-badge { display: none; }
  .nav-link { padding: 8px 8px; font-size: 11px; }
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== RESPONSIVE — 900px ===== */
@media (max-width: 900px) {
  :root { --section-pad: 60px 0; }
  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .vol-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE — 640px ===== */
@media (max-width: 640px) {
  :root { --section-pad: 48px 0; }
  .container { padding: 0 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 58px; }
  .impact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .donate-amounts { gap: 8px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .header-logo-text { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vol-grid { grid-template-columns: 1fr; }
  .ladder-item { flex-direction: column; gap: 8px; }
  .ladder-amount { min-width: auto; }
}
