/* =========================================================
   Turbo 2000 · Bar-Dancing Uitgeest
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #181818;
  --bg-4: #202020;
  --red: #e3151b;
  --red-dark: #b30f14;
  --red-glow: rgba(227, 21, 27, 0.55);
  --white: #ffffff;
  --text: #f2f2f2;
  --muted: #b3b3b3;
  --line: rgba(255, 255, 255, 0.1);
  --font-display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --container: 1140px;
  --nav-h: 76px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; }
address { font-style: normal; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.accent { color: var(--red); }

/* ---------- Typografie ---------- */
.kicker {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  color: var(--red);
  margin: 0 0 0.75rem;
}

h1, h2, .edition__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.005em;
}

h2 { font-size: clamp(2.4rem, 5.2vw, 4rem); }

h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.05;
}

.lead { font-size: 1.25rem; font-weight: 500; color: var(--white); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  line-height: 1;
  padding: 0.95rem 1.7rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 30px -10px var(--red-glow);
}
.btn--primary:hover {
  background: #ff2027;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px var(--red-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); transform: translateY(-2px); }

.btn--lg { font-size: 1.35rem; padding: 1.1rem 2.2rem; }
.btn--sm { font-size: 1rem; padding: 0.7rem 1.2rem; }

/* ---------- Navigatie ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(10, 10, 10, 0.94); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand { display: flex; align-items: center; height: 100%; }
.nav__logo { height: 48px; width: auto; }
.nav__wordmark {
  display: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: var(--white);
}
.nav__wordmark em { color: var(--red); font-style: italic; }
.nav__brand.is-fallback .nav__wordmark { display: inline; }

.nav__menu { display: flex; align-items: center; gap: 1.75rem; }
.nav__menu > a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  color: var(--muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav__menu > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__menu > a:not(.btn):hover { color: var(--white); }
.nav__menu > a:not(.btn):hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.9; }
.hero__glow--red {
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  left: 50%; top: -20%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(227, 21, 27, 0.55) 0%, rgba(227, 21, 27, 0.12) 45%, transparent 70%);
}
.hero__glow--white {
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  right: -10%; bottom: -10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9) 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9) 0%, transparent 70%);
}

.hero__inner { display: flex; flex-direction: column; align-items: center; }

.hero__logo { width: min(100%, 560px); margin: 0.25rem auto 2rem; }
.hero__logo img { width: 100%; filter: drop-shadow(0 20px 40px rgba(227, 21, 27, 0.35)); }

/* Tekst-fallback voor als assets/logo.png ontbreekt */
.logo-fallback { display: none; flex-direction: column; align-items: center; line-height: 1; }
.is-fallback .logo-fallback,
.is-fallback .edition__flyer-fallback,
.is-fallback .djs__photo-fallback { display: flex; }
.logo-fallback__top, .logo-fallback__bottom {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  color: var(--white);
}
.logo-fallback__main {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(5rem, 16vw, 9.5rem);
  color: var(--red);
  -webkit-text-stroke: 3px var(--white);
  paint-order: stroke fill;
  letter-spacing: -0.02em;
  margin: 0.05em 0 -0.22em;
  filter: drop-shadow(0 12px 30px rgba(227, 21, 27, 0.4));
}
.logo-fallback__year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--white);
  letter-spacing: 0.35em;
  margin-left: 0.35em;
  margin-bottom: 0.15em;
  position: relative;
  z-index: 1;
  -webkit-text-stroke: 1px #000;
  paint-order: stroke fill;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero__title { font-size: clamp(2.7rem, 7.2vw, 5.6rem); color: var(--white); margin-bottom: 1.25rem; }

.hero__lead {
  max-width: 640px;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero__date {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.hero__date-day { font-weight: 700; color: var(--muted); font-size: 1rem; }
.hero__date-main { font-weight: 900; font-style: italic; font-size: 1.5rem; color: var(--white); }
.hero__date-place { font-weight: 700; color: var(--red); font-size: 1rem; }
.hero__date > span + span::before {
  content: '';
  display: inline-block;
  width: 1px; height: 1.1em;
  background: var(--line);
  margin-right: 1rem;
  vertical-align: middle;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 130px));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.countdown__item {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--line);
}
.countdown__item:last-child { border-right: 0; }
.countdown__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.35rem;
}
.countdown.is-live {
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: var(--red);
}

/* ---------- Info-strip ---------- */
.strip {
  background: var(--red);
  color: var(--white);
  position: relative;
  z-index: 1;
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip__item {
  padding: 1.6rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.strip__item:last-child { border-right: 0; }
.strip__item strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 2.1rem;
  line-height: 1;
}
.strip__item span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.35rem;
}

/* ---------- Secties ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section--alt { background: var(--bg-2); }
.section__head { max-width: 760px; margin-bottom: 3rem; }
.section__intro { color: var(--muted); font-size: 1.15rem; margin-top: 1.25rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.split__text p:not(.lead) { color: var(--muted); }

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.feature {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(227, 21, 27, 0.5); }
.feature__icon {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(227, 21, 27, 0.15);
  margin-bottom: 1rem;
}
.feature__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin-bottom: 0.4rem; }
.feature p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ---------- DJ's ---------- */
.djs {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.djs__photo { margin: 0; text-align: center; }
.djs__photo img {
  width: min(100%, 440px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-inline: auto;
  box-shadow: 0 30px 80px -20px rgba(227, 21, 27, 0.45), 0 0 0 1px var(--line);
}
.djs__photo-fallback {
  display: none;
  width: min(100%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #2a2a2a, #0d0d0d 70%);
  box-shadow: 0 0 0 6px var(--red), 0 0 0 10px var(--white), 0 30px 80px -20px rgba(227, 21, 27, 0.45);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 2.4rem;
  color: var(--white);
}
.djs__photo figcaption {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: var(--muted);
}

.djs__cards { display: grid; gap: 1.25rem; }
.dj {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.5rem;
}
.dj__badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--red);
  border: 1px solid rgba(227, 21, 27, 0.5);
  padding: 0.25rem 0.55rem 0.2rem 0.7rem;
  border-radius: 4px;
}
.dj h3 { font-size: 2rem; }
.dj__role {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.25rem 0 0.9rem;
}
.dj p:last-child { margin: 0; color: var(--muted); }

/* ---------- Editie / tickets ---------- */
.section--edition {
  background:
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(227, 21, 27, 0.22), transparent 70%),
    var(--bg);
  overflow: hidden;
}
.edition {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.edition__title { font-size: clamp(3.4rem, 8vw, 6.4rem); color: var(--white); }

.brush {
  display: inline-block;
  position: relative;
  margin: 1.25rem 0 2rem;
  padding: 0.35rem 1.4rem 0.3rem;
  background: var(--red);
  transform: rotate(-2deg);
  clip-path: polygon(1% 12%, 4% 0, 30% 6%, 55% 0, 78% 7%, 99% 2%, 100% 55%, 97% 100%, 70% 94%, 45% 100%, 20% 93%, 0 100%, 2% 60%);
}
.brush span {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1;
  color: var(--white);
  display: inline-block;
  transform: rotate(2deg);
}

.edition__details { margin: 0 0 2rem; display: grid; }
.edition__details > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.edition__details > div:first-child { border-top: 1px solid var(--line); }
.edition__details dt {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  color: var(--muted);
}
.edition__details dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
}
.edition__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.edition__note { color: var(--muted); font-size: 0.95rem; margin: 0; }

.edition__flyer { margin: 0; position: relative; }
.edition__flyer img {
  width: min(100%, 460px);
  margin-inline: auto;
  border-radius: 12px;
  transform: rotate(2deg);
  box-shadow: 0 40px 90px -25px rgba(0, 0, 0, 0.9), 0 0 0 1px var(--line);
  transition: transform 0.4s var(--ease);
}
.edition__flyer img:hover { transform: rotate(0deg) scale(1.02); }
.edition__flyer-fallback {
  display: none;
  width: min(100%, 460px);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: rotate(2deg);
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.12), transparent 45%),
    linear-gradient(180deg, #1c1c1c, #070707);
  box-shadow: 0 40px 90px -25px rgba(0, 0, 0, 0.9), 0 0 0 1px var(--line);
}
.edition__flyer-fallback .logo-fallback__main { font-size: clamp(4rem, 10vw, 6.5rem); }
.edition__flyer-date {
  margin-top: 1.5rem;
  padding: 0.3rem 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 2.2rem;
  transform: rotate(-2deg);
}

/* ---------- Locatie ---------- */
.location {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.location__info address {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.location__info address strong { color: var(--red); font-weight: 900; font-style: italic; font-size: 2.2rem; }
.location__info p { color: var(--muted); margin-bottom: 1.5rem; }
.location__map {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
  background: var(--bg-3);
}
.location__map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(1) invert(0.92) hue-rotate(180deg) contrast(0.95);
}

/* ---------- CTA / socials ---------- */
.section--cta {
  background:
    radial-gradient(ellipse 50% 70% at 50% 100%, rgba(227, 21, 27, 0.25), transparent 70%),
    var(--bg-2);
  text-align: center;
}
.cta { display: flex; flex-direction: column; align-items: center; }
.cta .section__intro { max-width: 560px; }
.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin: 1.5rem 0 2.25rem; }
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.social:hover { border-color: var(--red); background: rgba(227, 21, 27, 0.12); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 2.5rem 0; background: var(--bg); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 2rem; }
.footer p { margin: 0; }
.footer__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.footer__brand em { color: var(--red); }
.footer__brand span { font-weight: 700; font-style: normal; font-size: 0.9rem; color: var(--muted); letter-spacing: 0.14em; margin-left: 0.25rem; }
.footer__tag { font-family: var(--font-display); font-style: italic; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; }
.footer__copy { font-size: 0.9rem; color: var(--muted); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 60;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  color: #111;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s var(--ease), opacity 0.3s;
  max-width: calc(100% - 2rem);
  text-align: center;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* ---------- Reveal-animatie ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .feature, .social, .edition__flyer img { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .split, .djs, .edition, .location { grid-template-columns: 1fr; gap: 2.5rem; }
  .djs__photo { order: -1; }
  .edition__flyer { order: -1; }
  .edition__flyer img, .edition__flyer-fallback { transform: none; }
}

@media (max-width: 760px) {
  :root { --nav-h: 66px; }
  .nav__logo { height: 42px; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s var(--ease), opacity 0.2s, visibility 0.2s;
  }
  .nav__menu.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__menu > a:not(.btn) { padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
  .nav__menu > .btn { margin-top: 1rem; }

  .hero { padding-top: calc(var(--nav-h) + 2rem); }
  .hero__date { flex-direction: column; gap: 0.25rem; border-radius: var(--radius); padding: 0.9rem 1.5rem; }
  .hero__date > span + span::before { display: none; }
  .hero__actions .btn { width: 100%; }
  .countdown { grid-template-columns: repeat(4, 1fr); width: 100%; }
  .countdown__label { font-size: 0.7rem; letter-spacing: 0.12em; }

  .strip__inner { grid-template-columns: repeat(2, 1fr); }
  .strip__item { border-bottom: 1px solid rgba(255, 255, 255, 0.22); padding: 1.3rem 0.5rem; }
  .strip__item strong { font-size: 1.65rem; white-space: nowrap; }
  .strip__item:nth-child(2n) { border-right: 0; }
  .strip__item:nth-last-child(-n + 2) { border-bottom: 0; }

  .features { grid-template-columns: 1fr; }
  .edition__details > div { grid-template-columns: 90px 1fr; }
  .edition__actions .btn { width: 100%; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
