:root {
  color-scheme: dark;
  --bg: #060607;
  --bg-soft: #0c0c10;
  --panel: #141418;
  --panel-strong: #1c1c24;
  --text: #f7f3ea;
  --muted: #a8a2a2;
  --gold: #e4c46d;
  --gold-strong: #f2d889;
  --gold-glow: rgba(228, 196, 109, 0.15);
  --red: #b21f3a;
  --blue: #3f7df6;
  --purple: #8b5cf6;
  --line: rgba(247, 243, 234, 0.1);
  --line-strong: rgba(247, 243, 234, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(228, 196, 109, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --header-height: 78px;
  --transition: 250ms cubic-bezier(0.22, 1, 0.36, 1);
  font-family:
  "Space Grotesk",
  ui-sans-serif,
  system-ui,
  -apple-system,
  BlinkMacSystemFont,
  "Segoe UI",
  sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse 100% 50% at 50% -10%, rgba(178, 31, 58, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(63, 125, 246, 0.06), transparent),
    linear-gradient(180deg, rgba(6, 6, 7, 0.92), rgba(6, 6, 7, 1) 620px),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(228, 196, 109, 0.32);
}

.skip-link {
  background: var(--gold);
  color: #111;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(-160%);
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  background: rgba(6, 6, 7, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--header-height);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: rgba(6, 6, 7, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 26px;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(228, 196, 109, 0.96), rgba(178, 31, 58, 0.84));
  color: #110f0b;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  width: 42px;
}

.brand-text {
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 6px;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(247, 243, 234, 0.75);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 14px;
  position: relative;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(228, 196, 109, 0.08);
  border-color: rgba(228, 196, 109, 0.2);
  color: var(--gold-strong);
  outline: none;
  transform: translateY(-1px);
}

.nav-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  display: none;
  height: 46px;
  justify-content: center;
  width: 46px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.nav-toggle:hover {
  background: rgba(228, 196, 109, 0.1);
  border-color: rgba(228, 196, 109, 0.25);
}

.nav-toggle svg,
.button svg,
.hero-facts svg,
.info-card svg,
.feature-strip svg,
.gallery-overlay svg,
.map-address svg,
.stripe-panel svg,
.drive-link svg {
  height: 18px;
  stroke-width: 2;
  width: 18px;
}

.hero {
  align-items: end;
  display: grid;
  min-height: min(850px, 92svh);
  overflow: hidden;
  padding: calc(var(--header-height) + 60px) 24px 54px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(228, 196, 109, 0.08), transparent),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(178, 31, 58, 0.06), transparent);
  z-index: 0;
  pointer-events: none;
}

.hero-media {
  background-image:
    linear-gradient(90deg, rgba(6, 6, 7, 0.84), rgba(6, 6, 7, 0.28) 55%, rgba(6, 6, 7, 0.76)),
    url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=2400&q=86");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
  z-index: -2;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.02) 0%, rgba(6, 6, 7, 0.4) 50%, var(--bg) 100%),
    linear-gradient(90deg, rgba(178, 31, 58, 0.15), transparent 44%, rgba(63, 125, 246, 0.12));
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-content {
  margin: 0 auto;
  max-width: 1220px;
  width: 100%;
}

.eyebrow,
.section-kicker {
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(228, 196, 109, 0.15);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 0.82;
  margin-bottom: 22px;
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hero-copy {
  color: rgba(247, 243, 234, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  max-width: 720px;
  line-height: 1.6;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.hero-facts span {
  align-items: center;
  background: rgba(10, 10, 12, 0.65);
  border: 1px solid rgba(228, 196, 109, 0.12);
  backdrop-filter: blur(8px);
  display: inline-flex;
  gap: 9px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hero-facts span:hover {
  background: rgba(228, 196, 109, 0.08);
  border-color: rgba(228, 196, 109, 0.25);
  transform: translateY(-2px);
}

.hero-facts svg {
  color: var(--gold);
}

.hero-actions,
.form-footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.button:hover::after {
  opacity: 1;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #130f08;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--gold-strong), #f5df9a);
  box-shadow: 0 16px 48px rgba(228, 196, 109, 0.3);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(228, 196, 109, 0.42);
}

.countdown {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(88px, 126px));
  margin-top: 34px;
  max-width: 560px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(228, 196, 109, 0.1);
  border-radius: 16px;
  min-height: 98px;
  padding: 18px 12px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.countdown div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.countdown div:hover {
  background: rgba(228, 196, 109, 0.06);
  border-color: rgba(228, 196, 109, 0.25);
  transform: translateY(-4px);
}

.countdown strong {
  color: var(--gold-strong);
  display: block;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.95;
  text-shadow: 0 0 30px rgba(228, 196, 109, 0.15);
}

.countdown span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section {
  padding: 98px 24px;
  position: relative;
}

.section-inner {
  margin: 0 auto;
  max-width: 1220px;
  width: 100%;
}

.intro-band {
  background:
    linear-gradient(90deg, rgba(228, 196, 109, 0.08), rgba(178, 31, 58, 0.06), rgba(63, 125, 246, 0.06)),
    linear-gradient(180deg, rgba(6, 6, 7, 0.4), rgba(6, 6, 7, 0.8)),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: 58px;
  padding-top: 58px;
}

.intro-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.65fr 1.25fr 1fr;
}

.intro-grid h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
}

.intro-grid p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading {
  margin-bottom: 42px;
  max-width: 760px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.details-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  min-height: 230px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(228, 196, 109, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.info-card:hover {
  border-color: rgba(228, 196, 109, 0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card svg {
  color: var(--gold);
  height: 26px;
  margin-bottom: 22px;
  width: 26px;
  filter: drop-shadow(0 0 8px rgba(228, 196, 109, 0.2));
}

.info-card h3 {
  margin-bottom: 10px;
}

.info-card p {
  color: var(--muted);
  margin: 0;
}

.info-card small {
  color: rgba(247, 243, 234, 0.68);
}

.location-card {
  overflow: hidden;
  position: relative;
}

.location-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(228,196,109,0.16), transparent 68%);
}

.mini-map-btn {
  align-self: flex-start;
  display: inline-flex;
  margin-top: auto;
  padding: 10px 14px;
  background: rgba(228, 196, 109, 0.12);
  border: 1px solid rgba(228, 196, 109, 0.34);
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 900;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

.mini-map-btn:hover {
  background: rgba(228, 196, 109, 0.2);
}

.feature-strip {
  align-items: center;
  background: linear-gradient(135deg, var(--panel), rgba(20, 20, 26, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
  padding: 16px 18px;
}

.feature-strip span {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: inline-flex;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  transition: background var(--transition), border-color var(--transition);
}

.feature-strip span:hover {
  background: rgba(228, 196, 109, 0.08);
  border-color: rgba(228, 196, 109, 0.15);
}

.poster-showcase {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.1fr repeat(2, 0.8fr);
  margin: 16px 0;
}

.poster-card {
  align-content: end;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.1), rgba(6, 6, 7, 0.86)),
    linear-gradient(140deg, rgba(178, 31, 58, 0.62), rgba(228, 196, 109, 0.28), rgba(63, 125, 246, 0.34)),
    var(--panel);
  border: 1px solid rgba(228, 196, 109, 0.2);
  border-radius: var(--radius-lg);
  display: grid;
  overflow: hidden;
  padding: 22px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.poster-card::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 22px),
    linear-gradient(rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 22px);
  content: "";
  inset: 0;
  opacity: 0.2;
  position: absolute;
}

.poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(228, 196, 109, 0.05), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.poster-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(228, 196, 109, 0.4);
  box-shadow: 0 24px 60px rgba(228, 196, 109, 0.1);
}

.poster-card:hover::after {
  opacity: 1;
}

.poster-card > * {
  position: relative;
}

.poster-card span {
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-card strong {
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 0.92;
  margin: 10px 0;
  text-transform: uppercase;
}

.poster-card small {
  color: rgba(247, 243, 234, 0.78);
  font-weight: 800;
}

.poster-card-main {
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.02), rgba(6, 6, 7, 0.88)),
    url("https://images.unsplash.com/photo-1504704911898-68304a7d2807?auto=format&fit=crop&w=1100&q=82");
  background-position: center;
  background-size: cover;
}

.map-container {
  margin: 16px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}

.map-container:hover {
  border-color: rgba(228, 196, 109, 0.2);
}

.map-container iframe {
  display: block;
  vertical-align: bottom;
}

.map-address {
  align-items: center;
  background: var(--panel);
  display: flex;
  gap: 12px;
  padding: 16px 20px;
}

.map-address svg {
  color: var(--red);
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

.map-address a {
  color: var(--text);
  line-height: 1.4;
}

.map-address a:hover {
  color: var(--gold-strong);
}

.map-address strong {
  font-size: 1rem;
}

.tickets-section {
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0), rgba(16, 17, 20, 0.78)),
    var(--bg);
}

.ticket-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.9fr 1.15fr;
}

.ticket-layout .section-heading {
  grid-column: 1 / -1;
}

.ticket-cards {
  display: grid;
  gap: 14px;
}

.ticket-card {
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 24px;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.ticket-card strong {
  color: var(--gold-strong);
  font-size: 2.5rem;
  line-height: 1;
}

.ticket-card span:not(.ticket-tag) {
  color: var(--muted);
}

.ticket-card small {
  color: var(--text);
  font-weight: 900;
}

.ticket-card-featured {
  background:
    linear-gradient(160deg, rgba(228, 196, 109, 0.18), rgba(178, 31, 58, 0.12)),
    var(--panel);
}

.ticket-tag,
.form-badge {
  background: rgba(228, 196, 109, 0.12);
  border: 1px solid rgba(228, 196, 109, 0.32);
  color: var(--gold-strong);
  font-size: 0.74rem;
  font-weight: 900;
  justify-self: start;
  padding: 7px 9px;
  text-transform: uppercase;
}

.booking-form {
  padding: 26px;
}

.form-header,
.form-footer {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.form-header {
  align-items: start;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  padding-bottom: 18px;
}

.form-header h3 {
  font-size: 1.6rem;
  margin: 0;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

label {
  color: rgba(247, 243, 234, 0.82);
  display: grid;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 8px;
}

input {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  min-height: 48px;
  padding: 12px 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  width: 100%;
}

input:focus {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(228, 196, 109, 0.8);
  box-shadow: 0 0 0 4px rgba(228, 196, 109, 0.12);
  outline: none;
}

input::placeholder {
  color: rgba(247, 243, 234, 0.38);
}

.quantity-field {
  margin-top: 14px;
  max-width: 180px;
}

.check-field {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 20px 1fr;
  margin-top: 16px;
}

.check-field input {
  accent-color: var(--gold);
  height: 18px;
  min-height: auto;
  margin-top: 2px;
  padding: 0;
  width: 18px;
}

.check-field span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.stripe-panel {
  align-items: center;
  background: rgba(114, 46, 209, 0.1);
  border: 1px solid rgba(114, 46, 209, 0.22);
  display: flex;
  gap: 14px;
  margin: 20px 0;
  padding: 14px 16px;
}

.stripe-panel svg {
  color: #8b5cf6;
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}

.stripe-panel strong {
  color: var(--text);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.stripe-panel span {
  color: var(--muted);
  font-size: 0.84rem;
}

.form-footer p {
  color: var(--muted);
  margin: 0;
}

.form-footer strong {
  color: var(--gold-strong);
  font-size: 1.35rem;
}

.form-message {
  color: var(--gold-strong);
  font-weight: 800;
  margin: 16px 0 0;
  min-height: 24px;
}

.drive-access {
  background: rgba(6, 6, 7, 0.72);
  border: 1px solid var(--line);
  margin-top: 28px;
  padding: 20px;
}

.drive-message {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.drive-link {
  margin-top: 12px;
}

.photo-section {
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.76), rgba(6, 6, 7, 0.92)),
    url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=2200&q=84");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.photo-layout {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 0.82fr 1.18fr;
}

.photo-form {
  background: rgba(6, 6, 7, 0.72);
  border: 1px solid var(--line);
  margin-top: 20px;
  padding: 20px;
}

.photo-form .button {
  margin-top: 16px;
  width: 100%;
}

.gallery-lock {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  min-height: 520px;
  position: relative;
}

.gallery-lock figure {
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin: 0;
  overflow: hidden;
}

.gallery-lock img {
  filter: blur(3px) saturate(0.75);
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  align-items: center;
  background: rgba(6, 6, 7, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(228, 196, 109, 0.2);
  border-radius: 20px;
  display: grid;
  gap: 6px;
  justify-items: center;
  left: 50%;
  min-width: min(300px, 74vw);
  padding: 32px 28px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.gallery-overlay svg {
  color: var(--gold);
  height: 36px;
  margin-bottom: 8px;
  width: 36px;
  filter: drop-shadow(0 0 10px rgba(228, 196, 109, 0.2));
}

.gallery-overlay strong {
  font-size: 1.4rem;
}

.gallery-overlay span {
  color: var(--muted);
  font-size: 0.9rem;
}

.instagram-section {
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.76), rgba(6, 6, 7, 0.98)),
    url("https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=2200&q=82");
  background-position: center;
  background-size: cover;
}

.instagram-single {
  align-items: center;
  background:
    linear-gradient(140deg, rgba(228, 196, 109, 0.12), rgba(178, 31, 58, 0.1)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  justify-items: center;
  margin: 0 auto;
  max-width: 520px;
  padding: 48px 24px 42px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.instagram-single:hover {
  border-color: rgba(228, 196, 109, 0.2);
  box-shadow: 0 0 60px rgba(228, 196, 109, 0.04);
}

.instagram-logo {
  align-items: center;
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(228, 196, 109, 0.96), rgba(178, 31, 58, 0.84));
  color: #110f0b;
  display: inline-flex;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 950;
  justify-content: center;
  margin-bottom: 22px;
  width: min(210px, 46vw);
}

.instagram-single h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  margin-bottom: 24px;
}

.site-footer {
  background: linear-gradient(180deg, rgba(6, 6, 7, 0.9), #030304);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 56px 24px 48px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.4fr 0.8fr 1fr;
}

.footer-brand {
  color: var(--text);
  margin-bottom: 16px;
}

.site-footer h2 {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 9px;
  transition: color var(--transition), transform var(--transition);
}

.site-footer a:not(.brand):hover,
.site-footer a:not(.brand):focus-visible {
  color: var(--gold-strong);
  outline: none;
  transform: translateX(4px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------------ */
/*  Checkout card                                                      */
/* ------------------------------------------------------------------ */

.checkout-card {
  background: linear-gradient(160deg, rgba(23, 24, 28, 0.95), rgba(16, 17, 20, 0.98));
  border: 1px solid rgba(228, 196, 109, 0.15);
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(228, 196, 109, 0.04), 0 24px 80px rgba(0, 0, 0, 0.42);
  margin: 0 auto;
  max-width: 540px;
  overflow: hidden;
  padding: 44px 36px 36px;
  position: relative;
  text-align: center;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.checkout-card:hover {
  border-color: rgba(228, 196, 109, 0.3);
  box-shadow: 0 0 80px rgba(228, 196, 109, 0.08), 0 24px 80px rgba(0, 0, 0, 0.42);
}

.checkout-glow {
  background: radial-gradient(ellipse 600px 380px at 50% -60px, rgba(228, 196, 109, 0.15), rgba(139, 92, 246, 0.06) 50%, transparent 70%);
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.checkout-top {
  position: relative;
}

.checkout-top .ticket-tag {
  margin-bottom: 20px;
}

.checkout-price {
  align-items: baseline;
  display: flex;
  gap: 2px;
  justify-content: center;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
}

.checkout-price::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-strong), var(--gold), transparent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(228, 196, 109, 0.3);
}

.checkout-currency {
  color: var(--gold-strong);
  font-size: 1.8rem;
  font-weight: 900;
}

.checkout-price strong {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 4.8rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.checkout-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 340px;
}

.checkout-divider {
  background: linear-gradient(90deg, transparent, rgba(228, 196, 109, 0.2), rgba(228, 196, 109, 0.35), rgba(228, 196, 109, 0.2), transparent);
  height: 1px;
  margin: 24px auto;
  max-width: 400px;
}

.checkout-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 4px;
  position: relative;
}

.checkout-benefits span {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 7px;
  padding: 8px 13px;
  transition: background 200ms ease, border-color 200ms ease;
}

.checkout-benefits span:hover {
  background: rgba(228, 196, 109, 0.08);
  border-color: rgba(228, 196, 109, 0.15);
}

.checkout-benefits svg {
  color: var(--gold);
  height: 15px;
  width: 15px;
}

.checkout-info {
  align-items: center;
  background: rgba(228, 196, 109, 0.05);
  border: 1px solid rgba(228, 196, 109, 0.1);
  border-radius: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 16px auto;
  max-width: 400px;
  padding: 12px 16px;
  position: relative;
}

.checkout-info svg {
  color: var(--gold);
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
  filter: drop-shadow(0 0 4px rgba(228, 196, 109, 0.2));
}

.checkout-info span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.checkout-info strong {
  color: var(--gold-strong);
  font-weight: 800;
}

.checkout-btn {
  border-radius: 14px;
  display: inline-flex;
  margin-top: 8px;
  min-height: 60px;
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 280ms ease, box-shadow 280ms ease;
  width: 100%;
}

.checkout-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(228, 196, 109, 0.35);
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(228, 196, 109, 0.18);
}

.checkout-btn-bg {
  background: linear-gradient(135deg, #e4c46d, #f2d889 40%, #d4b05a);
  inset: 0;
  position: absolute;
  transition: opacity 280ms ease, transform 280ms ease;
}

.checkout-btn:hover .checkout-btn-bg,
.checkout-btn:focus-visible .checkout-btn-bg {
  opacity: 0.88;
  transform: scale(1.06);
}

.checkout-btn-content {
  align-items: center;
  color: #130f08;
  display: flex;
  font-size: 1.1rem;
  font-weight: 900;
  gap: 11px;
  justify-content: center;
  letter-spacing: 0.01em;
  padding: 18px 24px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.checkout-btn-content svg {
  height: 20px;
  width: 20px;
}

.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 24px;
  position: relative;
}

.checkout-trust span {
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 6px;
  padding: 6px 14px;
}

.checkout-trust svg {
  height: 14px;
  width: 14px;
  color: var(--gold);
}

/* ------------------------------------------------------------------ */
/*  Drive card                                                          */
/* ------------------------------------------------------------------ */

.drive-card {
  background: linear-gradient(160deg, rgba(23, 24, 28, 0.92), rgba(16, 17, 20, 0.96));
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-top: 28px;
  overflow: hidden;
  padding: 36px 28px 32px;
  position: relative;
  text-align: center;
  transition: border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.drive-card:hover {
  border-color: rgba(228, 196, 109, 0.2);
}

.drive-card.is-ready {
  border-color: rgba(228, 196, 109, 0.4);
  box-shadow: 0 0 60px rgba(228, 196, 109, 0.05);
}

.drive-glow {
  background: radial-gradient(ellipse 360px 240px at 50% -30px, rgba(228, 196, 109, 0.15), transparent 70%);
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.drive-icon-wrap {
  align-items: center;
  background: linear-gradient(135deg, rgba(228, 196, 109, 0.15), rgba(228, 196, 109, 0.05));
  border: 1px solid rgba(228, 196, 109, 0.25);
  border-radius: 50%;
  display: inline-flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  width: 64px;
}

.drive-icon-wrap svg {
  color: var(--gold-strong);
  height: 28px;
  width: 28px;
}

.drive-title {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 10px;
  position: relative;
}

.drive-message {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 auto 4px;
  max-width: 380px;
  position: relative;
}

.drive-btn {
  border-radius: 12px;
  display: inline-flex;
  margin-top: 18px;
  min-height: 56px;
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-decoration: none;
  width: 100%;
}

.drive-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(228, 196, 109, 0.35);
}

.drive-btn-bg {
  background: linear-gradient(135deg, #e4c46d, #f2d889 50%, #d4b05a);
  inset: 0;
  position: absolute;
  transition: opacity 280ms ease, transform 280ms ease;
}

.drive-btn:hover .drive-btn-bg,
.drive-btn:focus-visible .drive-btn-bg {
  opacity: 0.88;
  transform: scale(1.04);
}

.drive-btn-content {
  align-items: center;
  color: #130f08;
  display: flex;
  font-size: 1rem;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  padding: 16px 24px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.drive-btn-content svg {
  height: 19px;
  width: 19px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .photo-section {
    background-attachment: scroll;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    align-content: start;
    background: rgba(7, 7, 8, 0.98);
    border-left: 1px solid var(--line);
    display: grid;
    gap: 0;
    height: calc(100svh - var(--header-height));
    justify-items: stretch;
    padding: 20px;
    position: fixed;
    right: 0;
    top: var(--header-height);
    transform: translateX(100%);
    transition: transform 220ms ease;
    width: min(360px, 88vw);
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 10px;
  }

  .intro-grid,
  .photo-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .checkout-card {
    padding: 32px 24px 28px;
    border-radius: 16px;
  }

  .checkout-price strong {
    font-size: 3.6rem;
  }

  .checkout-benefits span {
    font-size: 0.78rem;
    padding: 6px 10px;
  }

  .checkout-price::after {
    width: 32px;
  }

  .drive-card {
    padding: 28px 20px 24px;
  }

  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .poster-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-lock {
    min-height: 440px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .nav-shell,
  .section,
  .hero,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-mark {
    width: 38px;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 92svh;
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 5.8rem);
  }

  .hero-facts,
  .hero-actions,
  .form-footer {
    align-items: stretch;
    display: grid;
  }

  .hero-facts span,
  .button {
    width: 100%;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .checkout-card {
    padding: 24px 16px 20px;
    border-radius: 14px;
  }

  .checkout-price strong {
    font-size: 3rem;
  }

  .checkout-benefits {
    gap: 6px;
  }

  .checkout-btn {
    min-height: 52px;
    border-radius: 12px;
  }

  .checkout-btn-content {
    font-size: 1rem;
    padding: 14px 18px;
  }

  .checkout-info {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .checkout-price::after {
    width: 28px;
    height: 2px;
  }

  .drive-card {
    padding: 24px 16px 20px;
    border-radius: 12px;
  }

  .drive-btn {
    min-height: 50px;
  }

  .drive-btn-content {
    font-size: 0.95rem;
    padding: 14px 18px;
  }
  .poster-showcase,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .feature-strip span {
    width: 100%;
  }

  .booking-form,
  .photo-form,
  .instagram-single {
    padding: 18px;
  }

  .form-header {
    display: grid;
  }

  .gallery-lock {
    gap: 8px;
    min-height: 360px;
  }

  .photo-section {
    background-attachment: scroll;
  }
}
/* ------------------------------------------------------------------ */
/*  Checkout Modal                                                     */
/* ------------------------------------------------------------------ */

#checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.checkout-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: modalFadeIn 250ms ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.checkout-modal-box {
  background:
    linear-gradient(160deg, rgba(23, 24, 28, 0.98), rgba(12, 12, 16, 0.98));
  border: 1px solid rgba(228, 196, 109, 0.2);
  border-radius: 24px;
  padding: 36px 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6), 0 0 80px rgba(228, 196, 109, 0.04);
  animation: modalSlideIn 300ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.checkout-modal-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 50% -20%, rgba(228, 196, 109, 0.12), transparent 50%);
  pointer-events: none;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.checkout-modal-box h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 4px;
  position: relative;
}

.checkout-modal-box > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  position: relative;
}

.checkout-modal-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}

.checkout-modal-fields input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.checkout-modal-fields input:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(228, 196, 109, 0.5);
  box-shadow: 0 0 0 3px rgba(228, 196, 109, 0.08);
}

.checkout-modal-fields input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

#checkout-modal-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #130f08;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 900;
  padding: 15px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  position: relative;
}

#checkout-modal-submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(228, 196, 109, 0.25);
}

#checkout-modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#checkout-modal-cancel {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  padding: 12px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

#checkout-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}
/* ------------------------------------------------------------------ */
/*  Legal pages                                                        */
/* ------------------------------------------------------------------ */

.legal-page {
  min-height: 100vh;
  padding: 120px 24px 72px;
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.92), rgba(6, 6, 7, 1) 620px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 90px),
    var(--bg);
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 50% -10%, rgba(228, 196, 109, 0.06), transparent 50%);
  pointer-events: none;
}

.legal-card h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.95;
  margin-bottom: 16px;
}

.legal-card h2 {
  color: var(--gold-strong);
  font-size: 1.35rem;
  line-height: 1.2;
  margin-top: 34px;
  margin-bottom: 10px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1rem;
}

.legal-card strong {
  color: var(--text);
}

.legal-card a {
  color: var(--gold-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card li {
  margin-bottom: 8px;
}

.legal-updated {
  color: rgba(247, 243, 234, 0.58);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-strong);
  font-weight: 900;
  text-decoration: none !important;
}

/* ------------------------------------------------------------------ */
/*  Cookie popup                                                       */
/* ------------------------------------------------------------------ */

#cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.cookie-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.cookie-popup-box {
  width: min(460px, 100%);
  background:
    linear-gradient(160deg, rgba(23, 24, 28, 0.98), rgba(12, 12, 16, 0.98));
  border: 1px solid rgba(228, 196, 109, 0.2);
  border-radius: 24px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7);
  padding: 36px 28px 28px;
  text-align: center;
  animation: cookiePopIn 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-popup-icon {
  display: inline-flex;
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.cookie-popup-box h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.cookie-popup-box p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cookie-popup-actions {
  display: grid;
  gap: 10px;
}

.cookie-popup-actions a,
.cookie-popup-actions button {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 900;
  font-size: 0.92rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cookie-popup-actions a {
  color: var(--gold-strong);
  border: 1px solid rgba(228, 196, 109, 0.2);
  text-decoration: none;
  display: grid;
  place-items: center;
}

.cookie-popup-actions a:hover {
  background: rgba(228, 196, 109, 0.06);
}

.cookie-popup-actions button {
  border: 0;
  cursor: pointer;
}

.cookie-popup-actions button:hover {
  transform: translateY(-2px);
}

#cookie-reject {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

#cookie-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #130f08;
}

#cookie-accept:hover {
  box-shadow: 0 12px 36px rgba(228, 196, 109, 0.25);
}

@keyframes cookiePopIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero-video-fake {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(228, 196, 109, 0.16), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(178, 31, 58, 0.18), transparent 34%),
    radial-gradient(circle at 50% 80%, rgba(63, 125, 246, 0.14), transparent 36%);
  animation: heroPulse 7s ease-in-out infinite alternate;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 9px
    );
  mix-blend-mode: overlay;
  opacity: 0.3;
  animation: noiseDrift 12s ease-in-out infinite alternate;
}

@keyframes noiseDrift {
  from { transform: translateY(0); opacity: 0.3; }
  to { transform: translateY(-12px); opacity: 0.5; }
}

@keyframes heroPulse {
  from {
    transform: scale(1);
    opacity: 0.65;
  }
  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* ------------------------------------------------------------------ */
/*  Custom scrollbar                                                   */
/* ------------------------------------------------------------------ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  border: 2px solid var(--bg);
  transition: background var(--transition);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(228, 196, 109, 0.25);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.85) contrast(1.1) brightness(0.85);
  transform: scale(1.02);
  transition: opacity 1.5s ease;
}

.date-field-wrap {
  position: relative;
  width: 100%;
}

.date-field-wrap input[type="date"] {
  position: relative;
  z-index: 1;
  width: 100%;
  color: transparent;
}

.date-field-wrap input[type="date"]::-webkit-datetime-edit {
  color: transparent;
}

.date-field-wrap input[type="date"].has-value,
.date-field-wrap input[type="date"].is-focused,
.date-field-wrap input[type="date"]:focus {
  color: var(--text);
}

.date-field-wrap input[type="date"].has-value::-webkit-datetime-edit,
.date-field-wrap input[type="date"].is-focused::-webkit-datetime-edit,
.date-field-wrap input[type="date"]:focus::-webkit-datetime-edit {
  color: var(--text);
}

.date-field-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(247, 243, 234, 0.38);
  font-size: 15px;
  pointer-events: none;
  z-index: 2;
}

.date-field-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
}

/* ------------------------------------------------------------------ */
/* TITOLI DODO'S PARTY                                                 */
/* ------------------------------------------------------------------ */

h1,
h2,
.brand-text,
.hero h1,
.section-heading h2,
.checkout-price strong,
.countdown strong {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

/* ------------------------------------------------------------------ */
/*  Success page                                                       */
/* ------------------------------------------------------------------ */

.success-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(228, 196, 109, 0.18), transparent 34%),
    radial-gradient(circle at 18% 80%, rgba(178, 31, 58, 0.14), transparent 34%),
    linear-gradient(180deg, #060607, #030304);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.success-shell {
  width: min(620px, 100%);
}

.success-card {
  position: relative;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(23, 24, 28, 0.96), rgba(10, 10, 12, 0.98));
  border: 1px solid rgba(228, 196, 109, 0.26);
  border-radius: 28px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.68);
  padding: 42px 28px 34px;
  overflow: hidden;
}

.success-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 50% -10%, rgba(228, 196, 109, 0.18), transparent 42%);
  pointer-events: none;
}

.success-badge {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #130f08;
  font-size: 42px;
  font-weight: 950;
  box-shadow: 0 0 55px rgba(228, 196, 109, 0.3);
}

.success-card h1 {
  position: relative;
  font-size: clamp(3.2rem, 12vw, 6.4rem);
  line-height: 0.88;
  margin: 0 0 18px;
}

.success-copy {
  position: relative;
  max-width: 460px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.success-copy strong {
  color: var(--text);
}

.success-flow {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.success-flow div {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(228, 196, 109, 0.16);
  border-radius: 14px;
  padding: 14px 16px;
}

.success-flow span {
  color: var(--gold-strong);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  min-width: 34px;
}

.success-flow strong {
  font-size: 0.96rem;
}

.success-note {
  position: relative;
  margin: 24px 0 28px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(228, 196, 109, 0.08);
  border: 1px solid rgba(228, 196, 109, 0.18);
  text-align: left;
}

.success-note strong {
  color: var(--gold-strong);
}

.success-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.success-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #130f08;
  font-weight: 950;
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.success-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.success-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(228, 196, 109, 0.25);
}

.success-button:hover::after {
  opacity: 1;
}

@media (max-width: 640px) {
  .success-card {
    padding: 34px 20px 28px;
    border-radius: 22px;
  }

  .success-card h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }
}

