/* ===================================
   ST. PETE COMMUNITY BAND — STYLES
   Deep Navy + Gold + Cream palette
   Playfair Display + DM Sans
   =================================== */

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

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e42;
  --navy-light: #233d56;
  --gold: #c9922a;
  --gold-light: #e8b84b;
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --white: #ffffff;
  --text: #2b2b2b;
  --text-light: #666;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s ease;
  --radius: 4px;
  --shadow: 0 8px 32px rgba(13,27,42,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }
em { font-style: italic; color: var(--gold); }
p { color: #444; font-size: 1.05rem; }

a { color: inherit; text-decoration: none; }

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.align-center { align-items: center; }
.section { padding: 4rem 0; }
.mt { margin-top: 1rem; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,146,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* SECTION LABEL */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.3rem;
  margin-bottom: 1.2rem;
}
.section-label.light { color: var(--gold-light); border-color: var(--gold-light); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(13,27,42,0.97);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
}
.logo-note {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.logo-note.large { font-size: 3rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.logo-text em { color: var(--gold-light); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.3rem;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== DROPDOWN ===== */
.nav-links .has-dropdown {
  position: relative;
}
.dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 0.2rem;
  opacity: 0.7;
  display: inline-block;
  transition: transform 0.2s;
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 170px;
  background: rgba(13,27,42,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  list-style: none;
  padding: 0.4rem 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  z-index: 999;
  animation: dropIn 0.18s ease both;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  display: block;
}
.dropdown li a {
  display: block;
  padding: 0.55rem 1.1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  border-radius: 0;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover,
.dropdown li a.active {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}
.dropdown li:first-child a { border-radius: 6px 6px 0 0; }
.dropdown li:last-child  a { border-radius: 0 0 6px 6px; }

/* Mobile: dropdown becomes an indented list */
@media (max-width: 768px) {
  .dropdown {
    display: none;
    position: static;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    animation: none;
    border-left: 2px solid rgba(201,146,42,0.4);
    margin: 0.3rem 0 0.3rem 1rem;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
  }
  .dropdown li a:hover { color: var(--gold-light); background: transparent; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #071321 0%, #0d1b2a 40%, #1a2e42 70%, #1c3a56 100%);
}
.staff-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 48px,
    rgba(255,255,255,0.04) 48px,
    rgba(255,255,255,0.04) 50px
  );
}
.hero-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-note {
  position: absolute;
  font-size: 2rem;
  color: rgba(201,146,42,0.15);
  animation: floatNote 12s ease-in-out infinite;
}
.n1 { top: 15%; left: 8%;  animation-delay: 0s;    font-size: 3rem; }
.n2 { top: 35%; right: 10%; animation-delay: 2s;   font-size: 2.5rem; }
.n3 { top: 65%; left: 15%; animation-delay: 4s;   font-size: 1.8rem; }
.n4 { top: 20%; right: 25%; animation-delay: 1s;   font-size: 4rem; }
.n5 { bottom: 20%; right: 5%; animation-delay: 3s; font-size: 3.5rem; }
.n6 { bottom: 35%; left: 5%; animation-delay: 5s;  font-size: 2rem; }

@keyframes floatNote {
  0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.12; }
  50% { transform: translateY(-20px) rotate(5deg); opacity: 0.25; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 6rem;
  animation: heroReveal 1s ease both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(201,146,42,0.2);
  border: 1px solid rgba(201,146,42,0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-title em { color: var(--gold-light); }
.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.2rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== RECRUITING BANNER ===== */
.recruiting-banner {
  background: var(--gold);
  padding: 0.9rem 0;
}
.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  flex-wrap: wrap;
}
.banner-icon { font-size: 1.2rem; }
.banner-link {
  margin-left: auto;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.banner-link:hover { opacity: 0.75; }

/* ===== ABOUT INTRO ===== */
.about-intro { background: var(--cream); }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; }
.about-text .btn { margin-top: 1rem; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.stat-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== MISSION ===== */
.mission-section { background: var(--navy); }
.mission-card {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.mission-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 1.5rem 0 3rem;
  position: relative;
  padding: 0 2rem;
}
.mission-card blockquote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 0;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.pillar {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.pillar:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,146,42,0.3);
}
.pillar-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.pillar h4 { color: var(--gold-light); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ===== REHEARSAL ===== */
.rehearsal-section { background: var(--cream-dark); }
.rehearsal-text h2 { margin-bottom: 1.2rem; }
.rehearsal-text p { margin-bottom: 1.5rem; }
.calendar-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.calendar-card::before {
  content: '♪';
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-size: 8rem;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cal-header {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.cal-day {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cal-time {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.cal-season {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.cal-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===== FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 6rem 0 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }
.page-hero .staff-lines { position: absolute; inset: 0; }

/* ===== PERFORMANCES PAGE ===== */
.perf-table-wrap {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.perf-table {
  width: 100%;
  border-collapse: collapse;
}
.perf-table thead { background: var(--navy); }
.perf-table th {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: left;
}
.perf-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
  vertical-align: top;
}
.perf-table tr:last-child td { border-bottom: none; }
.perf-table tr:hover td { background: var(--cream); }
.perf-date { font-weight: 600; color: var(--navy); white-space: nowrap; }
.perf-event { font-weight: 500; }
.perf-time { color: var(--gold); font-weight: 600; white-space: nowrap; }
.perf-location { color: var(--text-light); font-size: 0.9rem; }
.map-link {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  transition: all var(--transition);
}
.map-link:hover { background: var(--gold); color: var(--white); }
.no-events {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── Responsive table: collapse to cards on mobile ── */
@media (max-width: 680px) {
  .perf-table-wrap { border-radius: 8px; }

  /* Hide the header row */
  .perf-table thead { display: none; }

  /* Each row becomes its own card */
  .perf-table tr {
    display: block;
    border-bottom: 2px solid var(--cream-dark);
    padding: 1.2rem 1rem;
  }
  .perf-table tr:last-child { border-bottom: none; }
  .perf-table tr:hover td  { background: transparent; }

  /* Each cell stacks full-width */
  .perf-table td {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.3rem 0;
    border-bottom: none;
    font-size: 0.92rem;
  }

  /* Label injected via data-label attribute */
  .perf-table td::before {
    content: attr(data-label);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    min-width: 60px;
    flex-shrink: 0;
  }

  /* Event name gets slightly larger treatment */
  .perf-table td.perf-event {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    padding-bottom: 0.5rem;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid var(--cream-dark);
  }
  .perf-table td.perf-event::before { display: none; }

  .perf-date { white-space: normal; }
  .perf-time { white-space: normal; }
}


/* ===== ABOUT PAGE ===== */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,146,42,0.2));
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--cream);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.timeline-item h4 { margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.95rem; color: var(--text-light); }

/* ===== JOIN PAGE ===== */
.instrument-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.instrument-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: all var(--transition);
}
.instrument-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.instrument-card.featured { border-color: var(--gold); background: #fffbf2; }
.instrument-emoji { font-size: 2rem; margin-bottom: 0.5rem; }
.instrument-name { font-size: 0.9rem; font-weight: 500; }
.instrument-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-top: 0.4rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-info-item h4 { margin-bottom: 0.2rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); }
.contact-info-item a { color: var(--gold); font-weight: 500; }

/* ===== DONATE PAGE ===== */
.donate-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.donate-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.donate-card.featured {
  border-color: var(--gold);
  background: linear-gradient(to bottom, #fffbf2, var(--white));
}
.donate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.donate-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.donate-tier { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.donate-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer-brand h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0.7rem 0 0.7rem;
  font-family: var(--font-display);
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.social-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(201,146,42,0.4);
  padding-bottom: 0.1rem;
  transition: all var(--transition);
}
.social-link:hover { color: var(--gold); }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}
.footer-links ul { list-style: none; color: rgba(255,255,255,0.5); }
.footer-links li { margin-bottom: 0.5rem; color:rgba(255,255,255,0.5); }
.footer-links p { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--gold-light); }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.5rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-links p:hover { color: var(--gold); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.5rem; color: rgba(255,255,255,0.5);}
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-pillars { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .donate-tiers { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(13,27,42,0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0.5rem;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .mission-pillars { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .section { padding: 4rem 0; }
  .perf-table td, .perf-table th { padding: 0.8rem 1rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .instrument-grid { grid-template-columns: repeat(2, 1fr); }
}