/* Deseret Choir Flagstaff — design tokens from organization logo */
:root {
  --navy: #1a2f4a;
  --navy-light: #2a4568;
  --gold: #c4a35a;
  --gold-light: #d4bc82;
  --gold-dark: #9a7d3f;
  --forest: #2d5a3d;
  --forest-light: #3d7352;
  --cream: #f8f6f1;
  --cream-dark: #ebe6dc;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #5a5a5a;
  --border: rgba(26, 47, 74, 0.12);
  --shadow: 0 4px 24px rgba(26, 47, 74, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 47, 74, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --header-h: 80px;
  --max-w: 1140px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p + p { margin-top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover { color: var(--gold-light); }

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  opacity: 0.9;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: rgba(196, 163, 90, 0.18);
  color: var(--gold-light);
}

.nav-desktop .nav-cta {
  background: var(--gold);
  color: var(--navy);
  margin-left: 0.5rem;
  font-weight: 600;
}

.nav-desktop .nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-light);
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.nav-mobile a:hover { background: rgba(196, 163, 90, 0.15); }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }
  .brand-tag { display: none; }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--forest) 100%);
  color: var(--white);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 3rem);
  overflow: hidden;
}

.hero--photo {
  background:
    linear-gradient(105deg, rgba(26, 47, 74, 0.92) 0%, rgba(26, 47, 74, 0.78) 45%, rgba(45, 90, 61, 0.65) 100%),
    url('../assets/gallery/flagstaff-mountains.jpg') center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196, 163, 90, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-content h1 { color: var(--white); margin-bottom: 1rem; }

.hero-content h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-lead {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: min(320px, 80%);
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.35));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo { width: 200px; }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ——— Sections ——— */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }

.section-alt { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

/* ——— Cards ——— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card h3 { margin-bottom: 0.5rem; }

.card p { color: var(--text-muted); font-size: 0.98rem; }

/* ——— Page header ——— */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--forest) 100%);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }

.page-hero p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.75;
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }

/* ——— Content blocks ——— */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse { direction: ltr; }
}

.prose { max-width: 720px; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; }

.info-box {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow);
  margin: 1.5rem 0;
}

.info-box.warning {
  border-left-color: #c45c26;
  background: #fef8f4;
}

.info-box h4 { margin-bottom: 0.5rem; font-family: var(--font-sans); font-size: 1rem; }

/* ——— Events ——— */
.event-list { display: flex; flex-direction: column; gap: 1rem; }

.event-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.event-item:hover { box-shadow: var(--shadow); }

.event-date {
  text-align: center;
  min-width: 64px;
  padding: 0.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.event-date .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.event-date .day {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.event-meta { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.25rem; }

@media (max-width: 600px) {
  .event-item { grid-template-columns: 1fr; text-align: center; }
  .event-date { margin: 0 auto; }
}

/* ——— Blog ——— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-light), var(--forest));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 3rem;
}

.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.blog-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }

.blog-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1rem;
}

.blog-card .read-more {
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.article-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.article-meta { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem; }

/* ——— Donate ——— */
.donate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.donate-option {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: border-color var(--transition);
}

.donate-option:hover { border-color: var(--gold); }

.donate-amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-dark);
  margin: 0.5rem 0 1rem;
}

.amount-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.amount-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.amount-btn:hover,
.amount-btn.selected {
  border-color: var(--gold);
  background: rgba(196, 163, 90, 0.12);
  color: var(--gold-dark);
}

/* ——— Contact form ——— */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.2);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-info h3 { color: var(--gold-light); margin-bottom: 1.25rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(196, 163, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info a { color: var(--gold-light); }
.contact-info a:hover { color: var(--white); }

/* ——— Team ——— */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--forest));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
}

.team-role {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ——— CTA band ——— */
.cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { opacity: 0.9; margin-bottom: 1.5rem; max-width: 520px; margin-inline: auto; }

/* ——— Footer ——— */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}

.footer-brand .brand-logo { width: 88px; height: 88px; margin-bottom: 1.25rem; }

.footer-brand p { font-size: 0.92rem; line-height: 1.6; opacity: 0.85; }

.footer-col h4 {
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-trigger:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(26, 47, 74, 0.92) 0%, rgba(26, 47, 74, 0.2) 55%, transparent 100%);
  color: var(--white);
  text-align: left;
}

.gallery-event {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.gallery-date {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.2rem;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 18, 30, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gallery-lightbox[hidden] { display: none; }

.lightbox-inner {
  position: relative;
  max-width: min(960px, 100%);
  width: 100%;
}

.lightbox-inner img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 1rem;
}

.lightbox-caption h3 {
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.lightbox-caption p { opacity: 0.85; }

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(196, 163, 90, 0.35); }

.lightbox-close { top: -3.5rem; right: 0; }

.lightbox-nav--prev { left: -1rem; top: 50%; transform: translate(-100%, -50%); }
.lightbox-nav--next { right: -1rem; top: 50%; transform: translate(100%, -50%); }

@media (max-width: 768px) {
  .lightbox-nav--prev { left: 0.5rem; transform: translateY(-50%); }
  .lightbox-nav--next { right: 0.5rem; transform: translateY(-50%); }
  .lightbox-close { top: 0.5rem; right: 0.5rem; }
}

/* ——— Event media cards ——— */
.event-item--media {
  grid-template-columns: auto 120px 1fr auto;
}

.event-thumb {
  width: 120px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--media {
  padding: 0;
  overflow: hidden;
}

.card-media-link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-media-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card-media-link:hover img { transform: scale(1.04); }

.card--media .card-body { padding: 1.25rem 1.5rem 1.5rem; }

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-image.has-photo { padding: 0; }

@media (max-width: 768px) {
  .event-item--media { grid-template-columns: 1fr; }
  .event-thumb { width: 100%; height: 160px; margin: 0 auto; }
}

/* ——— Stats bar ——— */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: -1px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ——— Hero badges ——— */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ——— Feature split ——— */
.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-media-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border-left: 3px solid var(--gold);
}

.feature-list {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "♪";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

@media (max-width: 768px) {
  .feature-split { grid-template-columns: 1fr; }
}

/* ——— Quote band ——— */
.quote-band {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: "\201C";
  position: absolute;
  top: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 12rem;
  line-height: 1;
  color: rgba(196, 163, 90, 0.12);
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto 1rem;
  line-height: 1.5;
  position: relative;
}

.quote-author {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ——— Involve grid ——— */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.involve-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.involve-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.involve-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.involve-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.involve-card h3 { margin-bottom: 0.5rem; }

.involve-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .involve-grid { grid-template-columns: 1fr; }
}

/* ——— Repertoire tags ——— */
.repertoire-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.tag {
  padding: 0.5rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

.section-dark {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

/* ——— CTA split ——— */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cta-panel {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 2.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 320px;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-panel > * { position: relative; z-index: 2; }

.cta-panel--donate::before { background-image: url('../assets/gallery/holiday-concert.jpg'); }
.cta-panel--donate::after { background: linear-gradient(135deg, rgba(45, 90, 61, 0.88), rgba(26, 47, 74, 0.85)); }

.cta-panel--join::before { background-image: url('../assets/gallery/choir-rehearsal.jpg'); }
.cta-panel--join::after { background: linear-gradient(135deg, rgba(26, 47, 74, 0.9), rgba(45, 90, 61, 0.82)); }

.cta-panel h2 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-panel p { opacity: 0.92; margin-bottom: 1.25rem; max-width: 340px; }

@media (max-width: 768px) {
  .cta-split { grid-template-columns: 1fr; }
}

/* ——— Footer enhanced ——— */
.footer-newsletter {
  background: var(--navy-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
}

.newsletter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.newsletter-text h3 {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.newsletter-text p {
  font-size: 0.92rem;
  opacity: 0.85;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
  max-width: 460px;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-sans);
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-badge {
  font-size: 0.72rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
}

.footer-contact-line span:first-child {
  color: var(--gold-light);
  flex-shrink: 0;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-style: italic;
}

/* ——— Utilities ——— */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
