:root {
  /* Default theme: SUMMER (warm dark, golden solstice) */
  --bg: #0c0900;
  --bg-2: #190f02;
  --bg-3: #241604;
  --fg: #fdf4de;
  --fg-2: rgba(253, 244, 222, 0.66);
  --fg-3: rgba(253, 244, 222, 0.38);
  --line: rgba(253, 244, 222, 0.10);
  --accent: #50e194;
  --accent-2: #ff8c1a;
  --accent-fg: #0c0900;
  --grain-opacity: 0.05;
  /* Summer-specific extras */
  --sun-glow: rgba(80, 225, 148, 0.14);
  --sun-glow-strong: rgba(80, 225, 148, 0.22);
  --heat: rgba(255, 130, 30, 0.08);
}

[data-theme="sunset"] {
  --bg: #0e0608;
  --bg-2: #1c0d0f;
  --bg-3: #2a1418;
  --fg: #fdf0e8;
  --fg-2: rgba(253, 240, 232, 0.70);
  --fg-3: rgba(253, 240, 232, 0.40);
  --line: rgba(253, 240, 232, 0.12);
  --accent: #50e194;
  --accent-2: #ff5533;
  --accent-fg: #0e0608;
  --sun-glow: rgba(255, 120, 60, 0.16);
  --sun-glow-strong: rgba(255, 100, 40, 0.24);
  --heat: rgba(220, 60, 80, 0.08);
}

[data-theme="mono"] {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --fg: #f4f4f1;
  --fg-2: rgba(244, 244, 241, 0.66);
  --fg-3: rgba(244, 244, 241, 0.38);
  --line: rgba(244, 244, 241, 0.12);
  --accent: #50e194;
  --accent-2: #50e194;
  --accent-fg: #0a0a0a;
  --sun-glow: rgba(80, 225, 148, 0.10);
  --sun-glow-strong: rgba(80, 225, 148, 0.16);
  --heat: rgba(255, 255, 255, 0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
  mix-blend-mode: overlay;
}

.display {
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
  font-weight: 500;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

section { position: relative; }

.section-pad {
  padding: clamp(80px, 10vw, 160px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 4fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 96px);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
}

.section-head h2 {
  font-size: clamp(56px, 9vw, 144px);
  max-width: 14ch;
}

.section-head .num {
  display: flex;
  align-items: end;
  gap: 12px;
  padding-bottom: 8px;
}

/* ---- Top nav ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 48px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(12, 9, 0, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 18px;
}

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

.nav-brand .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent), 0 0 36px var(--sun-glow);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2.4vw, 36px);
  align-items: center;
}

.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

.nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-mobile-cta { display: inline-flex !important; }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--accent-fg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px var(--accent), 0 0 40px -16px var(--sun-glow); }
.nav-mobile-cta { display: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px var(--accent), 0 0 60px -20px var(--sun-glow-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--fg); background: rgba(255,255,255,0.04); }

.btn-large { padding: 24px 40px; font-size: 13px; }

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---- HERO (cinematic streaming style) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 0 clamp(40px, 6vw, 80px);
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg video, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* Optimal video crop for portrait mobile */
@media (max-width: 600px) and (orientation: portrait) {
  .hero-bg video, .hero-bg img {
    object-position: center 15%;
  }
}

/* Landscape mobile — show more width */
@media (max-width: 900px) and (orientation: landscape) {
  .hero-bg video {
    object-position: center 20%;
  }
}

/* Bottom-only blur overlay with warm summer gradient */
.hero-blur-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 48%);
  mask-image: linear-gradient(to top, black 0%, transparent 48%);
}

/* Golden summer sun glow at the bottom of the hero */
.hero-sun-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, var(--sun-glow-strong) 0%, transparent 70%);
}

/* Liquid Glass — reusable for buttons & pills */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  color: #fff;
  transition: background 0.25s ease;
}

.liquid-glass:hover {
  background: rgba(255, 255, 255, 0.06);
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Blur fade up animation */
@keyframes blurFadeUp {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.animate-blur-fade-up {
  opacity: 0;
  animation: blurFadeUp 1s ease-out forwards;
}

/* Cinema metadata row */
.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  margin-bottom: clamp(20px, 3vw, 32px);
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(255,255,255,0.92);
}

.hero-meta-row .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero-meta-row .meta-pill svg {
  flex-shrink: 0;
}

.hero-meta-row .meta-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  line-height: 1;
  user-select: none;
}

.hero-cinema-title {
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(64px, 12vw, 200px);
  line-height: 0.90;
  letter-spacing: -0.02em;
  margin-bottom: clamp(12px, 1.6vw, 20px);
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-cinema-claim {
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  text-transform: uppercase;
  font-style: italic;
  color: var(--accent);
  font-size: clamp(22px, 3.2vw, 48px);
  letter-spacing: 0.02em;
  margin-bottom: clamp(16px, 2.4vw, 28px);
  text-shadow: 0 2px 24px rgba(0,0,0,0.4), 0 0 60px var(--sun-glow-strong);
}

.hero-cinema-desc {
  font-size: clamp(15px, 1.3vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin-bottom: clamp(32px, 5.5vw, 56px);
  line-height: 1.55;
}

.hero-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-end;
}

@media (min-width: 900px) {
  .hero-bottom-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

.hero-cta-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--accent-fg);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 transparent;
  min-height: 52px;
}
.btn-watch:hover {
  background: #6aeaaa;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px #50e194, 0 0 60px -20px rgba(80, 225, 148, 0.3);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-arrows {
  display: flex;
  gap: 10px;
}

.btn-arrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-content-cinema {
  position: relative;
  z-index: 10;
  padding: 0 clamp(20px, 4vw, 64px);
  width: 100%;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: -4%;
  width: 108%; height: 108%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroBreath 14s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.02);
}

@keyframes heroBreath {
  0%   { transform: scale(1.0)   translate(0, 0); }
  50%  { transform: scale(1.04)  translate(-1%, -0.6%); }
  100% { transform: scale(1.07)  translate(0.5%, -1%); }
}

/* Subtle parallax sway for the woman — masked layer above the base image */
.hero-figure {
  position: absolute;
  inset: 0;
  background: inherit;
  pointer-events: none;
  mix-blend-mode: normal;
}

/* Floating particles — petals/light dust drifting up */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Summer particles: golden sparks and warm embers */
.particle {
  position: absolute;
  bottom: -10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 210, 80, 0.95), rgba(255, 160, 30, 0.4) 60%, transparent 70%);
  filter: blur(0.5px);
  opacity: 0;
  animation: drift linear infinite;
}

.particle.lavender {
  background: radial-gradient(circle at 30% 30%, rgba(255, 180, 50, 0.9), rgba(255, 120, 20, 0.4) 60%, transparent 70%);
}

.particle.mist {
  background: radial-gradient(circle at 30% 30%, rgba(255, 240, 160, 0.85), rgba(255, 200, 80, 0.35) 60%, transparent 70%);
  width: 3px; height: 3px;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translate(20px, -50vh) scale(1); opacity: 0.7; }
  100% { transform: translate(-10px, -110vh) scale(0.4); opacity: 0; }
}

/* Golden summer sun rays */
.hero-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(108deg, transparent 28%, rgba(255, 220, 80, 0.07) 43%, rgba(255, 210, 60, 0.14) 50%, rgba(255, 220, 80, 0.07) 57%, transparent 72%),
    linear-gradient(94deg, transparent 48%, rgba(255, 180, 40, 0.05) 58%, rgba(255, 200, 60, 0.10) 64%, transparent 76%);
  mix-blend-mode: screen;
  animation: raysShift 22s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes raysShift {
  0%   { transform: translateX(-3%) translateY(-1%); opacity: 0.7; }
  100% { transform: translateX(3%)  translateY(1%);  opacity: 1; }
}



.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.hero-meta-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-meta-block strong {
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 20px;
}

.hero-title {
  font-size: clamp(72px, 16vw, 280px);
  letter-spacing: -0.02em;
}

.hero-claim {
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(24px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-style: italic;
  color: var(--accent);
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-title { text-shadow: 0 4px 40px rgba(0,0,0,0.4); }

.hero-bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}

@media (max-width: 820px) {
  .hero-bottom { grid-template-columns: 1fr; }
}

.hero-intro {
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 50ch;
  color: var(--fg-2);
  line-height: 1.5;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 820px) {
  .hero-cta-row { justify-content: flex-start; }
}

/* ---- Countdown ---- */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 2vw, 24px);
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.countdown-num {
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ---- Ticker / Marquee ---- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg);
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 36s linear infinite;
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(28px, 4.5vw, 56px);
  letter-spacing: 0.01em;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.ticker-track .sep {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--accent), 0 0 32px var(--sun-glow);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Info section ---- */
#info {
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}

#info::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 9, 0, 0.78) 0%, rgba(12, 9, 0, 0.68) 100%);
  pointer-events: none;
  z-index: 0;
}

#info > * { position: relative; z-index: 1; }

.info-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

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

.info-lead {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.info-lead strong {
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
  text-shadow: 0 0 40px var(--sun-glow);
}

.info-body {
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 50ch;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s, background 0.3s;
}

.feature-row:first-child { border-top: 1px solid var(--line); }

.feature-row:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: linear-gradient(90deg, transparent, var(--bg-2) 40%, var(--bg-3) 70%, transparent);
}

.feature-row .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.1em;
}

.feature-row .label {
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.feature-row .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: right;
}

/* ---- Tickets section ---- */
.tickets {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}


.tickets-inner {
  position: relative;
  border: 1px solid var(--line);
  padding: clamp(40px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: end;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 70%);
  border-radius: 4px;
  overflow: hidden;
}

/* Top-right golden sun burst */
.tickets-inner::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, var(--accent-2) 30%, transparent 70%);
  opacity: 0.18;
  top: -380px; right: -240px;
  filter: blur(50px);
}

/* Bottom-left warm heat shimmer */
.tickets-inner::after {
  content: '';
  position: absolute;
  width: 400px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun-glow-strong) 0%, transparent 70%);
  opacity: 0.5;
  bottom: -100px; left: -80px;
  filter: blur(60px);
  pointer-events: none;
}

@media (max-width: 900px) {
  .tickets-inner { grid-template-columns: 1fr; gap: 32px; }
}

.tickets-headline {
  font-size: clamp(56px, 9vw, 140px);
  position: relative;
  z-index: 2;
}

.tickets-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tickets-warning {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--fg-2);
  line-height: 1.55;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

/* ---- Gallery ---- */
.gallery-wrap {
  margin-top: 32px;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-2);
}

.gallery-track::-webkit-scrollbar { height: 4px; }
.gallery-track::-webkit-scrollbar-track { background: var(--bg-2); }
.gallery-track::-webkit-scrollbar-thumb { background: var(--accent); }

.gallery-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-card:hover img { transform: scale(1.05); }

.gallery-card .label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 2px;
}

.gallery-controls {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  align-items: center;
  justify-content: space-between;
}

.gallery-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fg-2);
}

.gallery-arrows { display: flex; gap: 8px; }

.icon-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.icon-btn:hover { border-color: var(--fg); background: var(--bg-2); }
.icon-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ---- Travel ---- */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.travel-card {
  background: var(--bg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
  min-height: 240px;
}

.travel-card:hover { background: var(--bg-2); }

.travel-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.travel-card h3 {
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.travel-card p, .travel-card li {
  color: var(--fg-2);
  font-size: 14px;
  line-height: 1.6;
}

.travel-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.travel-card ul li {
  display: flex;
  gap: 10px;
}

.travel-card ul li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
}

.travel-card .small-cta {
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  align-self: flex-start;
  transition: gap 0.2s, color 0.2s;
}
.travel-card .small-cta:hover { gap: 14px; color: var(--accent); text-shadow: 0 0 24px var(--sun-glow); }

.address-block {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg-3);
  padding: 16px;
  border-radius: 2px;
  margin-top: 8px;
}

/* ---- FAQ ---- */
.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  text-align: left;
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  font-size: clamp(18px, 1.8vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--fg);
  transition: color 0.2s, padding 0.3s;
}

.faq-q:hover { color: var(--accent); padding-left: 8px; }

.faq-q .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.1em;
  font-weight: 400;
}

.faq-q .toggle {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-q .toggle svg {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item.open .toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-fg);
  box-shadow: 0 0 20px var(--sun-glow);
}

.faq-item.open .toggle svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
}

.faq-a-content {
  grid-column: 2;
  padding: 0 0 32px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 70ch;
  white-space: pre-line;
}

@media (max-width: 720px) {
  .faq-q { grid-template-columns: 1fr auto; gap: 16px; }
  .faq-q .num { display: none; }
  .faq-a-inner { grid-template-columns: 1fr; }
  .faq-a-content { grid-column: 1; }
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 120px) 0 32px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 64px;
}

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

.footer-brand {
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

.footer-brand .accent { color: var(--accent); font-style: italic; text-shadow: 0 0 60px var(--sun-glow-strong); }

.footer h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--fg-3);
  margin-bottom: 16px;
}

.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--fg-2); font-size: 14px; transition: color 0.2s; }
.footer ul a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom .mono { color: var(--fg-3); }

/* ---- Lang toggle ---- */
.lang-toggle {
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang-toggle button {
  padding: 6px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  transition: all 0.2s;
}

.lang-toggle button.active {
  background: var(--fg);
  color: var(--bg);
}

/* ---- Reveal anim ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- Impressum Modal ---- */
.impressum-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}

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

.impressum-modal {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 56px);
  animation: slideUp 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.impressum-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--fg-2);
  transition: all 0.2s;
  cursor: pointer;
  background: none;
}
.impressum-close:hover { border-color: var(--fg); color: var(--fg); background: var(--bg-3); }

.impressum-title {
  font-family: 'Alternate Gothic No1 D', 'League Gothic', 'Anton', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--fg);
}

.impressum-content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-2);
}

.impressum-content strong { color: var(--fg); }
.impressum-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.impressum-content a:hover { color: var(--fg); }
.impressum-content br { display: block; content: ''; }

/* ---- Mobile navigation ---- */
@media (max-width: 820px) {
  .nav {
    padding: 16px clamp(16px, 4vw, 32px);
  }
}

/* ---- Mobile hero improvements ---- */
@media (max-width: 820px) {
  .hero {
    padding: 0 0 clamp(32px, 8vw, 64px);
  }

  .hero-content-cinema {
    padding: 0 clamp(16px, 5vw, 32px);
  }

  .hero-bottom-row {
    gap: 24px;
    align-items: flex-start;
  }

  .hero-arrows {
    display: none;
  }

  .hero-meta-row {
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-cta-flex {
    gap: 10px;
  }

  .hero-cta-flex .btn-watch,
  .hero-cta-flex .btn-glass {
    min-height: 52px;
    padding: 14px 24px;
    font-size: 11px;
  }
}

/* ---- Mobile countdown ---- */
@media (max-width: 500px) {
  .countdown-num {
    font-size: clamp(32px, 10vw, 56px);
  }
}

/* ---- Mobile gallery ---- */
@media (max-width: 720px) {
  .gallery-card {
    width: 80vw !important;
    height: 56vw !important;
    min-height: 240px;
  }
}

/* ---- Mobile FAQ ---- */
@media (max-width: 500px) {
  .faq-q {
    padding: 20px 0;
    font-size: clamp(15px, 4vw, 20px);
  }
}

/* ---- Mobile tickets ---- */
@media (max-width: 820px) {
  .tickets-inner {
    padding: clamp(28px, 6vw, 56px) clamp(20px, 5vw, 40px);
    gap: 24px;
  }
  .btn-large {
    padding: 18px 28px;
    font-size: 12px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ---- Mobile travel grid ---- */
@media (max-width: 820px) {
  .travel-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Mobile footer ---- */
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand {
    font-size: clamp(40px, 12vw, 64px);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ---- Mobile fixes ---- */
@media (max-width: 820px) {
  /* Logo size in nav */
  .nav-logo-img {
    height: 44px;
  }

  /* Info section: fixed bg breaks on iOS Safari */
  #info {
    background-attachment: scroll;
  }

  /* Meta row: wrap tightly, hide separators if needed */
  .hero-meta-row {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .hero-meta-row .meta-sep {
    display: none;
  }

  /* Button spacing on mobile */
  .hero-cinema-desc {
    margin-bottom: 36px;
  }

  /* Info grid stacks on mobile */
  .info-grid {
    grid-template-columns: 1fr;
  }

  /* Feature row: tighter on small screens */
  .feature-row {
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
  }

  /* Tickets headline */
  .tickets-headline {
    font-size: clamp(40px, 12vw, 80px);
  }

  /* Section head stacks */
  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* Even smaller logo */
  .nav-logo-img {
    height: 36px;
  }

  /* Feature row: hide number on very small screens */
  .feature-row .num {
    display: none;
  }
  .feature-row {
    grid-template-columns: 1fr auto;
  }
}

/* Touch-action optimizations */
.gallery-track { touch-action: pan-x; -webkit-overflow-scrolling: touch; }
.hero { -webkit-overflow-scrolling: touch; }

/* ---- Summer section ambient glow ---- */
/* Warm golden ambient light bleeds between sections */
#info::before, #tickets::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--sun-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Section content sits above the ambient glow */
#info > *, #tickets > * { position: relative; z-index: 1; }

/* ---- Summer golden shimmer on accent borders ---- */
@keyframes summerPulse {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  50%       { box-shadow: 0 0 32px 4px var(--sun-glow); }
}

/* Warm golden scrollbar for gallery */
.gallery-track {
  scrollbar-color: var(--accent) var(--bg-2);
}

/* ---- Footer ambient warmth ---- */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.footer { position: relative; }
