/*
 * KAIF Hollywood - V5 Vintage Neon + Awwwards Tech
 * Aesthetic: 1980s Noir, Classic Cinema, Red Neon, Velvet Retro
 */

:root {
  --noir-black: #0a0505;
  --velvet-dark: #1f0408;
  --velvet-red: #4a0914;
  --neon-red: #ff1053;
  --neon-red-dim: #8a0528;
  --tungsten: #ffb703;
  --cream: #f4eee0;
  --cream-dim: #c9c3b5;
  --ink: #1a1a1a;
  
  --font-marquee: 'Bebas Neue', sans-serif;
  --font-script: 'Yellowtail', cursive;
  --font-typewriter: 'Courier Prime', monospace;
  --font-ticket: 'Oswald', sans-serif;
  
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-fluid: cubic-bezier(0.25, 1, 0.25, 1);
}

/* --- Base & Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important;
}

html {
  background-color: var(--noir-black);
  color: var(--cream);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.vintage-theme {
  font-family: var(--font-typewriter);
  background-color: var(--noir-black);
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

/* Lenis Recommended Styles */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

::selection {
  background: var(--neon-red);
  color: var(--cream);
}

/* --- Typography System --- */
.massive-type-vintage {
  font-family: var(--font-marquee);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.85;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-shadow: 2px 2px 0px var(--velvet-dark);
}

.body-typewriter {
  font-family: var(--font-typewriter);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--cream-dim);
}

.typewriter-text {
  font-family: var(--font-typewriter);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
}

.red-ink {
  color: var(--neon-red);
  font-weight: 700;
}

/* --- Custom Cursor System (Glowing Ember) --- */
.cursor-ember {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--tungsten);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--tungsten), 0 0 20px var(--neon-red);
  transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo);
}

.cursor-flare {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 16, 83, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-expo), height 0.4s var(--ease-expo), border-color 0.4s ease, background-color 0.4s ease;
}

.cursor-label-vintage {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10001;
  font-family: var(--font-marquee);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--noir-black);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Cursor States */
body.cursor-hover-btn .cursor-ember {
  width: 0;
  height: 0;
}
body.cursor-hover-btn .cursor-flare {
  width: 50px;
  height: 50px;
  border-color: var(--neon-red);
  background-color: rgba(255, 16, 83, 0.15);
  box-shadow: 0 0 30px rgba(255, 16, 83, 0.3);
}
body.cursor-hover-drag .cursor-ember {
  width: 60px;
  height: 60px;
  background-color: var(--tungsten);
  box-shadow: 0 0 30px var(--tungsten);
}
body.cursor-hover-drag .cursor-flare {
  opacity: 0;
}
body.cursor-hover-drag .cursor-label-vintage {
  opacity: 1;
}

/* --- Loader: Neon Power Up --- */
.loader-vintage {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background-color: var(--noir-black);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-bg-vintage {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--velvet-dark) 0%, var(--noir-black) 70%);
  transform-origin: top;
}

.loader-sign {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.neon-power-flicker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-title-neon {
  font-family: var(--font-marquee);
  font-size: 8rem;
  color: var(--noir-black);
  -webkit-text-stroke: 2px var(--velvet-red);
}

.loader-title-neon.on {
  color: #fff;
  -webkit-text-stroke: 0;
  text-shadow: 
    0 0 10px #fff,
    0 0 20px var(--neon-red),
    0 0 40px var(--neon-red),
    0 0 80px var(--neon-red);
}

.loader-script-neon {
  font-family: var(--font-script);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--noir-black);
  transform: rotate(-5deg);
  margin-top: -10px;
}

.loader-script-neon.on {
  color: #fff;
  text-shadow: 
    0 0 5px #fff,
    0 0 15px var(--tungsten),
    0 0 30px var(--tungsten);
}

.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background-color: var(--velvet-red);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.loader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--neon-red);
  box-shadow: 0 0 10px var(--neon-red);
}

.loader-progress-text {
  font-family: var(--font-typewriter);
  font-size: 0.7rem;
  color: var(--neon-red);
  letter-spacing: 0.1em;
}

/* --- Ambient Effects --- */
.vintage-film-grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.08;
  /* Very small repeating noise pattern for performance */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* --- Layout Wrappers --- */
.container-vintage {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

#smooth-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* --- Header Ticket Style --- */
.header-vintage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 90;
  mix-blend-mode: difference;
}

.header-logo {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--cream);
  border-radius: 4px;
}

.logo-k {
  font-family: var(--font-marquee);
  font-size: 1.8rem;
  color: var(--cream);
  line-height: 1;
}

.logo-h {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--tungsten);
  margin-left: 2px;
  line-height: 1;
}

.header-nav-vintage {
  display: flex;
  gap: 30px;
}

.nav-link-vintage {
  font-family: var(--font-ticket);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  padding: 5px 10px;
  position: relative;
}

.nav-link-vintage::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  width: calc(100% - 20px);
  height: 2px;
  background-color: var(--neon-red);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-expo);
}

.nav-link-vintage:hover::after {
  transform: scaleX(1);
}

/* --- Hero Section --- */
.hero-vintage {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px 5vw 72px;
  background: var(--noir-black);
}

.hero-vintage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 38%;
  background: linear-gradient(transparent, var(--noir-black));
}

.hero-scene-vintage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 70% 30%, rgba(255,16,83,.12), transparent 28rem);
  background:
    linear-gradient(90deg, rgba(10,5,5,.92), rgba(10,5,5,.54) 48%, rgba(10,5,5,.9)),
    linear-gradient(180deg, rgba(10,5,5,.28), rgba(10,5,5,.92)),
    url("https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&w=1800&q=82") center / cover;
  filter: saturate(.78) contrast(1.08) brightness(.74);
}

.hero-content-vintage {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.hero-copy-vintage {
  max-width: 690px;
}

.hero-kicker-vintage {
  margin: 0;
  color: var(--tungsten);
  font-family: var(--font-ticket);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-headline-vintage {
  margin: 18px 0 18px;
  color: var(--cream);
  font-family: var(--font-marquee);
  font-size: clamp(4rem, 10vw, 8.2rem);
  font-weight: 700;
  line-height: .82;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero-subtitle-vintage {
  max-width: 540px;
  margin: 0;
  color: rgba(245, 232, 208, .78);
  font-family: var(--font-ticket);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero-cta-row-vintage {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.hero-menu-link-vintage {
  color: var(--tungsten);
  font-family: var(--font-condensed);
  font-size: .9rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-menu-link-vintage::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 5px;
  background: currentColor;
}

.hero-marquee-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 2;
  margin-top: 0;
}

.marquee-hanger {
  width: 46%;
  height: 34px;
  border: 1px solid rgba(255,178,74,.28);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5), transparent);
}

.marquee-board-vintage {
  position: relative;
  width: min(520px, 86vw);
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 48px 56px;
  background-color: rgba(5, 2, 2, 0.85);
  border: 4px solid var(--velvet-dark);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.9), inset 0 -40px 90px rgba(0,0,0,.42);
}

.marquee-lights-border {
  position: absolute;
  inset: -12px;
  border: 4px dotted var(--tungsten);
  border-radius: 16px;
  opacity: 0.8;
  animation: marqueeFlicker 2s infinite alternate;
}

.hero-sign-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-neon {
  font-family: var(--font-marquee);
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 0.8;
  color: #fff;
  text-shadow: 
    0 0 10px #fff,
    0 0 20px var(--neon-red),
    0 0 40px var(--neon-red),
    0 0 80px var(--neon-red);
}

/* SplitType wrapper styles */
.hero-title-neon .word {
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.hero-script-neon {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  text-shadow: 
    0 0 5px #fff,
    0 0 15px var(--tungsten),
    0 0 30px var(--tungsten);
  transform: rotate(-4deg) translateY(-20px);
}

.hero-meta-vintage {
  text-align: center;
  background-color: var(--noir-black);
  padding: 10px 20px;
  border: 1px solid var(--velvet-red);
  border-radius: 4px;
}

.hero-ticket-vintage {
  position: absolute;
  left: max(18px, 6vw);
  bottom: 34px;
  z-index: 4;
  display: grid;
  gap: 5px;
  width: min(330px, calc(100% - 36px));
  padding: 16px 18px;
  border: 1px solid rgba(255,178,74,.34);
  border-radius: 16px;
  color: var(--cream);
  background: rgba(10,5,5,.72);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.hero-ticket-vintage span,
.hero-ticket-vintage em {
  color: var(--tungsten);
  font-family: var(--font-ticket);
  font-size: .72rem;
  font-style: normal;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-ticket-vintage strong {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scroll-down-vintage {
  position: absolute;
  bottom: 40px;
  right: max(18px, 5vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.scroll-label {
  font-family: var(--font-ticket);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--tungsten);
}

.coin-slot-line {
  width: 4px;
  height: 40px;
  background-color: var(--velvet-red);
  border-radius: 2px;
  box-shadow: inset 0 0 5px #000;
}

/* --- Statement Section --- */
.statement-vintage {
  padding: 15vw 0;
  position: relative;
  z-index: 3;
  background-color: var(--noir-black);
  border-top: 1px solid var(--velvet-dark);
}

.statement-grid-vintage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  margin-top: 60px;
}

.statement-col-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

/* Vintage Primary Button */
.btn-vintage-primary {
  display: inline-flex;
  padding: 16px 32px;
  background-color: transparent;
  border: 2px solid var(--neon-red);
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 16, 83, 0.2);
}

.btn-vintage-text {
  font-family: var(--font-ticket);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 0px #000;
}

.btn-vintage-glint {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--neon-red);
  z-index: 1;
  transition: left 0.4s var(--ease-expo);
}

.btn-vintage-primary:hover .btn-vintage-glint {
  left: 0;
}

/* --- Parallax Break --- */
.parallax-break-vintage {
  height: 70vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.parallax-container-vintage {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
}

.parallax-img-vintage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.2);
}

.parallax-overlay-red {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,5,5,0.9), rgba(74,9,20,0.4), rgba(10,5,5,0.9));
  mix-blend-mode: multiply;
}

/* --- Horizontal Scroll (Polaroids) --- */
.horizontal-scroll-vintage {
  height: 100vh;
  background-color: var(--velvet-dark);
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--velvet-red);
  border-bottom: 2px solid var(--velvet-red);
}

.pin-wrap-vintage {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10vw;
}

.horizontal-content-vintage {
  display: flex;
  gap: 8vw;
  height: 60vh;
  align-items: center;
}

.horizontal-card-vintage {
  flex: 0 0 auto;
  position: relative;
}

.text-card {
  width: 30vw;
  display: flex;
  flex-direction: column;
}

.ticket-stub-number {
  font-family: var(--font-typewriter);
  font-size: 1.2rem;
  color: var(--tungsten);
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--tungsten);
  display: inline-block;
  padding-bottom: 5px;
}

.card-title-vintage {
  font-family: var(--font-marquee);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 0.9;
}

/* Polaroid Styling */
.polaroid-card {
  width: 400px;
  background-color: var(--cream);
  padding: 20px 20px 60px 20px;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  transform: rotate(-2deg);
  transition: transform 0.4s var(--ease-expo);
}

.polaroid-card:nth-child(even) {
  transform: rotate(3deg) translateY(20px);
}

.polaroid-card:hover {
  transform: rotate(0deg) scale(1.05);
}

.polaroid-frame {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #000;
  overflow: hidden;
}

.polaroid-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.4) contrast(1.2) brightness(0.8);
  transition: filter 0.5s ease;
}

.polaroid-card:hover .polaroid-frame img {
  filter: sepia(0) contrast(1) brightness(1);
}

.polaroid-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--ink);
}

/* --- Menu Dark (Ledger Style) --- */
.menu-vintage {
  padding: 15vw 0;
  background-color: var(--noir-black);
  position: relative;
  z-index: 3;
}

.menu-header-vintage {
  margin-bottom: 100px;
}

.ledger-line {
  width: 100%;
  height: 2px;
  background-color: var(--velvet-red);
  margin-top: 20px;
}

.menu-grid-vintage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}

.menu-category-vintage {
  font-family: var(--font-ticket);
  font-size: 1.8rem;
  color: var(--tungsten);
  border-bottom: 2px dotted var(--velvet-red);
  padding-bottom: 15px;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.menu-list-vintage {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.menu-item-vintage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--velvet-dark);
  position: relative;
  transition: background-color 0.3s ease;
}

.menu-item-vintage:hover {
  background-color: rgba(74, 9, 20, 0.15);
}

.item-info-vintage h4 {
  font-family: var(--font-marquee);
  font-size: 2.2rem;
  color: var(--cream);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.menu-item-vintage:hover .item-info-vintage h4 {
  color: var(--neon-red);
}

.item-price-vintage {
  font-family: var(--font-ticket);
  font-size: 1.5rem;
  color: var(--cream);
}

.item-hover-polaroid {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%) scale(0.8) rotate(10deg);
  width: 220px;
  aspect-ratio: 1/1.2;
  background-color: var(--cream);
  padding: 10px 10px 30px 10px;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.4s var(--ease-expo);
  box-shadow: 0 20px 40px rgba(0,0,0,0.9);
}

.item-hover-polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.3) contrast(1.1);
}

.menu-item-vintage:hover .item-hover-polaroid {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(-5deg);
}

/* --- Map & Footer (Matchbox) --- */
.visit-vintage {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 2px solid var(--velvet-red);
}

.map-bg-vintage {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: invert(90%) hue-rotate(180deg) saturate(30%) brightness(60%) contrast(150%);
}

.map-overlay-red {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(10,5,5,0.4) 0%, var(--noir-black) 90%);
  pointer-events: none;
}

.visit-content-vintage {
  position: relative;
  z-index: 2;
}

/* Vintage Matchbox Styling */
.matchbox-card {
  background-color: #f4eee0;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.9);
  transform: rotate(2deg);
}

.matchbox-inner {
  border: 2px solid var(--ink);
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-title-neon.small {
  font-size: 5rem;
  color: var(--ink);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.hero-script-neon.small {
  font-size: 3rem;
  color: var(--neon-red);
  text-shadow: none;
  margin-top: -10px;
  margin-bottom: 20px;
}

.visit-details-vintage p {
  color: var(--ink);
  font-weight: 700;
}

.mt-10 { margin-top: 15px; }

.matchbox-card .btn-vintage-primary {
  border-color: var(--ink);
  margin-top: 30px;
  margin-bottom: 20px;
}
.matchbox-card .btn-vintage-text {
  color: var(--ink);
  text-shadow: none;
}
.matchbox-card .btn-vintage-glint {
  background-color: var(--ink);
}
.matchbox-card .btn-vintage-primary:hover .btn-vintage-text {
  color: var(--cream);
}

.match-strike-strip {
  width: 100%;
  height: 25px;
  background-color: #3a322e;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,0.4) 2px, rgba(0,0,0,0.4) 4px);
}

.match-strike-strip span {
  font-family: var(--font-ticket);
  font-size: 0.6rem;
  color: #a89a91;
  letter-spacing: 0.2em;
  background: #3a322e;
  padding: 0 10px;
}

/* --- Footer --- */
.footer-vintage {
  background-color: var(--noir-black);
  padding: 40px 0;
  border-top: 1px dashed var(--velvet-dark);
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.typewriter-link {
  font-family: var(--font-typewriter);
  font-size: 0.8rem;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.typewriter-link:hover {
  color: var(--neon-red);
}

/* --- Keyframe Animations --- */
@keyframes marqueeFlicker {
  0%, 100% { border-color: var(--tungsten); opacity: 0.8; box-shadow: inset 0 0 10px var(--tungsten); }
  50% { border-color: rgba(255, 183, 3, 0.4); opacity: 0.5; box-shadow: none; }
}

@keyframes neonFlickerQuick {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.3; }
}

/* --- Media Queries --- */
@media (max-width: 900px) {
  .hero-vintage {
    min-height: auto;
    padding: 112px 22px 120px;
  }

  .hero-content-vintage {
    grid-template-columns: 1fr;
  }

  .hero-headline-vintage {
    font-size: clamp(3.25rem, 16vw, 5.8rem);
  }

  .marquee-board-vintage {
    width: min(100%, 520px);
    min-height: 270px;
    padding: 36px 30px;
  }

  .hero-title-neon {
    font-size: clamp(5rem, 22vw, 8rem);
  }

  .hero-ticket-vintage {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 420px);
    margin-top: 26px;
    z-index: 5;
  }

  .scroll-down-vintage {
    display: none;
  }

  .statement-grid-vintage,
  .menu-grid-vintage {
    grid-template-columns: 1fr;
  }
  
  .statement-col-empty {
    display: none;
  }
  
  .horizontal-content-vintage {
    height: 50vh;
  }
  
  .text-card {
    width: 80vw;
  }
  
  .polaroid-card {
    width: 300px;
  }
  
  .matchbox-inner {
    padding: 30px 20px;
  }
  
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
