/* ============================================================
   Vermont Fiddle Orchestra — Stylesheet
   ============================================================ */

/* ─── Custom properties ─────────────────────────────────── */
:root {
  --forest: #5d5179;
  --forest-dark: #2d2444;
  --forest-mid: #7a6d94;
  --purple: #5d5179;
  --gold: #c8992a;
  --gold-light: #e8b84b;
  --gold-dark: #8a6a1d; /* WCAG AA text-on-light gold (4.6:1 on cream) */
  --gold-pale: #f2cd7a; /* WCAG AA text-on-purple gold (4.7:1 on --forest) */
  --cream: #f8f4ed;
  --cream-dark: #ede7dc;
  --sage: #9088aa;
  --white: #ffffff;
  --near-black: #120f1e;
  --text: #1c1c1c;
  --text-muted: #596560;
  --border: #ddd8d0;

  --font-display: "Libre Baskerville", Georgia, serif;
  --font-ui: "Inter", system-ui, -apple-system, sans-serif;

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 3.4rem;
  --sp-2xl: 4.6rem;

  --wrap: 1140px;
  --pad: 1.5rem;

  --sh-sm: 0 1px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --sh-md: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  --sh-lg: 0 16px 40px rgba(0, 0, 0, 0.18);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --ease: 0.25s ease;
}

/* ─── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
address {
  font-style: normal;
}
address p {
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: var(--sp-sm);
}
p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--forest-dark);
  font-weight: 600;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 9999;
  transition: top var(--ease);
}
.skip-link:focus {
  top: 0;
}

/* ─── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ─── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 400;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}
h4 {
  font-size: 1.05rem;
}

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem 0;
  background: linear-gradient(to bottom, rgba(45, 36, 68, 0.88) 0%, rgba(45, 36, 68, 0.45) 60%, transparent 100%);
  transition:
    background var(--ease),
    box-shadow var(--ease),
    padding var(--ease);
}
.nav--scrolled {
  background: rgba(45, 36, 68, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  padding: 1.1rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.nav__logo-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}
.nav__links {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}
.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-sm);
  transition:
    color var(--ease),
    background var(--ease);
  letter-spacing: 0.01em;
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.nav__link--active {
  color: var(--gold-light);
  font-weight: 600;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform var(--ease),
    opacity var(--ease);
}

@media (max-width: 600px) {
  .nav__logo-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0.75rem 0;
  }
  .nav--scrolled {
    padding: 0.6rem 0;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--forest-dark);
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  .nav__links--open {
    display: flex;
  }
  .nav__link {
    font-size: 1rem;
    padding: 1.5rem 1rem;
  }
  .nav__toggle--open .nav__toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav__toggle--open .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle--open .nav__toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}
.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn--gold {
  background: var(--gold);
  color: var(--forest-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn--primary:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn--ghost:hover {
  background: var(--purple);
  color: var(--white);
}

.btn--donate {
  background: var(--gold);
  color: var(--forest-dark);
  font-weight: 700;
  border-color: var(--gold);
}
.btn--donate:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 153, 42, 0.4);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(162deg, #2d2444 0%, #3d3260 60%, #2d2444 100%);
}
/* Dark-to-transparent overlay so text stays readable over the photo */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 40%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(120px + var(--sp-lg)) var(--pad) var(--sp-xl);
  max-width: min(660px, 100%);
  margin-left: max(var(--pad), calc((100vw - var(--wrap)) / 2));
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--white);
  line-height: 1.31;
  margin-bottom: 1.5rem;
}
.hero__heading em {
  color: var(--gold-light);
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 531px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--forest);
  padding: calc(128px + var(--sp-md)) var(--pad) var(--sp-lg);
}
.page-hero__inner {
  max-width: var(--wrap);
  margin-inline: auto;
}
.page-hero__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 0.5rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 552px;
  line-height: 1.6;
}

/* ─── Sections ────────────────────────────────────────────── */
.section {
  padding: var(--sp-2xl) 0;
}
.section--sm {
  padding: var(--sp-xl) 0;
}
.section--dark {
  background: var(--forest);
  color: var(--white);
}
.section--darker {
  background: var(--forest-dark);
  color: var(--white);
}
.section--cream {
  background: var(--cream);
}
.section--white {
  background: var(--white);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap;
}
.section-header h2 {
  color: var(--forest-dark);
}
.section-header--light h2,
.section-header--light .section-header__link {
  color: var(--white);
}
.section-header--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-header__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  transition: color var(--ease);
}
.section-header__link:hover {
  color: var(--forest);
}

/* ─── Performance cards ───────────────────────────────────── */
.perf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.perf-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.perf-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition:
    transform var(--ease),
    box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.perf-card--linked {
  cursor: pointer;
}
.perf-card--linked:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

/* Full-card overlay link — sits on top of static content, under buttons */
.perf-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
/* Buttons must sit above the overlay to remain independently clickable */
.perf-card__actions {
  position: relative;
  z-index: 2;
}

.perf-card--featured {
  border-color: var(--gold);
  border-width: 2px;
}

.perf-card__date-block {
  background: var(--forest);
  color: var(--white);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}
.perf-card__month {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-pale);
  text-transform: uppercase;
}
.perf-card__day {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.perf-card__year {
  font-size: 0.72rem;
  opacity: 0.65;
}
.perf-card__date-range {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-pale);
  padding: 1rem;
  background: var(--forest);
  text-align: center;
}

.perf-card__poster img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.perf-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.perf-card__type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.perf-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.35rem;
}
.perf-card__subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.perf-card__venue {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.perf-card__city,
.perf-card__time {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.perf-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.55;
}
.perf-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

/* ─── Past seasons ────────────────────────────────────────── */
.past-season {
  margin-bottom: var(--sp-xl);
}
.past-season__label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* ─── Team cards ──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
  gap: 2.5rem;
  justify-content: center;
}
.team-card {
  text-align: center;
}
.team-card__avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.1rem;
  border: 3px solid var(--gold);
  background: var(--cream-dark);
}
.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--forest);
  background: var(--cream-dark);
}
.team-card__name {
  font-size: 1.15rem;
  color: var(--forest-dark);
  margin-bottom: 0.3rem;
}
.team-card__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}
.team-card__since {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.team-card__bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
}
.team-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: underline;
  transition: color var(--ease);
}
.team-card__link:hover {
  color: var(--gold);
}

/* ─── Board list ─────────────────────────────────────────── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
  gap: 0.75rem;
  justify-content: center;
}
.board-item {
  padding: 0.85rem 1rem;
  background: var(--cream-dark);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
}
.board-item__name {
  font-weight: 600;
  color: var(--forest-dark);
}
.board-item__name a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition:
    text-decoration-color var(--ease),
    color var(--ease);
}
.board-item__name a:hover {
  color: var(--gold);
  text-decoration-color: currentColor;
}
.board-item__role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ─── Links section (About) ───────────────────────────────── */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 1rem;
  justify-content: center;
}
.link-card {
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  background: var(--cream-dark);
  border-radius: var(--r-md);
  border-left: 3px solid var(--gold);
  transition:
    transform var(--ease),
    box-shadow var(--ease);
  display: block;
  text-decoration: none;
}
.link-card:hover {
  transform: translateX(4px);
  box-shadow: var(--sh-sm);
}
.link-card__title {
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.link-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Video embed ─────────────────────────────────────────── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── Sponsors ────────────────────────────────────────────── */
.sponsors__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.sponsors__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 3rem;
}
.sponsors__item {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.sponsors__logo {
  display: block;
  max-height: 48px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(35%) opacity(0.8);
  transition: filter var(--ease);
}
.sponsors__link {
  transition: opacity var(--ease);
}
.sponsors__link:hover .sponsors__logo {
  filter: grayscale(0%) opacity(1);
}
.sponsors__link:hover {
  color: var(--forest);
}

/* ─── Info boxes (Join page) ──────────────────────────────── */
/* ─── Join facts list ────────────────────────────────────── */
.join-details {
  padding: var(--sp-md) 0;
}
.join-facts {
  max-width: 640px;
  margin: 0 auto;
}
.join-fact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.join-fact:first-child {
  padding-top: 0;
}
.join-fact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.join-fact dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
.join-fact dd {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}
.join-fact dd a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Join page alternating splits ────────────────────────── */
.join-split {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.join-split:last-child {
  border-bottom: none;
}
.join-split--reverse {
  flex-direction: row-reverse;
}
.join-split__text {
  flex: 1 1 0;
  min-width: 0;
}
.join-split__media {
  flex: 0 0 320px;
}
.join-split__img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: 4px;
}
@media (max-width: 720px) {
  .join-split,
  .join-split--reverse {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 0;
  }
  .join-split__media {
    flex: none;
    width: 100%;
  }
  .join-split__img {
    height: 240px;
  }
}

/* ─── Stripe button container ─────────────────────────────── */
.stripe-wrap {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 0.5rem;
}

/* ─── Registration CTA box ────────────────────────────────── */
#registration {
  scroll-margin-top: 152px;
}
#donate {
  scroll-margin-top: 112px;
}
.reg-box {
  background: var(--forest);
  color: var(--white);
  padding: var(--sp-xl) var(--sp-lg);
  border-radius: var(--r-lg);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.reg-box h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.reg-box__deadline {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}
.reg-box__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.reg-box__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.reg-box__step-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.reg-box__closed {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}
.reg-box__closed a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ─── Contact grid ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
  gap: 2rem;
  justify-content: center;
}
.contact-item {
  text-align: center;
}
.contact-item h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.contact-item a {
  display: block;
  color: var(--forest);
  text-decoration: underline;
  font-weight: 500;
  margin-bottom: 0.2rem;
  transition: color var(--ease);
}
.contact-item a:hover {
  color: var(--gold);
}
.contact-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ─── Timeline (History) ──────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.25rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 0.5rem;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0.35;
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 0.45rem;
  width: 11px;
  height: 11px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--cream);
}
.timeline-item__year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
}
.timeline-item__title {
  font-size: 1.05rem;
  color: var(--forest-dark);
  margin-bottom: 0.4rem;
}
.timeline-item__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Guest soloists table ───────────────────────────────── */
.guest-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.guest-table th {
  text-align: left;
  padding: 0.6rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.guest-table td {
  padding: 0.65rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.guest-table td:first-child {
  font-weight: 700;
  white-space: nowrap;
  color: var(--forest);
}
.guest-table td:nth-child(2) {
  white-space: nowrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.guest-table tbody tr:last-child td {
  border-bottom: none;
}

/* ─── Concert video grid ─────────────────────────────────── */
.concert-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.concert-video-item__title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--forest-dark);
}
@media (max-width: 700px) {
  .concert-video-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Mission statement ───────────────────────────────────── */
.mission-section {
  padding-top: var(--sp-md);
}
.mission-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--white);
  line-height: 1.65;
  max-width: 743px;
  margin: 0 auto;
  text-align: center;
}
.mission-statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* ─── Donate section ─────────────────────────────────────── */
.donate-wrap {
  text-align: center;
  max-width: 488px;
  margin: 0 auto;
}
.donate-wrap h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.donate-wrap p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.donate-address {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-top: var(--sp-2xl);
  padding-bottom: var(--sp-xl);
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
    padding-top: var(--sp-xl);
  }
}
.footer__wordmark {
  display: block;
  max-width: 344px;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  max-width: 335px;
}
.footer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 0.75rem;
}
.footer__socials {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
}
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  transition:
    background var(--ease),
    color var(--ease);
}
.footer__social:hover {
  background: var(--gold);
  color: var(--forest-dark);
}
.footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__link {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--ease);
}
.footer__link:hover {
  color: var(--white);
}
.footer__address p {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 0;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
}

/* ─── Utilities ───────────────────────────────────────────── */
.hidden {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center {
  text-align: center;
}
.empty-state {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  padding: var(--sp-xl);
  grid-column: 1 / -1;
}

/* ─── Mobile overrides ────────────────────────────────────── */
@media (max-width: 600px) {
  /* Nav: shrink logo */
  .nav__logo-img {
    width: 52px;
    height: 52px;
  }
  /* Sections: tighten vertical padding */
  .section {
    padding: var(--sp-lg) 0;
  }
  .section--sm {
    padding: var(--sp-lg) 0;
  }
  /* Hero: fix overflow and reduce height */
  .hero {
    min-height: auto;
  }
  .hero__content {
    margin-left: 0;
    max-width: 100%;
    padding-top: calc(60px + var(--sp-md));
    padding-bottom: var(--sp-lg);
  }
  /* Page hero (inner pages): match homepage hero top padding */
  .page-hero {
    padding-top: calc(60px + var(--sp-md));
  }
  /* Hero CTA: stack buttons full-width so long text doesn't overflow */
  .hero__cta {
    flex-direction: column;
  }
  .hero__cta .btn {
    width: 100%;
    white-space: normal;
  }
  /* Guest soloists: allow Season column to wrap so names column has room */
  .guest-table td:nth-child(2) {
    white-space: normal;
  }
  /* Anchor scroll offset: match the shorter mobile nav height */
  #registration {
    scroll-margin-top: 87px;
  }
  #donate {
    scroll-margin-top: 70px;
  }
}

/* ─── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal:nth-child(5) {
  transition-delay: 0.4s;
}
.reveal:nth-child(6) {
  transition-delay: 0.5s;
}

/* ─── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
