:root {
  --bg: #030303;
  --bg-soft: #0a0a0a;
  --panel: rgba(8, 8, 8, 0.92);
  --panel-soft: rgba(12, 12, 12, 0.9);
  --text: #f6f1e8;
  --muted: #cfc6b7;
  --line: rgba(255, 194, 61, 0.28);
  --line-soft: rgba(255,255,255,.08);
  --red: #ff2d1c;
  --red-deep: #b90900;
  --gold: #e8b043;
  --gold-bright: #ffc54d;
  --white: #ffffff;
  --max: 1280px;
  --shadow: 0 16px 60px rgba(0,0,0,.5);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 174, 0, 0.1), transparent 22%),
    radial-gradient(circle at left 30%, rgba(255, 33, 12, 0.1), transparent 18%),
    linear-gradient(180deg, #040404 0%, #020202 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
video { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }
.site-shell { overflow: clip; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 1.2rem 0 2rem; position: relative; }
.section-tight { padding-top: .5rem; }

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(0,0,0,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-row {
  min-height: 86px; display: grid; grid-template-columns: auto 1fr auto auto; gap: 1rem; align-items: center;
}
.brand { display:flex; align-items:center; gap:.85rem; min-width:0; }
.brand-mark { display:grid; gap:.12rem; }
.brand-mark strong { font-size: .95rem; line-height:1; text-transform: uppercase; letter-spacing: .06em; }
.brand-mark span { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.nav-cta {
  min-height: 46px; display:inline-flex; align-items:center; justify-content:center; padding: .8rem 1rem;
  border:1px solid rgba(255,194,61,.55); background: rgba(255,194,61,.08); color: var(--gold-bright);
  text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; font-weight: 800; white-space: nowrap;
}
.brand img { width: 154px; }
.nav-links {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}
.nav-links a, .mobile-menu a, .footer-links a {
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800;
}
.nav-links a:hover, .footer-links a:hover, .mobile-menu a:hover { color: var(--gold-bright); }
.nav-socials { display:flex; align-items:center; gap:.55rem; }
.nav-socials a {
  width: 34px; height: 34px; border:1px solid rgba(255,194,61,.45); display:grid; place-items:center;
  color: var(--gold-bright); background: rgba(255,194,61,.06);
}
.mobile-toggle {
  display:none; width: 46px; height: 46px; border:1px solid rgba(255,255,255,.1); background: transparent; color: #fff;
}
.mobile-menu { display:none; padding: 0 0 1rem; }
.mobile-menu.open { display:grid; gap:.6rem; }
.mobile-menu a { padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }

.hero-cinema {
  position: relative; padding: 0; min-height: min(100vh - 86px, 980px); display:flex; align-items: stretch;
}
.hero-video-shell {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center;
}
.hero-film {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.65) 33%, rgba(0,0,0,.45) 56%, rgba(0,0,0,.76) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3) 55%, rgba(0,0,0,.84) 100%);
}
 .hero-electric { display:none; }
.hero-overlay {
  position: relative; z-index: 2; width: 100%; display:flex; align-items:center; min-height: min(100vh - 86px, 980px);
}
.hero-copy-cinema {
  width: min(100%, 610px); padding: 7rem 0 6rem;
}
.hero-copy-cinema h1 {
  margin: 0 0 1rem; font-size: clamp(3rem, 7.6vw, 6.3rem); line-height: .92; text-transform: uppercase; letter-spacing: -.05em;
}
.hero-copy-cinema h1 span { display:block; }
.accent-red { color: var(--red); }
.accent-gold { color: var(--gold); }
.hero-copy-cinema p {
  margin: 0; max-width: 560px; font-size: clamp(1rem, 1.55vw, 1.55rem); line-height: 1.35; color: #f1e7d8;
}
.hero-actions {
  display:flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.7rem;
}
.button {
  appearance:none; border:1px solid rgba(255,42,25,.8); background: linear-gradient(180deg, #e3190a, #c50c00);
  color:#fff; text-transform: uppercase; letter-spacing:.11em; font-size:.8rem; font-weight: 800; padding: 1rem 1.5rem;
  min-height: 52px; display:inline-flex; align-items:center; justify-content:center; text-align:center; box-shadow: var(--shadow);
}
.button:hover { transform: translateY(-1px); }
.button-secondary {
  background: rgba(0,0,0,.45); border-color: rgba(255,194,61,.7); color: #fff;
}
.button-gold {
  background: linear-gradient(180deg, #d59a32, #b57d22); border-color: rgba(255,194,61,.8); color: #111;
}
.small-button { min-height: 48px; padding: .9rem 1.3rem; }

.strip-panel { margin-top: -2.5rem; z-index: 3; }
.network-strip,
.dual-panel,
.why-band,
.final-cta,
.footer-main {
  background: linear-gradient(180deg, rgba(11,11,11,.96), rgba(6,6,6,.96));
  border: 1px solid rgba(232,176,67,.55);
  box-shadow: var(--shadow);
}
.network-strip {
  display:grid; grid-template-columns: 1.05fr repeat(5, 1fr); gap: 0; overflow: hidden;
}
.strip-title,
.strip-item { padding: 1.45rem 1.1rem; min-height: 180px; }
.strip-title {
  display:flex; align-items:center; justify-content:center; text-transform: uppercase; color: var(--gold-bright);
  font-size: clamp(1.5rem, 2vw, 2rem); font-weight: 900; line-height: .95; letter-spacing: -.03em;
  border-right: 1px solid rgba(255,255,255,.1);
}
.strip-item {
  text-align: center; display:grid; align-content:center; gap:.45rem; border-right: 1px solid rgba(255,255,255,.08);
}
.strip-item:last-child { border-right: 0; }
.strip-icon { color: var(--red); font-size: 1.6rem; }
.strip-item h3, .booking-card h3, .featured-copy h3 { margin:0; text-transform: uppercase; font-size: 1rem; letter-spacing: .04em; }
.strip-item p, .booking-card p, .why-item p, .featured-copy small, .final-cta-copy p, .footer-bottom, .page-hero p, .profile-copy p, .footer-main p {
  color: var(--muted); line-height: 1.45;
}

.section-title-block h2, .feature-head h2, .page-hero h1 {
  margin: 0; text-transform: uppercase; letter-spacing: -.03em; line-height: .95; font-size: clamp(2rem, 4vw, 3rem);
}
.center-title { text-align:center; }
.dual-panel { padding: 1.1rem; position: relative; overflow:hidden; }
.dual-panel::before {
  content:""; position:absolute; inset:0; background:
    linear-gradient(120deg, transparent 0 25%, rgba(255,43,28,.12) 40%, transparent 48%),
    linear-gradient(72deg, transparent 55%, rgba(255,196,77,.18) 70%, transparent 82%);
  pointer-events:none;
}
.booking-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem; margin-top: 1rem; }
.booking-card {
  min-height: 238px; padding: 1.4rem; border: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.28); position:relative;
  display:flex; flex-direction:column; justify-content:flex-start; gap:.8rem;
}
.booking-card-gold { border-color: rgba(255,194,61,.32); }
.booking-icon { color: var(--red); font-size: 1.5rem; }

.why-band { padding: 1rem 1.2rem 1.2rem; }
.why-row { display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 1rem; margin-top: 1rem; }
.why-item { display:flex; align-items:flex-start; gap: .8rem; }
.why-item span { color: var(--red); font-size: 1.2rem; line-height: 1; margin-top: .08rem; }
.why-item p { margin: 0; text-transform: uppercase; font-size: .96rem; }

.feature-head {
  display:flex; justify-content:space-between; align-items:center; gap:1rem; margin-bottom: 1rem;
}
.feature-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.feature-head a { text-transform: uppercase; letter-spacing: .12em; color: var(--gold-bright); font-size: .82rem; font-weight: 800; }
.featured-grid { display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: .9rem; }
.featured-card {
  border: 1px solid rgba(232,176,67,.55); background: linear-gradient(180deg, rgba(10,10,10,.96), rgba(4,4,4,.98));
  min-width: 0; overflow: hidden; position: relative; box-shadow: var(--shadow);
}
.featured-image-wrap { aspect-ratio: .82; overflow:hidden; position:relative; }
.featured-image-wrap img { width:100%; height:100%; object-fit: cover; object-position: center top; transition: transform .7s ease; }
.featured-card:hover img { transform: scale(1.04); }
.featured-copy {
  padding: .85rem .8rem 1rem; text-align:center; border-top:1px solid rgba(255,255,255,.08);
}
.featured-copy span {
  display:block; color: var(--gold); text-transform: uppercase; font-size: .8rem; letter-spacing: .08em; margin-top: .2rem;
}
.featured-copy small { display:block; margin-top: .35rem; font-size: .82rem; }
.shine-on-scroll::after {
  content:""; position:absolute; top:-10%; left:-130%; width:58%; height:125%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), rgba(255,230,160,.5), rgba(255,255,255,.1), transparent);
  transform: skewX(-22deg); opacity: 0;
}
.shine-on-scroll.in-view::after { animation: shineSweep 1.15s ease-out .2s 1 forwards; opacity: 1; }

.final-cta {
  display:grid; grid-template-columns: auto 1fr auto; gap:1rem; align-items:center; padding: 1.25rem 1.35rem;
}
.final-cta-mark {
  width: 86px; height: 86px; border:1px solid rgba(255,42,25,.7); color: var(--red); display:grid; place-items:center; font-size: 2rem;
}
.final-cta-copy h2 { margin: 0 0 .4rem; text-transform: uppercase; font-size: clamp(1.8rem, 3.2vw, 3rem); line-height: .94; }
.final-cta-copy p { margin: 0; max-width: 700px; }
.final-cta-actions { display:flex; gap: 1rem; flex-wrap: wrap; }

.site-footer { padding: 1rem 0 1.5rem; }
.footer-main {
  padding: 1rem 1.2rem; display:grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items:center;
}
.footer-brand img { width: 136px; }
.footer-main .footer-brand { justify-self:center; }
.footer-links { display:flex; justify-content:center; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom-home { justify-content: center; padding-top: .8rem; color: var(--muted); }
.footer-bottom { display:flex; gap:1rem; }

/* generic pages */
.page-hero { padding: 3.5rem 0 1.4rem; }
.page-hero .eyebrow, .eyebrow {
  display:inline-block; color: var(--gold-bright); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: .74rem; margin-bottom: .6rem;
}
.page-hero h1 { margin-bottom: .8rem; }
.category-grid, .why-grid, .venue-grid, .value-grid, .form-grid {
  display:grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0,1fr));
}
.profile-card, .card, .panel, .value-card, .form-shell {
  background: linear-gradient(180deg, rgba(12,12,12,.98), rgba(6,6,6,.96));
  border: 1px solid rgba(232,176,67,.35); box-shadow: var(--shadow);
}
.profile-card { overflow:hidden; }
.profile-image-wrap { aspect-ratio: 1.08; position:relative; overflow:hidden; }
.profile-image-wrap img { width:100%; height:100%; object-fit: cover; }
.profile-badge {
  position:absolute; top:.8rem; left:.8rem; background: rgba(0,0,0,.72); border:1px solid rgba(255,194,61,.5); padding: .4rem .58rem;
  text-transform: uppercase; letter-spacing: .13em; font-size: .68rem; font-weight:800;
}
.profile-copy { padding: 1rem; display:grid; gap:.9rem; }
.profile-copy h3 { margin:0; text-transform: uppercase; }
.profile-meta, .tags, .split-actions, .list-inline, .form-tabs { display:flex; gap:.55rem; flex-wrap: wrap; }
.profile-meta span, .tags span, .list-inline span, .form-tab {
  border:1px solid rgba(255,255,255,.09); padding: .42rem .58rem; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; color: #e0d7c8;
}
.split-actions .button { flex:1 1 180px; }
.card, .panel, .value-card, .form-shell { padding: 1.1rem; }
.footer-shell {
  padding: 1.25rem; display:grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 1rem; background: linear-gradient(180deg, rgba(12,12,12,.96), rgba(6,6,6,.96)); border:1px solid rgba(232,176,67,.35);
}
.footer-logo-center { display:flex; justify-content:center; align-items:center; padding-bottom: 1rem; }
.footer-logo-center img { width: 136px; }
.footer-main, .footer-shell { text-align: left; }
.footer-bottom, .footer-bottom-home {
  display:flex; justify-content:center; align-items:center; gap:1rem; flex-wrap:wrap; text-align:center;
}
.footer-stack { display:grid; gap:.45rem; }
input, select, textarea {
  width: 100%; min-height: 52px; padding: .95rem 1rem; border:1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.35); color: #fff;
}
textarea { min-height: 160px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: rgba(255,194,61,.8); box-shadow: 0 0 0 3px rgba(255,194,61,.12); }
.hidden { display:none !important; }
.cta-band { border:1px solid rgba(232,176,67,.35); padding: 1.2rem; background: linear-gradient(135deg, rgba(255,43,28,.14), rgba(255,194,61,.07) 50%, rgba(255,255,255,.02)); }
.embed-shell iframe { width:100%; border:0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@keyframes electricPulse {
  0% { opacity: .34; transform: translateX(0) scaleY(1); }
  100% { opacity: .62; transform: translateX(20px) scaleY(1.03); }
}
@keyframes electricPulseB {
  0% { opacity: .42; transform: translateX(0) scaleY(1); }
  100% { opacity: .72; transform: translateX(-18px) scaleY(1.05); }
}
@keyframes shineSweep {
  from { left:-130%; }
  to { left: 160%; }
}

@media (max-width: 1120px) {
  .network-strip { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .strip-title { grid-column: 1 / -1; min-height: auto; border-right:0; border-bottom:1px solid rgba(255,255,255,.1); padding: 1rem; }
  .featured-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .why-row { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 920px) {
  .nav-links, .nav-socials, .nav-cta { display:none; }
  .mobile-toggle { display:inline-grid; place-items:center; justify-self:end; width: 54px; height: 54px; font-size: 1.45rem; border-radius: 999px; }
  .hero-cinema, .hero-overlay { min-height: 78vh; }
  .booking-grid, .final-cta, .footer-main, .footer-shell, .category-grid, .why-grid, .venue-grid, .value-grid, .form-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .why-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .final-cta-actions, .hero-actions { width:100%; }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 1rem), var(--max)); }
  .nav-row { grid-template-columns: minmax(0,1fr) auto; gap: .75rem; }
  .brand { min-width: 0; }
  .brand img { width: 132px; }
  .brand-mark span { display:none; }
  .hero-cinema, .hero-overlay { min-height: calc(100svh - 86px); }
  .hero-copy-cinema { width: 100%; padding: 4.7rem 0 4rem; }
  .hero-copy-cinema h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .hero-copy-cinema p { font-size: 1rem; max-width: 100%; }
  .hero-actions { gap: .8rem; }
  .hero-actions .button, .final-cta-actions .button, .split-actions .button { width: 100%; flex: 1 1 100%; }
  .strip-panel { margin-top: -1.25rem; }
  .network-strip { grid-template-columns: 1fr; }
  .strip-item { min-height: auto; text-align:left; padding: 1rem; border-right:0; border-top:1px solid rgba(255,255,255,.08); }
  .strip-title { justify-content:flex-start; text-align:left; }
  .feature-head { flex-direction: column; align-items:flex-start; }
  .featured-grid, .why-row { grid-template-columns: 1fr; }
  .featured-image-wrap { aspect-ratio: 1.02; }
  .footer-links { justify-content:flex-start; }
  .final-cta-mark { width: 72px; height:72px; }
}


:root { --header-h: 86px; --profile-photo-ratio: 1 / 1.08; }

/* spark overlays removed */
.hero-video-shell::before,
.hero-video-shell::after,
.network-strip::before,
.network-strip::after,
.dual-panel::before,
.dual-panel::after,
.why-band::before,
.why-band::after,
.final-cta::before,
.final-cta::after,
.featured-card::before,
.profile-image-wrap::before,
.split-media::before,
.featured-card::after,
.profile-image-wrap::after,
.split-media::after {
  content: none !important;
  animation: none !important;
  background: none !important;
}
.network-strip, .dual-panel, .why-band, .final-cta, .featured-card, .profile-image-wrap, .split-media { position: relative; }
/* hero video opens the page on desktop and mobile */
.hero-cinema {
  min-height: calc(100svh - var(--header-h));
  padding-top: 0;
}
.hero-video-shell {
  inset: 0;
  min-height: calc(100svh - var(--header-h));
}
.hero-overlay {
  min-height: calc(100svh - var(--header-h));
  align-items: flex-end;
}
.hero-copy-cinema { padding: 5rem 0 4rem; }
.hero-video { object-position: center center; transform: scale(1.02); }

/* stronger form styling with same flow */
.form-shell {
  background:
    linear-gradient(180deg, rgba(13,13,13,.98), rgba(6,6,6,.96)),
    radial-gradient(circle at top left, rgba(255,45,28,.12), transparent 30%),
    radial-gradient(circle at top right, rgba(255,197,77,.1), transparent 30%);
  padding: 1.35rem;
}
.form-tabs { margin-bottom: 1rem; }
.form-tab {
  background: rgba(255,255,255,.02);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.form-tab.active {
  border-color: rgba(255,194,61,.55);
  background: linear-gradient(180deg, rgba(255,45,28,.14), rgba(255,197,77,.08));
  color: var(--white);
}
label { display: grid; gap: .45rem; color: var(--muted); font-size: .95rem; }
form .hero-actions { align-items: stretch; }

/* consistent image containers */
.featured-card,
.profile-card,
.split-media { min-width: 0; }
.featured-image-wrap,
.profile-image-wrap,
.split-media {
  background: #090909;
  border-bottom: 1px solid rgba(232,176,67,.22);
}
.featured-image-wrap {
  aspect-ratio: 0.82;
  display: flex; align-items: center; justify-content: center;
}
.profile-image-wrap {
  aspect-ratio: var(--profile-photo-ratio);
  display: flex; align-items: center; justify-content: center;
}
.split { display: grid; grid-template-columns: minmax(320px, 420px) minmax(0, 1fr); gap: 1.25rem; align-items: start; }
.split-media {
  aspect-ratio: var(--profile-photo-ratio);
  overflow: hidden;
  border: 1px solid rgba(232,176,67,.35);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.featured-image-wrap img,
.profile-image-wrap img,
.split-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block;
}
.split-media img { position: relative; z-index: 0; }
.featured-card::after,
.profile-image-wrap::after,
.split-media::after {
  content:""; position:absolute; top:-12%; left:-130%; width:54%; height:140%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), rgba(255,231,165,.66), rgba(255,255,255,.12), transparent);
  transform: skewX(-22deg); opacity: 0; pointer-events:none; z-index:3;
}
.featured-card.in-view::after,
.profile-card.in-view .profile-image-wrap::after,
.split-media.in-view::after { animation: shineSweep 1.2s ease-out .12s 1 forwards; opacity: 1; }

/* mobile refinements */
@media (max-width: 920px) {
  .hero-cinema,
  .hero-video-shell,
  .hero-overlay {
    min-height: calc(100svh - var(--header-h));
  }
  .hero-video-shell {
    position: absolute;
    inset: 0;
  }
  .hero-video { object-position: center center; transform: none; }
  .hero-overlay { margin-top: 0; align-items: flex-end; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  :root { --header-h: 82px; }
  .hero-cinema,
  .hero-video-shell,
  .hero-overlay {
    min-height: calc(100svh - var(--header-h));
  }
  .hero-overlay { margin-top: 0; }
  .hero-copy-cinema { padding: 1.5rem 0 3rem; }
  .footer-shell, .footer-main { text-align:center; }
  .footer-links, .footer-stack { justify-items:center; }
  .form-shell { padding: 1rem; }
  .form-tab { width: 100%; }
  .featured-image-wrap,
  .profile-image-wrap,
  .split-media { aspect-ratio: 1 / 1.12; }
}
