/* =========================================================
   MEMORABILIA — Cinematic Editorial Dark
   ========================================================= */

:root {
  --cream:   #fffbe6;
  --yellow:  #ffe000;
  --black:   #000000;
  --ink:     #07070a;
  --ink-2:   #0c0c10;
  --ink-3:   #14141a;
  --line:    rgba(255, 251, 230, 0.08);
  --line-2:  rgba(255, 251, 230, 0.14);
  --muted:   rgba(255, 251, 230, 0.55);
  --muted-2: rgba(255, 251, 230, 0.35);

  --ease:     cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1320px;
  --pad: clamp(20px, 4vw, 56px);

  --font: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Massive editorial sizes */
  --h-display: clamp(56px, 13.5vw, 220px);
  --h2:        clamp(36px, 6.4vw, 96px);
  --h3:        clamp(20px, 1.8vw, 28px);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02";
}

::selection { background: var(--yellow); color: var(--black); }

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

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 900ms var(--ease) 600ms, visibility 0s linear 1500ms;
}
.preloader.is-done { opacity: 0; visibility: hidden; }

.preloader__inner { text-align: center; padding: 0 24px; }
.preloader__brand {
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader__logo {
  width: clamp(220px, 50vw, 480px);
  height: auto;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  filter: blur(12px);
  animation: preLogoIn 1100ms var(--ease) 200ms forwards;
}
@keyframes preLogoIn {
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.preloader__bar {
  margin: 36px auto 0;
  width: min(280px, 70vw);
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.preloader__bar span {
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform-origin: left;
  animation: preBar 1400ms var(--ease) 200ms forwards;
  transform: scaleX(0);
  box-shadow: 0 0 14px var(--yellow);
}
@keyframes preBar {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
.preloader__meta {
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted-2);
  font-weight: 400;
}

/* =========================================================
   AMBIENT EFFECTS — grain, vignette, particles
   ========================================================= */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: 0.05;
  mix-blend-mode: overlay;
  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' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  animation: grainShift 8s steps(8) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-3%, -2%); }
  20%  { transform: translate(-4%, 2%); }
  30%  { transform: translate(2%, -3%); }
  40%  { transform: translate(-1%, 3%); }
  50%  { transform: translate(-3%, -1%); }
  60%  { transform: translate(3%, 1%); }
  70%  { transform: translate(-2%, -2%); }
  80%  { transform: translate(2%, 2%); }
  90%  { transform: translate(-1%, 1%); }
  100% { transform: translate(0, 0); }
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 88;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%);
}

.particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

/* =========================================================
   NAV — floating glass pill
   ========================================================= */
.nav {
  position: fixed;
  top: max(22px, env(safe-area-inset-top, 22px));
  left: 50%;
  transform: translateX(-50%) translateY(0);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 22px;
  background: rgba(7, 7, 10, 0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  box-shadow:
    0 1px 0 rgba(255, 251, 230, 0.06) inset,
    0 20px 60px -20px rgba(0, 0, 0, 0.6);
  transition: transform 600ms var(--ease), opacity 400ms var(--ease), background 400ms var(--ease);
  opacity: 0;
  animation: navIn 900ms var(--ease) 1700ms forwards;
}
@keyframes navIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav.is-hidden {
  transform: translateX(-50%) translateY(-130%);
}
.nav.is-scrolled {
  background: rgba(7, 7, 10, 0.78);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  height: 22px;
}
.nav__logo-img {
  height: 22px;
  width: auto;
  filter: brightness(1.05);
  transition: filter 400ms var(--ease);
}
.nav__logo:hover .nav__logo-img { filter: brightness(1.2) drop-shadow(0 0 12px var(--yellow)); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav__links a {
  position: relative;
  color: var(--muted);
  transition: color 320ms var(--ease);
  padding: 4px 2px;
}
.nav__links a:hover { color: var(--cream); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 500ms var(--ease);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 18px;
  background: var(--cream);
  color: var(--black);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 500ms var(--ease), background 400ms var(--ease);
}
.nav__cta:hover { transform: scale(1.02); background: var(--yellow); }
.nav__cta:active { transform: scale(0.98); }
.nav__cta-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  transition: transform 500ms var(--ease), background 400ms var(--ease);
}
.nav__cta:hover .nav__cta-icon {
  transform: translate(2px, -2px) scale(1.05);
  background: rgba(0, 0, 0, 0.14);
}

.nav__menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  position: relative;
  padding: 0;
}
.nav__menu-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--cream);
  transition: transform 500ms var(--ease), opacity 300ms var(--ease);
  transform: translate(-50%, -4px);
}
.nav__menu-btn span:nth-child(2) { transform: translate(-50%, 3px); }
.nav__menu-btn.is-open span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.nav__menu-btn.is-open span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); }

/* =========================================================
   MOBILE MENU OVERLAY
   ========================================================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(5, 5, 7, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px var(--pad) 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms var(--ease), visibility 0s linear 500ms;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms var(--ease), visibility 0s;
}
.menu-overlay__nav { display: flex; flex-direction: column; gap: 8px; }
.menu-overlay__nav a {
  font-size: clamp(40px, 11vw, 80px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--cream);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease), color 300ms var(--ease);
}
.menu-overlay.is-open .menu-overlay__nav a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--d, 100) * 1ms);
}
.menu-overlay__nav a[data-d="100"] { --d: 100; }
.menu-overlay__nav a[data-d="160"] { --d: 160; }
.menu-overlay__nav a[data-d="220"] { --d: 220; }
.menu-overlay__nav a[data-d="280"] { --d: 280; }
.menu-overlay__nav a[data-d="340"] { --d: 340; }
.menu-overlay__nav a:hover { color: var(--yellow); }

.menu-overlay__foot {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted-2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease) 420ms, transform 700ms var(--ease) 420ms;
}
.menu-overlay.is-open .menu-overlay__foot { opacity: 1; transform: translateY(0); }

/* =========================================================
   TYPOGRAPHY HELPERS
   ========================================================= */
.h2 {
  font-size: var(--h2);
  font-weight: 200;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--cream);
  margin: 14px 0 24px;
}

/* H2 with inline logo instead of "Memorabilia" word */
.h2--with-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.h2__pre {
  display: block;
  line-height: 0.95;
}
.h2__logo {
  display: block;
  width: clamp(260px, 70%, 520px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 251, 230, 0.15));
}
.h2--with-logo .accent { display: block; line-height: 0.95; }

@media (max-width: 600px) {
  .h2__logo { width: 90%; }
}
.accent {
  font-style: italic;
  font-weight: 200;
  background: linear-gradient(90deg, var(--yellow), var(--cream));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted);
  font-weight: 300;
  max-width: 52ch;
  margin: 0 0 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}

.section-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section-head .eyebrow { justify-content: center; }
.section-head .h2 { margin-inline: auto; }
.section-head__lead {
  color: var(--muted);
  max-width: 56ch;
  margin: 12px auto 0;
  font-size: clamp(14px, 1.05vw, 17px);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 500ms var(--ease), background 400ms var(--ease), color 400ms var(--ease), box-shadow 600ms var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 500ms var(--ease), background 400ms var(--ease);
}

.btn--primary {
  background: var(--cream);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(255, 224, 0, 0);
}
.btn--primary .btn__icon { background: rgba(0, 0, 0, 0.08); }
.btn--primary:hover {
  background: var(--yellow);
  box-shadow: 0 0 36px -4px rgba(255, 224, 0, 0.6);
  transform: translateY(-2px);
}
.btn--primary:hover .btn__icon {
  background: rgba(0, 0, 0, 0.14);
  transform: translate(2px, -1px) scale(1.05);
}

.btn--ghost {
  background: rgba(255, 251, 230, 0.04);
  color: var(--cream);
  border: 1px solid var(--line-2);
}
.btn--ghost .btn__icon { background: rgba(255, 251, 230, 0.08); }
.btn--ghost:hover {
  background: rgba(255, 251, 230, 0.08);
  transform: translateY(-2px);
  border-color: rgba(255, 251, 230, 0.3);
}
.btn--ghost:hover .btn__icon {
  background: rgba(255, 251, 230, 0.14);
  transform: translate(2px, -1px) scale(1.05);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 16px 16px 26px;
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease);
  transition-delay: calc(var(--rd, 0) * 1ms);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px var(--pad) 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: -10% -2% 0;
  z-index: -1;
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease-out) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.18); filter: grayscale(100%) contrast(1.1) brightness(0.5) blur(8px); }
  to   { transform: scale(1.06); filter: grayscale(100%) contrast(1.1) brightness(0.85) blur(0); }
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.6) 70%, var(--ink) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 224, 0, 0.08) 0%, transparent 50%);
}

.hero__lights { position: absolute; inset: 0; mix-blend-mode: screen; pointer-events: none; }
.lightbeam {
  position: absolute;
  width: 60vw;
  height: 200vh;
  background: linear-gradient(180deg, rgba(255, 251, 230, 0) 0%, rgba(255, 251, 230, 0.1) 40%, rgba(255, 251, 230, 0) 100%);
  filter: blur(60px);
  transform-origin: top center;
}
.lightbeam--1 { left: -10%; top: -50%; transform: rotate(20deg); animation: beamSway 11s var(--ease) infinite alternate; }
.lightbeam--2 { left: 30%;  top: -50%; transform: rotate(-10deg); animation: beamSway 14s var(--ease) infinite alternate-reverse;
  background: linear-gradient(180deg, rgba(255, 224, 0, 0) 0%, rgba(255, 224, 0, 0.12) 40%, rgba(255, 224, 0, 0) 100%);
}
.lightbeam--3 { right: -10%; top: -50%; transform: rotate(-22deg); animation: beamSway 9s var(--ease) infinite alternate; }
@keyframes beamSway {
  0%   { opacity: 0.4; transform: rotate(var(--r, 0deg)) translateX(0); }
  100% { opacity: 0.85; transform: rotate(calc(var(--r, 0deg) + 4deg)) translateX(40px); }
}
.lightbeam--1 { --r: 20deg; }
.lightbeam--2 { --r: -10deg; }
.lightbeam--3 { --r: -22deg; }

.hero__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 3px,
    rgba(0,0,0,0.18) 3px,
    rgba(0,0,0,0.18) 4px
  );
  mix-blend-mode: multiply;
  opacity: 0.45;
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.36em;
  font-weight: 500;
  color: var(--cream);
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 251, 230, 0.04);
  backdrop-filter: blur(8px);
  margin-bottom: 30px;
  text-transform: uppercase;
}
.hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 14px var(--yellow);
  animation: dotPulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: var(--h-display);
  font-weight: 200;
  letter-spacing: -0.05em;
  line-height: 0.86;
  margin: 0 0 28px;
  color: var(--cream);
  text-shadow: 0 0 60px rgba(255, 251, 230, 0.15);
  word-break: keep-all;
  white-space: nowrap;
}
.hero__title .word { display: inline-block; max-width: 100%; }

/* Hero with SVG logo instead of text */
.hero__title--logo {
  margin: 0 0 28px;
  white-space: normal;
  text-shadow: none;
  display: block;
  width: 100%;
}
.hero__logo {
  display: block;
  width: 100%;
  max-width: min(1100px, 92vw);
  height: auto;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(20px) drop-shadow(0 0 40px rgba(255, 251, 230, 0.2));
  animation: heroLogoIn 1600ms var(--ease) 1700ms forwards;
}
@keyframes heroLogoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 0 60px rgba(255, 251, 230, 0.25));
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(44px, 12.5vw, 80px);
    letter-spacing: -0.045em;
    white-space: nowrap;
    line-height: 0.95;
  }
  .hero__logo { max-width: 100%; }
}
@media (max-width: 380px) {
  .hero__title {
    font-size: 11.5vw;
  }
}
.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(8deg);
  filter: blur(12px);
  animation: charIn 1100ms var(--ease) forwards;
  animation-delay: calc(var(--d) + 1700ms);
}
@keyframes charIn {
  to { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}

.hero__subtitle {
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 300;
  margin: 0 0 18px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.hero__subtitle em { font-weight: 200; opacity: 0.6; font-style: italic; }
.hero__subtitle strong { font-weight: 400; }

.hero__lead {
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 36px;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* hero marquee */
.hero__marquee {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 2800ms forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.marquee {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: scrollX 28s linear infinite;
  font-size: 12px;
  letter-spacing: 0.4em;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
}
.marquee span:nth-child(odd) { color: var(--cream); }
.marquee span:nth-child(even) { color: var(--yellow); opacity: 0.7; }
@keyframes scrollX {
  to { transform: translateX(-50%); }
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 100px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted-2);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--line-2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--yellow);
  animation: scrollDown 2.2s var(--ease) infinite;
}
@keyframes scrollDown {
  to { top: 100%; }
}
@media (min-width: 1024px) {
  .hero__scroll { display: flex; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--ink);
}
.about::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--yellow), transparent);
}
.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
}
.about__visual-shell {
  position: absolute;
  inset: 0;
  padding: 8px;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background: rgba(255, 251, 230, 0.02);
}
.about__visual-img {
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.05);
  overflow: hidden;
}
.about__visual-tag {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--cream);
  z-index: 2;
  padding: 12px 16px;
  background: rgba(7, 7, 10, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.about__visual-tag-line {
  flex: 1;
  height: 1px;
  background: var(--line-2);
}
.about__visual-mini {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 45%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border: 6px solid var(--ink);
  border-radius: 12px;
  filter: grayscale(100%) contrast(1.05);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8);
  display: none;
}
@media (min-width: 768px) {
  .about__visual-mini { display: block; }
}
.about__copy { padding: 20px 0; }

.next-show {
  display: block;
  margin-top: 40px;
  padding: 22px 24px;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 224, 0, 0.06), transparent 50%),
    rgba(255, 251, 230, 0.015);
  position: relative;
  overflow: hidden;
  transition: transform 600ms var(--ease), border-color 500ms var(--ease), background 600ms var(--ease);
  isolation: isolate;
}
.next-show::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--yellow);
  box-shadow: 0 0 18px var(--yellow);
}
.next-show::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 224, 0, 0.4), transparent 35%, transparent 65%, rgba(255, 224, 0, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
.next-show:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 224, 0, 0.25);
  background:
    linear-gradient(135deg, rgba(255, 224, 0, 0.1), transparent 50%),
    rgba(255, 251, 230, 0.025);
}
.next-show:hover::after { opacity: 1; }

.next-show__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.36em;
  color: var(--yellow);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.next-show__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  animation: dotPulse 2s ease-in-out infinite;
}

.next-show__body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.next-show__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-feature-settings: "tnum";
}
.next-show__day {
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--yellow);
  text-shadow: 0 0 24px rgba(255, 224, 0, 0.35);
}
.next-show__mo {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--yellow);
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.85;
}
.next-show__info { min-width: 0; }
.next-show__venue {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 300;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.1;
}
.next-show__city {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.next-show__arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 251, 230, 0.04);
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: transform 500ms var(--ease), background 400ms var(--ease), border-color 400ms var(--ease);
  flex-shrink: 0;
}
.next-show:hover .next-show__arrow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translate(2px, -2px) scale(1.05);
}

@media (max-width: 480px) {
  .next-show { padding: 18px 18px 18px 22px; }
  .next-show__body { gap: 14px; }
  .next-show__day { font-size: 38px; }
  .next-show__venue { font-size: 18px; }
  .next-show__arrow { width: 36px; height: 36px; }
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { aspect-ratio: 4/5; max-width: 480px; margin: 0 auto; }
}

/* =========================================================
   EXPERIENCE — bento
   ========================================================= */
.experience {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--ink);
}

.bento {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.bento__card {
  position: relative;
  grid-column: span 4;
  grid-row: span 1;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 800ms var(--ease), background-size 1400ms var(--ease), filter 800ms var(--ease);
  isolation: isolate;
  border: 1px solid var(--line);
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
}
.bento__card:hover {
  filter: grayscale(40%) contrast(1.08) brightness(0.95);
  background-size: 115%;
  transform: translateY(-4px);
}
.bento__card--lg {
  grid-column: span 8;
}
.bento__card--full {
  grid-column: span 12;
}

.bento__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.92) 100%);
  transition: background 700ms var(--ease);
  z-index: 1;
}
.bento__card:hover .bento__overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.92) 100%);
}

.bento__content {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2;
}
.bento__num {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--yellow);
  font-weight: 500;
}
.bento__title {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
  color: var(--cream);
  line-height: 1.05;
}
.bento__card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  max-width: 36ch;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 600ms var(--ease), opacity 600ms var(--ease) 100ms;
}
.bento__card:hover p {
  max-height: 100px;
  opacity: 1;
}

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .bento__card, .bento__card--lg, .bento__card--full { grid-column: span 1; grid-row: span 1; }
  .bento__card--full { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .bento__card--full { grid-column: span 1; }
}

/* =========================================================
   SHOWS
   ========================================================= */
.shows {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  overflow: hidden;
}
.shows__bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  white-space: nowrap;
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: rgba(255, 251, 230, 0.025);
  transform: translateY(-50%);
  pointer-events: none;
  animation: scrollBg 60s linear infinite;
  z-index: 0;
  user-select: none;
}
@keyframes scrollBg {
  to { transform: translate(-30%, -50%); }
}

.shows__list {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.show {
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 28px 16px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 500ms var(--ease), padding 500ms var(--ease);
}
.show::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 0, 0.04), transparent);
  opacity: 0;
  transition: opacity 600ms var(--ease);
  pointer-events: none;
}
.show:hover {
  padding-left: 32px;
  background: rgba(255, 251, 230, 0.015);
}
.show:hover::before { opacity: 1; }

.show__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-feature-settings: "tnum";
}
.show__day {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.show__mo {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--yellow);
  font-weight: 500;
  margin-top: 4px;
}
.show__info { min-width: 0; }
.show__venue {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 300;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.show__city {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.show__addr {
  font-size: 12px;
  color: var(--muted-2);
  margin: 6px 0 0;
  letter-spacing: 0.01em;
  max-width: 60ch;
}

/* Featured upcoming show — extra weight */
.show--featured {
  background:
    linear-gradient(90deg, rgba(255, 224, 0, 0.04), transparent 60%),
    rgba(255, 251, 230, 0.012);
  padding-top: 34px;
  padding-bottom: 34px;
}
.show--featured::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--yellow);
  box-shadow: 0 0 16px var(--yellow);
}
.show--featured .show__day {
  color: var(--yellow);
  text-shadow: 0 0 24px rgba(255, 224, 0, 0.4);
}
.show--featured .show__venue {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
}

.show--soon {
  opacity: 0.55;
}
.show--soon .show__day { color: var(--muted-2); }
.show--soon .show__venue { font-style: italic; font-weight: 200; }
.show__tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(255, 251, 230, 0.04);
  border: 1px solid var(--line-2);
  color: var(--muted);
}
.show__tag--live {
  color: var(--yellow);
  border-color: rgba(255, 224, 0, 0.3);
  background: rgba(255, 224, 0, 0.05);
}
.show__tag--soon {
  color: var(--cream);
  border-color: var(--line-2);
}
.show__cta {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 251, 230, 0.04);
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: transform 500ms var(--ease), background 400ms var(--ease), border-color 400ms var(--ease);
}
.show:hover .show__cta {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translate(2px, -2px) scale(1.05);
}

@media (max-width: 720px) {
  .show {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
    padding: 22px 8px;
  }
  .show__date { grid-column: 1; grid-row: 1 / span 2; }
  .show__info { grid-column: 2; grid-row: 1; }
  .show__status { grid-column: 2; grid-row: 2; justify-self: start; }
  .show__cta { display: none; }
  .show__day { font-size: 36px; }
  .show__venue { font-size: 18px; }
  .show__addr { font-size: 11px; }

  .show--featured { padding: 26px 8px 26px 14px; }
  .show--featured::after { width: 2px; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--ink);
}
.gallery__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink-3);
  cursor: pointer;
  border: 1px solid var(--line);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 1200ms var(--ease), filter 800ms var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1.1);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--cream);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.gallery__item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }
}
@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 8px; }
  .gallery__item--wide { grid-column: span 2; }
}

/* =========================================================
   BOOKING
   ========================================================= */
.booking {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.booking__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.booking__copy { padding: 20px 0; }

.booking__contacts {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}
.booking__contact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 400ms var(--ease);
}
.booking__contact:hover { padding-left: 8px; }
.booking__contact-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.booking__contact-val {
  font-size: 14px;
  color: var(--cream);
  font-weight: 400;
}

.booking__form {
  padding: 28px;
  background: rgba(255, 251, 230, 0.02);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  display: grid;
  gap: 14px;
  position: relative;
}
.booking__form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 224, 0, 0.3), transparent 40%, transparent 60%, rgba(255, 224, 0, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted-2);
  text-transform: uppercase;
  font-weight: 500;
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 0 12px;
  resize: none;
  transition: border-color 400ms var(--ease);
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }

.booking__form button { margin-top: 8px; }

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

/* =========================================================
   CLOSING
   ========================================================= */
.closing {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 14vw, 160px) var(--pad);
  overflow: hidden;
  isolation: isolate;
}
.closing__photo {
  position: absolute;
  inset: -10%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.1) brightness(0.55);
}
.closing__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.5) 70%, var(--ink) 100%),
    radial-gradient(ellipse at center, rgba(255, 224, 0, 0.06) 0%, transparent 60%);
}
.closing__quote {
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 5.5vw, 80px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.closing__quote span {
  display: block;
  color: var(--cream);
}
.closing__quote span.accent {
  font-style: italic;
  background: linear-gradient(90deg, var(--yellow), var(--cream));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--black);
  padding: 60px var(--pad) 24px;
  position: relative;
  overflow: hidden;
}
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer__logo img {
  height: 36px;
  width: auto;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: all 400ms var(--ease);
}
.footer__social a:hover {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(255, 224, 0, 0.5);
}

.footer__big {
  text-align: center;
  margin: 60px 0 30px;
  user-select: none;
  display: flex;
  justify-content: center;
  padding: 0 var(--pad);
}
.footer__big-logo {
  width: 100%;
  max-width: 1400px;
  height: auto;
  opacity: 0.18;
  filter: drop-shadow(0 0 24px rgba(255, 251, 230, 0.06));
  transition: opacity 1000ms var(--ease);
}
.footer__big:hover .footer__big-logo { opacity: 0.4; }

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 600px) {
  .footer__top { flex-direction: column; }
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px -8px rgba(255, 224, 0, 0.6), 0 0 0 1px rgba(0, 0, 0, 0.2);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
  animation: fabPulse 3s ease-in-out infinite;
}
.wa-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(255, 224, 0, 0.8);
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 12px 32px -8px rgba(255, 224, 0, 0.6), 0 0 0 0 rgba(255, 224, 0, 0.4); }
  50%      { box-shadow: 0 12px 32px -8px rgba(255, 224, 0, 0.6), 0 0 0 14px rgba(255, 224, 0, 0); }
}

/* =========================================================
   RESPONSIVE — NAV
   ========================================================= */
@media (max-width: 900px) {
  .nav__links { display: none; }
  /* Hide CTA on mobile — the WhatsApp FAB and menu cover this */
  .nav__cta { display: none; }
  .nav__menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    gap: 0;
    padding: 10px 10px 10px 22px;
    width: calc(100% - 32px);
    max-width: 460px;
    justify-content: space-between;
  }
  .nav__logo { flex: 1; min-width: 0; }
  .nav__logo-img { height: 22px; }
  .nav__menu-btn { width: 42px; height: 42px; flex-shrink: 0; }
  .nav__menu-btn span { width: 16px; }
}

@media (max-width: 420px) {
  .nav {
    padding: 9px 9px 9px 18px;
  }
  .nav__logo-img { height: 20px; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}
