/* ================================================================
   THE LANSDOWNE — "The Spotlight Is On"
   House lights down. One page, lit like the theater itself:
   velvet dark, brass gold, and the blue neon of the marquee.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Libre+Franklin:wght@400;500;600;700&display=swap');

:root {
  /* Burgundy-black — velvet curtains, the house with lights down */
  --t-black:          #1a0c10;
  --t-dark:           #221419;
  --t-dark-card:      #2a1820;
  --t-dark-border:    #3d2830;

  /* Gold — brass fixtures, the chandelier */
  --t-gold:           #b8963e;
  --t-gold-bright:    #d4ad4a;
  --t-gold-dim:       #8a7433;
  --t-gold-soft:      rgba(184, 150, 62, 0.08);
  --t-gold-border:    rgba(184, 150, 62, 0.22);

  /* Neon — the marquee blue */
  --t-neon:           #7fd4ff;
  --t-neon-deep:      #2e9fd8;

  /* Light — plaster walls, parchment programs */
  --t-cream:          #f6efe4;
  --t-cream-deep:     #efe6d6;
  --t-cream-border:   #ddd2bf;

  /* Text */
  --t-fg-light:       #f0ebe3;
  --t-fg-muted-l:     #b3a8a1;
  --t-fg-dark:        #241d15;
  --t-fg-muted-d:     #6b6156;

  /* Type */
  --t-marquee:        'Cinzel', 'Trajan Pro', Georgia, serif;
  --t-display:        'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --t-body:           'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --t-section-pad:    clamp(80px, 12vw, 150px);
  --t-container:      1080px;
  --t-radius:         4px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font: 17px/1.75 var(--t-body);
  color: var(--t-fg-light);
  background: var(--t-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* film-grain wash over the whole house */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--t-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--t-gold-bright); }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--t-gold); color: var(--t-black); }

.container {
  max-width: var(--t-container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.section { padding: var(--t-section-pad) 0; position: relative; }

/* Light sections — house lights up */
.section--light { background: var(--t-cream); color: var(--t-fg-dark); }
.section--light-deep { background: var(--t-cream-deep); }
.section--light .section-heading { color: var(--t-fg-dark); }
.section--light .section-intro { color: var(--t-fg-muted-d); }
.section--light .section-label { color: var(--t-gold-dim); }
.section--light .section-label::after { background: rgba(138, 116, 51, 0.35); }

/* ================================================================
   SHARED TYPE
   ================================================================ */

.section-label {
  font: 600 12px var(--t-body);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--t-gold);
  margin-bottom: 18px;
}
.section-label::after {
  content: '';
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--t-gold-border);
  margin-left: 16px;
  vertical-align: middle;
}

.section-heading {
  font: 600 clamp(30px, 4.6vw, 52px)/1.12 var(--t-display);
  color: var(--t-fg-light);
  letter-spacing: 0.005em;
  margin-bottom: 24px;
  text-wrap: balance;
}

.section-intro {
  font-size: 18px;
  color: var(--t-fg-muted-l);
  max-width: 620px;
  margin-bottom: 40px;
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-block;
  padding: 14px 30px;
  font: 700 13px var(--t-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}
.btn--lg { padding: 17px 38px; font-size: 14px; }

.btn--gold {
  position: relative;
  background: linear-gradient(160deg, #f6d778, #e0b84e 55%, var(--t-gold));
  color: #221302;
  box-shadow:
    0 0 0 1px rgba(246, 215, 120, 0.65),
    0 8px 28px rgba(212, 173, 74, 0.35),
    0 0 34px rgba(212, 173, 74, 0.45);
}
/* breathing glow on a compositor-friendly layer (opacity only) */
.btn--gold::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 10px;
  background: radial-gradient(ellipse closest-side, rgba(212, 173, 74, 0.5), transparent 70%);
  z-index: -1;
  opacity: 0.4;
  animation: goldBreathe 2.8s ease-in-out infinite;
  pointer-events: none;
  will-change: opacity;
}
.btn--gold:hover {
  color: #221302;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(246, 215, 120, 0.95),
    0 12px 36px rgba(212, 173, 74, 0.5),
    0 0 56px rgba(212, 173, 74, 0.7);
}
.btn--gold:hover::after { animation: none; opacity: 1; }

@keyframes goldBreathe {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .btn--gold::after { animation: none; opacity: 0.6; }
}

.btn--outline {
  border: 1px solid rgba(240, 235, 227, 0.3);
  color: var(--t-fg-light);
}
.btn--outline:hover { border-color: var(--t-gold); color: var(--t-gold-bright); }

/* ================================================================
   STICKY NAV  (hooks: #siteNav .is-visible, #navLinks .is-open)
   ================================================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 12, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--t-dark-border);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.site-nav.is-visible { transform: translateY(0); }

.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

.site-nav__brand {
  font: 600 15px var(--t-marquee);
  color: var(--t-gold-bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.site-nav__links a {
  display: block;
  padding: 8px 13px;
  font: 600 12px var(--t-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-fg-muted-l);
  border-radius: 2px;
}
.site-nav__links a:hover { color: var(--t-fg-light); }
.site-nav__links a.is-active { color: var(--t-gold-bright); }

.site-nav__links a.site-nav__donate {
  background: linear-gradient(160deg, #f6d778, #d4ad4a);
  color: #221302;
  margin-left: 8px;
  box-shadow: 0 0 16px rgba(212, 173, 74, 0.55);
}
.site-nav__links a.site-nav__donate:hover {
  background: #f6d778;
  color: #221302;
  box-shadow: 0 0 26px rgba(212, 173, 74, 0.85);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--t-gold);
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav__links {
    display: none;
    position: absolute;
    top: 58px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(26, 12, 16, 0.98);
    border-bottom: 1px solid var(--t-dark-border);
    padding: 12px 16px 20px;
  }
  .site-nav__links.is-open { display: flex; }
  .site-nav__links a { padding: 12px; font-size: 13px; }
  .site-nav__links a.site-nav__donate { margin: 8px 0 0; text-align: center; }
}

/* ================================================================
   HERO — the house, lights down, marquee humming
   ================================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -6% 0;
  background: url('images/auditorium-2026.jpg') center 30%/cover no-repeat;
  filter: brightness(0.74) saturate(1);
  will-change: transform;
  animation: houseLights 4.2s ease-out both;
}

/* the house lights come up — a couple of surges, then they hold */
@keyframes houseLights {
  0%   { filter: brightness(0.26) saturate(0.85); }
  38%  { filter: brightness(0.3) saturate(0.85); }   /* dark while the neon warms up */
  46%  { filter: brightness(0.52) saturate(0.92); }
  52%  { filter: brightness(0.34) saturate(0.88); }
  62%  { filter: brightness(0.62) saturate(0.95); }
  68%  { filter: brightness(0.5) saturate(0.92); }
  100% { filter: brightness(0.74) saturate(1); }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 68% at 50% 42%, transparent 42%, rgba(26, 12, 16, 0.6) 100%),
    linear-gradient(180deg, rgba(26,12,16,0.42) 0%, transparent 26%, transparent 66%, var(--t-black) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 120px 24px 80px;
  width: 100%;
  max-width: 1000px;
}

.hero__eyebrow {
  font: 600 12px var(--t-body);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--t-gold-bright);
  text-shadow: 0 1px 4px rgba(20, 10, 13, 0.9), 0 0 18px rgba(20, 10, 13, 0.8);
  margin-bottom: 34px;
  opacity: 0;
  animation: riseIn 1s ease 0.2s forwards;
}

.hero__title {
  font-weight: 500;
  margin-bottom: 30px;
}

.hero__title-line1 {
  display: block;
  font: 500 clamp(17px, 2.6vw, 27px) var(--t-marquee);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--t-fg-light);
  margin-bottom: 18px;
  opacity: 0;
  animation: riseIn 1s ease 0.45s forwards;
}

.hero__title-line2 {
  display: block;
  font: 600 clamp(52px, 9.5vw, 108px)/1.02 var(--t-marquee);
  letter-spacing: 0.04em;
  color: #eaf7ff;
}

/* Neon flicker — the sign warming up, then holding steady */
.neon {
  text-shadow:
    0 0 6px rgba(127, 212, 255, 0.9),
    0 0 18px rgba(127, 212, 255, 0.55),
    0 0 42px rgba(46, 159, 216, 0.5),
    0 0 90px rgba(46, 159, 216, 0.35);
  animation: neonOn 2.6s ease-out 0.7s both;
}

@keyframes neonOn {
  0%       { opacity: 0; text-shadow: none; }
  6%       { opacity: 0.7; }
  9%       { opacity: 0.1; text-shadow: none; }
  14%      { opacity: 0.85; }
  17%      { opacity: 0.2; }
  22%      { opacity: 1; }
  27%      { opacity: 0.45; text-shadow: 0 0 6px rgba(127,212,255,0.4); }
  36%, 100% {
    opacity: 1;
    text-shadow:
      0 0 6px rgba(127, 212, 255, 0.9),
      0 0 18px rgba(127, 212, 255, 0.55),
      0 0 42px rgba(46, 159, 216, 0.5),
      0 0 90px rgba(46, 159, 216, 0.35);
  }
}

.hero__tagline {
  font: italic 500 clamp(18px, 2.4vw, 24px) var(--t-display);
  color: rgba(240, 235, 227, 0.95);
  text-shadow: 0 1px 5px rgba(20, 10, 13, 0.9), 0 0 22px rgba(20, 10, 13, 0.85);
  margin-bottom: 44px;
  opacity: 0;
  animation: riseIn 1s ease 2.2s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn 1s ease 2.5s forwards;
}

.hero__scrollcue {
  position: absolute;
  bottom: 30px; left: 50%;
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--t-gold));
  z-index: 3;
  animation: cuePulse 2.4s ease-in-out infinite;
}

@media (max-width: 560px) {
  .hero__eyebrow { font-size: 10px; letter-spacing: 0.2em; }
  .hero__title-line1 { letter-spacing: 0.26em; }
  .hero__title-line2 { font-size: clamp(32px, 9.6vw, 52px); letter-spacing: 0; }
  .hero__tagline { font-size: 16px; }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes cuePulse {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 1; }
}

/* ================================================================
   A NEW CHAPTER — editorial text with overlapping photos
   ================================================================ */

.chapter-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 24px 56px;
  align-items: start;
  margin-top: 16px;
}

.chapter-grid__text {
  grid-row: 1 / span 2;
  font: 500 clamp(18px, 2vw, 21px)/1.8 var(--t-display);
  color: var(--t-fg-light);
}
.chapter-grid__text p + p { margin-top: 24px; }

.chapter-grid__photo { position: relative; }
.chapter-grid__photo img {
  width: 100%;
  border: 1px solid var(--t-dark-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
/* captions sit ON the photo so overlapping images can't cover them */
.chapter-grid__photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  font: 500 11px var(--t-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.92);
  background: linear-gradient(to top, rgba(20, 10, 13, 0.78), transparent);
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
/* photo A's caption rides its top edge, clear of the overlapping photo B */
.chapter-grid__photo--a figcaption {
  top: 0;
  bottom: auto;
  padding: 12px 16px 26px;
  background: linear-gradient(to bottom, rgba(20, 10, 13, 0.78), transparent);
}

.chapter-grid__photo--b {
  width: 78%;
  margin-top: -60px;
  margin-left: auto;
  z-index: 2;
}
.chapter-grid__photo--b img { box-shadow: -18px 24px 60px rgba(0, 0, 0, 0.65); }

@media (max-width: 820px) {
  .chapter-grid { grid-template-columns: 1fr; }
  .chapter-grid__text { grid-row: auto; }
  .chapter-grid__photo--b { margin-top: -36px; }
}


/* ================================================================
   UPCOMING SHOWS — the house in full swing
   ================================================================ */

.shows {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--t-dark-border);
  border-bottom: 1px solid var(--t-dark-border);
}
.shows__bg {
  position: absolute;
  inset: 0;
  background: url('images/concert-crowd.jpg') center 35%/cover no-repeat;
}
.shows__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 10, 16, 0.88) 0%, rgba(20, 10, 16, 0.55) 48%, rgba(20, 10, 16, 0.35) 100%);
}
.shows__inner {
  position: relative;
  z-index: 2;
  max-width: var(--t-container);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 28px;
}
.shows__header { text-align: center; margin-bottom: 48px; }
.shows__eyebrow {
  font: 500 clamp(14px, 1.8vw, 18px) var(--t-marquee);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--t-gold-bright);
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  margin-bottom: 10px;
}
.shows__heading {
  font: italic 600 clamp(30px, 4.4vw, 48px)/1.1 var(--t-display);
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.65);
}

.shows__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.shows__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 38px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.shows__card--hltc {
  background: rgba(26, 12, 16, 0.88);
  border: 1px solid var(--t-gold-border);
  border-top: 3px solid var(--t-gold);
}
.shows__card--bre {
  background: rgba(20, 14, 26, 0.82);
  border: 1px solid rgba(180, 160, 220, 0.25);
  border-top: 3px solid rgba(168, 140, 216, 0.7);
}

.shows__card-logo {
  height: 54px;
  width: auto;
  margin-bottom: 26px;
  background: rgba(246, 239, 228, 0.95);
  padding: 8px 14px;
  border-radius: 4px;
}
.shows__card-logo--circle {
  height: 68px;
  padding: 0;
  background: none;
  border-radius: 50%;
}

.shows__bre-id {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  margin-bottom: 26px;
}
.shows__bre-id .shows__card-logo { margin-bottom: 0; }
.shows__bre-id a {
  padding-left: 18px;
  border-left: 1px solid rgba(180, 160, 220, 0.35);
  font: 600 10px var(--t-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(211, 194, 240, 0.9);
  white-space: nowrap;
}
.shows__bre-id a:hover { color: #fff; }

.shows__hltc-id {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  margin-bottom: 26px;
  color: var(--t-fg-light);
}
.shows__hltc-id strong {
  font: 600 28px var(--t-marquee);
  letter-spacing: 0.16em;
  color: var(--t-gold-bright);
}
.shows__hltc-id span {
  padding-left: 14px;
  border-left: 1px solid var(--t-gold-border);
  font: 600 9px/1.55 var(--t-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t-fg-muted-l);
}

.shows__card-title {
  font: 600 clamp(23px, 2.8vw, 30px)/1.2 var(--t-display);
  color: var(--t-fg-light);
  margin-bottom: 14px;
}
.shows__card-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(240, 235, 227, 0.85);
  margin-bottom: 28px;
  flex-grow: 1;
}
.shows__card-desc strong { color: #fff; font-weight: 600; }
.shows__card--bre .btn--outline { border-color: rgba(240, 235, 227, 0.45); }

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

/* ================================================================
   STATS BAND
   ================================================================ */

.stats-band {
  border-top: 1px solid var(--t-dark-border);
  border-bottom: 1px solid var(--t-dark-border);
  background: var(--t-dark);
  position: relative;
  z-index: 2;
}
.stats-band__inner {
  max-width: var(--t-container);
  margin: 0 auto;
  padding: 44px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__number {
  font: 600 clamp(34px, 5vw, 56px)/1 var(--t-marquee);
  color: var(--t-gold-bright);
}
.stat__label {
  font: 600 11px var(--t-body);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--t-fg-muted-l);
  margin-top: 10px;
}
@media (max-width: 640px) {
  .stats-band__inner { grid-template-columns: 1fr 1fr; gap: 32px 12px; }
}

/* ================================================================
   THEN & NOW — before/after slider
   ================================================================ */

.compare {
  position: relative;
  max-width: 1240px;
  margin: 24px auto 0;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  border-top: 1px solid var(--t-dark-border);
  border-bottom: 1px solid var(--t-dark-border);
  cursor: ew-resize;
  z-index: 2;
}

/* Frame close to the 1927 scan's native 1.38:1 so the archival photo
   is barely cropped; the wider 2026 shot gives up its edges instead. */
.compare {
  aspect-ratio: 10 / 7;
  max-height: 88vh;
}

.compare__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.compare__before {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 1px solid rgba(240, 235, 227, 0.6);
}
.compare__before .compare__img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 62%;
  filter: sepia(0.22) contrast(1.02);
}

.compare__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 3;
}
.compare__grip {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--t-black);
  border: 1px solid var(--t-gold);
  box-shadow: 0 0 0 4px rgba(26,12,16,0.4), 0 0 24px rgba(184,150,62,0.5);
  position: relative;
}
.compare__grip::before,
.compare__grip::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(-50%);
}
.compare__grip::before { left: 9px; border-right: 7px solid var(--t-gold-bright); }
.compare__grip::after { right: 9px; border-left: 7px solid var(--t-gold-bright); }

.compare__tag {
  position: absolute;
  bottom: 18px;
  font: 600 13px var(--t-marquee);
  letter-spacing: 0.3em;
  color: var(--t-fg-light);
  background: rgba(26, 12, 16, 0.75);
  border: 1px solid var(--t-gold-border);
  padding: 7px 16px 6px;
  pointer-events: none;
  z-index: 2;
}
.compare__tag--before { left: 18px; }
.compare__tag--after { right: 18px; }

/* ================================================================
   TIMELINE — photo left, story right
   ================================================================ */

.timeline {
  margin-top: 110px;
  display: flex;
  flex-direction: column;
  gap: 88px;
}

.timeline__entry {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 44px;
  align-items: center;
}
.timeline__entry:nth-child(even) .timeline__photo { order: 2; }

.timeline__photo { position: relative; }
.timeline__photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--t-dark-border);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
}

.timeline__year {
  font: 600 clamp(15px, 1.8vw, 18px) var(--t-marquee);
  letter-spacing: 0.24em;
  color: var(--t-neon);
  text-shadow: 0 0 14px rgba(127, 212, 255, 0.35);
  margin-bottom: 10px;
}
.timeline__title {
  font: 600 clamp(24px, 3vw, 34px)/1.2 var(--t-display);
  color: var(--t-fg-light);
  margin-bottom: 14px;
}
.timeline__desc { font-size: 16px; color: var(--t-fg-muted-l); max-width: 520px; }

.timeline__entry--highlight .timeline__year { color: var(--t-gold-bright); text-shadow: 0 0 16px rgba(212,173,74,0.45); }
.timeline__entry--highlight .timeline__title { color: var(--t-gold-bright); }

@media (max-width: 760px) {
  .timeline { gap: 64px; }
  .timeline__entry { grid-template-columns: 1fr; gap: 20px; }
  .timeline__entry:nth-child(even) .timeline__photo { order: 0; }
}

/* ================================================================
   THE BUILDING — horizontal gallery
   ================================================================ */

.gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 12px max(28px, calc(50vw - 620px)) 24px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--t-gold-dim) transparent;
  position: relative;
  z-index: 2;
}

.gallery__item {
  flex: 0 0 auto;
  width: min(66vw, 480px);
  scroll-snap-align: center;
}
.gallery__item--tall { width: min(48vw, 320px); }

.gallery__item img {
  width: 100%;
  height: min(58vw, 400px);
  object-fit: cover;
  border: 1px solid var(--t-dark-border);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.gallery__item:hover img {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.6);
}
.gallery__item figcaption {
  font: 500 11px var(--t-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-fg-muted-l);
  margin-top: 12px;
}

.gallery__hint {
  text-align: center;
  font: 500 10px var(--t-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t-gold-dim);
  margin-top: 4px;
  position: relative;
  z-index: 2;
}

.building-address {
  text-align: center;
  font: italic 500 16px var(--t-display);
  color: var(--t-fg-muted-l);
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

/* Light-section variants for the gallery + building */
.section--light .gallery__item figcaption { color: var(--t-fg-muted-d); }
.section--light .gallery__item img { border-color: var(--t-cream-border); }
.section--light .gallery__item:hover img { box-shadow: 0 24px 48px rgba(60, 40, 20, 0.28); }
.section--light .gallery { scrollbar-color: var(--t-gold-dim) transparent; }
.section--light .building-address { color: var(--t-fg-muted-d); }

/* ================================================================
   IN THE NEWS — marquee billing with a passing spotlight
   ================================================================ */

.section--news {
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  background: var(--t-dark);
  border-top: 1px solid var(--t-dark-border);
  border-bottom: 1px solid var(--t-dark-border);
}

.press-hero {
  position: relative;
  width: 100%;
  height: clamp(520px, 50vw, 680px);
  overflow: hidden;
  border-bottom: 1px solid rgba(192, 157, 66, 0.2);
  background: #160d12;
}
.press-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(24, 13, 19, 0.08) 58%, rgba(24, 13, 19, 0.34) 100%);
  pointer-events: none;
}
.press-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.press-hero__copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(32px, 6vw, 84px);
  width: min(39%, 470px);
  transform: translateY(-50%);
}
.press-hero__copy .section-heading {
  margin-bottom: 22px;
  font-size: clamp(37px, 4.7vw, 64px);
  text-wrap: balance;
}
.press-hero__copy > p:last-child {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(244, 238, 231, 0.72);
}

.press-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.press-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  grid-column: span 4;
  gap: 22px;
  min-height: 178px;
  padding: 28px;
  border: 1px solid var(--t-dark-border);
  background: linear-gradient(145deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.press-row:nth-child(-n+2) { grid-column: span 6; min-height: 194px; }

.press-row__outlet {
  max-width: 92%;
  font: 600 clamp(22px, 2.7vw, 34px)/1.08 var(--t-marquee);
  color: var(--t-fg-light);
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}
.press-row__note {
  font: italic 500 14px/1.5 var(--t-display);
  color: var(--t-fg-muted-l);
  text-align: left;
  max-width: 96%;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

.press-row::after {
  content: '\2197';
  position: absolute;
  top: 24px;
  right: 25px;
  font-size: 16px;
  color: var(--t-gold);
  opacity: 0.55;
  transition: opacity 0.3s, transform 0.3s;
}

/* spotlight sweep across the row when it reveals, and on hover */
.press-row::before {
  content: '';
  position: absolute;
  top: -40%; bottom: -40%;
  left: -18%;
  width: 22%;
  background: radial-gradient(ellipse closest-side, rgba(240, 230, 200, 0.13), transparent 70%);
  transform: skewX(-14deg) translateX(-140%);
  pointer-events: none;
}
.press-row.is-visible::before { animation: sweep 1.6s ease 0.35s 1; }
.press-row:hover::before { animation: sweep 1.2s ease 1; }

@keyframes sweep {
  from { transform: skewX(-14deg) translateX(-140%); }
  to   { transform: skewX(-14deg) translateX(680%); }
}

.press-row:hover { transform: translateY(-3px); border-color: var(--t-gold-border); background: rgba(255,255,255,0.035); }
.press-row:hover::after { opacity: 1; transform: translate(2px, -2px); }
.press-row:hover .press-row__outlet { color: var(--t-gold-bright); }
.press-row:hover .press-row__note { color: var(--t-fg-light); }

@media (max-width: 900px) {
  .press-row,
  .press-row:nth-child(-n+2) { grid-column: span 6; }
}

@media (max-width: 700px) {
  .press-hero { height: 620px; }
  .press-hero img { height: 54%; object-position: 28% center; }
  .press-hero::after { background: linear-gradient(180deg, transparent 25%, rgba(24,13,19,0.44) 49%, #180d13 68%); }
  .press-hero__copy {
    top: auto;
    right: 26px;
    bottom: 34px;
    left: 26px;
    width: auto;
    transform: none;
  }
  .press-hero__copy .section-heading { font-size: clamp(35px, 11vw, 48px); }
  .press-list { grid-template-columns: 1fr; }
  .press-row,
  .press-row:nth-child(-n+2) { grid-column: 1; min-height: 158px; }
}

/* ================================================================
   AWARDS — brass plaques
   ================================================================ */

#awards {
  overflow: hidden;
  isolation: isolate;
}

#awards::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -5vw;
  width: clamp(720px, 66vw, 1120px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url('images/hltc-architectural-seal.svg') center / contain no-repeat;
  filter: grayscale(1) sepia(0.2) contrast(1.08);
  mix-blend-mode: multiply;
  opacity: 0.07;
  pointer-events: none;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.award {
  padding: 30px 28px;
  background: linear-gradient(170deg, rgba(255, 252, 245, 0.92), rgba(246, 239, 228, 0.7));
  border: 1px solid rgba(138, 116, 51, 0.35);
  box-shadow: 0 10px 30px rgba(60, 40, 20, 0.1);
  position: relative;
}
.award::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(138, 116, 51, 0.22);
  pointer-events: none;
}
.award__year {
  font: 600 13px var(--t-marquee);
  letter-spacing: 0.28em;
  color: #7a2e2e;
  margin-bottom: 12px;
}
.award__name {
  font: 600 21px/1.3 var(--t-display);
  color: var(--t-fg-dark);
  margin-bottom: 10px;
}
.award__org {
  font: 500 12.5px var(--t-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-fg-muted-d);
  line-height: 1.6;
}

@media (max-width: 700px) {
  #awards::before {
    right: -58vw;
    width: 150vw;
    opacity: 0.055;
  }
}

/* ================================================================
   SECOND ACT — one stewardship and giving story
   ================================================================ */

.second-act {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--t-black);
  border-top: 1px solid var(--t-dark-border);
  border-bottom: 1px solid var(--t-dark-border);
}
.second-act,
.second-act__hero { scroll-margin-top: 58px; }
.second-act__hero {
  position: relative;
  height: clamp(520px, 52vw, 760px);
  overflow: hidden;
  background: #030303;
}
.second-act__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 2, 3, 0.42) 0%, rgba(2, 2, 3, 0.06) 42%, transparent 66%);
  pointer-events: none;
}
.second-act__hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.second-act__appeal {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  max-width: 1180px;
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(64px, 8vw, 104px);
}
.second-act__identity {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 4.5vw, 74px);
  top: 50%;
  width: min(35vw, 500px);
  margin: 0;
  transform: translateY(-50%);
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.45));
}
.second-act__logo { width: 100%; height: auto; display: block; overflow: visible; }
.second-act__copy { min-width: 0; }
.second-act__heading {
  font: 600 clamp(36px, 4.6vw, 58px)/1.02 var(--t-display);
  color: var(--t-fg-light);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-wrap: balance;
}

.second-act__lede {
  max-width: 690px;
  font: 500 clamp(18px, 2vw, 23px)/1.55 var(--t-display);
  color: rgba(244, 238, 231, 0.9);
  margin-bottom: 28px;
  text-wrap: balance;
}
.second-act__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.identity-aura { opacity: 0.26; transform-box: fill-box; transform-origin: center; animation: identityAura 5.6s ease-in-out infinite; }
.identity-tube { transform-box: fill-box; transform-origin: center; animation: identityTube 5.6s ease-in-out infinite; }
.identity-letter { transform-box: fill-box; transform-origin: center; animation: identityLetter 6.3s ease-in-out infinite; }
.identity-bulbs circle { animation: identityBulb 4.8s ease-in-out infinite; }
.identity-bulbs circle:nth-child(4n+1) { animation-delay: -1.1s; }
.identity-bulbs circle:nth-child(4n+2) { animation-delay: -2.6s; }
.identity-bulbs circle:nth-child(4n+3) { animation-delay: -3.7s; }

@keyframes identityAura {
  0%, 100% { opacity: 0.15; transform: scale(0.99); }
  42% { opacity: 0.4; transform: scale(1.01); }
  47% { opacity: 0.17; }
  49% { opacity: 0.45; transform: scale(1.014); }
  76% { opacity: 0.27; }
}
@keyframes identityTube {
  0%, 100% { opacity: 0.82; }
  42% { opacity: 1; }
  47% { opacity: 0.68; }
  49% { opacity: 1; }
  76% { opacity: 0.92; }
}
@keyframes identityLetter {
  0%, 100% { opacity: 0.86; }
  38% { opacity: 1; }
  66% { opacity: 0.74; }
  68% { opacity: 1; }
}
@keyframes identityBulb {
  0%, 100% { opacity: 0.76; }
  48% { opacity: 1; }
  52% { opacity: 0.62; }
  55% { opacity: 1; }
}

@media (max-width: 820px) {
  .second-act__hero { height: auto; padding-bottom: 36px; }
  .second-act__hero::after { background: linear-gradient(180deg, transparent 0%, transparent 34%, var(--t-black) 62%); }
  .second-act__hero-image { position: relative; height: auto; object-fit: contain; }
  .second-act__identity {
    position: relative;
    left: auto;
    top: auto;
    width: min(92vw, 450px);
    margin: -4vw auto 0;
    transform: none;
  }
  .second-act__appeal { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .second-act__copy { text-align: center; }
  .second-act .section-label::after { display: none; }
  .second-act__lede { margin-left: auto; margin-right: auto; }
  .second-act__cta { justify-content: center; }
}

/* ================================================================
   DONATE INTRO + SEAT CARDS
   ================================================================ */

.second-act__giving {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 18px;
  margin-top: 18px;
  color: rgba(244, 238, 231, 0.56);
}
.second-act__giving-link {
  font: 600 10px var(--t-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.second-act__giving span { font-size: 10px; line-height: 1.5; }
.second-act__giving small {
  flex-basis: 100%;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width: 820px) {
  .second-act__giving { max-width: 680px; justify-content: center; margin-left: auto; margin-right: auto; text-align: center; }
}

@media (max-width: 520px) {
  .second-act__giving {
    flex-direction: column;
    text-align: center;
  }
}

.donate-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.donate-intro .section-label { text-align: center; }
.donate-intro .section-label::after { display: none; }
.donate-intro .section-heading { margin-bottom: 12px; }
.donate-intro p { color: var(--t-fg-muted-l); font-size: 17px; }

.seat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.seat-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 640px) {
  .seat-grid, .seat-grid--3 { grid-template-columns: 1fr; }
}

.seat-card {
  padding: 32px 28px;
  background: var(--t-dark-card);
  border: 1px solid var(--t-dark-border);
  border-radius: var(--t-radius);
  text-align: center;
  transition: border-color 0.3s;
}
.seat-card:hover { border-color: var(--t-gold-border); }

.seat-card--prime {
  border-color: rgba(74, 140, 58, 0.3);
  background: linear-gradient(180deg, rgba(74, 140, 58, 0.06) 0%, var(--t-dark-card) 50%);
}

.seat-card--blue {
  border-color: rgba(58, 106, 138, 0.3);
  background: linear-gradient(180deg, rgba(58, 106, 138, 0.06) 0%, var(--t-dark-card) 50%);
}

.seat-card__tier {
  font: 700 11px var(--t-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t-gold);
  margin-bottom: 8px;
}

.seat-card__price {
  font: 900 clamp(32px, 5vw, 44px)/1 var(--t-display);
  color: var(--t-fg-light);
  margin-bottom: 12px;
}

.seat-card__desc {
  font-size: 14px;
  color: var(--t-fg-muted-l);
  line-height: 1.6;
}

/* ================================================================
   SEAT MAP  (preserved verbatim — script.js renders into this)
   ================================================================ */

.seat-map-wrap {
  position: relative;
  margin: 48px -28px;
  padding: 32px 16px;
  border-top: 1px solid var(--t-dark-border);
  max-width: calc(100% + 56px);
}

@media (min-width: 900px) {
  .seat-map-wrap {
    margin: 48px calc(-50vw + 50%);
    max-width: 100vw;
    padding: 32px 40px;
  }
}

.seat-map__title {
  font: 700 22px var(--t-display);
  color: var(--t-fg-light);
  text-align: center;
  margin-bottom: 6px;
}

.seat-map__subtitle {
  font-size: 14px;
  color: var(--t-fg-muted-l);
  text-align: center;
  margin-bottom: 20px;
}

.seat-map__legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--t-fg-muted-l);
}

.seat-map__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.seat-map__swatch {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}

.seat-map__swatch--prime { background: #4a8c3a; }
.seat-map__swatch--gold { background: #c9a44a; }
.seat-map__swatch--blue { background: #3a6a8a; }
.seat-map__swatch--sold { background: #5a3040; }

.seat-map__stage {
  text-align: center;
  font: 700 14px var(--t-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--t-fg-light);
  background: linear-gradient(180deg, #5a3a20, #3d2515);
  padding: 10px 0;
  border-radius: var(--t-radius) var(--t-radius) 0 0;
  min-width: 700px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 0;
}

.seat-map {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}

.seat-map__grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 700px;
  margin: 0 auto;
}

.seat-map__row {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
}

.seat-map__row-label {
  width: 24px;
  font: 700 10px var(--t-body);
  color: var(--t-fg-muted-l);
  text-align: center;
  flex-shrink: 0;
}

.seat-map__row > .seat-map__row-label:first-child {
  position: sticky;
  left: 0;
  background: var(--t-black);
  z-index: 1;
}

.seat-map__aisle {
  width: 16px;
  flex-shrink: 0;
}

.seat-map__cell {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  font-size: 0;
  border: none;
  padding: 0;
  cursor: default;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
}

.seat-map__cell--empty {
  background: transparent;
}

.seat-map__cell--prime {
  background: #4a8c3a;
  cursor: pointer;
}

.seat-map__cell--gold {
  background: #c9a44a;
  cursor: pointer;
}

.seat-map__cell--blue {
  background: #3a6a8a;
  cursor: pointer;
}

.seat-map__cell--prime:hover,
.seat-map__cell--gold:hover,
.seat-map__cell--blue:hover {
  transform: scale(1.5);
  box-shadow: 0 0 0 2px #fff, 0 0 12px rgba(255, 255, 255, 0.4);
  z-index: 2;
}

.seat-map__cell--sold {
  background: #5a3040;
  cursor: default;
}

.seat-map__cell--sold:hover {
  background: #a07060;
  transform: scale(1.4);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5), 0 0 10px rgba(255,255,255,0.2);
  z-index: 2;
}

.seat-map__cell--unavailable {
  background: #3a3035;
}

.seat-map__cell--soundbooth {
  background: #2a2025;
}

.seat-map__walkway {
  height: 12px;
}

/* Custom instant tooltip / tap-activated info panel */
.seat-tooltip {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  background: rgba(26, 12, 16, 0.96);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 6px;
  padding: 6px 12px;
  font: 500 12px var(--t-body);
  color: var(--t-fg-light);
  white-space: nowrap;
  max-width: 280px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.08s ease;
}

.seat-tooltip.is-visible {
  opacity: 1;
}

/* Latched mode — user has tapped a seat. Becomes interactive, can hold a CTA. */
.seat-tooltip.is-latched {
  pointer-events: auto;
  padding: 12px 16px;
  white-space: normal;
  max-width: 260px;
  font-size: 13px;
  line-height: 1.5;
}

.seat-tooltip__seat {
  font-weight: 700;
  color: var(--t-gold-bright);
  margin-right: 6px;
}

.seat-tooltip__head {
  font-size: 13px;
  color: var(--t-fg-light);
  margin-bottom: 0;
}
.seat-tooltip__head strong {
  color: var(--t-gold-bright);
  font-weight: 700;
}

.seat-tooltip.is-latched .seat-tooltip__head {
  margin-bottom: 8px;
}

.seat-tooltip__sponsor {
  color: var(--t-fg-light);
  white-space: pre-line;
  max-width: 260px;
  display: block;
  margin-top: 2px;
  font-style: italic;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0.85;
}

.seat-tooltip.is-latched .seat-tooltip__sponsor {
  font-size: 12px;
  margin-top: 6px;
  opacity: 0.9;
}

.seat-tooltip__cta {
  display: inline-block;
  margin-top: 4px;
  padding: 9px 16px;
  background: var(--t-gold);
  color: var(--t-black);
  font: 700 11px var(--t-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.seat-tooltip__cta:hover,
.seat-tooltip__cta:focus {
  background: var(--t-gold-bright);
  outline: none;
}

/* Right-edge fade on the seat-map scroll container — signals "more this way" on mobile.
   Left edge is anchored by the sticky row label, so no fade there. */
.seat-map-wrap::after {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  right: 16px;
  width: 32px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(to left, var(--t-black) 20%, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .seat-map-wrap::after { opacity: 1; }
}

/* Swipe hint — mobile only, fades after first interaction */
.seat-map__hint {
  display: none;
  text-align: center;
  font: 500 10px var(--t-body);
  color: var(--t-gold-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0.75;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.seat-map__hint.is-hidden {
  opacity: 0;
}
@media (max-width: 768px) {
  .seat-map__hint { display: block; }
}

@media (max-width: 768px) {
  .seat-map__cell { width: 22px; height: 22px; }
  .seat-map__row-label { width: 26px; font-size: 10px; }
  .seat-map__aisle { width: 14px; }
  .seat-map__grid { min-width: 820px; }
  .seat-map__stage { min-width: 820px; font-size: 13px; padding: 12px 0; }
}

/* ================================================================
   GET INVOLVED + SUPPORTERS
   ================================================================ */

.involve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.involve-card {
  padding: 32px 28px;
  background: var(--t-dark-card);
  border: 1px solid var(--t-dark-border);
  border-radius: var(--t-radius);
}
.involve-card__title {
  font: 600 22px var(--t-display);
  color: var(--t-gold-bright);
  margin-bottom: 10px;
}
.involve-card__desc { font-size: 15px; color: var(--t-fg-muted-l); }

.supporters {
  margin-top: 80px;
  text-align: center;
}
.supporters__lede {
  font: 500 clamp(18px, 2.2vw, 22px)/1.7 var(--t-display);
  color: var(--t-fg-light);
  max-width: 720px;
  margin: 0 auto 22px;
}
.supporters__label {
  margin: 0 auto 10px;
  font: 600 12px var(--t-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-gold-bright);
}
.supporters__list {
  font: 500 12.5px var(--t-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-fg-muted-l);
  max-width: 780px;
  margin: 0 auto;
  line-height: 2.1;
}
.supporters__visit {
  max-width: 780px;
  margin: 26px auto 0;
  font: 400 14px/1.7 var(--t-body);
  color: var(--t-fg-muted-l);
}
.supporters__visit a {
  color: var(--t-gold-bright);
  text-decoration: underline;
  text-decoration-color: rgba(212, 173, 74, 0.45);
  text-underline-offset: 3px;
}
.supporters__visit a:hover { color: var(--t-gold-pale); }

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

.section--contact { border-top: 1px solid var(--t-dark-border); background: var(--t-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.45fr);
  gap: clamp(48px, 6vw, 88px);
  margin-top: 16px;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-people {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 1fr);
  gap: clamp(32px, 4vw, 56px);
}

.contact-h3, .contact-info h3, .contact-board h3 {
  font: 700 18px var(--t-display);
  color: var(--t-fg-light);
  margin-bottom: 14px;
}

.newsletter-invitation {
  max-width: 420px;
  padding: 24px 24px 22px;
  border: 1px solid var(--t-dark-border);
  border-top: 2px solid var(--t-gold);
  background:
    linear-gradient(135deg, rgba(196, 154, 46, 0.075), transparent 58%),
    var(--t-dark-card);
}
.newsletter-invitation p {
  max-width: 34ch;
  margin: 0 0 20px;
  font: 400 16px/1.65 var(--t-body);
  color: var(--t-fg-muted-l);
}
.newsletter-invitation .newsletter-launch {
  width: 100%;
}
.newsletter-invitation span {
  display: block;
  margin-top: 13px;
  font: 600 9px/1.5 var(--t-body);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--t-fg-muted-l);
  opacity: 0.78;
}

.newsletter-dialog {
  width: min(calc(100vw - 32px), 484px);
  max-height: min(88vh, 760px);
  padding: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  margin: 0;
  transform: translate(-50%, -50%);
  overflow: auto;
  border: 1px solid rgba(196, 154, 46, 0.42);
  border-radius: 2px;
  background: var(--t-dark-card);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.68);
  color: var(--t-fg-light);
}
.newsletter-dialog::backdrop {
  background: rgba(12, 5, 9, 0.84);
  backdrop-filter: blur(7px);
}
.newsletter-dialog__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px 15px 22px;
  border-bottom: 1px solid var(--t-dark-border);
}
.newsletter-dialog__bar p {
  margin: 0;
  font: 600 11px/1.4 var(--t-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-gold);
}
.newsletter-dialog__close {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--t-dark-border);
  border-radius: 50%;
  background: transparent;
  color: var(--t-fg-light);
  font: 300 24px/30px var(--t-body);
  cursor: pointer;
}
.newsletter-dialog__close:hover,
.newsletter-dialog__close:focus-visible {
  border-color: var(--t-gold);
  color: var(--t-gold-bright);
  outline: none;
}
.newsletter-widget {
  width: 100%;
  min-height: 420px;
  padding: 24px 31px 32px;
  position: relative;
}
.newsletter-widget givebutter-widget {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 520px) {
  .newsletter-widget { padding: 18px 12px 24px; }
  .newsletter-dialog__bar { padding-left: 16px; }
}

.contact-info p { font-size: 15px; color: var(--t-fg-muted-l); line-height: 2; }
.contact-info__leadership {
  margin-top: 20px;
  font-size: 14px;
  color: var(--t-fg-muted-l);
  line-height: 1.9;
}
.contact-info__leadership strong { color: var(--t-gold); letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; }

.contact-board {
  padding-left: clamp(30px, 3.5vw, 48px);
  border-left: 1px solid var(--t-dark-border);
}
.contact-board__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-board__list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  font: 500 14.5px/1.45 var(--t-body);
  color: var(--t-fg-muted-l);
}
.contact-board__list li:last-child { border-bottom: 0; }

@media (max-width: 620px) {
  .contact-people { grid-template-columns: 1fr; gap: 36px; }
  .contact-board {
    padding: 30px 0 0;
    border-top: 1px solid var(--t-dark-border);
    border-left: 0;
  }
}

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

.site-footer {
  padding: 52px 28px 44px;
  text-align: center;
  border-top: 1px solid var(--t-dark-border);
  position: relative;
  z-index: 2;
}
.site-footer__lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 28px;
}
.site-footer__mark {
  display: block;
  width: clamp(104px, 12vw, 132px);
  height: auto;
  margin-bottom: 18px;
}
.site-footer__lockup strong {
  font: 600 clamp(28px, 4vw, 42px)/1 var(--t-display);
  color: var(--t-fg-light);
}
.site-footer__lockup span {
  margin-top: 10px;
  font: 600 9px var(--t-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t-gold);
}
.site-footer__brand { font: 600 13px var(--t-body); letter-spacing: 0.06em; color: var(--t-fg-muted-l); margin-bottom: 8px; }
.site-footer__concerts { font-size: 13px; color: var(--t-fg-muted-l); margin-bottom: 16px; }
.site-footer__credit { font: italic 400 13px var(--t-display); color: var(--t-fg-muted-l); opacity: 0.7; margin-top: 4px; }

/* ================================================================
   SCROLL REVEAL  (hooks: .reveal + .is-visible from script.js)
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ================================================================
   REDUCED MOTION
   ================================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__eyebrow, .hero__title-line1, .hero__tagline, .hero__actions { animation: none; opacity: 1; }
  .neon { animation: none; }
  .hero__bg { animation: none; }
  .hero__scrollcue { animation: none; opacity: 0.5; }
  .press-row::before { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .identity-aura, .identity-tube, .identity-letter, .identity-bulbs circle { animation: none; }
  .identity-aura { opacity: 0.3; }
}

/* ================================================================
   SUBPAGES — history & restoration
   ================================================================ */

.site-nav--pinned { transform: none; }
.site-nav__back {
  font: 600 12px var(--t-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-fg-muted-l);
}
.site-nav__back:hover { color: var(--t-gold-bright); }

.subhero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 140px 0 64px;
}
.subhero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) saturate(0.95);
}
.subhero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,12,16,0.6) 0%, transparent 35%, rgba(26,12,16,0.55) 75%, var(--t-black) 100%);
}
.subhero .container { position: relative; z-index: 2; }
.subhero__title {
  font: 600 clamp(36px, 6vw, 74px)/1.08 var(--t-display);
  color: var(--t-fg-light);
  text-shadow: 0 2px 30px rgba(0,0,0,0.7);
  margin-bottom: 18px;
  max-width: 900px;
  text-wrap: balance;
}
.subhero__intro {
  font: italic 500 clamp(17px, 2.2vw, 22px)/1.7 var(--t-display);
  color: rgba(240, 235, 227, 0.9);
  max-width: 660px;
}

/* Editorial prose */
.prose {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(240, 235, 227, 0.88);
}
.prose p + p { margin-top: 22px; }
.prose strong { color: var(--t-gold-bright); font-weight: 600; }
.prose--lede::first-letter {
  font: 600 76px/0.8 var(--t-display);
  color: var(--t-gold-bright);
  float: left;
  padding: 8px 12px 0 0;
}
.section--light .prose { color: var(--t-fg-dark); }
.section--light .prose strong { color: var(--t-gold-dim); }

.pullquote {
  margin: 56px 0;
  padding-left: 28px;
  border-left: 3px solid var(--t-gold);
  font: italic 500 clamp(21px, 2.8vw, 27px)/1.55 var(--t-display);
  color: var(--t-fg-light);
  max-width: 720px;
}
.pullquote cite {
  display: block;
  margin-top: 14px;
  font: 600 11px var(--t-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--t-fg-muted-l);
}
.section--light .pullquote { color: var(--t-fg-dark); }
.section--light .pullquote cite { color: var(--t-fg-muted-d); }

/* Organ effects chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
  max-width: 760px;
}
.chips span {
  font: 600 11px var(--t-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-gold-bright);
  border: 1px solid var(--t-gold-border);
  background: var(--t-gold-soft);
  padding: 7px 14px;
  border-radius: 99px;
}

/* Lore box */
.lore {
  margin-top: 72px;
  padding: 44px 40px;
  border: 1px solid var(--t-gold-border);
  background: linear-gradient(170deg, rgba(184, 150, 62, 0.08), transparent 60%);
}
.lore h3 {
  font: 600 24px var(--t-display);
  color: var(--t-gold-bright);
  margin-bottom: 18px;
}
.lore p { font-size: 15.5px; line-height: 1.8; color: var(--t-fg-muted-l); }
.lore p + p { margin-top: 14px; }
.lore p strong { color: var(--t-fg-light); font-weight: 600; }

/* Restoration ledger */
.ledger {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--t-dark-border);
}
.ledger-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 150px;
  gap: 32px;
  padding: 40px 8px;
  border-bottom: 1px solid var(--t-dark-border);
  align-items: start;
}
.ledger-row__years {
  font: 600 15px var(--t-marquee);
  letter-spacing: 0.16em;
  color: var(--t-neon);
  text-shadow: 0 0 12px rgba(127, 212, 255, 0.3);
  padding-top: 6px;
}
.ledger-row__title {
  font: 600 clamp(21px, 2.6vw, 27px)/1.25 var(--t-display);
  color: var(--t-fg-light);
  margin-bottom: 10px;
}
.ledger-row__desc { font-size: 15.5px; line-height: 1.75; color: var(--t-fg-muted-l); max-width: 640px; }
.ledger-row__meta {
  margin-top: 12px;
  font: 500 11.5px var(--t-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-gold-dim);
  line-height: 1.9;
}
.ledger-row__cost {
  font: 600 clamp(20px, 2.4vw, 28px) var(--t-marquee);
  color: var(--t-gold-bright);
  text-align: right;
  padding-top: 4px;
  white-space: nowrap;
}
.ledger-row--capstone { background: var(--t-gold-soft); border-left: 3px solid var(--t-gold); padding-left: 20px; }

.ledger-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 36px 8px;
  flex-wrap: wrap;
}
.ledger-total__label {
  font: 600 13px var(--t-body);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--t-fg-muted-l);
}
.ledger-total__figure {
  font: 600 clamp(40px, 6vw, 64px) var(--t-marquee);
  color: var(--t-gold-bright);
  text-shadow: 0 0 30px rgba(212, 173, 74, 0.35);
}

@media (max-width: 760px) {
  .ledger-row { grid-template-columns: 1fr; gap: 8px; }
  .ledger-row__cost { text-align: left; }
}

/* Subpage photo bands */
.photo-band { position: relative; margin: 0; }
.photo-band img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}
.photo-band figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 28px 16px;
  font: 500 11px var(--t-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.9);
  background: linear-gradient(to top, rgba(20, 10, 13, 0.8), transparent);
  text-align: center;
}

/* Sub CTA band */
.subcta {
  text-align: center;
  padding: clamp(72px, 10vw, 120px) 28px;
  border-top: 1px solid var(--t-dark-border);
  position: relative;
  z-index: 2;
}
.subcta h2 {
  font: 600 clamp(28px, 4vw, 44px)/1.2 var(--t-display);
  color: var(--t-fg-light);
  margin-bottom: 14px;
  text-wrap: balance;
}
.subcta p { color: var(--t-fg-muted-l); max-width: 560px; margin: 0 auto 32px; }
.subcta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.section-more {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 2;
}
.section-more a {
  display: flex;
  flex-direction: column;
  min-height: 170px;
  padding: 28px 30px;
  color: var(--t-fg-light);
  background: var(--t-dark-card);
  border: 1px solid var(--t-dark-border);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.section-more a span {
  font: 700 10px var(--t-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-neon);
}
.section-more a strong {
  margin-top: 14px;
  font: 600 27px/1.12 var(--t-display);
}
.section-more a em {
  margin-top: auto;
  padding-top: 20px;
  font: 500 12px/1.5 var(--t-body);
  color: var(--t-fg-muted-l);
}
.section-more a:hover {
  color: var(--t-fg-light);
  border-color: var(--t-gold);
  background: #301c24;
  transform: translateY(-3px);
}
@media (max-width: 680px) {
  .section-more { grid-template-columns: 1fr; }
}
