/* ===================================================
   Renaissance High School Band — Custom Theme CSS
   Color Palette (RHS Knights):
     Primary Red:   #83000E
     Dark Red:      #5c0009
     Light Red:     #a01020
     Gold:          #c9a227
     Dark Gold:     #a8841a
     Light Gold:    #e0bc50
     White:         #FFFFFF
     Light Gray:    #F4F6F8
     Text Dark:     #1a1a2e
=================================================== */

:root {
  --red:        #83000E;
  --red-dark:   #5c0009;
  --red-light:  #a01020;
  --red-pale:   #fdf0f1;
  --gold:       #c9a227;
  --gold-dark:  #a8841a;
  --gold-light: #e0bc50;
  --white:      #FFFFFF;
  --gray-light: #F4F6F8;
  --gray:       #E0E4EA;
  --text:       #1a1a2e;
  --text-muted: #555e6e;
  --shadow:     0 4px 24px rgba(131,0,14,0.12);
  --radius:     10px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-light); text-decoration: underline; }

img { max-width: 100%; height: auto; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--red-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--red-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-outline-red {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  text-decoration: none;
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(92, 0, 9, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.nav-brand:hover { color: var(--gold-light); text-decoration: none; }
.nav-logo { width: 42px; height: 42px; object-fit: contain; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}
.nav-links li a {
  display: block;
  padding: 0.45rem 0.85rem;
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-links li a:hover {
  color: var(--gold-light);
  background: rgba(201,162,39,0.15);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(160deg, var(--red-dark) 0%, var(--red) 55%, #9a0010 100%);
  overflow: hidden;
}

/* Musical wave decoration */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.04)' d='M0,192L60,186.7C120,181,240,171,360,181.3C480,192,600,224,720,218.7C840,213,960,171,1080,165.3C1200,160,1320,192,1380,208L1440,224L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 1.5rem 4rem;
}

.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-white { background: var(--white); }

.section-red {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  color: var(--white);
}

.section-red-light {
  background: var(--red-pale);
  color: var(--text);
}

.section-gold {
  background: linear-gradient(135deg, #4a2800 0%, #7a5000 100%);
  color: var(--white);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-white .section-title      { color: var(--red); }
.section-red .section-title        { color: var(--white); }
.section-red-light .section-title  { color: var(--red); }
.section-gold .section-title       { color: var(--white); }

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 0.5rem;
}

.section-red .section-title::after  { background: var(--gold); }
.section-gold .section-title::after { background: var(--gold-light); }

.section-subtitle {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.section-white .section-subtitle     { color: var(--text-muted); }
.section-red .section-subtitle       { color: rgba(255,255,255,0.8); }
.section-red-light .section-subtitle { color: var(--text-muted); }
.section-gold .section-subtitle      { color: rgba(255,255,255,0.8); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.info-card {
  background: var(--gray-light);
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 4px solid var(--red);
}

.info-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.info-card li {
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray);
  padding-bottom: 0.5rem;
}
.info-card li:last-child { border-bottom: none; padding-bottom: 0; }

/* ===== BANDS ===== */
.bands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.band-card {
  display: flex;
  gap: 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  transition: transform var(--transition), box-shadow var(--transition);
  align-items: flex-start;
}

.band-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.band-icon {
  font-size: 2.25rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.band-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.band-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.band-season {
  display: inline-block;
  background: rgba(201,162,39,0.25);
  color: var(--gold-light);
  border: 1px solid rgba(201,162,39,0.4);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}

/* ===== EVENTS ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-card {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(131,0,14,0.15);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  min-width: 60px;
  padding: 0.5rem;
  text-align: center;
  flex-shrink: 0;
}

.event-month {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-day {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
}

.event-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.4rem;
}

.event-details h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.event-details p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.schedule-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ===== BOARD ===== */
.board-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.board-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 160px;
}

.board-photo-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(201,162,39,0.4);
  margin-bottom: 0.85rem;
  background: rgba(201,162,39,0.1);
  flex-shrink: 0;
}

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

.board-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}

.board-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.board-role {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.board-cta {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,162,39,0.2);
}

.board-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(131,0,14,0.07);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--red-pale);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--red);
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  border-top: 1px solid var(--gray);
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--red);
  text-decoration: underline;
}

/* ===== CONTACT ===== */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 2rem;
  border-radius: var(--radius);
  padding: 2rem;
  align-items: flex-start;
}

.contact-card--primary {
  background: var(--red-dark);
  border-left: 6px solid var(--gold);
  color: var(--white);
}

.contact-card--secondary {
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-left: 6px solid var(--red);
}

.contact-card-icon {
  font-size: 2.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.contact-card-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.contact-card--primary .contact-card-content h3 { color: var(--white); }
.contact-card--secondary .contact-card-content h3 { color: var(--red); }

.contact-card-content p {
  font-size: 0.97rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.contact-card--primary .contact-card-content p { color: rgba(255,255,255,0.8); }
.contact-card--secondary .contact-card-content p { color: var(--text-muted); }

.contact-note {
  font-size: 0.85rem !important;
  margin-top: 0.75rem;
  margin-bottom: 0 !important;
}
.contact-note a { color: rgba(255,255,255,0.7); text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: var(--red-dark);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.footer-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.footer p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 5rem 0 2.5rem;
  margin-top: 0;
}

.page-hero--red {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  color: var(--white);
}

.page-hero--gold {
  background: linear-gradient(135deg, #4a2800 0%, #7a5000 100%);
  color: var(--white);
}

.page-hero .container { padding-top: 3.5rem; }

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
}

/* ===== NAV ACTIVE ===== */
.nav-active {
  color: var(--gold-light) !important;
  background: rgba(201,162,39,0.15) !important;
}

/* ===== NARROW CONTAINER ===== */
.container--narrow {
  max-width: 780px;
}

/* ===== QUICKLINKS (homepage) ===== */
.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.quicklink-card {
  display: block;
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.quicklink-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(131,0,14,0.12);
  text-decoration: none;
}

.quicklink-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.quicklink-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.quicklink-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== BANDS PAGE ===== */
.bands-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 1.75rem;
}

.band-card-page {
  background: var(--white);
  border: 1px solid var(--gray);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.band-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.band-icon-lg {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.band-card-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.band-season-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.65rem;
  border-radius: 50px;
}

.band-card-page p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}
.band-card-page p:last-child { margin-bottom: 0; }

/* ===== EVENTS INFO BOX ===== */
.events-info-box {
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 2.5rem;
}

.events-info-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.events-info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.events-info-box li {
  font-size: 0.93rem;
  color: var(--text);
}

/* ===== BOARD PAGE ===== */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.board-card-page {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.board-photo-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  background: var(--gray-light);
}

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

.board-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-dark);
  background: #fdf6e3;
}

.board-info-page h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.board-role-page {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.board-info-page p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.board-cta-box {
  background: var(--red-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.board-cta-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.board-cta-box p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.board-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== DIRECTOR PAGE ===== */
.director-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.director-photo-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--gold);
  background: var(--gray-light);
}

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

.director-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--gold-dark);
  background: #fdf6e3;
}

.director-title-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  margin-bottom: 1rem;
}

.director-bio-col p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.director-contact-card {
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.75rem;
}

.director-contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.director-contact-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.director-ensembles {
  border-top: 1px solid var(--gray);
  padding-top: 2.5rem;
}

.ensemble-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.ensemble-tag {
  background: var(--red-pale);
  border: 1.5px solid rgba(131,0,14,0.2);
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

/* ===== DONATE PAGE ===== */
.donate-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.impact-card {
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.impact-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.impact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.impact-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.donate-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.donate-card {
  display: flex;
  gap: 2rem;
  border-radius: var(--radius);
  padding: 2rem;
  align-items: flex-start;
}

.donate-card--primary {
  background: var(--red-dark);
  border-left: 6px solid var(--gold);
  color: var(--white);
}

.donate-card--secondary {
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-left: 6px solid var(--red);
}

.donate-card-icon {
  font-size: 2.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.donate-card-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.donate-card--primary .donate-card-content h3 { color: var(--white); }
.donate-card--secondary .donate-card-content h3 { color: var(--red); }

.donate-card-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.donate-card--primary .donate-card-content p { color: rgba(255,255,255,0.82); }
.donate-card--secondary .donate-card-content p { color: var(--text-muted); }

.donate-address {
  font-size: 0.9rem !important;
}

.donate-tax-note {
  background: #fffbea;
  border: 1px solid #e5d080;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: #6b5600;
  line-height: 1.6;
}

/* ===== FAQ PAGE ===== */
.faq-footer-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray);
}

.faq-footer-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ===== CONTACT MAP ===== */
.contact-map {
  margin-top: 3rem;
}

.contact-map .map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-sidebar { order: -1; }
  .info-card { max-width: 400px; }
}

@media (max-width: 900px) {
  .director-grid {
    grid-template-columns: 1fr;
  }
  .director-photo-col { display: flex; justify-content: center; }
  .bands-grid-page { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-brand span { display: none; }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(92, 0, 9, 0.99);
    flex-direction: column;
    padding: 0.75rem 1rem;
    gap: 0.1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .nav-links.open { display: flex; }
  .nav-inner { position: relative; }

  .hero-logo { width: 130px; height: 130px; }

  .bands-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .donate-card {
    flex-direction: column;
    gap: 1rem;
  }

  .board-card-page {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
}
