/* ============================================================
   Defying Gravity — The Concert
   Shared Stylesheet
   defyinggravitytheconcert.com
   ============================================================ */

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

:root {
  --purple:       #2D1240;
  --purple-deep:  #1a0a28;
  --purple-dark:  #0d0618;
  --purple-mid:   #3d1a58;
  --purple-glow:  #5a2d8c;
  --teal:         #127361;
  --teal-bright:  #1aaa8a;
  --teal-glow:    rgba(18,115,97,0.5);
  --gold:         #FDE28C;
  --gold-dim:     #c9b46e;
  --gold-glow:    rgba(253,226,140,0.4);
  --white:        #FFFFFF;
  --grey:         #a099b8;
  --black:        #000000;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  overscroll-behavior-x: none;
}

/* ── SCREEN READER ONLY ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

body {
  background: var(--purple-dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  cursor: none;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img,
video {
  height: auto;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-spotlight {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(253,226,140,0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
  top: 0; left: 0;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 4rem;
  background: linear-gradient(to bottom, rgba(13,6,24,0.97) 0%, transparent 100%);
  backdrop-filter: blur(6px);
  transition: background 0.4s;
  max-width: 100%;
}
nav.scrolled {
  background: rgba(13,6,24,0.97);
  border-bottom: 1px solid rgba(18,115,97,0.2);
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  min-width: 0;
}
.nav-logo img {
  height: 41px;
  width: auto;
  max-width: 190px;
}
.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  min-width: 0;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--teal-bright);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a { cursor: default; }
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,6,24,0.98);
  border: 1px solid rgba(18,115,97,0.2);
  border-top: 2px solid var(--teal-bright);
  min-width: 215px;
  padding: 1rem 0 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
  backdrop-filter: blur(10px);
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown.open .dropdown {
  opacity: 1;
  pointer-events: all;
}
.nav-links .dropdown li { list-style: none; }
.nav-links .dropdown a {
  display: block;
  padding: 0.55rem 1.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  position: static;
}
.nav-links .dropdown a::after { display: none; }
.nav-links .dropdown a:hover { color: var(--white); background: rgba(18,115,97,0.08); }
.nav-links .dropdown .dropdown-divider {
  height: 1px;
  background: rgba(18,115,97,0.15);
  margin: 0.4rem 0;
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  z-index: 101;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s;
  transform-origin: center;
}
.nav-hamburger:hover span { background: var(--gold); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
/* ── MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--purple-dark);
  z-index: 9000;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.mobile-menu.is-visible { display: block; }
.mobile-menu.open { opacity: 1; }

.mobile-menu-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--gold); }

.mobile-nav {
  padding: 4rem 2rem 3rem;
}

.mobile-nav-links {
  list-style: none;
  margin: 0 0 2rem;
}
.mobile-nav-links > li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav-links > li:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav-links > li > a {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.9rem 0;
  transition: color 0.2s;
}
.mobile-nav-links > li > a:hover { color: var(--gold); }

.mobile-nav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none; border: none;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.9rem 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.mobile-nav-toggle:hover { color: var(--gold); }
.mobile-has-sub.open > .mobile-nav-toggle { color: var(--gold); }

.mob-arrow {
  flex-shrink: 0;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.mobile-has-sub.open > .mobile-nav-toggle .mob-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.mobile-sub-links {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.mobile-has-sub.open > .mobile-sub-links { max-height: 600px; }
.mobile-sub-links > li {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-sub-links > li:last-child { border-bottom: none; }
.mobile-sub-links a {
  display: block;
  padding: 0.6rem 0 0.6rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-sub-links a:hover { color: var(--gold); }

.mobile-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 1.5rem;
}

@media (max-width: 1250px) {
  .nav-hamburger { display: flex; }
  .lang-switcher.nav-lang,
  .nav-social { display: none; }
  .nav-links { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: calc(56.25vw - 200px);
  max-height: calc(100vh - 200px);
  overflow: hidden;
  contain: paint;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  max-width: 100%;
  contain: paint;
}
.hero-video-wrap iframe,
.hero-video-wrap video {
  position: absolute;
  top: 55%; left: 50%;
  width: 177.78vh;
  max-width: none;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 1;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, var(--purple-dark) 100%);
  z-index: 1;
}

.hero-event {
  display: inline-block;
  border: 1px solid rgba(253,226,140,0.25);
  border-top: 2px solid var(--gold-dim);
  padding: 1.8rem 3.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fade-up 1s ease 1.1s forwards;
  background: rgba(13,6,24,0.7);
  backdrop-filter: blur(10px);
  max-width: 100%;
}
.hero-event-venue {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
}
.hero-event-location {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.hero-event-date {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--gold);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}
.hero-event-orch {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--teal-bright);
  text-transform: uppercase;
  margin-top: 0.7rem;
}
.btn-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s ease 1.3s forwards;
  max-width: 100%;
  min-width: 0;
}
.btn {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.8rem;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  text-align: center;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: var(--gold); color: var(--purple-dark); }
.btn-primary:hover {
  background: #fff0b0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-secondary { border: 1px solid rgba(255,255,255,0.25); color: var(--white); }
.btn-secondary:hover {
  border-color: var(--teal-bright);
  color: var(--teal-bright);
  transform: translateY(-2px);
}
.btn-showstopper {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  padding: 1.35rem 3.6rem;
  background: linear-gradient(
    110deg,
    var(--gold-dim)  0%,
    var(--gold)      35%,
    #fff8d6          50%,
    var(--gold)      65%,
    var(--gold-dim)  100%
  );
  background-size: 220% auto;
  color: var(--purple-dark);
  box-shadow: 0 4px 24px rgba(253,226,140,0.25);
  animation: btn-shimmer 4s linear infinite;
  gap: 0;
}
.btn-showstopper .btn-arrow {
  display: inline-block;
  margin-left: 0.6em;
  transition: transform 0.25s ease;
}
.btn-showstopper:hover {
  background-size: 220% auto;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(253,226,140,0.5);
}
.btn-showstopper:hover .btn-arrow {
  transform: translateX(5px);
}
@keyframes btn-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-showstopper { animation: none; }
  .btn-showstopper .btn-arrow { transition: none; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  from { background-position: 0% center; }
  to { background-position: -200% center; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── EVENT STRIP ── */
.event-strip {
  position: relative;
  overflow: hidden;
  background: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 2.5rem;
  text-align: center;
}
.event-strip-inner {
  width: min(1080px, 100%);
  position: relative;
  z-index: 1;
  min-width: 0;
}
.event-strip-inner > * { min-width: 0; }
.event-strip-sep {
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(253,226,140,0.2), transparent);
  flex-shrink: 0;
}
.event-strip .hero-event {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.9fr) auto;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  opacity: 1;
  animation: none;
  margin-bottom: 0;
  padding: clamp(1.8rem, 2.8vw, 2.4rem) clamp(1rem, 3vw, 2.5rem);
  text-align: left;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-top: 0;
  background: transparent;
  backdrop-filter: none;
}
.event-strip .btn-group {
  opacity: 1;
  animation: none;
  margin: 0;
}

/* ── COUNTDOWN PANEL ── */
.countdown-panel {
  min-height: 150px;
  padding: 0 clamp(2rem, 3vw, 3rem);
  border-left: 2px solid rgba(253,226,140,0.25);
  border-right: 2px solid rgba(253,226,140,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.countdown-heading,
.countdown-date {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.countdown-date {
  font-size: 0.62rem;
  color: #35c3a5;
  margin-top: 0.8rem;
}
.countdown-units {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.8rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.countdown-num {
  font-family: 'Jost', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, var(--gold-dim), var(--gold), #fff9e0, var(--gold), var(--gold-dim));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.countdown-unit-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #35c3a5;
}
.countdown-divider {
  color: var(--gold-dim);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-0.35rem);
}
@media (max-width: 960px) {
  .event-strip .hero-event {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.8fr);
  }
  .event-strip .btn-group {
    grid-column: 1 / -1;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .event-strip-sep { display: none; }
  .event-strip { padding: 2rem 1.5rem 2.5rem; }
  .event-strip .hero-event {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding: 2rem 1.4rem;
    text-align: center;
  }
  .countdown-panel {
    width: 100%;
    min-height: 0;
    padding: 1.8rem 0;
    border-left: 0;
    border-right: 0;
    border-top: 2px solid rgba(253,226,140,0.25);
    border-bottom: 2px solid rgba(253,226,140,0.25);
  }
  .countdown-num { font-size: 2.2rem; }
  .event-strip .btn-group { width: min(280px, 100%); }
}
@media (prefers-reduced-motion: reduce) {
  .countdown-num { animation: none; }
}

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  contain: paint;
  background: rgba(18,115,97,0.08);
  padding: 1.2rem 0;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold), #fff9e0, var(--gold), var(--gold-dim));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
.ticker-wrap::before { top: 0; }
.ticker-wrap::after  { bottom: 0; }
.ticker {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  max-width: none;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.5rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.275rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ticker-stars { color: var(--gold); }
.ticker-quote { color: var(--white); opacity: 0.9; }
.ticker-source { color: var(--teal-bright); font-size: 0.55rem; letter-spacing: 0.2em; }
.ticker-sep { color: rgba(253,226,140,0.4); font-size: 1rem; }

/* ── SECTIONS ── */
section { position: relative; padding: 8rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; min-width: 0; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.55em;
  color: var(--teal-bright);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}
.section-label::after {
  content: '';
  flex: 1;
  min-width: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(18,115,97,0.5), transparent);
  max-width: 80px;
}

h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  overflow-wrap: anywhere;
}

/* ── ABOUT ── */
.about {
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-dark) 100%);
}
.about-text {
  max-width: 720px;
  margin: 0 auto;
}
.about-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.4rem;
  font-size: 1rem;
  font-weight: 300;
}
.about-text p strong { color: var(--white); font-weight: 500; }
/* ── SONG WORD CLOUD */
.song-cloud {
  position: relative;
  height: 380px;
  margin-top: 50px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  contain: paint;
  background: none;
}
.song-word {
  position: absolute;
  font-family: 'Jost', sans-serif;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: clip;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.song-word--song {
  font-weight: 700;
  font-style: italic;
  color: var(--white);
}
.song-word--show {
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ── COMPOSER ── */
.composer { background: linear-gradient(135deg, #031410 0%, #071c14 50%, #031410 100%); }
.composer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.composer-photo-wrap {
  position: relative;
}
.composer-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,115,97,0.28) 0%, transparent 55%);
  border: 1px solid rgba(253,226,140,0.2);
  pointer-events: none;
}
.composer-photo {
  width: 100%;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s;
}
.composer-photo-wrap:hover .composer-photo { filter: grayscale(0%); }
.composer-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.composer-text p em { color: rgba(255,255,255,0.9); font-style: italic; }
.composer-link {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(18,115,97,0.4);
  padding-bottom: 2px;
  margin-top: 0.5rem;
  transition: color 0.3s, border-color 0.3s;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.composer-link:hover { color: var(--gold); border-color: var(--gold-dim); }
.composer-link--spaced { margin-right: 2rem; }
.composer-pullquote {
  margin: 2rem 0 2rem 1.6rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--gold);
  border-top: none;
  border-right: none;
  border-bottom: none;
}
.composer-pullquote p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.85);
  margin: 0 0 0.6rem;
  letter-spacing: 0.01em;
}
.composer-pullquote cite {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 768px) {
  .composer-pullquote { margin-left: 0; }
  .composer-pullquote p { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  .composer-grid { grid-template-columns: 1fr; gap: 3rem; }
}


/* ── CREATIVES ── */
.creatives { background: linear-gradient(160deg, #031410 0%, #071c14 50%, #031410 100%); }
.creatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
  align-items: start;
}
.creative-card { display: flex; flex-direction: column; }
.creative-photo-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}
.creative-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,115,97,0.28) 0%, transparent 55%);
  border: 1px solid rgba(253,226,140,0.18);
  pointer-events: none;
}
.creative-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(15%);
  transition: filter 0.4s, transform 0.5s;
}
.creative-card:hover .creative-photo {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.creative-role {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 0.4rem;
}
.creative-name {
  font-family: 'Jost', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}
.creative-bio {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}
.creative-bio p { margin-bottom: 0.9rem; }
.creative-bio p:last-child { margin-bottom: 0; }
.creative-link {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(18,115,97,0.35);
  padding-bottom: 2px;
  margin-top: 1rem;
  transition: color 0.3s, border-color 0.3s;
}
.creative-link:hover { color: var(--gold); border-color: var(--gold-dim); }
@media (max-width: 960px) {
  .creatives-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

/* ── SOLOISTS ── */
.soloists { background: linear-gradient(160deg, #02071a 0%, #060e28 55%, #02071a 100%); }
.soloists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.soloist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
.soloist-photo-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1.4rem;
  position: relative;
}
.soloist-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,115,97,0.3) 0%, transparent 55%);
  border: 1px solid rgba(253,226,140,0.2);
  pointer-events: none;
}
.soloist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: filter 0.4s, transform 0.4s;
}
.soloist-card:hover .soloist-photo {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.soloist-name {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.soloist-credit {
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(253,226,140,0.45);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.soloist-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 900px) {
  .soloists-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .soloists-grid { grid-template-columns: 1fr; }
}

/* ── PROGRAMME ── */
/* ── PROGRAMME TIMELINE ── */
.programme {
  background: var(--purple-dark);
  padding: 7rem 0 6rem;
  overflow: hidden;
}
.programme .container {
  padding-bottom: 3rem;
}
.programme-intro {
  max-width: 620px;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 1.25rem;
}

/* Scroll container */
.timeline-outer {
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 3rem 4rem 4rem;
  cursor: grab;
}
.timeline-outer::-webkit-scrollbar { display: none; }
.timeline-outer:active { cursor: grabbing; }

/* Scroll-hint shimmer on first view */
.timeline-outer::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 100%;
  background: linear-gradient(to left, var(--purple-dark), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Inner track — grows to fit all milestones */
.timeline-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  width: max-content;
  padding-top: calc(2.5rem + 20px); /* room for years above line */
}

/* Gold horizontal line */
.timeline-line {
  position: absolute;
  top: calc(2.5rem + 52px); /* vertically centred on nodes: padding-top + year-height + year-margin + node-radius */
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--gold-dim) 2%, var(--gold-dim) 98%, transparent 100%);
  z-index: 0;
}

/* Each milestone */
.timeline-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 180px;
  flex-shrink: 0;
  padding: 0 1rem;
}

/* Year sits above the line */
.tm-year {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(253,226,140,0.5);
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

/* Gold node on the line */
.tm-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(253,226,140,0.4);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 2;
}
.timeline-milestone:hover .tm-node {
  transform: scale(1.6);
  box-shadow: 0 0 16px rgba(253,226,140,0.65);
}

/* Content below the line */
.tm-content {
  margin-top: 1.6rem;
  text-align: center;
}
.tm-title {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.tm-title--film {
  font-style: italic;
  font-weight: 400;
}
.timeline-milestone:hover .tm-title { color: var(--gold); }

/* Mobile — vertical stack */
@media (max-width: 768px) {
  .timeline-outer {
    overflow-x: hidden;
    padding: 2rem;
    cursor: default;
  }
  .timeline-outer::after { display: none; }
  .timeline-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: auto;
    padding-top: 0;
    padding-left: 1.5rem;
    border-left: 1px solid var(--gold-dim);
  }
  .timeline-line { display: none; }
  .timeline-milestone {
    flex-direction: row;
    align-items: flex-start;
    width: auto;
    padding: 0 0 2.5rem 1.5rem;
    gap: 1.2rem;
    position: relative;
  }
  .timeline-milestone::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(253,226,140,0.4);
  }
  .tm-node { display: none; }
  .tm-year {
    min-width: 2.5rem;
    padding-top: 0.1rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .tm-content { text-align: left; margin-top: 0; }
  .tm-title { font-size: 1.3rem; }
  .timeline-milestone:hover .tm-node { transform: none; }
}

/* ── ORCHESTRA ── */
.orchestra {
  background: linear-gradient(160deg, var(--purple) 0%, var(--purple-mid) 50%, var(--purple) 100%);
  padding: 7rem 2rem;
  text-align: center;
}
.orchestra .container {
  max-width: 720px;
}
.orchestra .section-label { justify-content: center; }
.orchestra h2 {
  margin-bottom: 0.6rem;
}
.orchestra-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 2rem;
}
.orchestra-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.9;
}
.orchestra-link {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(253,226,140,0.25);
  padding-bottom: 0.1em;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.orchestra-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}


/* ── TICKETS CTA ── */
.tickets-cta {
  position: relative;
  text-align: center;
  padding: 10rem 2rem;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--purple-dark), var(--purple) 50%, var(--purple-dark));
}
.tickets-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 60%, rgba(18,115,97,0.12) 0%, transparent 70%);
}
.tickets-cta .container { position: relative; z-index: 2; }
.cta-title {
  font-family: 'Jost', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--gold-dim), var(--gold), #fff9e0, var(--gold), var(--gold-dim));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
  margin-bottom: 1rem;
  line-height: 1;
  overflow-wrap: anywhere;
}
.cta-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3rem;
}

/* ── SCROLL PROGRESS BAR ── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--teal-bright), var(--gold));
  z-index: 9999;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ── PHOTO GLOW ── */
@keyframes photo-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(18,115,97,0.4), 0 0 28px rgba(18,115,97,0.12); }
  50%       { box-shadow: 0 0 14px rgba(253,226,140,0.35), 0 0 38px rgba(253,226,140,0.1); }
}
.soloist-photo-wrap,
.composer-photo-wrap,
.creative-photo-wrap,
.person-photo-wrap {
  animation: photo-glow 3s ease-in-out infinite;
}
.soloist-card:nth-child(2) .soloist-photo-wrap { animation-delay: -0.6s; }
.soloist-card:nth-child(3) .soloist-photo-wrap { animation-delay: -1.2s; }
.soloist-card:nth-child(4) .soloist-photo-wrap { animation-delay: -1.8s; }
.soloist-card:nth-child(5) .soloist-photo-wrap { animation-delay: -2.4s; }
.creative-card:nth-child(2) .creative-photo-wrap { animation-delay: -1s; }
.creative-card:nth-child(3) .creative-photo-wrap { animation-delay: -2s; }

.soloist-photo { filter: grayscale(20%); transition: filter 0.4s, transform 0.4s; }
.soloist-card:hover .soloist-photo { filter: grayscale(0%); transform: scale(1.04); }
.composer-photo { filter: grayscale(15%); transition: filter 0.4s; }
.composer-photo-wrap:hover .composer-photo { filter: grayscale(0%); }
.creative-photo { filter: grayscale(15%); transition: filter 0.4s, transform 0.5s; }
.creative-card:hover .creative-photo { filter: grayscale(0%); transform: scale(1.03); }
.person-photo { filter: grayscale(15%); transition: filter 0.4s; }
.person-photo-wrap:hover .person-photo { filter: grayscale(0%); }

/* ── PARALLAX ORBS ── */
.parallax-orb {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  pointer-events: none;
  top: -150px; left: calc(50% - 350px);
  background: radial-gradient(circle, rgba(18,115,97,0.1) 0%, rgba(90,45,140,0.07) 45%, transparent 70%);
  z-index: 0;
  will-change: transform;
}
.about .container,
.tickets-cta .container,
.composer .container,
.creatives .container { position: relative; z-index: 1; }

/* ── PERSON PAGES ── */
.person-hero {
  padding-top: 10rem;
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-dark) 100%);
}
.person-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.person-photo-wrap {
  position: relative;
}
.person-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,115,97,0.28) 0%, transparent 55%);
  border: 1px solid rgba(253,226,140,0.2);
  pointer-events: none;
}
.person-photo {
  width: 100%;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s;
}
.person-photo-wrap:hover .person-photo { filter: grayscale(0%); }
h1 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  overflow-wrap: anywhere;
}
.person-bio p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.person-bio p:last-child { margin-bottom: 0; }
.person-bio p em { color: rgba(255,255,255,0.9); font-style: italic; }
.person-credit-list {
  margin: 0 0 1.6rem 1.2rem;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}
.person-credit-list li { margin-bottom: 0.35rem; padding-left: 0.35rem; }
.person-credit-list em { color: rgba(255,255,255,0.9); }
.person-back {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--purple-dark), var(--purple) 50%, var(--purple-dark));
  position: relative;
  overflow: hidden;
}
.person-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(18,115,97,0.1) 0%, transparent 70%);
}
.person-back .container { position: relative; z-index: 2; }
.person-back .btn-group { opacity: 1; animation: none; justify-content: center; }
/* ── CREATIVE TEAM GRID (Home hub) — same card style as Soloists, 3-up ── */
.creative-team-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .creative-team-grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* ── SONG WALL (Home hub) — CSS-only scrolling background, no JS ── */
.about { position: relative; overflow: hidden; }
.song-wall {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(4px, 0.6vw, 10px);
  overflow: hidden;
  pointer-events: none;
  transform: rotate(-5deg) scale(1.15);
  opacity: 0.16;
  mask-image: radial-gradient(ellipse 62% 55% at 50% 50%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 40%, #000 78%);
  -webkit-mask-image: radial-gradient(ellipse 62% 55% at 50% 50%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 40%, #000 78%);
}
.song-wall-row {
  display: flex;
  flex: 0 0 9%;
  align-items: center;
  width: max-content;
  gap: clamp(16px, 1.7vw, 28px);
  white-space: nowrap;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.7;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--gold);
}
.song-wall-row span:nth-child(even) { color: var(--teal-bright); }
.song-wall-row-left { animation: song-wall-left 60s linear infinite; }
.song-wall-row-right { animation: song-wall-right 60s linear infinite; }
@keyframes song-wall-left { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
@keyframes song-wall-right { from { transform: translateX(-33.333%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .song-wall-row-left, .song-wall-row-right { animation: none; }
}

/* ── ABOUT + COLOGNE CARD (Home hub) ── */
.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cologne-card {
  border: 1px solid rgba(253,226,140,0.25);
  border-top: 2px solid var(--gold-dim);
  padding: 2.2rem 2.4rem;
  background: rgba(13,6,24,0.55);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}
.sydney-premiere {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}
.sydney-premiere-section {
  padding: 5rem 0;
  background: linear-gradient(160deg, #070611 0%, #10091b 100%);
}
.sydney-premiere-image-wrap {
  aspect-ratio: 21 / 9;
  border: 1px solid rgba(253,226,140,0.22);
  overflow: hidden;
}
.sydney-premiere-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.sydney-premiere-caption {
  display: block;
  padding-top: 1rem;
  color: rgba(255,255,255,0.62);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
}
.sydney-premiere-caption span {
  display: block;
  margin-bottom: 0.35rem;
}
.sydney-premiere-title {
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sydney-premiere-credit {
  color: rgba(255,255,255,0.42);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sydney-premiere-section { padding: 3rem 0; }
}

/* ── CONTACT FORM ── */
.contact-form {
  max-width: 560px;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-field { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.contact-field label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.contact-field input,
.contact-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(253,226,140,0.2);
  border-radius: 2px;
  padding: 0.85rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(253,226,140,0.6);
  box-shadow: 0 0 12px rgba(253,226,140,0.08);
}
.contact-form .btn { align-self: flex-start; }
.contact-form .newsletter-confirm,
.contact-form .newsletter-error { display: none; text-align: left; }

/* ── COOKIE CONSENT ── */
.cookie-consent,
.cookie-settings-button,
.cookie-modal-backdrop,
.cookie-modal { z-index: 9999; }
.cookie-consent[hidden],
.cookie-settings-button[hidden],
.cookie-modal-backdrop[hidden],
.cookie-modal[hidden] { display: none; }

.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(13,6,24,0), rgba(13,6,24,0.95) 18%);
}
.cookie-consent__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(253,226,140,0.25);
  background: var(--purple);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.cookie-consent__copy { max-width: 680px; }
.cookie-consent__copy h2,
.cookie-modal h2 {
  margin: 0 0 0.3rem;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
.cookie-consent__copy p,
.cookie-modal p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 300;
}
.cookie-consent__actions,
.cookie-modal__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.cookie-btn,
.cookie-settings-button,
.cookie-modal__close {
  border: 1px solid rgba(253,226,140,0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cookie-btn {
  min-height: 2.9rem;
  min-width: 8.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 3px;
}
.cookie-btn--strong { background: rgba(253,226,140,0.1); color: var(--gold); }
.cookie-btn--quiet { color: var(--white); }
.cookie-btn:hover,
.cookie-settings-button:hover,
.cookie-modal__close:hover { border-color: var(--gold); color: var(--gold); }
.cookie-btn:focus-visible,
.cookie-settings-button:focus-visible,
.cookie-modal__close:focus-visible,
.cookie-modal input:focus-visible + .cookie-modal__switch {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
}
.cookie-settings-button {
  position: fixed;
  left: 1rem; bottom: 1rem;
  min-height: 2.4rem;
  padding: 0.55rem 0.75rem;
  background: var(--purple-dark);
  border-color: rgba(253,226,140,0.4);
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  border-radius: 3px;
}
.cookie-modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.72); }
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  width: min(620px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  transform: translate(-50%, -50%);
  padding: 1.5rem;
  border: 1px solid rgba(253,226,140,0.25);
  background: var(--purple-dark);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  border-radius: 4px;
}
.cookie-modal-open { overflow: hidden; }
.cookie-modal__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem;
}
.cookie-modal__close {
  flex: 0 0 auto; min-width: 2.35rem; min-height: 2.35rem;
  padding: 0; border-radius: 50%; font-size: 0;
}
.cookie-modal__close::before { content: "×"; font-size: 1.4rem; line-height: 1; }
.cookie-modal__options { display: grid; gap: 0.75rem; margin-bottom: 1.25rem; }
.cookie-modal__toggle {
  display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center;
  gap: 1rem; padding: 0.9rem; border: 1px solid rgba(255,255,255,0.1); cursor: pointer;
}
.cookie-modal__toggle-copy { display: grid; gap: 0.2rem; }
.cookie-modal__toggle-title { color: var(--white); font-weight: 700; font-family: 'Jost', sans-serif; }
.cookie-modal__toggle-desc { color: rgba(255,255,255,0.55); font-size: 0.85rem; font-weight: 300; }
.cookie-modal__toggle input { position: absolute; opacity: 0; pointer-events: none; }
.cookie-modal__switch {
  position: relative; width: 3.25rem; height: 1.75rem;
  border: 1px solid rgba(253,226,140,0.3); border-radius: 999px; background: rgba(255,255,255,0.08);
}
.cookie-modal__switch::after {
  content: ""; position: absolute; left: 0.25rem; top: 50%;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: rgba(255,255,255,0.6); transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease;
}
.cookie-modal__toggle input:checked + .cookie-modal__switch { background: rgba(253,226,140,0.22); }
.cookie-modal__toggle input:checked + .cookie-modal__switch::after { background: var(--gold); transform: translate(1.45rem, -50%); }
.cookie-modal__toggle input:disabled + .cookie-modal__switch { opacity: 0.65; }
@media (max-width: 640px) {
  .cookie-consent__inner { align-items: stretch; flex-direction: column; }
  .cookie-consent__actions, .cookie-modal__actions { justify-content: stretch; }
  .cookie-btn { flex: 1 1 100%; width: 100%; }
  .cookie-settings-button { left: 0.75rem; bottom: 0.75rem; }
}

/* ── NEWSLETTER GDPR CHECKBOX ── */
.newsletter-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: 480px;
  margin: 0 auto 1.2rem;
  text-align: left;
}
.newsletter-gdpr input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--gold);
}
.newsletter-gdpr label {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
}
.newsletter-gdpr a { color: var(--teal-bright); }

/* ── POLICY PAGES (Terms / Privacy) ── */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}
.policy-content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin-bottom: 1.4rem; }
.policy-content a { color: var(--teal-bright); }
.policy-updated {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253,226,140,0.15);
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .person-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .person-hero { padding-top: 7rem; }
}

/* ── VENUE & PERFORMANCES ── */
.venue {
  background: linear-gradient(160deg, #060313 0%, #0a0520 50%, #060313 100%);
  padding: 7rem 2rem;
}
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.venue-details-list {
  list-style: none;
  margin: 0 0 2rem;
}
.venue-details-list li {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(253,226,140,0.07);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  min-width: 0;
}
.venue-details-list li span { min-width: 0; overflow-wrap: anywhere; }
.venue-details-list li:first-child { border-top: 1px solid rgba(253,226,140,0.07); }
.venue-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 0.1rem;
  color: var(--gold);
  font-style: normal;
}
.venue-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.venue-map {
  margin-top: 2rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(253,226,140,0.18);
  box-shadow: 0 0 24px rgba(18,115,97,0.12);
}
.venue-map iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}
.perf-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(253,226,140,0.12);
  border-left: 3px solid var(--teal-bright);
  border-radius: 4px;
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.2rem;
}
.perf-card-date {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.perf-times {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.perf-time-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  gap: 1rem;
  min-width: 0;
}
.perf-time-row span { min-width: 0; overflow-wrap: anywhere; }
.perf-time-row span:first-child {
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.venue-running-time {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  margin: 1.4rem 0 2rem;
}
@media (max-width: 900px) {
  .venue-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── TICKETS INFO ── */
.tickets-info {
  background: linear-gradient(160deg, #060313 0%, #0a0520 50%, #060313 100%);
  padding: 7rem 2rem;
}
.tickets-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.tickets-info-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 0;
}
.tickets-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(253,226,140,0.1);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, background 0.25s ease;
  max-width: 100%;
  min-width: 0;
}
.info-card:hover {
  border-color: rgba(253,226,140,0.45);
  background: rgba(253,226,140,0.03);
}
.info-card-icon {
  flex-shrink: 0;
  color: var(--gold);
  display: flex;
  align-items: center;
}
.info-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.info-card-title {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  overflow-wrap: anywhere;
}
.info-card-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.info-card-arrow {
  flex-shrink: 0;
  color: rgba(253,226,140,0.35);
  font-size: 1rem;
  transition: color 0.25s ease, transform 0.25s ease;
}
.info-card:hover .info-card-arrow {
  color: var(--gold);
  transform: translateX(3px);
}
@media (max-width: 900px) {
  .tickets-info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(160deg, #120900 0%, #1e1002 50%, #120900 100%);
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(253,226,140,0.18);
}
.newsletter .section-label { justify-content: center; }
.newsletter h2 {
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--gold-dim), var(--gold), #fff9e0, var(--gold), var(--gold-dim));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
.newsletter-intro {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  min-width: 220px;
  max-width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(253,226,140,0.2);
  border-radius: 2px;
  padding: 0.85rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-input:focus {
  border-color: rgba(253,226,140,0.6);
  box-shadow: 0 0 12px rgba(253,226,140,0.08);
}
.newsletter-confirm {
  display: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--teal-bright);
  margin-top: 1.5rem;
}
.newsletter-error {
  display: none;
  font-size: 0.8rem;
  color: rgba(253,100,100,0.8);
  margin-top: 0.75rem;
  width: 100%;
  text-align: center;
}

.newsletter-honeypot {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  clip-path: inset(50%);
}

/* ── SOCIAL ICONS ── */
.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social-icon {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  line-height: 1;
}
.social-icon:hover { color: var(--gold); }
.social-icon svg { display: block; }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 1.5rem;
}
.lang-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.lang-link:hover { color: rgba(255,255,255,0.8); }
.lang-link--active { color: var(--gold); }
.lang-sep {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.2);
}

/* nav social — sits to the right of nav-links */
.nav-social { margin-left: 2rem; gap: 0.75rem; }

/* footer social */
.footer-social { justify-content: center; margin: 0.5rem 0; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(45,18,64,0.6);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  min-width: 0;
}
.footer-brand img {
  height: 36px;
  width: auto;
  max-width: 100%;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.footer-brand img:hover { opacity: 1; }
.footer-links { display: flex; gap: 2.5rem; list-style: none; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--teal-bright); }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  overflow-wrap: anywhere;
}

/* ── DIVIDER ── */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(45,18,64,0.6), transparent);
}


/* ── RESPONSIVE ── */
@media (min-width: 1251px) and (max-width: 1500px) {
  nav { padding-left: 2.5rem; padding-right: 2.5rem; }
  .nav-links { gap: 1.6rem; }
  .nav-links a { font-size: 0.7rem; letter-spacing: 0.16em; }
  .nav-social { margin-left: 1rem; }
}
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  body { cursor: auto; }
  .cursor, .cursor-spotlight { display: none; }
  .parallax-orb { display: none; }
  .hero { height: auto; min-height: 0; aspect-ratio: 16 / 9; margin-top: 68px; }
  .hero-video-wrap iframe,
  .hero-video-wrap video {
    top: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 0;
    transform: none;
  }
  .ticker-wrap,
  .ticker {
    overflow: hidden;
  }
  .ticker {
    display: block;
    width: 100%;
    transform: none !important;
    white-space: normal;
  }
  .ticker-item {
    display: none;
    width: 100%;
    padding: 0 1.5rem;
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .ticker-item:first-child {
    display: flex;
  }
  .ticker-quote,
  .ticker-source,
  .ticker-stars,
  .ticker-sep {
    min-width: 0;
  }
  .song-cloud {
    display: none;
  }
  section { padding: 5rem 1.5rem; }
  .song-cloud { height: 240px; }
  h1,
  h2 {
    font-size: clamp(1.1rem, 6vw, 3.8rem);
    letter-spacing: 0.03em;
  }
  .section-label {
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    gap: 0.75rem;
  }
  .hero-event-venue,
  .hero-event-location,
  .hero-event-orch,
  .btn,
  .composer-link,
  .creative-link,
  .orchestra-sub,
  .footer-links a,
  .mobile-nav-section {
    letter-spacing: 0.18em;
  }
  .btn {
    width: 100%;
    padding: 0.95rem 1.2rem;
  }
  .btn-group {
    width: 100%;
  }
  .composer-link,
  .composer-link--spaced {
    display: block;
    width: fit-content;
    margin-right: 0;
  }
  .newsletter-input {
    flex-basis: 100%;
    min-width: 0;
  }
  .info-card {
    align-items: flex-start;
    padding: 1.25rem 1.2rem;
  }
  .person-back h2 {
    font-size: clamp(1.3rem, 6vw, 2rem) !important;
  }
}


/* ── BIO PAGE — magazine feature layout (.person-hero--mag) ── */
.person-hero--mag .person-masthead{
  display:grid; grid-template-columns:380px 1fr; gap:4.5rem;
  align-items:start; margin-bottom:3.5rem;
}
.person-hero--mag .person-aside{ align-self:start; }
.person-card{
  margin-top:1.4rem; padding-top:1.1rem;
  border-top:1px solid rgba(253,226,140,0.25);
  display:flex; flex-flow:row wrap; align-items:baseline; gap:0.6rem;
}
.person-card-role{
  font-family:'Jost',sans-serif; text-transform:uppercase;
  letter-spacing:0.22em; font-size:0.7rem; color:var(--teal-bright);
}
.person-card-link{ color:var(--gold); font-size:0.92rem; letter-spacing:0.03em; }
.person-hero--mag .section-label{ font-size:1.2rem; letter-spacing:0.35em; margin-bottom:1.4rem; }
.person-hero--mag h1{ font-size:clamp(2.8rem,6vw,5.5rem); line-height:0.95; margin-bottom:1.5rem; }
.person-standfirst{
  font-size:clamp(1.15rem,1.7vw,1.5rem); line-height:1.6;
  color:rgba(255,255,255,0.92); font-weight:300; margin:0; max-width:56ch;
}
.person-body{ column-count:2; column-gap:3rem; }
.person-body p{ margin:0 0 1.4rem; color:rgba(255,255,255,0.7); font-size:1rem; font-weight:300; line-height:1.8; }
.person-body p em{ color:rgba(255,255,255,0.9); font-style:italic; }
@media(max-width:900px){
  .person-hero--mag .person-masthead{ grid-template-columns:1fr; gap:2.5rem; }
  .person-body{ column-count:1; }
}
