/* ============================================================
   Top Flight Comedy — Dark Premium Design System
   Deep navy-black + gold (aviation / first-class aesthetic)
   Brand: Gold #F2B827 · Navy #003F71
   Fonts: Fjalla One (display) · Raleway (body)
   ============================================================ */

:root {
  /* Brand palette — dark premium */
  --gold: #f2b827;
  --gold-bright: #f6c945;
  --gold-deep: #c9920f;
  --navy: #003f71;
  --navy-bright: #0a5694;
  --navy-deep: #002744;

  --bg: #07090d;          /* near-black base (darker than before) */
  --bg-2: #0b0e14;
  --surface: #11151d;     /* cards */
  --surface-2: #171c27;   /* raised */
  --surface-3: #1e2531;

  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --line-gold: rgba(242, 184, 39, 0.32);

  --white: #ffffff;
  --text: #eef2f7;
  --muted: #a7b1c2;
  --muted-2: #74808f;

  --accent: var(--gold);

  /* Type scale (fluid) */
  --step--1: clamp(0.83rem, 0.78rem + 0.2vw, 0.95rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1: clamp(1.25rem, 1.1rem + 0.6vw, 1.6rem);
  --step-2: clamp(1.6rem, 1.35rem + 1.1vw, 2.3rem);
  --step-3: clamp(2.1rem, 1.6rem + 2.3vw, 3.6rem);
  --step-4: clamp(2.8rem, 1.9rem + 4vw, 5.5rem);

  /* Spacing & shape */
  --container: 1180px;
  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 22px 60px -18px rgba(0, 0, 0, 0.8);
  --shadow-sm: 0 12px 30px -14px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 16px 44px -12px rgba(242, 184, 39, 0.38);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: 'Raleway', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fjalla One', Impact, sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--white);
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--tint { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-block: 1px solid var(--line); }

.skip-link {
  position: absolute; left: 0; top: -60px; z-index: 200;
  background: var(--gold); color: var(--bg); padding: 0.7rem 1.2rem;
  font-weight: 800; border-radius: 0 0 8px 0; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Raleway', sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: var(--step--1); color: var(--gold);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head h2 { font-size: var(--step-3); margin: 0.6rem 0 0.7rem; }
.section-head p { color: var(--muted); font-size: var(--step-1); line-height: 1.5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.6rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 800; letter-spacing: 0.02em; font-size: var(--step-0);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #1a1304; box-shadow: var(--shadow-gold); }
.btn--primary:hover { box-shadow: 0 20px 54px -10px rgba(242, 184, 39, 0.6); }
.btn--accent { background: var(--navy); color: var(--white); border-color: var(--line-gold); }
.btn--accent:hover { background: var(--navy-bright); }
.btn--ghost { background: rgba(255, 255, 255, 0.03); color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { background: rgba(242, 184, 39, 0.08); border-color: var(--gold); color: var(--gold-bright); }
.btn--block { width: 100%; }
.btn--sm { padding: 0.6rem 1.1rem; font-size: var(--step--1); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 9, 13, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, border-color 0.3s;
}
.site-header.is-scrolled { background: rgba(7, 9, 13, 0.95); border-color: var(--line-2); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: 'Fjalla One', sans-serif; font-size: 1.15rem; letter-spacing: 0.04em; text-transform: uppercase; }
.brand img { width: 42px; height: 42px; border-radius: 50%; box-shadow: 0 0 0 2px var(--line-gold); }
.brand span b { color: var(--gold); }
.brand span small { display: block; font-family: 'Raleway', sans-serif; font-size: 0.6rem; letter-spacing: 0.3em; color: var(--muted-2); text-transform: uppercase; font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 0.3rem; list-style: none; padding: 0; }
.nav-links a { padding: 0.5rem 0.9rem; border-radius: 999px; font-weight: 700; font-size: 0.92rem; color: var(--muted); transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a[aria-current="true"] { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle { display: none; background: rgba(255,255,255,0.03); border: 1px solid var(--line-2); border-radius: 10px; width: 46px; height: 46px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 22px; height: 2px; background: var(--gold); position: relative; transition: 0.3s; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav[data-open="true"] .nav-toggle span { background: transparent; }
.nav[data-open="true"] .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav[data-open="true"] .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; inset: 74px 0 auto; flex-direction: column; align-items: stretch;
    background: var(--surface); border-bottom: 1px solid var(--line); padding: 1rem;
    gap: 0.2rem; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: 0.25s var(--ease);
  }
  .nav[data-open="true"] .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 0.85rem 1rem; font-size: 1.05rem; }
  .nav .nav-cta .btn--ghost { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 9vw, 7rem); border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(1100px 620px at 78% -10%, rgba(10, 86, 148, 0.5), transparent 60%),
              radial-gradient(900px 520px at 8% 115%, rgba(242, 184, 39, 0.12), transparent 55%),
              var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.95rem;
  border: 1px solid var(--line-gold); border-radius: 999px; font-size: var(--step--1);
  font-weight: 700; color: var(--gold-bright); background: rgba(242, 184, 39, 0.06);
}
.hero h1 { font-size: var(--step-4); text-transform: uppercase; margin: 1.1rem 0 0; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lead { font-size: var(--step-1); color: var(--muted); max-width: 35ch; margin-top: 1.2rem; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.hero-stats { display: flex; gap: clamp(1.2rem, 4vw, 2.4rem); margin-top: 2.4rem; flex-wrap: wrap; }
.hero-stats .num { font-family: 'Fjalla One', sans-serif; font-size: var(--step-2); color: var(--white); text-transform: uppercase; }
.hero-stats .lbl { font-size: var(--step--1); color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.12em; }

.hero-media { position: relative; }
.hero-media > img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line-2); aspect-ratio: 4/3.4; object-fit: cover; }
.hero-media .float-card {
  position: absolute; bottom: -22px; left: -18px; background: var(--surface-2);
  border: 1px solid var(--line-gold); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.7rem; max-width: 250px;
}
.hero-media .float-card .dot { width: 10px; height: 10px; border-radius: 50%; background: #38d27a; box-shadow: 0 0 0 4px rgba(56, 210, 122, 0.18); flex: none; }
.hero-media .float-card strong { display: block; font-size: 0.92rem; text-transform: uppercase; }
.hero-media .float-card small { color: var(--muted-2); font-size: 0.78rem; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 520px; }
}

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--bg-2); padding-block: 1.6rem; }
.trust p { text-align: center; color: var(--muted-2); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1rem; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.2rem, 5vw, 3rem); align-items: center; }
.trust-row span { font-family: 'Fjalla One', sans-serif; font-size: clamp(1rem, 2.4vw, 1.4rem); color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.trust-row span::before { content: "✦"; color: var(--gold); margin-right: 0.55rem; opacity: 0.85; }

/* ---------- Shows ---------- */
.shows-toolbar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.8rem; }
.chip {
  padding: 0.5rem 1.1rem; border-radius: 999px; border: 1px solid var(--line-2);
  background: var(--surface); color: var(--muted); font-weight: 700; font-size: 0.9rem; transition: 0.2s;
}
.chip[aria-pressed="true"] { background: var(--gold); color: #1a1304; border-color: var(--gold); }
.chip:hover { color: var(--white); border-color: var(--line-gold); }

.shows-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.4rem; }
.show-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.show-card:hover { transform: translateY(-6px); border-color: var(--line-gold); box-shadow: var(--shadow); }
.show-card .poster { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--navy-deep); }
.show-card .poster img { width: 100%; height: 100%; object-fit: cover; }
.show-card .poster .date-chip {
  position: absolute; top: 12px; left: 12px; background: rgba(7, 9, 13, 0.85); border: 1px solid var(--line-gold);
  border-radius: 12px; padding: 0.4rem 0.65rem; text-align: center; line-height: 1; backdrop-filter: blur(6px);
}
.show-card .poster .date-chip b { display: block; font-family: 'Fjalla One', sans-serif; color: var(--gold); font-size: 1.3rem; }
.show-card .poster .date-chip span { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.badge {
  position: absolute; top: 12px; right: 12px; padding: 0.3rem 0.7rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; border: 1px solid transparent;
}
.badge--soon { background: rgba(56, 210, 122, 0.16); color: #5ee49a; border-color: rgba(56, 210, 122, 0.4); }
.badge--soldout { background: rgba(255, 90, 90, 0.16); color: #ff8c8c; border-color: rgba(255, 90, 90, 0.4); }
.badge--few { background: rgba(242, 184, 39, 0.16); color: var(--gold-bright); border-color: var(--line-gold); }

.show-card .body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.show-card h3 { font-size: var(--step-1); text-transform: uppercase; }
.show-card .meta { display: flex; flex-direction: column; gap: 0.3rem; color: var(--muted); font-size: 0.9rem; }
.show-card .meta span { display: flex; align-items: center; gap: 0.5rem; }
.show-card .meta svg { flex: none; color: var(--gold); }
.show-card .price-row { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-top: auto; padding-top: 0.7rem; }
.show-card .price { font-family: 'Fjalla One', sans-serif; font-size: 1.05rem; text-transform: uppercase; }
.show-card .price small { display: block; font-family: 'Raleway', sans-serif; font-size: 0.72rem; color: var(--muted-2); font-weight: 700; }

.shows-empty { text-align: center; color: var(--muted); padding: 3rem 1rem; grid-column: 1 / -1; }

/* ---------- Calendar ---------- */
.calendar-wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1.6rem; align-items: start; }
.calendar { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.2rem 1.2rem 1.4rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-head h3 { font-family: 'Fjalla One', sans-serif; font-size: var(--step-1); text-transform: uppercase; }
.cal-nav { display: inline-flex; gap: 0.4rem; }
.cal-nav button { width: 38px; height: 38px; border: 1px solid var(--line-2); background: var(--surface-2); border-radius: 9px; color: var(--gold); font-size: 1.1rem; transition: 0.18s; }
.cal-nav button:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-dow { text-align: center; font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); padding-bottom: 0.3rem; }
.cal-cell { aspect-ratio: 1/1; border: 1px solid transparent; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--muted); position: relative; }
.cal-cell.empty { border: none; }
.cal-cell.today { border-color: var(--line-2); font-weight: 800; color: var(--white); }
.cal-cell.has-show { background: rgba(242, 184, 39, 0.14); border-color: var(--line-gold); color: var(--gold-bright); font-weight: 800; cursor: pointer; transition: 0.16s; }
.cal-cell.has-show:hover { background: var(--gold); color: var(--bg); }
.cal-cell.has-show .pip { position: absolute; bottom: 5px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.cal-cell.has-show:hover .pip { background: var(--bg); }

.cal-list { display: flex; flex-direction: column; gap: 0.7rem; }
.cal-list h3 { font-family: 'Fjalla One', sans-serif; text-transform: uppercase; font-size: var(--step-1); margin-bottom: 0.2rem; }
.cal-event { display: flex; gap: 0.9rem; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.7rem; cursor: pointer; transition: 0.2s; text-align: left; width: 100%; }
.cal-event:hover { border-color: var(--line-gold); transform: translateX(3px); }
.cal-event .cal-date { flex: none; width: 52px; text-align: center; border-right: 1px solid var(--line); padding-right: 0.7rem; }
.cal-event .cal-date b { display: block; font-family: 'Fjalla One', sans-serif; font-size: 1.4rem; color: var(--gold); line-height: 1; }
.cal-event .cal-date span { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); font-weight: 800; }
.cal-event .cal-info b { display: block; text-transform: uppercase; font-family: 'Fjalla One', sans-serif; font-size: 1rem; }
.cal-event .cal-info span { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 880px) { .calendar-wrap { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: 'Fjalla One', sans-serif; font-size: 2.2rem; color: var(--gold); display: block; margin-bottom: 0.6rem; }
.step h3 { font-size: var(--step-1); text-transform: uppercase; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.service { background: linear-gradient(180deg, var(--surface), var(--bg)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; transition: 0.3s var(--ease); }
.service:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.service .ico { font-size: 1.8rem; margin-bottom: 0.8rem; }
.service h3 { font-size: var(--step-1); text-transform: uppercase; margin-bottom: 0.5rem; }
.service p { color: var(--muted); font-size: 0.95rem; }
.service ul { list-style: none; padding: 0; margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.4rem; }
.service li { font-size: 0.9rem; color: var(--muted); display: flex; gap: 0.5rem; }
.service li::before { content: "✦"; color: var(--gold); }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.why-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.why-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.why-list .check { flex: none; width: 30px; height: 30px; border-radius: 50%; background: rgba(242, 184, 39, 0.14); color: var(--gold); display: grid; place-items: center; font-weight: 800; border: 1px solid var(--line-gold); }
.why-list b { display: block; text-transform: uppercase; font-family: 'Fjalla One', sans-serif; letter-spacing: 0.02em; }
.why-list span { color: var(--muted); font-size: 0.95rem; }
.why-media img { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line-2); }
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } .why-media { order: -1; } }

/* ---------- About founder ---------- */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.founder-photo img { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line-2); aspect-ratio: 1/1; object-fit: cover; background: var(--surface-2); padding: 8%; }
.founder blockquote { border: 0; margin: 1.2rem 0 0; padding-left: 1.2rem; border-left: 3px solid var(--gold); color: var(--muted); font-style: italic; }
@media (max-width: 780px) { .founder { grid-template-columns: 1fr; } .founder-photo { max-width: 320px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: 'Fjalla One', sans-serif; font-size: var(--step-1); text-transform: uppercase; color: var(--text); }
.faq-q .mark { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-gold); display: grid; place-items: center; color: var(--gold); transition: 0.3s; }
.faq-q[aria-expanded="true"] .mark { transform: rotate(45deg); background: var(--gold); color: var(--bg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s var(--ease); }
.faq-a div { padding: 0 0 1.3rem; color: var(--muted); }

/* ---------- CTA / newsletter band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border: 1px solid var(--line-gold); border-radius: calc(var(--radius) + 6px);
  padding: clamp(2rem, 5vw, 3.5rem); text-align: center; position: relative; overflow: hidden;
}
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 120%, rgba(242, 184, 39, 0.2), transparent 60%); pointer-events: none; }
.cta-band h2 { font-size: var(--step-3); text-transform: uppercase; position: relative; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 50ch; margin: 0.8rem auto 0; position: relative; }
.newsletter { display: flex; gap: 0.6rem; max-width: 480px; margin: 1.6rem auto 0; position: relative; flex-wrap: wrap; }
.newsletter input { flex: 1; min-width: 200px; padding: 0.95rem 1.2rem; border-radius: 999px; border: 1px solid var(--line-gold); background: rgba(0, 0, 0, 0.35); color: var(--white); font-size: var(--step-0); }
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.55); }
.form-note { font-size: 0.8rem; color: rgba(255, 255, 255, 0.62); margin-top: 0.8rem; position: relative; }
.form-msg { margin-top: 0.9rem; font-weight: 800; min-height: 1.2em; position: relative; color: #ffb3b3; }
.form-msg.ok { color: #6ee7a0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line-gold); padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-grid h4 { font-family: 'Raleway', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--gold); margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-grid a { color: var(--muted); font-size: 0.93rem; transition: color 0.2s; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-brand p { color: var(--muted); font-size: 0.93rem; max-width: 34ch; margin-top: 0.9rem; }
.socials { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--muted); transition: 0.2s; }
.socials a:hover { color: var(--bg); background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.85rem; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---------- Ticket / detail modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.modal[data-open="true"] { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(4, 6, 9, 0.8); backdrop-filter: blur(6px); }
.modal-card { position: relative; width: min(540px, 100%); max-height: 90vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--line-gold); border-radius: var(--radius); box-shadow: var(--shadow); animation: pop 0.25s var(--ease); }
@keyframes pop { from { transform: translateY(16px) scale(0.98); opacity: 0; } }
.modal-poster { aspect-ratio: 16/8; background: var(--navy-deep); overflow: hidden; }
.modal-poster img { width: 100%; height: 100%; object-fit: cover; }
.modal-close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; background: rgba(7, 9, 13, 0.82); border: 1px solid var(--line-2); color: var(--white); font-size: 1.3rem; line-height: 1; }
.modal-body { padding: 1.5rem clamp(1.2rem, 4vw, 1.8rem) 1.8rem; }
.modal-body h3 { font-size: var(--step-2); text-transform: uppercase; }
.modal-meta { display: flex; flex-direction: column; gap: 0.4rem; color: var(--muted); margin: 0.8rem 0 1.1rem; font-size: 0.95rem; }
.modal-meta span { display: flex; align-items: center; gap: 0.5rem; }
.modal-meta svg { color: var(--gold); flex: none; }
.modal-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.3rem; }
.modal-dates { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.3rem; }
.modal-dates .d { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0.9rem; border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--surface-2); transition: 0.2s; }
.modal-dates .d:hover { border-color: var(--gold); }
.modal-dates .d b { font-family: 'Fjalla One', sans-serif; text-transform: uppercase; }
.modal-dates .d small { color: var(--muted-2); }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: var(--muted-2); font-size: 0.8rem; margin-top: 0.9rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

body.no-scroll { overflow: hidden; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
