/* ============================================
   OCMS — Global Design Tokens
   ============================================ */
:root {
  --red:   #C8384A;
  --gold:  #C9A84C;
  --black: #1A1A1A;
  --bg:    #f5f3ee;
  --white: #ffffff;
  --gray:  #555555;
}

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


/* ============================================
   Shared Base Components
   (default look — used by Volunteer, Donate,
   and anywhere not explicitly overridden)
   ============================================ */

.hero {
  padding: 64px 40px;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '♪';
  position: absolute; top: -20px; right: 60px;
  font-size: 220px; color: rgba(201,168,76,0.06);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--red), var(--gold));
  color: black; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--black); line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: black;
  font-size: 1.05rem; max-width: 600px;
  margin: 0 auto;
}

.page-wrap {
  max-width: 860px; margin: 0 auto;
  padding: 48px 24px 80px;
}

.intro-card {
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin-bottom: 32px;
  border-top: 4px solid var(--red);
  position: relative;
}
.intro-card p {
  font-size: 1.05rem; color: var(--gray); line-height: 1.85;
}
.intro-card p strong { color: var(--black); }

.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.cta-box {
  background: linear-gradient(135deg, var(--black), #2a1018);
  border-radius: 12px; padding: 40px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.cta-box h2 {
  font-family: Georgia, serif; color: var(--white);
  font-size: 1.5rem; margin-bottom: 10px; position: relative;
}
.cta-box p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem; margin-bottom: 28px; position: relative;
}
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--red), #a52535);
  color: white; text-decoration: none;
  border-radius: 8px; font-size: 0.95rem;
  font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; position: relative;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(200,56,74,0.4);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,56,74,0.5);
  color: white;
}

/* CTA button group — for pages with two buttons side by side */
.cta-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-btn-donate {
  background: linear-gradient(135deg, var(--gold), #b8933a);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.cta-btn-donate:hover {
  box-shadow: 0 8px 24px rgba(201,168,76,0.5);
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--red), #a52535);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(200,56,74,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(200,56,74,0.45);
  color: #fff;
}
.donate-btn:active { transform: translateY(0); }

@media (max-width: 782px) {
  .donate-btn { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
}


/* ============================================
   Header — Announcement Bar + Two-Row Layout
   (logo/title centering and nav/donate-button
   positioning are set via block Layout settings
   per your workflow — this CSS only covers what
   blocks can't do: responsive behavior)
   ============================================ */

@media (max-width: 600px) {
  .announcement-bar {
    flex-direction: column;
    text-align: center;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .wp-block-site-logo img {
    max-width: 100px;
    height: auto;
  }
}


/* ============================================
   Homepage — Concert Hero
   (manual, update per concert — currently PAUSED,
   revisit once final homepage direction is set)
   ============================================ */

.concert-hero {
  background: linear-gradient(135deg, var(--black), #2a1018);
  border-radius: 12px;
  padding: 48px 40px;
  margin: 0 auto 40px;
  max-width: 860px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.concert-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.concert-hero .hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--red), var(--gold));
  color: black;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
}
.concert-hero-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
}
.concert-hero-month {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.concert-hero-day {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}
.concert-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
  position: relative;
}
.concert-hero h1 span {
  color: var(--gold);
  display: block;
  font-size: 0.8em;
  margin-top: 4px;
}
.concert-hero-time {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 28px;
  position: relative;
}
.concert-hero .cta-btn {
  position: relative;
}

@media (max-width: 480px) {
  .concert-hero {
    padding: 36px 24px;
  }
}


/* ============================================
   Volunteer Page — page-specific
   ============================================ */

.volunteerbody {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.role-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid var(--gold);
  transition: transform .2s, box-shadow .2s;
}
.role-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,56,74,0.12);
  border-left-color: var(--red);
}
.role-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.icon-red  { background: #fdf0f2; }
.icon-gold { background: #fdf7e8; }
.role-card h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 4px;
}
.role-card p { font-size: 0.875rem; color: var(--gray); margin: 0; line-height: 1.55; }

.more-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light, #fdf7e8);
  border: 1px dashed var(--gold);
  border-radius: 8px; padding: 14px 20px;
  font-size: 0.9rem; color: var(--gray);
  margin-bottom: 32px; width: 100%;
}
.more-tag span { font-size: 1.2rem; }


/* ============================================
   Sponsor Us Page — overrides scoped to .sponsorbody
   ============================================ */

.sponsorheader {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  max-width: 700px;
  margin: 0 auto;
}
.sponsorheader h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--black);
}
.sponsorheader h1 span { color: var(--red); }
.sponsorheader p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 520px;
}

.sponsorbody .intro-card {
  background: var(--white);
  padding: 32px 36px;
}
.sponsorbody .intro-card p { margin: 0; }
.sponsorbody .intro-card p + p { margin-top: 10px; }

.sponsorbody .sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.sponsorbody .sponsor-card {
  background: var(--white);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid var(--gold);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.sponsorbody .sponsor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,56,74,0.12);
  border-left-color: var(--red);
}
.sponsorbody .sponsor-card span {
  font-size: 0.92rem; font-weight: 600; color: var(--black);
}


/* ============================================
   Donate Page — page-specific
   ============================================ */

.donate-hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  max-width: 700px;
  margin: 0 auto;
}
.donate-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--black);
}
.donate-hero h1 span { color: var(--red); }
.donate-hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 520px;
}
@media (max-width: 480px) {
  .donate-hero { padding: 2.5rem 1rem 2rem; }
}


/* ============================================
   Program Overview Page — page-specific
   ============================================ */

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.program-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  border-top: 4px solid var(--gold);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(200,56,74,0.12);
  border-top-color: var(--red);
}
.program-card h3 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 10px;
}
.program-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}
.program-meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.program-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: color .15s;
}
.program-link:hover {
  color: var(--red);
}

@media (max-width: 600px) {
  /* Stack Logo, Title block, and Donate button vertically */
  .header-main-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  /* Center everything inside the title stack */
  .header-title-stack {
    align-items: center;
    text-align: center;
  }

  /* Shrink title so it doesn't wrap into 5 cramped lines */
  .site-title-custom {
    font-size: 1.4rem;
    line-height: 1.25;
    text-align: center;
  }

  /* Center the tagline */
  .site-tagline-custom {
    text-align: center;
    font-size: 0.8rem;
  }
}

/* ============================================
   Site Footer
   ============================================ */

/* Remove default bullets from the link lists */
.footer-grid .wp-block-list {
  list-style: none;
  padding-left: 0;
}

/* Small uppercase treatment for column headings (letter-spacing/uppercase
   aren't available in the block Typography panel) */
.footer-grid h4 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

/* ============================================
   Homepage New — Hero Section
   ============================================ */

.hero-badge-new {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.badge-pill-new {
  display: inline-block;
  background: linear-gradient(90deg, var(--red), var(--gold));
  color: black;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.badge-line-new {
  flex: 1;
  min-width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

@media (max-width: 600px) {
  .badge-pill-new {
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
  }
}

.metrics-bar-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  margin-top: 24px;
}
.metric-new {
  display: flex;
  flex-direction: column;
}
.metric-number-new {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.metric-label-new {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.photo-caption-new {
  background: var(--black);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 0 0 12px 12px;
  margin-top: -6px;
}
.caption-tag-new {
  display: inline-block;
  background: var(--red);
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.photo-caption-new p {
  font-family: Georgia, serif;
  font-size: 1rem;
  margin: 0;
}

.featured-card-new {
  background: linear-gradient(135deg, var(--black), #2a1018);
  color: var(--white);
  border-radius: 16px;
  padding: 28px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.featured-header-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.featured-eyebrow-new { color: var(--gold); }
.featured-tag-new { color: rgba(255,255,255,0.5); }
.featured-card-new h3 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  margin: 4px 0;
}
.featured-sub-new {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.featured-info-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.featured-info-grid-new a {
  color: var(--gold);
  text-decoration: none;
}
.featured-collab-new {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.5;
}
.featured-footer-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.featured-price-new {
  display: flex;
  flex-direction: column;
}
.featured-price-new span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}
.featured-price-new strong {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ==== Mobile adjustments ==== */
@media (max-width: 600px) {
  .metrics-bar-new {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .featured-info-grid-new {
    grid-template-columns: 1fr;
  }
  .featured-footer-new {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-badge-new {
    flex-direction: column;
    align-items: flex-start;
  }
  .badge-line-new {
    width: 100%;
  }
}

.featured-card-new h3 {
  color: var(--white);
}

.cta-btn-new {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--red), #a52535);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
}
.cta-btn-new:hover {
  transform: translateY(-2px);
  color: white;
}

/* ============================================
   Homepage New — Ensembles Section
   ============================================ */

.section-eyebrow-new {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.ensemble-card-new {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ensemble-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.ensemble-photo-new {
  position: relative;
  width: 100%;
  height: 220px;
  max-height: 220px;
  overflow: hidden;
}
.ensemble-photo-new img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ensemble-badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
}
.badge-red-new { color: var(--red); }
.badge-gold-new { color: var(--gold); }

.ensemble-body-new {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ensemble-division-new {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 8px;
}
.ensemble-body-new h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 10px;
}
.ensemble-body-new p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.ensemble-rehearsal-new {
  background: var(--bg);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ensemble-rehearsal-new strong {
  font-size: 0.82rem;
  color: var(--black);
}
.ensemble-rehearsal-new span {
  font-size: 0.75rem;
  color: var(--gray);
}
.ensemble-link-new {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.ensemble-link-new:hover {
  color: var(--gold);
}

/* ==== Mobile ==== */
@media (max-width: 600px) {
  .ensemble-photo-new {
    height: 180px;
  }
}

/* ============================================
   Homepage New — Volunteer Section
   ============================================ */

.full-bleed-new {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background: var(--black);
  padding: 64px 40px;
  overflow: hidden;
}

.volunteer-section-new {
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

@media (max-width: 600px) {
  .full-bleed-new {
    padding: 40px 20px;
  }
}

body {
  overflow-x: hidden;
}

.section-label-new {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label-new::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.roles-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 640px) {
  .roles-grid-new {
    grid-template-columns: 1fr;
  }
}

.role-card-new {
  background: #1A1D24;
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid var(--gold);
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.role-card-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,56,74,0.25);
  border-left-color: var(--red);
  background: #20242D;
}

.role-icon-new {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.icon-red-new  { background: rgba(200,56,74,0.2); }
.icon-gold-new { background: rgba(201,168,76,0.25); }

.role-card-new h3 {
  font-family: Georgia, serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.role-card-new p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.55;
}

.more-tag-new {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px dashed var(--gold);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  width: 100%;
}
.more-tag-new span {
  font-size: 1.2rem;
  color: var(--gold);
}

.cta-box-new {
  background: linear-gradient(135deg, var(--gold), var(--red));
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(201,168,76,0.2);
}
.cta-box-new h2 {
  font-family: Georgia, serif;
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.cta-box-new p {
  color: rgba(26,26,26,0.75);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.cta-btn-gold-new {
  display: inline-block;
  padding: 14px 36px;
  background: var(--black);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
}
.cta-btn-gold-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  color: white;
}

/* ============================================
   About Page — Hero Section
   ============================================ */

.about-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.about-badge-pill {
  display: inline-block;
  background: linear-gradient(90deg, var(--red), var(--gold));
  color: black;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.about-badge-line {
  flex: 1;
  min-width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
@media (max-width: 600px) {
  .about-badge-pill {
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
  }
  .about-badge-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-badge-line {
    width: 100%;
  }
}

.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.about-stat {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.about-stat:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.about-stat-icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  margin-bottom: 10px;
}
.about-stat-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.about-stat-number {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 8px;
}
.about-stat-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .about-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   About Page — Mission Section
   ============================================ */

.mission-callout {
  background: var(--white);
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  max-width: 800px;
  margin: 40px auto 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mission-callout::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  filter: blur(40px);
  pointer-events: none;
}

.mission-quote-icon {
  color: var(--red);
  opacity: 0.85;
  margin-bottom: 16px;
  position: relative;
}

.mission-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
}

.mission-statement {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: var(--black);
  margin: 0;
  position: relative;
}

@media (max-width: 600px) {
  .mission-callout {
    padding: 40px 24px;
  }
}

/* ============================================
   About Page — Music Director Section
   (Board of Directors block removed)
   ============================================ */

.director-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  height: 100%;
  display: flex;
  flex-direction: row;
}
.director-photo {
  flex: 0 0 38%;
  max-width: 220px;
}
.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.director-body {
  padding: 24px;
  flex: 1;
}
.director-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.director-card h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--black);
  margin: 6px 0 2px;
}
.director-ensemble {
  display: block;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
}
.director-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Stack photo above text on narrow screens instead of squeezing side-by-side */
@media (max-width: 600px) {
  .director-card {
    flex-direction: column;
  }
  .director-photo {
    flex: none;
    max-width: 100%;
    height: 260px;
  }
}