/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  /* New palette */
  --black:     #080808;
  --white:     #f5f2ec;
  --gold:      oklch(72% 0.12 80);
  --gold-dim:  oklch(72% 0.12 80 / 0.18);
  --gold-mid:  oklch(72% 0.12 80 / 0.5);

  /* Legacy aliases kept for existing HTML/JS references */
  --bg:           #080808;
  --surface:      #111111;
  --surfaceRaised:#1a1a1a;
  --text:         #f5f2ec;
  --textMuted:    rgba(245,242,236,0.5);
  --line:         oklch(72% 0.12 80 / 0.18);
  --inverseBg:    #f5f2ec;
  --inverseText:  #080808;
  --focus:        oklch(72% 0.12 80);

  /* Spacing */
  --s4:4px; --s8:8px; --s12:12px; --s16:16px; --s20:20px;
  --s24:24px; --s32:32px; --s40:40px; --s48:48px;
  --s64:64px; --s80:80px; --s96:96px; --s120:120px;

  /* Radius */
  --r-none:0; --r-sm:4px; --r-md:8px; --r-lg:12px; --r-xl:20px;

  /* Sizes */
  --header-h: 64px;
  --btn-h:    44px;
  --input-h:  48px;
  --poster-w: 224px;

  /* Motion */
  --t-fast:  180ms;
  --t-base:  260ms;
  --t-slow:  420ms;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);

  /* Shadow */
  --shadow-soft: 0 10px 30px 0 rgba(0,0,0,0.5);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-ui:      'DM Sans', sans-serif;

  /* Layout */
  --content-w: 1280px;
  --margin: 80px;
  --gutter: 24px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
}

/* Cursor elements hidden — new design uses default cursor */
#cur, #cur-ring { display: none; }

/* ─── LAYOUT HELPERS ─── */
.inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 var(--margin);
}

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  padding: 0 60px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, transparent 100%);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}
header.scrolled {
  background: rgba(8,8,8,0.96);
  border-color: var(--gold-dim);
}

.header-inner {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 67px; width: auto; display: block;
  filter: brightness(0) invert(1);
}

.header-nav {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: var(--s40); list-style: none;
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); opacity: 0.7; text-decoration: none;
  transition: opacity var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.header-nav a:hover { opacity: 1; color: var(--gold); }

.header-actions { display: flex; gap: var(--s16); align-items: center; }

.btn-primary {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  height: var(--btn-h); padding: 0 var(--s24);
  background: var(--gold); color: var(--black);
  border: 1px solid var(--gold); cursor: pointer;
  display: inline-flex; align-items: center; gap: var(--s8);
  border-radius: 0;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-secondary {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  height: var(--btn-h); padding: 0 var(--s24);
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold); cursor: pointer;
  display: inline-flex; align-items: center; gap: var(--s8);
  border-radius: 0;
  transition: background var(--t-fast), color var(--t-fast);
  text-decoration: none;
}
.btn-secondary:hover { background: var(--gold); color: var(--black); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: center;
  text-align: center;
  padding: 0 60px 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-dim);
}

/* Gradient base */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #111 0%, #1a1a0f 50%, #080808 100%);
}

/* Diagonal stripe texture */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 18px,
    rgba(255,255,255,0.015) 18px, rgba(255,255,255,0.015) 19px
  );
}

/* Hero photo bg — kept as subtle overlay */
.hero-media-bg {
  position: absolute; inset: 0; z-index: 2;
  background: url('../assets/69F8CE45-35D8-4DF2-A08F-41156B9B8EFC_1_105_c.jpeg') center/cover no-repeat;
  opacity: 0.15;
}
.hero-media-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,1) 0%,
    rgba(8,8,8,0.55) 40%,
    rgba(8,8,8,0.1) 100%
  );
}

/* Canvas waveform overlay */
#waveCanvas {
  position: absolute; inset: 0; z-index: 3;
  width: 100%; height: 100%;
  opacity: 0.22; pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative; z-index: 5;
  display: flex; flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
  opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-logo-stage {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -85%);
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-logo-stage img {
  height: clamp(240px, 64vh, 880px); width: auto;
  filter: brightness(0) invert(1)
          drop-shadow(0 0 60px rgba(200,165,80,0.2));
  animation: logoFloat 7s ease-in-out infinite;
  display: block;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 240px);
  line-height: 0.88; letter-spacing: 0.02em;
  color: var(--white);
  opacity: 0; animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title span { color: var(--gold); }

.hero-rule {
  width: 0; height: 1px;
  background: var(--gold);
  margin: 32px auto 20px;
  opacity: 0; animation: expandW 0.8s ease 0.9s forwards;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: 18px; font-style: italic; letter-spacing: 0.04em;
  color: rgba(245,242,236,0.65);
  max-width: 420px; line-height: 1.6; margin: 0 auto;
  opacity: 0; animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-actions-center {
  position: relative; z-index: 5;
  margin-top: 40px;
  display: flex; gap: var(--s12);
  opacity: 0; animation: fadeUp 0.8s ease 1.3s forwards;
}

/* Hero bottom meta bar */
.hero-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  padding: var(--s16) var(--s48);
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(8,8,8,0.55);
  backdrop-filter: blur(8px);
}
.hero-meta-row {
  display: flex; gap: var(--s32); align-items: center; flex-wrap: nowrap;
}
.meta-item {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,242,236,0.35); white-space: nowrap;
}
.meta-item span { color: rgba(245,242,236,0.7); }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 80px; right: 60px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(245,242,236,0.35);
  opacity: 0; animation: fadeUp 0.8s ease 1.6s forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold-mid), transparent);
  animation: scrollPulse 2s ease-in-out infinite 2s;
}

/* Hero animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes expandW {
  from { width: 0; opacity: 0; }
  to   { width: 80px; opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ─────────────────────────────────────────────
   TICKER / MARQUEE
───────────────────────────────────────────── */
.ticker-strip {
  height: 44px;
  border-bottom: 1px solid var(--gold-dim);
  overflow: hidden; display: flex; align-items: center;
  background: var(--surface);
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.tick-item {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,242,236,0.4);
  padding: 0 var(--s48);
  display: flex; align-items: center; gap: var(--s16);
  height: 44px;
  border-right: 1px solid var(--gold-dim);
}
.tick-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   SECTION CHROME
───────────────────────────────────────────── */
.section-head {
  padding: var(--s64) 0 var(--s40);
  border-bottom: 1px solid var(--gold-dim);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--s12);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400; line-height: 1;
  letter-spacing: 0.04em; color: var(--text);
}
.section-meta {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,242,236,0.35);
}

/* ─────────────────────────────────────────────
   SERVICES (poster rail)
───────────────────────────────────────────── */
#services { padding: var(--s96) 0; border-bottom: 1px solid var(--gold-dim); }

.poster-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s24);
  margin-top: var(--s48);
}

.poster-card { cursor: default; transition: transform var(--t-base) var(--ease); }
.poster-card:hover { transform: translateY(-4px); }

.poster-thumb {
  aspect-ratio: 2/3;
  background: var(--surface);
  border-radius: 0;
  border: 1px solid rgba(245,242,236,0.07);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
  background-size: cover; background-position: center;
}
.poster-card:hover .poster-thumb {
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-mid);
}

.poster-thumb-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: var(--s48); position: relative;
}

.poster-num {
  position: absolute; top: var(--s20); left: var(--s20);
  font-family: var(--font-display);
  font-size: 72px; font-weight: 400;
  color: rgba(245,242,236,0.05);
  line-height: 1; pointer-events: none; user-select: none;
}

.poster-icon {
  font-size: 40px;
  filter: drop-shadow(0 0 20px rgba(200,165,80,0.4));
  z-index: 1; position: relative;
  transition: transform var(--t-base) var(--ease);
}
.poster-card:hover .poster-icon { transform: scale(1.08); }

.poster-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t-base) var(--ease);
}
.poster-card:hover .poster-overlay { opacity: 1; }

.poster-overlay-btn {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-mid);
  padding: var(--s12) var(--s24);
  background: transparent; cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.poster-overlay-btn:hover { background: var(--gold); color: var(--black); }

.poster-info { padding: var(--s16) 0 var(--s8); }
.poster-title {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 300; color: var(--text);
}
.poster-tags { display: flex; gap: var(--s8); margin-top: var(--s8); flex-wrap: wrap; }
.poster-tag {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); padding: 4px 10px;
  border: 1px solid var(--gold-dim);
}

/* ─────────────────────────────────────────────
   EVENTS
───────────────────────────────────────────── */
#events { padding: var(--s96) 0; border-bottom: 1px solid var(--gold-dim); }

.event-list { margin-top: var(--s48); }

.ev {
  display: grid;
  grid-template-columns: 120px 1fr 160px 180px 160px;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(245,242,236,0.08);
  transition: background var(--t-fast) var(--ease),
              padding var(--t-fast) var(--ease),
              margin var(--t-fast) var(--ease);
  cursor: default;
  text-decoration: none; color: inherit;
}
.ev:first-child { border-top: 1px solid rgba(245,242,236,0.08); }
.ev:hover {
  background: var(--gold-dim);
  padding-left: 12px; padding-right: 12px;
  margin-left: -12px; margin-right: -12px;
}

.ev-date { line-height: 1; }
.ev-mo {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,242,236,0.4);
}
.ev-dy {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 0.04em;
  color: var(--gold); line-height: 1.1;
}

.ev-name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300; color: var(--text);
}
.ev-venue {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(245,242,236,0.4); margin-top: var(--s4);
}

.ev-time {
  font-family: var(--font-body);
  font-size: 13px; color: rgba(245,242,236,0.45);
}

.ev-city {
  font-family: var(--font-body);
  font-size: 13px; color: rgba(245,242,236,0.5);
  letter-spacing: 0.05em;
}

.ev-action { display: flex; justify-content: flex-end; }
.ev-btn {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--gold-dim);
  background: transparent; color: var(--gold);
  cursor: pointer; white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast);
}
.ev-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.ev-btn:disabled {
  color: rgba(245,242,236,0.2);
  border-color: rgba(245,242,236,0.08);
  cursor: default; background: transparent;
}

/* ─────────────────────────────────────────────
   PROMO STRIPS
───────────────────────────────────────────── */
.promo-strip {
  border-bottom: 1px solid var(--gold-dim);
  overflow: hidden;
}

.promo-inner {
  display: grid; grid-template-columns: 5fr 7fr;
  min-height: 480px;
}
.promo-inner.reverse { grid-template-columns: 7fr 5fr; }

.promo-text {
  padding: var(--s96) var(--s64);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--gold-dim);
}
.promo-inner.reverse .promo-text {
  border-right: none; border-left: 1px solid var(--gold-dim);
  order: 2;
}
.promo-inner.reverse .promo-media { order: 1; }

.promo-eyebrow {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--s24);
}
.promo-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.15;
  color: var(--text); margin-bottom: var(--s24);
}
.promo-title em { font-style: italic; color: var(--gold); }
.promo-body {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.85;
  color: rgba(245,242,236,0.65);
  margin-bottom: var(--s40); max-width: 380px;
}
.promo-cta {
  display: inline-flex; align-items: center; gap: var(--s8);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: var(--s8);
  transition: border-color var(--t-fast), gap var(--t-fast);
}
.promo-cta:hover { border-color: var(--gold); gap: var(--s12); }
.promo-cta-arrow { transition: transform var(--t-fast) var(--ease); }
.promo-cta:hover .promo-cta-arrow { transform: translateX(4px); }

.promo-media {
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 480px;
}
.promo-media-bg {
  position: absolute; inset: 0;
}
.promo-media-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 0.85;
}
.promo-media-label {
  position: absolute; bottom: var(--s24); right: var(--s24);
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,242,236,0.25);
}
.promo-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--gold-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold-dim) 1px, transparent 1px);
  background-size: 48px 48px;
}
.promo-viz-bars {
  display: flex; align-items: flex-end; gap: 3px;
  height: 120px; z-index: 1; position: relative;
}
.pvb {
  width: 6px; background: var(--gold);
  border-radius: 2px 2px 0 0; opacity: 0.55;
  animation: vbp var(--d, .5s) ease-in-out infinite alternate;
}
@keyframes vbp {
  from { height: var(--a, 12px); }
  to   { height: var(--b, 40px); }
}

/* ─────────────────────────────────────────────
   MIXES
───────────────────────────────────────────── */
#mixes { padding: var(--s96) 0; border-bottom: 1px solid var(--gold-dim); }

.mix-list {
  margin-top: var(--s48);
  display: flex; flex-direction: column;
}

.mix-row {
  display: grid;
  grid-template-columns: var(--btn-h) 1fr minmax(180px, 280px) 80px;
  align-items: center;
  border-bottom: 1px solid rgba(245,242,236,0.08);
  transition: background var(--t-fast) var(--ease);
}
.mix-row:first-child { border-top: 1px solid rgba(245,242,236,0.08); }
.mix-row:hover { background: var(--gold-dim); }

.mix-play {
  width: var(--btn-h); height: var(--btn-h);
  border: none; background: transparent;
  color: rgba(245,242,236,0.3); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
  transition: color var(--t-fast) var(--ease);
  border-right: 1px solid rgba(245,242,236,0.08);
  margin: var(--s16) 0;
}
.mix-play:hover, .mix-play.active { color: var(--gold); }

.mix-info {
  padding: var(--s24) var(--s32);
  border-right: 1px solid rgba(245,242,236,0.08);
}
.mix-title {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 300; color: var(--text);
}
.mix-sub {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,242,236,0.4); margin-top: var(--s4);
}

.mix-wave {
  height: 44px; padding: 0 var(--s32);
  display: flex; align-items: center; gap: 1.5px;
  border-right: 1px solid rgba(245,242,236,0.08);
  overflow: hidden;
}
.wf { flex: 1; border-radius: 1px; }
.wf.p { background: var(--gold); }
.wf.u { background: rgba(245,242,236,0.1); }

.mix-dur {
  padding: 0 var(--s24);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(245,242,236,0.4); white-space: nowrap;
}

/* ─────────────────────────────────────────────
   NEWSLETTER
───────────────────────────────────────────── */
#newsletter { border-bottom: 1px solid var(--gold-dim); }
.newsletter-inner {
  padding: var(--s96) 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s64); align-items: center;
}

.nl-eyebrow {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--s16);
}
.nl-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: 0.04em; color: var(--text);
  margin-bottom: var(--s16);
}
.nl-body {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.85;
  color: rgba(245,242,236,0.65);
}

.nl-form { display: flex; flex-direction: column; gap: var(--s16); }
.nl-input-wrap { display: flex; gap: 0; align-items: flex-end; }
.nl-input {
  flex: 1;
  height: var(--input-h);
  background: transparent;
  border: none; border-bottom: 1px solid rgba(245,242,236,0.15);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  color: var(--text); outline: none;
  transition: border-color var(--t-fast);
}
.nl-input::placeholder { color: rgba(245,242,236,0.25); }
.nl-input:focus { border-bottom-color: var(--gold); }

.nl-small {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.04em; color: rgba(245,242,236,0.3);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   CONTACT / BOOKING
───────────────────────────────────────────── */
#contact {
  padding: var(--s96) 0;
  border-bottom: 1px solid var(--gold-dim);
}
.contact-grid {
  display: grid; grid-template-columns: 4fr 8fr;
  gap: var(--s64); margin-top: var(--s48);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--s32); }
.ci-label {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white); margin-bottom: var(--s4);
}
.ci-val {
  font-family: var(--font-body);
  font-size: 15px; color: rgba(245,242,236,0.7);
}
.ci-val a { color: var(--gold); text-decoration: none; transition: opacity var(--t-fast); }
.ci-val a:hover { opacity: 0.7; }

.contact-form { display: flex; flex-direction: column; gap: var(--s20); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s20); }

.ff {
  height: var(--input-h);
  background: transparent;
  border: none; border-bottom: 1px solid rgba(245,242,236,0.15);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  color: var(--text); outline: none;
  transition: border-color var(--t-fast);
  width: 100%;
}
.ff::placeholder { color: rgba(245,242,236,0.25); }
.ff:focus { border-bottom-color: var(--gold); }
textarea.ff { height: 100px; resize: none; }
select.ff {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a54a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  cursor: pointer;
}
select.ff option { background: var(--surfaceRaised); color: var(--text); }

/* ── Custom Select ── */
.custom-select-wrap { position: relative; width: 100%; }
.custom-select-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a54a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.custom-select-popup {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  z-index: 200; width: 100%;
  background: var(--surfaceRaised); border: 1px solid var(--gold-dim);
  overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.custom-select-popup.open { display: block; }
.custom-select-list { list-style: none; margin: 0; padding: var(--s8) 0; }
.custom-select-list li {
  padding: var(--s12) var(--s20);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300; color: var(--text);
  cursor: pointer; transition: background var(--t-fast), color var(--t-fast);
}
.custom-select-list li:hover { background: rgba(245,242,236,0.05); color: var(--gold); }
.custom-select-list li.selected { color: var(--gold); }

/* ── Date Picker ── */
.date-picker-wrap { position: relative; width: 100%; }
.date-picker-input { cursor: pointer; }
.date-picker-popup {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  z-index: 200; width: 300px;
  background: var(--surfaceRaised); border: 1px solid var(--gold-dim);
  padding: var(--s20); box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.date-picker-popup.open { display: block; }
.dp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s16); }
.dp-nav {
  background: none; border: none; color: rgba(245,242,236,0.35); font-size: 22px;
  cursor: pointer; padding: 0 var(--s8); line-height: 1;
  transition: color var(--t-fast);
}
.dp-nav:hover { color: var(--gold); }
.dp-month-label {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text);
}
.dp-days-header { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: var(--s8); }
.dp-days-header span { text-align: center; font-size: 11px; color: rgba(245,242,236,0.3); padding: var(--s4) 0; }
.dp-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.dp-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 13px; color: var(--text);
  cursor: pointer; transition: background var(--t-fast), color var(--t-fast);
}
.dp-day:hover { background: rgba(245,242,236,0.06); }
.dp-day.today { color: var(--gold); font-weight: 500; }
.dp-day.selected { background: var(--gold); color: var(--black); font-weight: 500; }
.dp-day.other-month { color: rgba(245,242,236,0.12); cursor: default; }
.dp-time {
  margin-top: var(--s16); padding-top: var(--s16);
  border-top: 1px solid rgba(245,242,236,0.1);
}
.dp-time + .dp-time { border-top: none; padding-top: 0; margin-top: var(--s12); }
.dp-time-label {
  display: block; font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,242,236,0.35); margin-bottom: var(--s8);
}
.dp-time-inputs { display: flex; align-items: center; gap: var(--s8); }
.dp-time-field {
  width: 52px; height: 36px; text-align: center;
  background: rgba(245,242,236,0.05);
  border: none; border-bottom: 1px solid rgba(245,242,236,0.2);
  color: var(--text); font-size: 15px; font-family: var(--font-body);
  outline: none; transition: border-color var(--t-fast);
}
.dp-time-field:focus { border-bottom-color: var(--gold); }
.dp-time-sep { color: rgba(245,242,236,0.3); font-size: 18px; }
.dp-ampm {
  height: 36px; padding: 0 var(--s8);
  background: rgba(245,242,236,0.05);
  border: none; border-bottom: 1px solid rgba(245,242,236,0.2);
  color: var(--text); font-family: var(--font-body); font-size: 13px;
  outline: none; cursor: pointer; transition: border-color var(--t-fast);
}
.dp-ampm:focus { border-bottom-color: var(--gold); }
.dp-confirm {
  margin-top: var(--s16); width: 100%; height: 38px;
  background: var(--gold); color: var(--black);
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none; cursor: pointer; transition: opacity var(--t-fast);
}
.dp-confirm:hover { opacity: 0.85; }

/* ─────────────────────────────────────────────
   PRESS / FLYERS GALLERY
───────────────────────────────────────────── */
#press { padding: var(--s96) 0; border-bottom: 1px solid var(--gold-dim); }

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s24);
  margin-top: var(--s48);
  align-items: start;
}

.flyer-card {
  cursor: pointer;
  transition: transform var(--t-base) var(--ease);
}
.flyer-card:hover { transform: translateY(-4px); }

.flyer-thumb {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.flyer-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* Outline sits on top of the image — always pixel-perfect */
.flyer-thumb::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(245,242,236,0.08);
  pointer-events: none;
  transition: border-color var(--t-base) var(--ease);
}
.flyer-card:hover .flyer-thumb::after { border-color: var(--gold-mid); }

.flyer-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.7);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--s12);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  z-index: 2;
}
.flyer-card:hover .flyer-overlay { opacity: 1; }

.flyer-overlay-btn {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer; text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.flyer-overlay-btn.view-btn {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.flyer-overlay-btn.view-btn:hover { background: var(--gold); color: var(--black); }
.flyer-overlay-btn.tickets-btn {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  display: inline-flex; align-items: center;
}
.flyer-overlay-btn.tickets-btn:hover { opacity: 0.85; }

.flyer-info {
  padding: var(--s12) 0 var(--s8);
}
.flyer-name {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 300; color: var(--text);
  margin-bottom: 4px;
}
.flyer-date {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}

/* ── All Shows Modal ── */
.shows-modal {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(6px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 60px 24px 40px;
  overflow-y: auto;
}
.shows-modal.open { display: flex; }
.shows-modal-inner {
  width: 100%; max-width: 900px;
  background: #111;
  border: 1px solid var(--gold-dim);
  padding: var(--s48) var(--s48) var(--s64);
}
.shows-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--s40);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: var(--s24);
}
.shows-modal-inner .ev {
  grid-template-columns: 56px 1fr 100px 140px 130px;
  gap: 20px;
}
.shows-modal-close {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: rgba(245,242,236,0.4);
  transition: color var(--t-fast);
  line-height: 1;
}
.shows-modal-close:hover { color: var(--gold); }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(8,8,8,0.94);
  display: none;
  align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }

.lightbox-close {
  position: absolute; top: 32px; right: 40px;
  font-size: 20px; color: rgba(245,242,236,0.4);
  background: none; border: none; cursor: pointer;
  line-height: 1;
  transition: color var(--t-fast);
}
.lightbox-close:hover { color: var(--gold); }

.lightbox-img {
  max-height: 85vh; max-width: 90vw;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.7);
}

/* ─────────────────────────────────────────────
   FOOTER — simplified 2-column
───────────────────────────────────────────── */
footer {
  padding: 40px 60px;
  border-top: 1px solid var(--gold-dim);
}

/* Collapse inner wrapper so footer-bottom fills the footer directly */
footer .inner { display: contents; }

/* Hide old 4-col footer structure */
.footer-top { display: none; }

/* Show only footer-bottom as the entire footer row */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
}

/* "MONDO" text via pseudo element on the left */
.footer-bottom::before {
  content: 'MONDO';
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: 0.12em;
  color: var(--gold);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(245,242,236,0.25);
}

/* Social icons now rendered as text links */
.footer-socials { display: flex; gap: var(--s20); }
.soc {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,242,236,0.4); text-decoration: none;
  transition: color var(--t-fast);
}
.soc:hover { color: var(--gold); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── FOCUS RING ─── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ─── Mobile Nav ─── */
.mob-menu-btn {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mob-menu-btn span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: transform var(--t-fast), opacity var(--t-fast);
}
.mob-nav {
  display: none;
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 999;
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid var(--gold-dim);
  padding: var(--s32) var(--s24);
  flex-direction: column; gap: var(--s4);
  backdrop-filter: blur(8px);
}
.mob-nav.open { display: flex; }
.mob-nav-link {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  padding: var(--s12) 0;
  border-bottom: 1px solid rgba(245,242,236,0.06);
  transition: color var(--t-fast);
}
.mob-nav-link:last-child { border-bottom: none; color: var(--gold); }
.mob-nav-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 900px)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --margin: 40px; }

  /* Header */
  header { padding: 0 var(--margin); }
  .header-nav { display: none; }
  .mob-menu-btn { display: flex; }

  /* Hero */
  .hero { padding: 80px var(--margin) 60px; }
  .hero-logo-stage { transform: translate(-50%, -70%); }

  /* Services */
  .poster-rail { grid-template-columns: repeat(2, 1fr); }

  /* Events */
  .ev { grid-template-columns: 56px 1fr 100px; gap: 16px; }
  .ev-time, .ev-city { display: none; }

  /* Promo strip */
  .promo-inner,
  .promo-inner.reverse { grid-template-columns: 1fr; }
  .promo-text { border-right: none; border-bottom: 1px solid var(--gold-dim); order: 1; padding: var(--s64) var(--margin); }
  .promo-inner.reverse .promo-text { border-left: none; border-bottom: 1px solid var(--gold-dim); }
  .promo-media { order: 2; min-height: 320px; }
  .promo-inner.reverse .promo-media { order: 2; }

  /* Mixes */
  .mix-row { grid-template-columns: var(--btn-h) 1fr 60px; }
  .mix-wave { display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: var(--s48); }

  /* Flyer grid */
  .flyer-grid { grid-template-columns: repeat(2, 1fr); }

  /* Shows modal */
  .shows-modal-inner { padding: var(--s32); }
  .shows-modal-inner .ev { grid-template-columns: 48px 1fr 120px; gap: 12px; }

  /* Newsletter */
  .newsletter-inner { grid-template-columns: 1fr; gap: var(--s40); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 540px)
═══════════════════════════════════════════ */
@media (max-width: 540px) {
  :root { --margin: 20px; }

  /* Header */
  header { padding: 0 var(--margin); }
  .header-actions .btn-primary { display: none; }
  .header-logo img { height: 48px; }

  /* Hero */
  .hero { padding: 80px var(--margin) 48px; }
  .hero-title { font-size: clamp(64px, 22vw, 120px); }
  .hero-sub { font-size: 15px; }
  .hero-actions-center { flex-direction: column; gap: var(--s12); width: 100%; }
  .hero-actions-center .btn-primary,
  .hero-actions-center .btn-secondary { width: 100%; justify-content: center; }
  .scroll-hint { display: none; }

  /* Section heads */
  .section-head { flex-direction: column; align-items: flex-start; gap: var(--s16); }

  /* Services */
  .poster-rail { grid-template-columns: 1fr 1fr; gap: var(--s12); }

  /* Events */
  .ev { grid-template-columns: 48px 1fr; gap: 12px; padding: 20px 0; }
  .ev-time, .ev-city, .ev-action { display: none; }

  /* Promo */
  .promo-text { padding: var(--s48) var(--margin); }

  /* Mixes */
  .mix-row { grid-template-columns: var(--btn-h) 1fr; }
  .mix-wave, .mix-dur { display: none; }
  .mix-info { padding: var(--s16); border-right: none; }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: var(--s16); }

  /* Flyer grid */
  .flyer-grid { grid-template-columns: 1fr; }

  /* Shows modal */
  .shows-modal { padding: 20px 12px; }
  .shows-modal-inner { padding: var(--s24) var(--s20); }
  .shows-modal-inner .ev { grid-template-columns: 48px 1fr; gap: 12px; }
  .shows-modal-inner .ev-time,
  .shows-modal-inner .ev-city,
  .shows-modal-inner .ev-action { display: none; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: var(--s16); text-align: center; }
  .footer-socials { justify-content: center; }
}
