/* ============================================================
   RESET & TOKENS
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0a0a0a;
  --near-black: #111111;
  --dark:       #1c1c1e;
  --white:      #ffffff;
  --off-white:  #f5f5f7;
  --g100: #f5f5f7;
  --g200: #e8e8ed;
  --g400: #aeaeb2;
  --g600: #6e6e73;
  --g800: #3a3a3c;
  --gold:       #c9a96e;
  --gold-dark:  #a8884e;
  --gold-light: #e8d5a8;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --r:    8px;
  --r-lg: 18px;
  --r-xl: 24px;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t: 0.32s;

  --sh:    0 2px 16px rgba(0,0,0,.07);
  --sh-lg: 0 8px 48px rgba(0,0,0,.13);
  --sh-xl: 0 24px 80px rgba(0,0,0,.18);

  --max: 1200px;
  --pad: clamp(24px, 5vw, 80px);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body  { font-family: var(--sans); background: var(--white); color: var(--black); line-height: 1.6; overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
img, video { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h2 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.15; }
h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; line-height: 1.25; }
h4 { font-size: 1rem; font-weight: 600; line-height: 1.3; }
p  { color: var(--g600); }

.eyebrow {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.body-lg { font-size: 1.15rem; color: var(--g800); line-height: 1.7; }
.kicker  { font-size: .78rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }

/* ============================================================
   LAYOUT
============================================================ */
.chapter       { padding: clamp(72px, 10vw, 120px) 0; }
.chapter-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.chapter-light { background: var(--white); }
.chapter-off   { background: var(--off-white); }
.chapter-dark  { background: var(--dark); }
.chapter-black { background: var(--near-black); }
.chapter-border-top { border-top: 1px solid var(--g200); }

.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 { margin-bottom: 16px; }
.section-head.light h2   { color: var(--white); }
.section-head.light .section-desc { color: var(--g400); }
.section-desc { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--r);
  font-size: .88rem; font-weight: 500; letter-spacing: .02em;
  transition: background var(--t) var(--ease), color var(--t) var(--ease),
              box-shadow var(--t) var(--ease), transform var(--t) var(--ease),
              border-color var(--t) var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn.sm   { padding: 10px 20px; font-size: .8rem; }
.btn.full { width: 100%; justify-content: center; margin-top: auto; }

.btn-gold        { background: var(--gold); color: var(--white); }
.btn-gold:hover  { background: var(--gold-dark); box-shadow: 0 8px 28px rgba(201,169,110,.4); }
.btn-dark        { background: var(--black); color: var(--white); }
.btn-dark:hover  { background: var(--g800); }
.btn-ghost       { background: transparent; color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); }
.btn-outline-white       { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.25); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* ============================================================
   PLACEHOLDERS
============================================================ */
.placeholder-fill {
  width: 100%; height: 100%;
  background: var(--g200);
  display: flex; align-items: center; justify-content: center;
  color: var(--g400); font-size: .8rem; letter-spacing: .05em;
  border-radius: inherit;
}
.media-frame          { width: 100%; border-radius: var(--r-xl); overflow: hidden; background: var(--g200); }
.media-frame.tall     { aspect-ratio: 3/4; }

/* ============================================================
   LOGO IMAGE
============================================================ */
.logo-img {
  height: 44px; width: auto; display: block;
  filter: brightness(0) invert(1);
  transition: filter var(--t) var(--ease);
}
#nav.scrolled .logo-img {
  filter: brightness(0) invert(0);
}
.site-footer .logo-img {
  height: 28px;
  filter: brightness(0) invert(1);
}
.hero-wordmark { margin-bottom: 16px; }
.hero-logo-img {
  width: clamp(260px, 55vw, 560px); height: auto; display: block;
  filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(201,169,110,.25));
}

/* ============================================================
   NAV
============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; transition: var(--t) var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px var(--pad);
  transition: padding var(--t) var(--ease);
}
#nav.scrolled .nav-inner {
  padding: 14px var(--pad);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--g200);
  box-shadow: var(--sh);
}
#nav.scrolled .nav-links a    { color: var(--g800); }
#nav.scrolled .nav-links a:hover { color: var(--black); }
#nav.scrolled .nav-cta        { background: var(--gold) !important; color: var(--white) !important; border-color: var(--gold) !important; }
#nav.scrolled .burger span    { background: var(--black); }

.logo {
  display: inline-flex; align-items: center;
  line-height: 0;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.8); transition: color var(--t) var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  padding: 9px 22px !important; border-radius: var(--r) !important;
  background: rgba(255,255,255,.12) !important; color: var(--white) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  backdrop-filter: blur(8px);
}
.nav-cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; }

.burger { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: var(--t) var(--ease); }

.mobile-drawer {
  display: none; flex-direction: column;
  background: rgba(255,255,255,.97); backdrop-filter: blur(24px);
  border-top: 1px solid var(--g200); box-shadow: var(--sh-lg);
  padding: 4px 0 12px;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  padding: 14px 24px; font-size: .95rem; font-weight: 500;
  color: var(--g800); border-bottom: 1px solid var(--g200);
  transition: background var(--t) var(--ease);
}
.mobile-drawer a:last-child { border-bottom: none; color: var(--gold); font-weight: 600; }
.mobile-drawer a:hover { background: var(--g100); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger    { display: flex; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-media         { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.15) 35%,
    rgba(0,0,0,.55) 75%,
    rgba(0,0,0,.85) 100%
  );
}
.hero-body {
  position: relative; z-index: 1;
  text-align: center; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
}
.hero .kicker   { color: rgba(255,255,255,.5); margin-bottom: 20px; }
.hero-wordmark  {
  font-family: var(--serif); font-size: clamp(5rem, 18vw, 13rem);
  font-weight: 700; color: var(--white); letter-spacing: .1em; line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(155deg, #fff 25%, var(--gold-light) 55%, #fff 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-tagline   {
  font-family: var(--serif); font-size: clamp(1rem, 2.5vw, 1.55rem);
  font-style: italic; color: rgba(255,255,255,.55); margin-bottom: 48px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* countdown pill */
.hero-meta {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center;
  background: rgba(255,255,255,.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 999px;
  padding: 14px 32px; z-index: 1; white-space: nowrap;
}
.hero-meta-item  { text-align: center; padding: 0 18px; }
.meta-value  {
  display: block; font-family: var(--serif);
  font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 3px;
}
.meta-label  {
  font-size: .58rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.hero-meta-sep { width: 1px; height: 32px; background: rgba(255,255,255,.14); flex-shrink: 0; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.3); z-index: 1; animation: bobble 2.4s ease-in-out infinite;
  transition: color var(--t) var(--ease);
}
.scroll-hint:hover { color: rgba(255,255,255,.7); }
@keyframes bobble {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 580px) {
  .hero-meta { padding: 10px 16px; }
  .hero-meta-item { padding: 0 10px; }
  .meta-value { font-size: 1.15rem; }
}

/* ============================================================
   ABOUT — text only, centered wide block
============================================================ */
.about-text-only { max-width: 780px; }
.about-copy h2     { margin-bottom: 20px; }
.about-copy .body-lg { margin-bottom: 16px; }
.about-copy p      { margin-bottom: 28px; }
/* About — for-list */
.about-for { margin-bottom: 28px; }
.about-for-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--g400); margin-bottom: 12px;
}
.about-for-list { display: flex; flex-direction: column; gap: 8px; }
.about-for-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .92rem; color: var(--g800); font-weight: 500;
}
.about-for-list li::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

.fact-row {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding: 24px 0; margin-bottom: 32px;
  border-top: 1px solid var(--g200); border-bottom: 1px solid var(--g200);
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact strong { font-family: var(--serif); font-size: 1.5rem; color: var(--black); }
.fact span   { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--g400); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .media-frame.tall { aspect-ratio: 16/9; }
}

/* ============================================================
   SCHEDULE
============================================================ */
.chapter-dark .eyebrow   { color: var(--gold); }
.chapter-dark h2         { color: var(--white); }
.chapter-dark .section-desc { color: var(--g400); }

.day-tabs {
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 48px;
}
.day-tabs::-webkit-scrollbar { display: none; }
.day-tab {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 14px 22px; white-space: nowrap;
  color: rgba(255,255,255,.35);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color var(--t) var(--ease);
  flex-shrink: 0;
}
.day-tab:hover { color: rgba(255,255,255,.7); }
.day-tab.active { color: var(--white); border-bottom-color: var(--gold); }
.tab-date  { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 3px; }
.tab-title { font-family: var(--serif); font-size: .95rem; font-style: italic; }

/* Closing Show highlight tab */
.day-tab-highlight .tab-date { color: rgba(201,169,110,.6); }
.day-tab-highlight .tab-title { color: var(--gold-light); }
.day-tab-highlight { border-bottom-color: rgba(201,169,110,.25); }
.day-tab-highlight:hover .tab-title { color: var(--gold); }
.day-tab-highlight.active { border-bottom-color: var(--gold); }
.day-tab-highlight.active .tab-title { color: var(--gold); }

/* unconfirmed notice */
.day-notice {
  display: flex; align-items: center; gap: 10px;
  background: rgba(201,169,110,.12); border: 1px solid rgba(201,169,110,.25);
  border-radius: var(--r); padding: 12px 18px; margin-bottom: 28px;
  font-size: .82rem; color: var(--gold-light); font-weight: 500;
}

.day-panel { display: none; }
.day-panel.active { display: block; animation: fadeIn .3s var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.schedule-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px;
}
.schedule-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 24px 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.schedule-card:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.schedule-card.highlight { border-color: rgba(201,169,110,.3); background: rgba(201,169,110,.07); }
.sc-time    { font-size: .68rem; font-weight: 700; letter-spacing: .12em; color: var(--gold); }
.sc-content h4 { color: var(--white); font-size: .92rem; margin-bottom: 5px; }
.sc-content p  { font-size: .8rem; color: rgba(255,255,255,.42); line-height: 1.55; }
.sc-tag {
  margin-top: auto; align-self: flex-start;
  font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.4);
}
.sc-tag.gold { background: rgba(201,169,110,.2); color: var(--gold); }
.sc-tag.vip  { background: rgba(255,255,255,.13); color: rgba(255,255,255,.75); }

/* TBA block (Opening Show) */
.day-tba-block {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
  padding: 64px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  max-width: 520px; margin: 0 auto;
}
.day-tba-icon { font-size: 2.5rem; }
.day-tba-block h3 { color: var(--white); }
.day-tba-block p  { color: rgba(255,255,255,.5); font-size: .92rem; }

/* Cancelled tab badge */
.tab-cancelled {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #c0392b;
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Cancelled block */
.day-cancelled-block {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
  padding: 64px 32px;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--r-xl);
  max-width: 520px; margin: 0 auto;
}
.day-cancelled-icon { font-size: 2.5rem; }
.day-cancelled-block h3 { color: #e74c3c; }
.day-cancelled-block p  { color: rgba(255,255,255,.55); font-size: .92rem; line-height: 1.6; }
.day-cancelled-block p strong { color: rgba(255,255,255,.85); }

/* Single-card grid */
.schedule-grid.single { grid-template-columns: 1fr; max-width: 600px; }

/* Per-day ticket CTA */
.day-ticket-cta {
  margin-top: 28px; display: flex; justify-content: center;
}
.day-ticket-cta .btn { padding: 13px 36px; }

/* ============================================================
   EDITORIAL BREAK
============================================================ */
.editorial-break { padding: clamp(80px, 12vw, 130px) var(--pad); background: var(--off-white); text-align: center; }
.eb-inner        { max-width: 860px; margin: 0 auto; }
.eb-quote {
  font-family: var(--serif); font-size: clamp(1.7rem, 4.5vw, 3.2rem);
  font-weight: 400; color: var(--black); line-height: 1.35; margin-bottom: 24px;
}
.eb-quote em { color: var(--gold); font-style: italic; }
.eb-sub      { font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--g400); }

/* ============================================================
   MARQUEE BANDEROLE
============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--g200);
  border-bottom: 1px solid var(--g200);
  padding: 18px 0;
  background: var(--white);
  user-select: none;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 500; color: var(--g800);
  padding: 0 40px; white-space: nowrap;
  transition: color var(--t) var(--ease);
}
.marquee-item:hover { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   DESIGNER GRID  (clean cards)
============================================================ */
.designer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.designer-card {
  display: flex; flex-direction: column;
  background: var(--g100); border-radius: var(--r-xl);
  overflow: hidden; border: 1px solid var(--g200);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  cursor: pointer;
}
.designer-card:hover {
  transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--g400);
}
.dc-img-wrap { aspect-ratio: 3/4; overflow: hidden; flex-shrink: 0; }
.dc-img-wrap .placeholder-fill { border-radius: 0; transition: background var(--t) var(--ease); }
.designer-card:hover .dc-img-wrap .placeholder-fill { background: var(--g200); }

.dc-meta {
  padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.dc-text h4 { font-size: .95rem; color: var(--black); margin-bottom: 3px; }
.dc-text p  { font-size: .78rem; color: var(--g600); }
.dc-actions { display: flex; align-items: center; justify-content: space-between; }
.dc-link-hint {
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: var(--g400); transition: color var(--t) var(--ease);
}
.designer-card:hover .dc-link-hint { color: var(--black); }

/* Apply teaser card */
.designer-apply-card {
  background: var(--black); border-color: var(--black);
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
}
.dac-inner { text-align: center; padding: 32px 24px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.dac-inner .eyebrow { margin-bottom: 4px; }
.dac-inner h4   { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.dac-inner p    { color: var(--g400); font-size: .83rem; margin-bottom: 16px; }
.designer-apply-card:hover { border-color: var(--gold); transform: translateY(-4px); }

/* pills */
.pill {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.pill.green { background: #e8f5e9; color: #2e7d32; }
.pill.gray  { background: var(--g200); color: var(--g600); }

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

/* ============================================================
   TICKETS
============================================================ */
.ticket-shelf {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: start; margin-bottom: 28px;
}
.ticket-shelf.two-up {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.ticket-shelf.three-up {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.ticket {
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl);
  padding: 36px 26px 28px; display: flex; flex-direction: column; gap: 24px;
  position: relative;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.ticket:hover { border-color: rgba(255,255,255,.25); transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.ticket.featured {
  border-color: var(--gold); background: rgba(201,169,110,.07); transform: scale(1.025);
}
.ticket.featured:hover { transform: scale(1.025) translateY(-3px); }
.ticket-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 999px;
}
.ticket-top { display: flex; flex-direction: column; gap: 6px; }
.ticket-name { font-family: var(--serif); font-size: 1.4rem; color: var(--white); }
.ticket-desc { font-size: .8rem; color: rgba(255,255,255,.4); }
.ticket-price-wrap { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.ticket-price { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.ticket-per   { font-size: .8rem; color: rgba(255,255,255,.4); }
.ticket-perks { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.ticket-perks li {
  font-size: .83rem; padding-left: 18px; position: relative; color: rgba(255,255,255,.45);
}
.ticket-perks li::before { content: ''; position: absolute; left: 0; top: .45em; width: 7px; height: 7px; border-radius: 50%; }
.ticket-perks li.yes         { color: rgba(255,255,255,.8); }
.ticket-perks li.yes::before { background: var(--gold); }
.ticket-perks li.no          { color: rgba(255,255,255,.35); }
.ticket-perks li.no::before  { background: rgba(255,255,255,.12); }
/* Ticket highlight box */
.ticket-highlight {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: var(--r); padding: 14px 16px;
}
.th-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.ticket-highlight p { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.ticket-highlight p strong { color: var(--gold); }

@media (max-width: 960px) {
  .ticket-shelf.three-up { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
}
@media (max-width: 700px) {
  .ticket-shelf.two-up,
  .ticket-shelf.three-up { grid-template-columns: 1fr; max-width: 420px; }
}

.ticket-note { text-align: center; font-size: .8rem; color: var(--g600); margin-top: 32px; padding-bottom: 16px; }
.ticket-note a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color var(--t) var(--ease); }
.ticket-note a:hover { border-bottom-color: var(--gold); }

@media (max-width: 860px) {
  .ticket-shelf { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 28px; }
  .ticket.featured { transform: scale(1); }
  .ticket.featured:hover { transform: translateY(-3px); }
}

/* ============================================================
   SPONSORS
============================================================ */
.sponsor-section {}

.sponsor-tier { margin-bottom: 48px; }
.sponsor-tier-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--g400); text-align: center; margin-bottom: 24px;
}

.sponsor-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 40px;
}

.sponsor-row > .sponsor-logo {
  flex: 0 0 auto;
}

.sponsor-row.two-col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 600px;
  margin: 0 auto;
}

.sponsor-logo {
  display: flex; align-items: center; justify-content: center;
  width: 140px;
  height: 64px;
  padding: 8px;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.sponsor-logo:hover { opacity: .7; transform: translateY(-2px); }

.sponsor-img,
.sponsor-img-lg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 700px) {
  .sponsor-row { grid-template-columns: repeat(3, 1fr); }
  .sponsor-row.two-col { grid-template-columns: repeat(2, 1fr); }
}

.sponsor-placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--g400); font-size: .75rem; font-weight: 500; letter-spacing: .06em;
}
.sponsor-placeholder.large { width: 200px; height: 80px; }
.sponsor-placeholder       { width: 140px; height: 60px; }
.sponsor-placeholder.small { width: 110px; height: 48px; }

.sponsor-cta {
  margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--g200);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.sponsor-cta p { font-size: 1rem; color: var(--g600); }

/* ============================================================
   APPLY — zentriertes Formular
============================================================ */
.chapter-off .eyebrow { color: var(--gold); }

/* Zentriertes breites Formular */
.apply-form-centered {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}

.form-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }

label { font-size: .72rem; font-weight: 600; letter-spacing: .03em; color: var(--g800); }

input, select, textarea {
  padding: 13px 16px; border: 1.5px solid var(--g200); border-radius: var(--r);
  font: .9rem/1.5 var(--sans); color: var(--black); background: var(--white);
  outline: none; width: 100%; resize: vertical; -webkit-appearance: none;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
input::placeholder, textarea::placeholder { color: var(--g400); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236e6e73' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}

/* Submit row */
.form-submit-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px;
}
.form-privacy {
  font-size: .72rem; color: var(--g400); flex: 1; min-width: 200px; line-height: 1.5;
}
.form-privacy a { color: var(--g600); border-bottom: 1px solid var(--g200); }
.form-privacy a:hover { color: var(--black); }

/* Loading spinner */
.spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white); border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Status boxes */
.form-ok,
.form-err {
  display: none; /* shown via JS as flex */
  align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: var(--r);
  font-size: .88rem; line-height: 1.5;
}
.form-ok {
  background: #e8f5e9; border: 1px solid #c8e6c9; color: #1b5e20;
}
.form-err {
  background: #fde8e8; border: 1px solid #f5c6c6; color: #7f1d1d;
}
.form-ok strong, .form-err strong { display: block; margin-bottom: 2px; font-weight: 600; }
.form-ok p, .form-err p { font-size: .82rem; opacity: .85; }
.form-ok span, .form-err span { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.form-err a { color: inherit; text-decoration: underline; }

@media (max-width: 640px) {
  .form-pair { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-row .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--near-black); border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px;
  padding: 60px 0 52px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo { color: var(--white); display: block; margin-bottom: 12px; }
.footer-brand p     { font-size: .83rem; color: rgba(255,255,255,.32); line-height: 1.7; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-col  { display: flex; flex-direction: column; gap: 2px; }
.footer-col h5 {
  font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 14px;
}
.footer-col a {
  font-size: .8rem; color: rgba(255,255,255,.5); padding: 4px 0;
  transition: color var(--t) var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding: 20px 0;
}
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.22); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ============================================================
   DISABLED STATES
============================================================ */
.btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.footer-link-disabled {
  font-size: 14px;
  color: var(--g600);
  font-style: italic;
  cursor: default;
}

/* ============================================================
   LINEUP TEASER — Coming Soon
============================================================ */
.lineup-teaser {
  position: relative;
  max-width: 960px;
  margin: 0 auto 40px;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 340px;
}

.lineup-blur-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  filter: blur(12px);
  opacity: 0.25;
  transform: scale(1.04);
  pointer-events: none;
  user-select: none;
}
.lineup-blur-card {
  height: 180px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(201,169,110,0.2), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.1);
}
.lineup-blur-card:nth-child(2) { background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(201,169,110,0.1)); }
.lineup-blur-card:nth-child(3) { background: linear-gradient(160deg, rgba(201,169,110,0.15), rgba(255,255,255,0.04)); }
.lineup-blur-card:nth-child(4) { background: linear-gradient(120deg, rgba(255,255,255,0.06), rgba(201,169,110,0.18)); }
.lineup-blur-card:nth-child(5) { background: linear-gradient(145deg, rgba(201,169,110,0.12), rgba(255,255,255,0.07)); }
.lineup-blur-card:nth-child(6) { background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(201,169,110,0.2)); }

.lineup-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(2px);
  gap: 12px;
}
.lineup-soon-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.lineup-soon-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--white);
  margin: 4px 0 8px;
}
.lineup-soon-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ── LINEUP LIST — Logo links, Infos rechts, Instagram-Link darunter ── */
.lineup-list {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto 48px;
}

.lineup-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--t) var(--ease);
}
.lineup-row:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.lineup-row:hover { background: rgba(255,255,255,0.03); }

/* Paket 1 — minimal highlight */
.lineup-row-p1 {
  background: rgba(255,255,255,0.02);
  border-radius: var(--r-lg);
}
.lineup-row-p1:hover { background: rgba(255,255,255,0.04); }

/* Paket 3 — dezenter, leicht gedimmt */
.lineup-row-p3 { opacity: 0.75; }
.lineup-row-p3:hover { opacity: 1; }

.lineup-logo {
  flex: 0 0 auto;
  width: 140px;
  height: 140px;
  border-radius: var(--r-lg, 16px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.lineup-logo-white {
  background: #ffffff;
  border-color: rgba(255,255,255,0.1);
}
.lineup-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lineup-info {
  flex: 1 1 auto;
  text-align: left;
}
.lineup-name {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: #fff;
}
.lineup-role {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.lineup-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lineup-insta,
.lineup-web {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g300, #c9a84c);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  padding: 6px 14px;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.lineup-insta:hover,
.lineup-web:hover {
  background: rgba(201,168,76,0.12);
}

@media (max-width: 560px) {
  .lineup-row { gap: 18px; padding: 22px 4px; }
  .lineup-logo { width: 100px; height: 100px; padding: 12px; }
  .lineup-name { font-size: 1.1rem; }
}

.lineup-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 0 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lineup-more-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
}
.lineup-more p { margin: 0; color: rgba(255,255,255,0.3); }

.lineup-apply-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 600px) {
  .lineup-blur-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-apply-hint { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   UPCYCLING EXPERIENCE SECTION
============================================================ */
.ux-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.ux-intro p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.ux-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 40px;
}

.ux-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.ux-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.3);
}
.ux-card-highlight {
  background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(201,169,110,0.04));
  border-color: rgba(201,169,110,0.35);
}
.ux-card-highlight:hover {
  background: linear-gradient(135deg, rgba(201,169,110,0.18), rgba(201,169,110,0.07));
  border-color: rgba(201,169,110,0.55);
}

.ux-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}
.ux-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}
.ux-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}
.ux-card p strong {
  color: var(--gold);
}
.ux-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ux-card ul li {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}
.ux-card ul li:last-child { border-bottom: none; }
.ux-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.ux-weather-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 20px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.ux-weather-note strong { color: var(--white); }
.ux-weather-note a { color: var(--gold); text-decoration: none; }
.ux-weather-note a:hover { text-decoration: underline; }
.ux-weather-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.ux-cta {
  text-align: center;
}

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

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .28s; }
.delay-3 { transition-delay: .42s; }

[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].visible { opacity: 1; transform: none; }


/* ============================================================
   TICKET PROMO POPUP
============================================================ */
.ticket-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 320px;
  max-width: calc(100vw - 48px);
  background: var(--near-black);
  color: var(--white);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), visibility .6s;
}
.ticket-popup.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.ticket-popup-eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.ticket-popup h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--white);
}
.ticket-popup-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0 0 18px;
}
.ticket-popup-cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}
.ticket-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border-radius: 50%;
  transition: color .2s, background .2s;
}
.ticket-popup-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

@media (max-width: 640px) {
  .ticket-popup {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
}
