/* ============================================
   CLASSICAL NOT CLASSICAL — Luxe Editorial
   ============================================ */

@font-face {
  font-family: 'Desire';
  src: url('Desire.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --black: #0a0a0a;
  --white: #f5f0eb;
  --cream: #f5f0eb;
  --gold: #c9a96e;
  --gold-light: #e2cc9c;
  --dark: #111111;
  --dark-card: #161616;
  --gray: #888;
  --gray-light: #bbb;
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Inter', 'Helvetica Neue', sans-serif;
  --display: 'Desire', 'Cormorant Garamond', serif;
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Accessibility: visually hidden but available to screen readers and search engines */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.preloader-logo {
  width: 120px;
  margin-bottom: 2rem;
  opacity: 0.7;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.3s ease;
}

/* --- Audio Toggle --- */
.audio-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.audio-toggle:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.audio-icon {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}

.audio-icon .bar {
  width: 3px;
  background: var(--gold);
  border-radius: 1px;
  transition: height 0.3s ease;
}

.audio-icon .bar:nth-child(1) { height: 6px; }
.audio-icon .bar:nth-child(2) { height: 12px; }
.audio-icon .bar:nth-child(3) { height: 8px; }
.audio-icon .bar:nth-child(4) { height: 14px; }

.audio-icon.playing .bar {
  animation: audioBar 0.8s ease-in-out infinite alternate;
}
.audio-icon.playing .bar:nth-child(1) { animation-delay: 0s; }
.audio-icon.playing .bar:nth-child(2) { animation-delay: 0.15s; }
.audio-icon.playing .bar:nth-child(3) { animation-delay: 0.3s; }
.audio-icon.playing .bar:nth-child(4) { animation-delay: 0.45s; }

.audio-icon.paused .bar {
  height: 3px !important;
}

@keyframes audioBar {
  0% { height: 4px; }
  100% { height: 16px; }
}

/* --- Navigation --- */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

#main-nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.nav-links-left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
}

.nav-links-left a,
.nav-links-right a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.3s ease;
}

.nav-links-left a:hover,
.nav-links-right a:hover {
  color: var(--cream);
}

.nav-logo {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-width 0.7s var(--transition),
    opacity 0.5s ease,
    transform 0.5s ease;
  pointer-events: none;
}

.nav-logo.visible {
  max-width: 240px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-logo img {
  height: 20px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.nav-logo:hover img {
  opacity: 1;
}

.nav-cta {
  padding: 0.5rem 1.5rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 1);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-link {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }

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

.mobile-link.cta {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    url('images/IMG_8406-Recovered (1).jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 4rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-logo-wrap {
  margin-bottom: 1.5rem;
}

.hero-logo-text {
  max-width: 700px;
  margin: 0 auto;
  filter: brightness(1.1);
}

.hero-subtitle-wrap {
  margin-bottom: 2rem;
}

.hero-subtitle {
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.8;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 3rem;
  opacity: 0.85;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-illustration {
  margin-top: 1rem;
}

.hero-piano-art {
  max-width: 300px;
  margin: 0 auto;
  opacity: 0.15;
  filter: invert(1) brightness(2);
}

.hero-badge-wrap {
  margin-top: -2rem;
  margin-bottom: -0.5rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  max-width: 420px;
  width: 80%;
  display: block;
  margin: 0 auto;
  mix-blend-mode: screen;
  opacity: 0.3;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.scroll-indicator span {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 235, 0.3);
}

.btn-ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* --- Section Labels --- */
.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: normal;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 2rem;
}

.section-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

.section-title.centered {
  text-align: center;
}

/* --- Statement Section --- */
.statement {
  padding: 8rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.big-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  text-align: center;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.2em;
}

/* --- About --- */
.about {
  padding: 8rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 2rem;
}

.about-lead {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 1.25rem;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-illustration {
  max-width: 500px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  opacity: 0.9;
}

/* --- Purpose --- */
.purpose {
  padding: 6rem 0 8rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

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

.purpose-item {
  padding: 2.5rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.purpose-item:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-4px);
}

.purpose-number {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.purpose-item h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
}

.purpose-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-light);
}

/* --- Parallax Song Band --- */
.full-bleed-image {
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  background-image: url('images/TOT 2019 - Michael Rainwater-7 (1).jpg');
  background-color: rgba(201, 169, 110, 0.03);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Parallax layer divs — hidden on desktop, activated on mobile */
#hero-parallax-layer,
#concert-parallax-layer {
  display: none;
}

/* Mobile overlay div — hidden on desktop (::before handles it) */
.full-bleed-overlay {
  display: none;
}

.full-bleed-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
}

.parallax-band {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  position: relative;
  z-index: 1;
}

.parallax-text {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 2rem;
}

.parallax-text span {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--cream);
  opacity: 0.4;
  padding: 0 0.75rem;
}

.parallax-text .separator {
  color: var(--gold);
  opacity: 0.3;
  font-size: 0.8rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Program --- */
.program {
  padding: 8rem 0;
}

.acts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.act {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  overflow: hidden;
}

.act-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.act-number {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.act-name {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.act-arc {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.setlist {
  list-style: none;
  padding: 0;
}

.setlist li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  grid-template-rows: auto auto;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s ease;
}

.setlist li:last-child {
  border-bottom: none;
}

.setlist li:hover {
  background: rgba(201, 169, 110, 0.05);
}

.track-number {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--gray);
  grid-row: 1 / -1;
  padding-top: 0.15rem;
}

.track-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
}

.track-desc {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* --- Moments --- */
.moments {
  padding: 8rem 0;
  background: rgba(201, 169, 110, 0.02);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

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

.moment-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(201, 169, 110, 0.12);
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.moment-card::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0.7;
}

.moment-card:hover {
  border-color: rgba(201, 169, 110, 0.35);
  transform: translateY(-4px);
}

.moment-card p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--gray-light);
}

.moment-card strong {
  color: var(--cream);
  font-weight: 500;
}

/* --- Artist --- */
.artist {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}

.artist-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    var(--black);
}

.artist-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.artist-image-frame {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 2rem;
  background: rgba(201, 169, 110, 0.03);
}

.artist-image-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 169, 110, 0.08);
}

.artist-portrait {
  width: 100%;
  object-fit: cover;
}

.artist-name {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.artist-titles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.artist-titles span {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.title-sep {
  opacity: 0.3;
}

.artist-lead {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.artist-text-col p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 1.25rem;
}

.artist-mission {
  font-family: var(--serif) !important;
  font-size: 1.15rem !important;
  font-style: italic;
  color: var(--gold) !important;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2rem !important;
}

/* --- Presenters --- */
.presenters {
  padding: 8rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

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

.presenter-card {
  padding: 2.5rem;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.presenter-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
}

.presenter-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
}

.presenter-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-light);
}

/* --- Pull Quote --- */
.pull-quote-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  background: rgba(201, 169, 110, 0.02);
}

.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  color: var(--cream);
  max-width: 750px;
  margin: 0 auto;
}

/* --- Contact --- */
.contact {
  padding: 8rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 2rem;
}

.contact-for {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.for-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(201, 169, 110, 0.3);
}

.for-item strong {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
}

.for-item span {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.5;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

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

.form-group select {
  cursor: pointer;
}

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

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

/* --- Footer --- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo img {
  height: 18px;
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--gray);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray);
}

.footer-credit {
  font-style: italic;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    order: -1;
  }

  .about-illustration {
    max-width: 300px;
  }

  .acts-grid {
    grid-template-columns: 1fr;
  }

  .moments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .artist-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .artist-image-col {
    max-width: 400px;
    margin: 0 auto;
  }

  .artist-titles {
    justify-content: center;
  }

  .artist-mission {
    border-left: none !important;
    padding-left: 0 !important;
    text-align: center;
    border-top: 2px solid var(--gold);
    padding-top: 1.5rem;
  }

  .presenter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links-left,
  .nav-links-right {
    display: none;
  }

  .nav-hamburger {
    display: none;
  }

  .nav-logo {
    max-width: 240px;
    overflow: visible;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .nav-logo img {
    height: 26px;
  }

  .hero-content {
    padding: 8rem 1.5rem 4rem;
  }

  .hero-logo-text {
    max-width: 90%;
  }

  .hero-subtitle {
    max-width: 80%;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .moments-grid {
    grid-template-columns: 1fr;
  }

  .presenter-grid {
    grid-template-columns: 1fr;
  }

  .setlist li {
    padding: 1rem 1.5rem;
  }

  .act-header {
    padding: 2rem 1.5rem 1.25rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .big-quote {
    font-size: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 0.85rem 2rem;
  }
}

/* ============================================
   MOBILE CINEMATIC OVERHAUL
   iOS-compatible parallax, scroll snap, full-bleed layouts
   ============================================ */

@media (max-width: 768px) {

  /* --- Global --- */
  html {
    scroll-snap-type: y proximity;
    scroll-behavior: auto; /* JS handles smooth scroll; avoid snap conflicts */
  }

  body {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  /* Disable sticky hover states on touch devices */
  @media (hover: none) {
    .purpose-item:hover,
    .moment-card:hover,
    .presenter-card:hover {
      transform: none;
      box-shadow: none;
      border-color: rgba(201, 169, 110, 0.12);
    }
    .btn:hover {
      transform: none;
    }
  }

  /* Minimum 48px tap targets */
  .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-hamburger {
    min-width: 48px;
    min-height: 48px;
  }

  /* --- Hero --- */
  .hero {
    min-height: 100svh;
    min-height: 100vh; /* fallback */
    scroll-snap-align: start;
  }

  /* hero-bg becomes a clip container on mobile */
  .hero-bg {
    background: none;
    overflow: hidden;
  }

  /* Parallax layer carries the actual bg image, oversized so translate never gaps */
  #hero-parallax-layer {
    display: block;
    position: absolute;
    top: -15%;
    left: 0;
    right: 0;
    height: 130%;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
      url('images/IMG_8406-Recovered (1).jpg') center center / cover no-repeat;
    will-change: transform;
    transform: translateZ(0);
  }

  .hero-content {
    padding: 7rem 1.5rem 3rem;
    align-items: center;
  }

  .hero-logo-text {
    max-width: 88vw;
  }

  .hero-subtitle {
    max-width: 75vw;
  }

  .hero-tagline {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: normal;
    letter-spacing: 0.01em;
  }

  /* Stacked CTAs */
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.875rem;
  }

  .hero-ctas .btn {
    width: min(300px, 88vw);
  }

  /* Floating hero logo animation */
  @keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
  }

  .hero-logo-wrap.visible .hero-logo-text {
    animation: heroFloat 6s ease-in-out infinite;
    animation-delay: 1.5s;
  }

  /* Smaller piano art on mobile */
  .hero-piano-art {
    max-width: 200px;
    opacity: 0.06;
  }

  /* --- Statement (full-viewport centered quote) --- */
  .statement {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    scroll-snap-align: start;
  }

  .big-quote {
    font-family: var(--display);
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    font-weight: normal;
    line-height: 1.4;
    font-style: normal;
  }

  /* --- About — magazine full-bleed stack --- */
  .about {
    padding: 4rem 0 5rem;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Full-bleed image: breaks out of container using margin trick
     (avoids transform conflict with .reveal.visible animation) */
  .about-visual {
    order: -1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: none;
    max-width: none;
    margin-bottom: 0;
  }

  .about-illustration {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border: none;
    display: block;
  }

  .about-text {
    padding-top: 2.5rem;
  }

  .about-lead {
    font-size: 1.1rem;
  }

  /* --- Purpose cards — horizontal rule style --- */
  .purpose {
    padding: 4rem 0 5rem;
  }

  .purpose-grid {
    gap: 0;
  }

  .purpose-item {
    padding: 2rem 0;
    border: none;
    border-top: 1px solid rgba(201, 169, 110, 0.18);
  }

  .purpose-item:last-child {
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
  }

  .purpose-item::before {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.25rem;
    opacity: 0.75;
  }

  .purpose-number {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    opacity: 0.45;
  }

  .purpose-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }

  /* --- Concert photo parallax band --- */
  .full-bleed-image {
    background-image: none !important;
    height: auto;
    min-height: 220px;
    padding: 0;
    overflow: hidden;
    position: relative;
  }

  /* Disable the ::before overlay — replaced by dedicated div */
  .full-bleed-image::before {
    display: none;
  }

  /* Concert parallax layer: oversized bg that translates slowly */
  #concert-parallax-layer {
    display: block;
    position: absolute;
    top: -15%;
    left: 0;
    right: 0;
    height: 130%;
    background: url('images/TOT 2019 - Michael Rainwater-7 (1).jpg') center center / cover no-repeat;
    will-change: transform;
    transform: translateZ(0);
  }

  /* Dedicated overlay div */
  .full-bleed-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.58);
    z-index: 1;
  }

  /* Marquee band sits above overlay */
  .parallax-band {
    position: relative;
    z-index: 2;
    padding: 2.5rem 0;
  }

  .parallax-text span {
    font-size: 1.75rem;
  }

  /* --- Program --- */
  .program {
    padding: 5rem 0;
  }

  .acts-grid {
    margin-top: 2rem;
    gap: 1.5rem;
  }

  .act-header {
    padding: 1.75rem 1.25rem 1.25rem;
  }

  .setlist li {
    padding: 1rem 1.25rem;
  }

  .track-name {
    font-size: 1rem;
  }

  .track-desc {
    font-size: 0.78rem;
    color: var(--gray);
  }

  /* --- Moments --- */
  .moments {
    padding: 5rem 0;
  }

  .moments-grid {
    gap: 1rem;
    margin-top: 2rem;
  }

  .moment-card {
    padding: 2.25rem 1.75rem;
  }

  .moment-card p {
    font-size: 1rem;
    line-height: 1.65;
  }

  /* --- Artist — full-bleed portrait stack --- */
  .artist {
    padding: 0 0 5rem;
  }

  .artist-layout {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
  }

  /* Full-bleed portrait: breaks out of container */
  .artist-image-col {
    max-width: none;
    margin: 0;
    width: 100%;
    order: -1;
  }

  .artist-image-frame {
    border: none;
    padding: 0;
    background: none;
    aspect-ratio: 3 / 4;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: static;
    left: auto;
    transform: none;
    overflow: hidden;
  }

  .artist-image-frame::before {
    display: none;
  }

  .artist-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  .artist-text-col {
    padding: 2.5rem 0 0;
  }

  .artist-name {
    font-size: clamp(3rem, 13vw, 4.5rem);
    margin-bottom: 0.875rem;
    line-height: 0.92;
  }

  .artist-titles {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
  }

  .title-sep {
    display: none;
  }

  .artist-lead {
    font-size: 1.05rem;
  }

  .artist-mission {
    border-left: 2px solid var(--gold) !important;
    padding-left: 1.25rem !important;
    border-top: none !important;
    padding-top: 0 !important;
    text-align: left !important;
  }

  /* --- Presenters — restore 2-col (overrides the 1fr above) --- */
  .presenters {
    padding: 5rem 0;
  }

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

  .presenter-card {
    padding: 1.75rem 1.25rem;
  }

  .presenter-card h3 {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 0.6rem;
  }

  .presenter-card p {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  /* --- Pull quote --- */
  .pull-quote-section {
    padding: 4rem 0;
  }

  .pull-quote p {
    font-family: var(--display);
    font-size: clamp(1.3rem, 5vw, 1.7rem);
    font-weight: normal;
    font-style: normal;
    line-height: 1.45;
  }

  /* --- Contact form — iOS touch fixes --- */
  .contact {
    padding: 5rem 0;
  }

  .contact-layout {
    gap: 2.5rem;
  }

  /* font-size: 1rem (16px) prevents iOS auto-zoom on input focus */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
    min-height: 48px;
    padding: 0.95rem 1rem;
  }

  .form-group textarea {
    min-height: 120px;
  }

}

@media (max-width: 480px) {
  /* Container bleed corrections for full-bleed elements at smaller padding (1.25rem) */
  /* No correction needed — using 100vw + translateX(-50%) technique which is padding-agnostic */

  /* Drop presenters to 1 col on very small phones */
  .presenter-grid {
    grid-template-columns: 1fr;
  }

  /* Slightly more compact act cards */
  .act-header {
    padding: 1.5rem 1rem 1rem;
  }

  .setlist li {
    padding: 0.9rem 1rem;
  }
}
