/* ===================================================================
   Bucky Noh Dhol 3.0 — Website
   Theme: "Iconic Bollywood" · Brand palette (see Website Workbook PDF)
   =================================================================== */

:root {
  /* Core / darks — jewel tones (no blue; reads Bollywood, not patriotic) */
  --maroon:  #3C0008;   /* deep red base */
  --maroon-2:#5E0A1E;   /* warmer mid maroon for gradients */
  --plum:    #24041A;   /* deep magenta-plum — replaces the old navy */
  --teal:    #043A44;   /* peacock jewel accent tone */
  --forest:  #123028;   /* deep emerald */
  --beige:   #E6C5B2;
  --ink:     #14020A;   /* warm near-black */

  /* Accents */
  --magenta: #C4145A;   /* sampled — adjust once exact hex known */
  --orange:  #D4611E;   /* sampled */
  --gold:    #C6A15B;   /* sampled */
  --gold-lt: #E9CF8C;   /* highlight gold */
  --rose:    #9B666F;

  /* Roles */
  --bg:        var(--maroon);
  --text:      var(--beige);
  --accent:    var(--gold);
  --accent-2:  var(--magenta);

  --font-display: 'Anton', sans-serif;
  --font-serif:   'Cinzel', serif;
  --font-body:    'Poppins', sans-serif;

  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  z-index: 100;
  transition: background .35s ease, backdrop-filter .35s ease;
}
.nav--scrolled,
.nav--solid {
  background: rgba(36, 4, 26, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198, 161, 91, .35);
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--beige);
  text-decoration: none;
}
.nav__brand:hover { color: var(--gold); }
/* Nav logo. History pages override background-image with their year's logo. */
.nav__brand--placeholder {
  display: inline-flex;
  width: 118px; height: 64px;
  background-image: url('assets/img/logos/bnd3.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  color: transparent;
  font-size: 0;
}
.nav__links {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.75rem);
}
.nav__links a {
  font-size: .82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--beige);
  text-decoration: none;
  position: relative;
  padding: .35rem 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.is-active { color: var(--gold); }
.nav__links a.is-active::after { width: 100%; }

/* Dropdown */
.nav__item--has-dropdown { position: relative; }
.nav__toplink { display: inline-flex; align-items: center; gap: .4rem; }
.nav__caret {
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .3s ease;
}
.nav__item--has-dropdown:hover .nav__caret { transform: rotate(-135deg) translateY(-1px); }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 170px;
  display: flex;
  flex-direction: column;
  padding: .5rem 0;
  background: rgba(36, 4, 26, .96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 161, 91, .25);
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.nav__item--has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.nav__dropdown a {
  padding: .6rem 1.4rem;
  letter-spacing: 2px;
  white-space: nowrap;
}
.nav__dropdown a::after { display: none; }

/* ===== Subpage header (pages without a full hero) ===== */
.page-header {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3rem, 10vh, 6rem)) 1.5rem clamp(3rem, 8vh, 5rem);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(60, 0, 8, .75) 0%, transparent 65%),
    linear-gradient(180deg, var(--plum) 0%, var(--maroon) 100%);
}
.page-header__eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(.7rem, 1.6vw, .9rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    url('assets/img/hero-performance.png') center 30% / cover no-repeat;
  isolation: isolate;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 28%, rgba(196, 20, 90, .22) 0%, transparent 45%),
    radial-gradient(ellipse at 82% 78%, rgba(198, 161, 91, .16) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 42%, rgba(60, 0, 8, .42) 0%, rgba(36, 4, 26, .82) 65%, rgba(10, 0, 2, .95) 100%),
    linear-gradient(180deg, rgba(10, 0, 2, .55) 0%, rgba(60, 0, 8, .30) 45%, rgba(6, 0, 1, .95) 100%);
}
.hero__content {
  padding: 0 1.5rem;
  animation: hero-rise 1.1s cubic-bezier(.2, .7, .2, 1) both;
}
.hero__eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(.7rem, 1.6vw, .95rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: .9;
}
.hero__title {
  font-family: var(--font-display);
  line-height: .95;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0, 0, 0, .55);
  font-size: clamp(2.4rem, 8vw, 6.5rem);
}
.hero__title-line--light {
  color: #fff;
}
.hero__title-line--accent {
  background: linear-gradient(180deg, var(--gold) 0%, #e9cf8c 45%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__date {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.9rem);
  letter-spacing: 10px;
  font-weight: 600;
  color: var(--beige);
  margin: 1.6rem 0 .5rem;
  padding-left: 10px; /* optical centering for letter-spacing */
}
.hero__tagline {
  font-size: clamp(.85rem, 2vw, 1.1rem);
  letter-spacing: 3px;
  font-weight: 300;
  text-transform: uppercase;
  color: rgba(230, 197, 178, .82);
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 30px;
  display: block;
}
.hero__scroll-chevron {
  display: block;
  width: 18px; height: 18px;
  margin: 0 auto;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .5; }
  50%      { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* ===== Shared section bits ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 34px rgba(198, 161, 91, .18);
}
.section-title__accent {
  background: linear-gradient(180deg, var(--gold) 0%, #e9cf8c 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Ornamental divider: fading gold line with a centered gold diamond */
.section-divider {
  position: relative;
  display: block;
  width: 150px; height: 1px;
  margin: 1.6rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}
.section-divider::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 9px; height: 9px;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 14px rgba(198, 161, 91, .6);
}
.section-divider::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 21px; height: 21px;
  border: 1px solid rgba(198, 161, 91, .45);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ===== ABOUT ===== */
.about {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(60, 0, 8, .6) 0%, transparent 60%),
    var(--maroon);
  padding: clamp(4.5rem, 12vh, 8rem) clamp(1.25rem, 5vw, 3rem);
}
.about__inner {
  max-width: 900px;
  margin: 0 auto;
}
.about__panel {
  margin-top: 2.8rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgba(198, 161, 91, .28);
  border-radius: 4px;
  background: rgba(36, 4, 26, .18);
  position: relative;
}
/* gold corner accents */
.about__panel::before,
.about__panel::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--gold);
}
.about__panel::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.about__panel::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.about__panel p {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.85;
  color: rgba(230, 197, 178, .92);
  text-align: center;
}
.about__panel p + p { margin-top: 1.4rem; }
.about__panel strong { color: var(--gold); font-weight: 600; }

/* ===== SHOW DETAILS ===== */
.show {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(150, 22, 74, .35) 0%, transparent 60%),
    var(--plum);
  padding: clamp(4.5rem, 12vh, 8rem) clamp(1.25rem, 5vw, 3rem);
}
.show__inner { max-width: 760px; margin: 0 auto; text-align: center; }

.show__card {
  margin-top: 2.8rem;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid rgba(198, 161, 91, .3);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(60, 0, 8, .35), rgba(36, 4, 26, .25));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}
.show__venue {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.show__sub {
  font-family: var(--font-serif);
  font-size: clamp(.8rem, 1.8vw, 1rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .5rem;
}

.show__meta {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 2.5rem);
  margin: 2.6rem 0;
}
.show__meta-item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  min-width: 110px;
}
.show__label {
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
}
.show__value {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  line-height: 1.5;
  color: rgba(230, 197, 178, .95);
}
.show__meta-sep {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(198, 161, 91, .45), transparent);
}
@media (max-width: 620px) {
  .show__meta-sep { display: none; }
}

.show__admission {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 2rem;
}

.show__directions {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--beige);
  text-decoration: none;
  padding: .85rem 2.2rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition: background .3s ease, color .3s ease;
}
.show__directions:hover {
  background: var(--gold);
  color: var(--maroon);
}

/* ===== SPONSORS & PARTNERS ===== */
.sponsors {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(60, 0, 8, .55) 0%, transparent 60%),
    var(--maroon);
  padding: clamp(4.5rem, 12vh, 8rem) clamp(1.25rem, 5vw, 3rem);
}
.sponsors__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.sponsors__intro {
  max-width: 620px;
  margin: 2rem auto 0;
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  line-height: 1.8;
  color: rgba(230, 197, 178, .85);
}

.sponsors__grid {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}
.sponsors__group-title {
  font-family: var(--font-display-serif, var(--font-body));
  font-size: 1.15rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
  margin: 2.5rem 0 1.5rem;
}
.sponsor-card {
  width: 260px;
  padding: 2.5rem 1.75rem;
  border: 1px solid rgba(198, 161, 91, .25);
  border-radius: 6px;
  background: rgba(36, 4, 26, .22);
  transition: transform .3s ease, border-color .3s ease;
}
.sponsor-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.sponsor-card__logo {
  width: 96px; height: 96px;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px dashed rgba(198, 161, 91, .55);
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--gold);
}
.sponsor-card__logo--img {
  background: #fff;
  border: none;
  object-fit: contain;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  padding: 12px;
}

.sponsor-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.sponsor-card__role {
  margin-top: .5rem;
  font-size: .74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--magenta);
}

.sponsors__cta { margin-top: 3.5rem; }
.sponsors__cta p {
  font-family: var(--font-serif);
  letter-spacing: 2px;
  color: rgba(230, 197, 178, .9);
  margin-bottom: 1.4rem;
}
.btn-outline {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--beige);
  text-decoration: none;
  padding: .85rem 2.2rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition: background .3s ease, color .3s ease;
}
.btn-outline:hover { background: var(--gold); color: var(--maroon); }

/* ===== LEADERSHIP / TEAM ===== */
.team {
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1.25rem, 5vw, 3rem);
}
.team--directors { background: var(--maroon); }
.team--board {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(150, 22, 74, .3) 0%, transparent 55%),
    var(--plum);
}
.team__inner { max-width: 1080px; margin: 0 auto; }
.team__group-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
  margin-bottom: 2.8rem;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.team__grid--featured {
  max-width: 560px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}

.member { text-align: center; }
.member__photo {
  width: clamp(120px, 15vw, 160px);
  height: clamp(120px, 15vw, 160px);
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(198, 161, 91, .18), rgba(196, 20, 90, .12));
  border: 1px dashed rgba(198, 161, 91, .45);
  transition: border-color .3s ease, transform .3s ease;
}
.member__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* solid gold ring once a real photo has loaded */
.member__photo.has-img {
  border: 2px solid rgba(198, 161, 91, .5);
}
.member:hover .member__photo {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.member--featured .member__photo,
.team__grid--featured .member__photo {
  width: clamp(150px, 18vw, 200px);
  height: clamp(150px, 18vw, 200px);
}
.member__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.member__role {
  margin-top: .35rem;
  font-size: .74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--magenta);
}

/* ===== Generic subpage body ===== */
.page-body {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(150, 22, 74, .25) 0%, transparent 55%),
    var(--plum);
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1.25rem, 5vw, 3rem) clamp(5rem, 12vh, 8rem);
  min-height: 60vh;
}
.page-body__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.page-body__inner--narrow { max-width: 760px; }
.page-body__intro {
  max-width: 620px;
  margin: 0 auto 3rem;
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  line-height: 1.8;
  color: rgba(230, 197, 178, .85);
}
.page-body__note {
  margin-top: 2.5rem;
  font-family: var(--font-serif);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--gold);
}

/* Media gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  border: 1px dashed rgba(198, 161, 91, .35);
  background: linear-gradient(135deg, rgba(60, 0, 8, .3), rgba(36, 4, 26, .3));
  transition: border-color .3s ease, transform .3s ease;
}
.gallery-tile:hover { border-color: var(--gold); transform: translateY(-4px); }

/* Media — YouTube feature */
.youtube-feature {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  text-align: left;
  text-decoration: none;
  border: 1px solid rgba(198, 161, 91, .3);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(60, 0, 8, .35), rgba(36, 4, 26, .3));
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.youtube-feature:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.youtube-feature__icon { color: var(--magenta); display: flex; flex-shrink: 0; }
.youtube-feature:hover .youtube-feature__icon { color: var(--gold); }
.youtube-feature__text { flex: 1; display: flex; flex-direction: column; gap: .3rem; }
.youtube-feature__title { font-size: 1.15rem; font-weight: 600; color: #fff; }
.youtube-feature__sub {
  font-size: .85rem;
  color: rgba(230, 197, 178, .8);
  letter-spacing: .5px;
}
.youtube-feature__cta {
  flex-shrink: 0;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
@media (max-width: 520px) {
  .youtube-feature { flex-direction: column; text-align: center; }
  .youtube-feature__text { align-items: center; }
}

.history-link { margin-top: 2.5rem; }
.page-header__meta {
  margin-top: 1.4rem;
  font-family: var(--font-serif);
  font-size: clamp(.8rem, 1.8vw, 1rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(230, 197, 178, .85);
}

/* Sub-section heading within a page body */
.subhead {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin: 3.75rem 0 1.75rem;
}
.subhead:first-child { margin-top: 0; }

/* Show order / lineup */
.lineup {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.lineup__row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.5rem;
  border: 1px solid rgba(198, 161, 91, .2);
  border-radius: 6px;
  background: rgba(60, 0, 8, .18);
  text-align: left;
}
.lineup__row--winner { border-color: rgba(198, 161, 91, .55); }
.lineup__num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  width: 1.75rem;
  text-align: center;
  flex-shrink: 0;
}
.lineup__team { flex: 1; font-weight: 600; color: #fff; font-size: 1.05rem; }
.lineup__place {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.lineup__place--1 { background: var(--gold); color: var(--maroon); }
.lineup__place--2 { border: 1px solid var(--gold); color: var(--gold); }

.team__group-title--spaced { margin-top: 3rem; }

/* Media — editions + playlists */
.inline-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 161, 91, .5);
  white-space: nowrap;
}
.inline-link:hover { color: #e9cf8c; border-color: currentColor; }

.media-edition { max-width: 620px; margin: 0 auto 2.75rem; text-align: left; }
.media-edition__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 1.1rem;
}
.link-card__label { display: inline-flex; align-items: center; gap: .75rem; }
.link-card__play {
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--magenta);
  flex-shrink: 0;
  transition: border-left-color .3s ease;
}
.link-card:hover .link-card__play { border-left-color: var(--gold); }
.link-card__img { display: inline-flex; color: var(--magenta); flex-shrink: 0; }
.link-card:hover .link-card__img { color: var(--gold); }

/* Contact form */
.contact-form { max-width: 620px; margin: 0 auto 3.5rem; text-align: left; }
.form-row { display: flex; gap: 1.25rem; }
.form-row .form-field { flex: 1; }
.form-field { margin-bottom: 1.4rem; display: flex; flex-direction: column; }
.form-field label {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .55rem;
}
.form-field .req { color: var(--magenta); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: .85rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--beige);
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(198, 161, 91, .3);
  border-radius: 6px;
  transition: border-color .25s ease, background .25s ease;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, .4);
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C6A15B' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-field option { color: #1a1a1a; }
.btn-solid {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--maroon);
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  border: none;
  border-radius: 999px;
  padding: .95rem 2.6rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(198, 161, 91, .3); }
@media (max-width: 520px) {
  .form-row { flex-direction: column; gap: 0; }
}

/* Forms list */
.link-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border: 1px solid rgba(198, 161, 91, .28);
  border-radius: 6px;
  background: rgba(60, 0, 8, .18);
  text-decoration: none;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.link-card:not(.is-disabled):hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.link-card__label { font-weight: 600; color: #fff; letter-spacing: .5px; }
.link-card__status {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--magenta);
}
.link-card.is-disabled { opacity: .7; cursor: default; }

/* Policies */
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}
.policy-item {
  padding: 1.75rem 2rem;
  border: 1px solid rgba(198, 161, 91, .22);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  background: rgba(60, 0, 8, .18);
}
.policy-item__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: .6rem;
}
.policy-item__body {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(230, 197, 178, .8);
}
.policy-note {
  margin-top: 1.75rem;
  text-align: center;
  color: rgba(230, 197, 178, .7);
  font-size: .95rem;
  line-height: 1.7;
}


/* ===== TEMP placeholders (removed as we build each section) ===== */
.placeholder {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(230, 197, 178, .35);
  border-top: 1px solid rgba(198, 161, 91, .12);
}
.placeholder:nth-of-type(even) { background: var(--plum); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}

/* ===================================================================
   3.1  DESIGN UPGRADE LAYER   (2026-07-05, via ui-ux-pro-max)
   Craft pass layered on top of the base theme — depth, motion,
   ornament, type polish, and accessible focus. ADDITIVE ONLY: no base
   rule is edited, so the original design (and the history pages' own
   per-year themes) is preserved and this whole block can be removed
   wholesale to revert. Reduced-motion is already honored by the base
   `* { animation: none !important }` rule above, which wins over
   everything added here.
   =================================================================== */

:root {
  /* Warm-tinted elevation scale (jewel-dark shadows, not neutral black) */
  --shadow-1: 0 2px 10px rgba(10, 0, 4, .35);
  --shadow-2: 0 14px 36px rgba(8, 0, 3, .48);
  --shadow-3: 0 34px 90px rgba(6, 0, 2, .58);
  --glow-gold: 0 0 0 1px rgba(198, 161, 91, .4), 0 22px 55px rgba(150, 22, 74, .22);
  --ring: 0 0 0 2px var(--plum), 0 0 0 4px var(--gold);
  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --gold-sheen: linear-gradient(105deg, var(--gold) 0%, #f4e2ad 42%, var(--gold-lt) 52%, var(--gold) 100%);
}

/* ---- Global polish ---- */
::selection { background: rgba(198, 161, 91, .28); color: #fff; }

/* Accessible keyboard focus — the base theme shipped without any */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 8px;
}

/* Springier easing on the interactive lifts the base already defines */
.sponsor-card, .youtube-feature, .link-card, .gallery-tile, .member__photo,
.btn-solid, .btn-outline, .show__directions, .about__panel, .lineup__row {
  transition-timing-function: var(--ease-out);
}

/* ---- Nav: legibility scrim over bright hero + gold-sheen brand ---- */
.nav:not(.nav--scrolled):not(.nav--solid)::before {
  content: '';
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 0, 2, .55), transparent);
}
.nav__brand:hover {
  background: var(--gold-sheen);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.nav__links a::after { background: var(--gold-sheen); }
.nav__dropdown { box-shadow: var(--shadow-3); border-radius: 8px; }

/* ---- Hero: animated gold sheen + balanced wrapping + deeper text ---- */
.hero__title { text-wrap: balance; }
.hero__title-line--accent,
.section-title__accent {
  background: var(--gold-sheen);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 7s linear infinite;
}
.hero__title-line--accent { animation-duration: 6s; }
@keyframes gold-shimmer { to { background-position: 200% center; } }

/* ---- Section rhythm: delicate gold seam at the top of each band ---- */
.about, .show, .sponsors, .team, .page-body { position: relative; }
.about::before, .show::before, .sponsors::before, .team::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(160px, 42%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 161, 91, .5), transparent);
}

/* ---- Cards: unified elevation + inner top highlight + richer hover ---- */
.about__panel, .show__card, .sponsor-card, .youtube-feature,
.link-card, .policy-item, .media-edition, .lineup__row {
  box-shadow: var(--shadow-1);
}
.about__panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 42%),
    rgba(36, 4, 26, .28);
}
.show__card { box-shadow: var(--shadow-3); }
.sponsor-card:hover,
.youtube-feature:hover,
.gallery-tile:hover {
  box-shadow: var(--shadow-3), var(--glow-gold);
}
.sponsor-card:hover { transform: translateY(-8px) scale(1.015); }
.member:hover .member__photo {
  box-shadow: 0 14px 34px rgba(6, 0, 2, .5), 0 0 0 1px rgba(198, 161, 91, .35);
}
.policy-item { transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out), transform .3s var(--ease-out); }
.policy-item:hover { border-left-color: var(--gold-lt); box-shadow: var(--shadow-2); transform: translateX(3px); }

/* ---- Buttons: light sheen sweep on hover + lift ---- */
.btn-solid, .btn-outline, .show__directions { position: relative; overflow: hidden; }
.btn-solid::after, .btn-outline::after, .show__directions::after {
  content: '';
  position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg);
  transition: left .65s var(--ease-out);
  pointer-events: none;
}
.btn-solid:hover::after,
.btn-outline:hover::after,
.show__directions:hover::after { left: 135%; }
.btn-solid:hover { box-shadow: var(--shadow-2), 0 12px 30px rgba(198, 161, 91, .35); }
.btn-outline:hover, .show__directions:hover { box-shadow: 0 12px 30px rgba(198, 161, 91, .25); }

/* ---- Form fields: soft gold focus glow (adds to the base border shift) ---- */
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { box-shadow: 0 0 0 3px rgba(198, 161, 91, .18); }

/* ---- Body copy: nicer wrapping ---- */
.about__panel p, .page-body__intro, .sponsors__intro, .policy-item__body { text-wrap: pretty; }

/* ---- Scroll-reveal (progressive; modern browsers only, motion-safe) ----
   Uses scroll-driven CSS animations — no JS, no markup change. The
   initial hidden state lives INSIDE the no-preference query so
   reduced-motion users never see hidden content. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .about__panel, .show__card, .sponsor-card, .team__group-title,
    .team__grid, .media-edition, .link-card, .policy-item,
    .youtube-feature, .gallery-grid, .lineup {
      animation: reveal-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }
  }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
