/* ================================================
   OCMF — Oxford Chamber Music Foundation
   Main Stylesheet
   ================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --black:       #090909;
  --dark:        #0f0f14;
  --dark-mid:    #161622;
  --dark-card:   #1a1a26;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dim:    #8a6e2e;
  --white:       #ffffff;
  --off-white:   #f5f0e8;
  --grey-light:  #c8c4bc;
  --grey-mid:    #888480;
  --border:      rgba(201,168,76,0.2);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Lato', 'Helvetica Neue', sans-serif;
  --nav-h:       80px;
  --transition:  0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; }

p { margin-bottom: 1.2em; color: var(--grey-light); }
p:last-child { margin-bottom: 0; }

.serif { font-family: var(--font-serif); }
.gold  { color: var(--gold); }
.white { color: var(--white); }

/* --- Layout Helpers --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

section { padding: 100px 0; }
section.section--tight { padding: 60px 0; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title { color: var(--white); margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.15rem; color: var(--grey-light); max-width: 600px; margin: 0 auto; }

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0;
}

.divider--center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* --- Gold Rule --- */
.gold-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform var(--transition);
  z-index: 0;
}

.btn span { position: relative; z-index: 1; }

.btn:hover { color: var(--dark); }
.btn:hover::before { transform: translateY(0); }

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

.btn--white {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--white::before { background: var(--white); }
.btn--white:hover { color: var(--dark); }

/* ================================================
   NAVIGATION
   ================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(9,9,9,0.97);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--white);
}

.nav__logo-main {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.45rem, 1.5vw, 0.55rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active { color: var(--white); }

.nav__links a.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  margin-top: 3px;
}

.nav__cta { margin-left: 1rem; }

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}

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

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* ================================================
   HERO
   ================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  background: var(--black);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9,9,9,0.85) 0%,
    rgba(15,15,20,0.65) 50%,
    rgba(9,9,9,0.9) 100%
  );
  z-index: 1;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background-color: #1a1424;
  background-image:
    radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(80,60,120,0.15) 0%, transparent 50%);
  z-index: 0;
}

/* Decorative music-staff lines */
.hero__bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 38px,
    rgba(201,168,76,0.04) 38px,
    rgba(201,168,76,0.04) 39px
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  max-width: 900px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__meta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero__date {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}

.hero__separator {
  width: 1px;
  height: 24px;
  background: var(--gold-dim);
}

.hero__theme {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.hero__actions {
  margin-top: 3rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey-mid);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition);
}

.hero__scroll:hover { color: var(--gold); }

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%  { opacity: 0.4; }
  100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ================================================
   HERO — VIDEO & IMMERSIVE ENHANCEMENTS
   ================================================ */

/* Video background */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark base overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__overlay--dark {
  background: linear-gradient(
    to bottom,
    rgba(9,9,9,0.55) 0%,
    rgba(9,9,9,0.35) 40%,
    rgba(9,9,9,0.75) 100%
  );
}

/* Warm amber/gold vignette over video */
.hero__overlay--warm {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.12) 0%, transparent 65%),
    radial-gradient(ellipse at 0% 100%,  rgba(120,60,20,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%,  rgba(60,30,80,0.2)  0%, transparent 50%);
}

/* Waveform */
.hero__waveform {
  position: absolute;
  bottom: 80px;
  left: 0; right: 0;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  z-index: 2;
  opacity: 0.35;
  pointer-events: none;
}

.hero__waveform-bar {
  width: 3px;
  background: linear-gradient(to top, var(--gold), rgba(201,168,76,0.2));
  border-radius: 2px 2px 0 0;
  animation: waveBar var(--duration, 1.2s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
  transform-origin: bottom;
}

@keyframes waveBar {
  0%   { transform: scaleY(0.15); }
  100% { transform: scaleY(1); }
}

/* Hero entrance animations */
.hero__anim {
  opacity: 0;
  transform: translateY(24px);
  animation: heroEntrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__anim--1 { animation-delay: 0.2s; }
.hero__anim--2 { animation-delay: 0.45s; }
.hero__anim--3 { animation-delay: 0.6s; }
.hero__anim--4 { animation-delay: 0.75s; }
.hero__anim--5 { animation-delay: 1.0s; }
.hero__anim--6 { animation-delay: 1.2s; }

@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lift hero content z-index above video & overlays */
.hero__content  { z-index: 3; }
.hero__scroll   { z-index: 3; }

/* ================================================
   QUOTE BANNER
   ================================================ */

.quote-banner {
  background: var(--dark-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}

.quote-banner__text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--off-white);
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.quote-banner__source {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ================================================
   ABOUT SECTION (homepage)
   ================================================ */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-split__img {
  position: relative;
}

.about-split__img-frame {
  aspect-ratio: 3/4;
  background: var(--dark-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.about-split__img-frame img {
  width: 100%; height: 100%; object-fit: cover;
}

.about-split__img-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(9,9,9,0.6), transparent);
}

.about-split__img-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.about-split__img-accent-br {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.about-split__caption {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  font-weight: 700;
}

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
}

/* ================================================
   STATS STRIP
   ================================================ */

.stats-strip {
  background: var(--dark-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

@media (max-width: 600px) {
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); }
}

/* ================================================
   CARDS GRID
   ================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.card__icon {
  width: 40px; height: 40px;
  margin-bottom: 1.5rem;
}

.card__icon-line {
  width: 36px; height: 2px;
  background: var(--gold);
  margin-bottom: 8px;
}

.card__icon-line:last-child { width: 20px; opacity: 0.5; }

.card h4 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.card p { font-size: 0.9rem; margin: 0; }

/* ================================================
   PROGRAMME
   ================================================ */

.programme-header {
  background: var(--black);
  padding: 160px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.programme-header__year {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(201,168,76,0.08);
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.programme-event {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.programme-event:last-child { border-bottom: none; }

.programme-event__date {
  text-align: right;
  padding-top: 0.3rem;
}

.programme-event__day {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.programme-event__month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 4px;
}

.programme-event__body h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.programme-event__time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.programme-event__body p { font-size: 0.92rem; }

.programme-event__venue {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 1rem;
}

.programme-event__venue::before {
  content: '◆';
  font-size: 0.5rem;
  color: var(--gold);
}

@media (max-width: 600px) {
  .programme-event { grid-template-columns: 80px 1fr; gap: 1rem; }
}

/* ================================================
   ARTISTS
   ================================================ */

.artists-header {
  background: var(--black);
  padding: 160px 0 80px;
  text-align: center;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.artist-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.artist-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.artist-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 0;
  margin: 0 auto 1rem;
  background: var(--dark-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
}

.artist-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
}

.artist-card__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.artist-card__instrument {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Instrument Section Headings */
.instrument-section h3 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

/* ================================================
   SPONSORSHIP
   ================================================ */

.sponsorship-header {
  background: var(--black);
  padding: 160px 0 80px;
}

.sponsorship-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 700px) {
  .sponsorship-tiers { grid-template-columns: 1fr; }
}

.tier {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.tier:hover { border-color: var(--gold); }

.tier--featured {
  border-color: var(--gold-dim);
  background: linear-gradient(135deg, var(--dark-card) 0%, rgba(201,168,76,0.06) 100%);
}

.tier--featured::before {
  content: 'FLAGSHIP';
  position: absolute;
  top: 18px; right: -22px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.tier__name {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.tier__price {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.tier__note {
  font-size: 0.72rem;
  color: var(--grey-mid);
  margin-bottom: 1.5rem;
}

.tier__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.tier__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.tier__benefits li {
  font-size: 0.88rem;
  color: var(--grey-light);
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.tier__benefits li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================================
   WHY PARTNER
   ================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-item {
  padding: 2rem;
  border-left: 2px solid var(--gold-dim);
}

.why-item h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.why-item p { font-size: 0.9rem; margin: 0; }

/* ================================================
   LEADERSHIP
   ================================================ */

.leadership-header {
  background: var(--black);
  padding: 160px 0 80px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.person-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  transition: border-color var(--transition);
}

.person-card:hover { border-color: var(--gold-dim); }

.person-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.person-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
}

.person-card__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.person-card__role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.person-card p { font-size: 0.85rem; margin: 0; }

/* ================================================
   CONTACT / JOIN
   ================================================ */

.contact-header {
  background: var(--black);
  padding: 160px 0 80px;
  text-align: center;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-group select option { background: var(--dark-card); }

/* ================================================
   PAGE HEADERS (inner pages)
   ================================================ */

.page-header {
  padding: 160px 0 80px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.page-header .container { position: relative; z-index: 1; }

/* ================================================
   BREADCRUMB
   ================================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--grey-mid); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--gold-dim); }

/* ================================================
   FOOTER
   ================================================ */

.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand .nav__logo-main {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.2rem;
}

.footer__brand .nav__logo-sub {
  display: block;
  margin-bottom: 1.2rem;
}

.footer__brand p {
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer__brand .est {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 1rem;
  margin-bottom: 0;
}

.footer__col h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__col ul a {
  font-size: 0.88rem;
  color: var(--grey-mid);
  transition: color var(--transition);
}

.footer__col ul a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(136,132,128,0.6);
  margin: 0;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--grey-mid);
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ================================================
   WARM & IMMERSIVE — SECTION ENHANCEMENTS
   ================================================ */

/* Quote banners get a warm gold shimmer */
.quote-banner {
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(201,168,76,0.04) 0deg,
    transparent 60deg,
    rgba(201,168,76,0.04) 120deg,
    transparent 180deg,
    rgba(201,168,76,0.02) 240deg,
    transparent 300deg,
    rgba(201,168,76,0.04) 360deg
  );
  animation: shimmer 12s linear infinite;
  pointer-events: none;
}

@keyframes shimmer {
  to { transform: rotate(360deg); }
}

/* Cards get a warm glow on hover */
.card:hover {
  box-shadow: 0 8px 40px rgba(201,168,76,0.08);
}

/* Stats numbers pulse gently on scroll-in */
.stat__number {
  transition: color 0.4s ease;
}

.stat:hover .stat__number {
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(201,168,76,0.3);
}

/* Section transitions — warm bottom border glow */
section + section {
  position: relative;
}

/* Buttons get a warm glow on hover */
.btn:hover {
  box-shadow: 0 4px 24px rgba(201,168,76,0.2);
}

/* ================================================
   UTILITY — PAGE TRANSITIONS & ANIMATIONS
   ================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ================================================
   PLACEHOLDER IMAGE STAND-IN
   ================================================ */

.img-placeholder {
  background: linear-gradient(135deg, #1a1424 0%, #0f0f18 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: rgba(201,168,76,0.3);
}

.img-placeholder__icon {
  font-size: 2rem;
  opacity: 0.4;
}

.img-placeholder__text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.3);
}

/* ================================================
   RESPONSIVE TWEAKS
   ================================================ */

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { min-height: 80vh; padding-bottom: 60px; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 4rem); }

  /* Optimize hero meta for tablet */
  .hero__meta {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero__date {
    font-size: clamp(1.1rem, 2.3vw, 1.5rem);
  }

  .hero__theme {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  /* Improve form input sizing for mobile */
  input, textarea, select {
    font-size: 16px !important;
    min-height: 44px;
  }

  /* Reduce card padding on tablet */
  .card { padding: 1.8rem; }

  /* Improve footer touch targets */
  .footer__social a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  section { padding: 50px 0; }
  section.section--tight { padding: 40px 0; }
  .hero { min-height: 75vh; padding-bottom: 50px; }
  .hero__title {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
    max-width: 100%;
    word-spacing: normal;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  /* Optimize hero meta layout for mobile */
  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  /* Make separator horizontal on mobile */
  .hero__separator {
    width: 40px;
    height: 1px;
    margin: 0.8rem 0;
  }

  /* Improve date styling on mobile */
  .hero__date {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    letter-spacing: 0.05em;
  }

  /* Improve theme styling on mobile */
  .hero__theme {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    line-height: 1.5;
  }

  /* Reduce card padding significantly on mobile */
  .card { padding: 1.5rem; }

  /* Reduce grid gaps on mobile */
  .cards-grid,
  .sponsorship-tiers,
  .leadership-grid,
  .why-grid {
    gap: 1rem;
  }

  /* Ensure fade-up elements are visible on mobile */
  .fade-up {
    opacity: 1;
    transform: translateY(0);
  }

  /* Make form elements mobile-friendly */
  input, textarea, select {
    font-size: 16px !important;
    min-height: 44px;
    padding: 0.75rem;
  }

  /* Improve button touch size */
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.25rem;
  }

  /* Improve footer layout on mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__social {
    justify-content: flex-start;
    gap: 0.75rem;
  }

  /* Reduce logo size on mobile */
  .nav__logo-main {
    font-size: 1.2rem;
  }

  .nav__logo-sub {
    font-size: 0.5rem;
    margin-top: 2px;
  }

  /* Optimize container padding on mobile */
  .container,
  .container--narrow,
  .container--wide {
    padding: 0 1rem;
  }

  /* Page header optimization for mobile */
  .page-header {
    padding: 80px 0 50px;
  }

  /* Contact/about form optimization */
  .contact-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Improve breadcrumb on mobile */
  .breadcrumb {
    font-size: 0.6rem;
    gap: 0.3rem;
    margin-bottom: 1rem;
  }

  /* Optimize artist cards on mobile */
  .artist-card {
    padding: 1.2rem 1rem;
  }

  .artist-card__photo {
    width: 140px;
    height: 140px;
    margin-bottom: 0.8rem;
  }

  .artist-card__name {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .artist-card__instrument {
    font-size: 0.6rem;
  }

  /* Optimize leadership grid on mobile */
  .leadership-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  /* Improve stats visibility on mobile */
  .stat {
    padding: 1.5rem 0.5rem;
  }

  .stat__number {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .stat__label {
    font-size: 0.6rem;
  }

  /* Optimize why-grid on mobile */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-item h4 {
    font-size: 1rem;
  }

  .why-item p {
    font-size: 0.9rem;
  }

  /* Improve section label on mobile */
  .section-label {
    font-size: 0.65rem;
    margin-bottom: 0.8rem;
  }

  .section-title {
    margin-bottom: 1rem;
  }

  .divider {
    width: 50px;
    margin: 1rem 0;
  }

  .divider--center {
    margin-left: auto;
    margin-right: auto;
  }

  /* Hero height adjustment for mobile */
  .hero {
    min-height: 65vh;
  }

  /* Improve scroll indicator on mobile */
  .hero__scroll {
    bottom: 15px;
  }

  .hero__scroll span {
    font-size: 0.65rem;
  }

  /* Navigation mobile optimization */
  .nav {
    padding: 0.75rem 0;
  }

  .nav__inner {
    padding: 0 1rem;
  }

  /* Improve mobile navigation drawer */
  .nav__mobile {
    top: var(--nav-h);
    left: 0;
    right: 0;
  }

  .nav__mobile a {
    padding: 1.2rem 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.3;
  }

  /* Form improvements for mobile */
  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  /* Contact page specific */
  input[type="text"],
  input[type="email"],
  select {
    font-size: 16px !important;
    min-height: 44px;
    padding: 0.75rem;
    border-radius: 4px;
  }

  textarea {
    font-size: 16px !important;
    min-height: 120px;
    padding: 0.75rem;
    border-radius: 4px;
  }

  /* Button touch targets */
  .btn {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.2rem;
    font-size: 0.7rem;
    border-radius: 3px;
  }

  /* Navigation CTA button */
  .nav__cta {
    margin-left: 0.3rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.6rem;
    white-space: nowrap;
  }

  /* Footer optimization for mobile */
  .footer {
    padding: 40px 0 20px;
  }

  .footer__grid {
    gap: 2rem;
  }

  .footer__brand .nav__logo-main {
    font-size: 1.3rem;
  }

  .footer__brand p {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .footer__col h5 {
    font-size: 0.65rem;
    margin-bottom: 0.8rem;
  }

  .footer__col ul li {
    margin-bottom: 0.5rem;
  }

  .footer__col a {
    font-size: 0.85rem;
  }

  .footer__social {
    margin-top: 1.5rem;
  }

  .footer__social a {
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 1.5rem;
  }

  .footer__bottom p {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  /* About split layout optimization */
  .about-split__caption {
    font-size: 0.8rem;
    margin-top: 0.8rem;
  }

  /* Program page optimization */
  .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
  }

  .instrument-section h3 {
    font-size: 0.65rem;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
  }

  /* Support page optimization */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .card {
    padding: 1.2rem;
  }

  .card h4 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  /* Image optimization */
  img {
    height: auto;
  }

  .about-split__img-frame img {
    width: 100%;
    height: auto;
  }

  /* Hero background image optimization */
  .hero__video {
    object-fit: cover;
  }
}

/* ================================================
   EXTRA SMALL DEVICES (< 400px)
   ================================================ */
@media (max-width: 400px) {
  /* Further optimize typography for very small screens */
  h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
  h3 { font-size: clamp(1rem, 3vw, 1.4rem); }
  h4 { font-size: 0.95rem; }

  /* Reduce all padding on extra small screens */
  section { padding: 40px 0; }
  section.section--tight { padding: 30px 0; }

  .container,
  .container--narrow,
  .container--wide {
    padding: 0 0.75rem;
  }

  /* Hero height for very small screens */
  .hero {
    min-height: 60vh;
    padding-bottom: 40px;
  }

  /* Hero title optimization for tiny screens */
  .hero__title {
    font-size: clamp(2.3rem, 8vw, 3.2rem);
    word-spacing: normal;
    font-weight: 800;
    line-height: 1.2;
  }

  /* Hero meta optimization for tiny screens */
  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  /* Separator for tiny screens */
  .hero__separator {
    width: 30px;
    height: 1px;
    margin: 0.6rem 0;
  }

  /* Date and theme for tiny screens */
  .hero__date {
    font-size: clamp(1.1rem, 2.3vw, 1.3rem);
  }

  .hero__theme {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .page-header {
    padding: 60px 0 40px;
  }

  /* Card adjustments */
  .card {
    padding: 1rem;
  }

  /* Button sizing for tiny screens */
  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.65rem;
  }

  /* Form optimization for very small screens */
  input, textarea, select {
    font-size: 16px !important;
    min-height: 40px;
    padding: 0.6rem;
  }

  textarea {
    min-height: 100px;
  }

  /* Ensure fade-up elements are visible on very small screens */
  .fade-up {
    opacity: 1;
    transform: translateY(0);
  }

  /* Artist card optimization */
  .artist-card {
    padding: 1rem 0.8rem;
  }

  .artist-card__photo {
    width: 120px;
    height: 120px;
  }

  /* Footer compact on very small screens */
  .footer__social a {
    min-width: 36px;
    min-height: 36px;
    font-size: 1rem;
  }

  /* Navigation optimization */
  .nav__toggle span {
    width: 24px;
    height: 2px;
  }

  .nav__toggle span + span {
    margin-top: 4px;
  }

  /* Mobile menu text optimization for very small screens */
  .nav__mobile a {
    font-size: 1.25rem;
    padding: 1rem;
    line-height: 1.3;
  }

  /* Navigation CTA button optimization for tiny screens */
  .nav__cta {
    margin-left: 0.2rem;
    padding: 0.4rem 0.6rem;
    font-size: 0.55rem;
  }
}
