/* ============================================================
   13 TIL MIDNIGHT — site styles
   Vanilla CSS, no build step. Mobile-first, responsive.
   ============================================================ */

:root {
  /* Palette — "midnight": near-black with a touch of blue, not flat */
  --bg-0: #07080c;
  --bg-1: #0c0e15;
  --bg-2: #12141d;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);

  --fg: #f3f4f8;
  --muted: #a2a6b4;
  --muted-2: #6f7484;

  /* Electric-blue accent (used sparingly + for logo glow) */
  --accent: #6cc6ff;
  --accent-2: #1746c7;
  --accent-grad: linear-gradient(100deg, #1746c7 0%, #3b9eff 50%, #6cc6ff 100%);
  /* Solid-button gradient — deeper so white text stays legible across it */
  --btn-grad: linear-gradient(100deg, #3730a3 0%, #2563eb 100%);

  /* Headings and body both use Inter for now. Kept as separate variables so
     the heading face can be swapped later without touching every rule. */
  --font-display: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1180px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background-color: var(--bg-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Layered, subtle background: radial glows + faint noise. Fixed so it
   stays put while content scrolls. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(59, 158, 255, 0.16), transparent 60%),
    radial-gradient(900px 600px at 8% 12%, rgba(108, 198, 255, 0.12), transparent 55%),
    radial-gradient(1200px 800px at 50% 110%, rgba(23, 70, 199, 0.14), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0) 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ------------------------------ Header / nav ------------------------------ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header.is-fixed {
  position: fixed;
  background: rgba(7, 8, 12, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent-grad);
  transition: width 0.3s var(--ease);
}
.nav a:hover,
.nav a:focus-visible { color: var(--fg); }
.nav a:hover::after,
.nav a:focus-visible::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }
.nav a[aria-current="page"]::after { width: 100%; }

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--fg);
  background: var(--surface);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}
.socials a:hover,
.socials a:focus-visible {
  border-color: var(--accent);
  background: rgba(59, 158, 255, 0.16);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(59, 158, 255, 0.35), 0 0 18px rgba(59, 158, 255, 0.45);
}
.socials svg { width: 27px; height: 27px; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 60;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  margin-inline: auto;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-left { display: flex; align-items: center; gap: 22px; }

/* ------------------------------ Heroes ------------------------------ */
/* SHOWS video hero — sized so the "Shows" section peeks below it,
   cueing the visitor to scroll. ~2/3 viewport on laptop, ~1/2 on mobile. */
.hero {
  /* --hero-pos = vertical object-position; lower % crops more off the top (~100px on desktop) */
  --hero-pos: 34%;
  position: relative;
  /* Scale with overall screen size: mostly viewport height, plus a little
     width so a wider external monitor grows the hero too (matching the live
     site, which expands when the window gets larger). */
  height: clamp(400px, calc(58vh + 7vw), 800px);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% var(--hero-pos);
}
.hero__media::after {
  /* darken + bottom gradient for logo legibility */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none; /* let taps reach the <video> (tap-to-play on iOS) */
  background:
    linear-gradient(180deg, rgba(7, 8, 12, 0.55) 0%, rgba(7, 8, 12, 0.12) 28%, rgba(7, 8, 12, 0.20) 60%, rgba(7, 8, 12, 0.92) 100%);
}
.hero__logo {
  position: relative;
  z-index: 2;
  width: min(560px, 76vw);
  margin-bottom: clamp(48px, 9vh, 110px);
  pointer-events: none; /* don't intercept taps meant for the video below */
  /* Neutral shadow for legibility over the video (the logo carries its own glow). */
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.55));
}
@media (max-width: 760px) {
  .hero {
    height: clamp(300px, 50svh, 460px);
    --hero-pos: 36%; /* slightly less top crop on mobile */
  }
}

/* Inner-page hero (PICS / VIDEOS / CONTACT) */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(48px, 12vh, 130px));
  padding-bottom: clamp(28px, 6vh, 64px);
  overflow: hidden;
}
/* Tighter top gap — sit the eyebrow closer to the nav (Pics, Contact). */
.page-hero--tight {
  padding-top: calc(var(--header-h) + clamp(16px, 4vh, 44px));
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 380px at 80% -40%, rgba(59, 158, 255, 0.20), transparent 60%),
    radial-gradient(600px 360px at 5% -30%, rgba(108, 198, 255, 0.16), transparent 60%);
}
.page-hero__eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 700;
}
.page-hero h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 700;
}
.page-hero p {
  color: var(--muted);
  max-width: 56ch;
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ------------------------------ Sections ------------------------------ */
.section { padding-block: clamp(48px, 9vh, 110px); }
.section--tight { padding-block: clamp(28px, 5vh, 56px); }

/* SHOWS page: tighten the space above each section header to ~45px. */
#shows { padding-top: 45px; padding-bottom: 0; }
#past { padding-top: 45px; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: clamp(24px, 4vh, 44px);
}
.section-head h2 {
  font-size: clamp(1.44rem, 3.6vw, 2.32rem);
  font-weight: 700;
}
.section-head .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
}

/* ------------------------------ Buttons / links ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--fg);
  background: var(--surface);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), outline-color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--surface-2); border-color: var(--fg); }
.btn--solid {
  border: 0;
  color: #fff;
  background: var(--btn-grad);
  font-weight: 600;
  outline: 2px solid transparent;
  outline-offset: 3px;
}
/* Hover: flatten the gradient to a brighter blue and ring it with a
   light-blue outline (don't inherit .btn:hover's flat surface background). */
.btn--solid:hover,
.btn--solid:focus-visible {
  background: #2f6fe6;
  outline-color: var(--accent);
}
.btn svg { width: 15px; height: 15px; }

/* ------------------------------ SHOWS — upcoming ------------------------------ */
.shows-list { display: flex; flex-direction: column; gap: 14px; }

.show {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(16px, 2.4vw, 24px) clamp(18px, 2.6vw, 28px);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface), transparent);
  /* No hover effect on the card itself: it isn't interactive, and any
     hover style here caused scroll jank as cards crossed the cursor.
     The button inside keeps its own hover. */
}
.show__date {
  text-align: center;
  line-height: 1;
  font-family: var(--font-display);
}
.show__date .mon {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.show__date .day {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
}
.show__date .dow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 4px;
}
.show__info { min-width: 0; }
.show__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.42rem);
  font-weight: 600;
}
.show__meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 4px;
}
.show__cta { display: flex; justify-content: flex-end; }

/* ------------------------------ SHOWS — past ------------------------------ */
.past-year { margin-bottom: clamp(28px, 5vh, 48px); }
.past-year__label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.past-year__label::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-grad);
  opacity: 0.85;
}
.capsules {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.capsule {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 1rem;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.capsule:hover { color: var(--fg); }
.capsule .cap-date {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  min-width: 96px;
}
.capsule .cap-sep { width: 1px; height: 13px; background: var(--border-strong); flex: 0 0 auto; }

/* ------------------------------ Gallery (PICS) ------------------------------ */
/* Masonry: JS distributes items into equal-width columns (count is
   responsive), so portrait + landscape both keep their natural ratio and
   each photo can carry an always-visible credit caption below it. */
.gallery {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.gallery__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
}
.gallery__item { margin: 0; }
.gallery__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
  background: var(--surface);
  border: 1px solid var(--border);
}
.gallery__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 8, 12, 0.45));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery__media:hover img { transform: scale(1.05); }
.gallery__media:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 48px);
  background: rgba(5, 6, 9, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;       /* definite height so the image's % max-height resolves */
  max-width: 100%;    /* width shrinks to the image, so the caption matches it */
}
.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100% - 38px); /* leave room for the caption line below */
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(20, 22, 30, 0.7);
  color: var(--fg);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.lightbox__btn:hover { background: rgba(40, 44, 58, 0.9); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: clamp(10px, 3vw, 28px); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(10px, 3vw, 28px); top: 50%; transform: translateY(-50%); }
.lightbox__meta {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}
.lightbox__credit {
  margin: 0;
  font-size: 0.82rem;
  color: var(--fg);
  opacity: 0.85;
  text-align: left;
  min-width: 0;
}
.lightbox__counter {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}

/* ------------------------------ Videos ------------------------------ */
.reels { display: grid; gap: clamp(36px, 6vh, 72px); }
.reel { max-width: 1040px; margin-inline: auto; width: 100%; }
.reel__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.reel__title .idx {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}
.reel__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.reel__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.reels-more {
  text-align: center;
  margin-top: clamp(32px, 6vh, 64px);
  color: var(--muted);
  font-size: 1.05rem;
}
.reels-more a {
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.reels-more a:hover { border-color: var(--accent); }

/* ------------------------------ EPK (press kit) ------------------------------ */
/* Logo by itself at the top, clearing the fixed header. */
.epk-top {
  padding-top: calc(var(--header-h) + clamp(18px, 4vh, 40px));
  padding-bottom: clamp(14px, 3vh, 28px);
  text-align: center;
}
.epk-top img {
  width: min(360px, 66vw);
  margin-inline: auto;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.5));
}
/* Full-bleed hero image at ~60% viewport height, so content peeks below. */
.epk-hero {
  height: 58svh;
  min-height: 300px;
  max-height: 640px;
  width: 100%;
  overflow: hidden;
}
.epk-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}
.epk-bio {
  font-size: clamp(1rem, 1.75vw, 1.13rem);
  line-height: 1.6;
  color: var(--fg);
}
.epk-assets__intro { color: var(--muted); max-width: 60ch; margin-bottom: clamp(20px, 3vh, 32px); }
.epk-assets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 680px) {
  .epk-assets { grid-template-columns: repeat(3, 1fr); }
}
.epk-asset {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface), transparent);
  transition: border-color 0.2s var(--ease);
}
.epk-asset:hover,
.epk-asset:focus-visible { border-color: var(--accent); }
.epk-asset__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--fg);
}
.epk-asset__hint { color: var(--muted); font-size: 0.92rem; }
.epk-more { text-align: center; margin-top: clamp(28px, 5vh, 52px); }

/* ------------------------------ Contact form ------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; }
}
.contact-aside p { color: var(--muted); margin-top: 14px; }
.contact-aside .lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--fg);
  line-height: 1.4;
}
/* Make the Facebook / Instagram links read as links, with a hover cue. */
.contact-aside a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(108, 198, 255, 0.45);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.contact-aside a:hover,
.contact-aside a:focus-visible {
  color: #fff;
  text-decoration-color: #fff;
}

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.form__row { display: grid; gap: 18px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }

/* honeypot — visually hidden */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form__status { font-size: 0.95rem; min-height: 1.4em; }
.form__status.ok { color: #6ee7a8; }
.form__status.err { color: #ff8b8b; }

/* ------------------------------ Footer ------------------------------ */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 40px;
  margin-top: clamp(40px, 8vh, 90px);
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer .brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.site-footer .muted { color: var(--muted-2); font-size: 0.86rem; }

/* ------------------------------ Reveal animations ------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------ Mobile menu / responsive ------------------------------ */
@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(7, 8, 12, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav a { font-size: 1.4rem; color: var(--fg); }
  body.menu-open .nav { transform: translateX(0); }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 620px) {
  .show {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "date info"
      "cta  cta";
    row-gap: 14px;
  }
  .show__date { grid-area: date; }
  .show__info { grid-area: info; }
  .show__cta { grid-area: cta; justify-content: flex-start; }
  .show__date .day { font-size: 1.6rem; }
  .socials a { width: 36px; height: 36px; }
}

/* ------------------------------ Reduced motion ------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
