/* ========================================================
   BAILA VERDE — Editorial Sundowner Experience
   Day → Night Scroll Journey
   ======================================================== */

:root {
  /* Day → Night progression */
  --c-cream: #f4ead8;
  --c-sand: #e9d8b6;
  --c-skin: #c89e7a;
  --c-amber: #d97a30;
  --c-clay: #a8421a;
  --c-rose: #b94a5d;
  --c-plum: #4a1a3a;
  --c-night: #0c0a08;
  --c-deep: #06070a;
  --c-verde: #1a3326;        /* dark green accent */
  --c-verde-glow: #4a8f6a;

  /* Text */
  --t-light: #f4ead8;
  --t-light-60: rgba(244,234,216,.62);
  --t-light-40: rgba(244,234,216,.40);
  --t-dark: #0c0a08;
  --t-dark-60: rgba(12,10,8,.65);

  /* Type */
  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body: 'Inter', -apple-system, sans-serif;

  /* Easing */
  --e-out: cubic-bezier(0.22, 1, 0.36, 1);
  --e-soft: cubic-bezier(0.65, 0, 0.35, 1);

  /* Scrollbar hide */
  --pad: clamp(20px, 4vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--c-amber); color: var(--c-night); }

html, body {
  background: var(--c-night);
  color: var(--t-light);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  cursor: none;
}

@media (max-width: 768px) {
  body { cursor: auto; }
}

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

/* Focus-visible — A11y */
:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Skip-Link — A11y */
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 99999;
  padding: 12px 18px;
  background: var(--c-amber);
  color: var(--c-night);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: top 0.3s var(--e-out);
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: none;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .scene__dj-img,
  .reveal-up,
  .reveal-left,
  .reveal-scale,
  .reveal-stagger > span,
  .split-word,
  .reveal-mask > *,
  .dj-block__chips .dj-block__chip {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal-clip,
  .reveal-clip--right,
  .reveal-clip--up {
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
  .ticker__track,
  .crowd__track,
  .scene__scroll-line {
    animation: none !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* ============================================
   GLOBAL GRAIN
   ============================================ */
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-2%,-3%); }
  25% { transform: translate(3%,1%); }
  40% { transform: translate(-1%,2%); }
  55% { transform: translate(2%,-2%); }
  70% { transform: translate(-3%,1%); }
  85% { transform: translate(1%,-1%); }
}

body::before {
  content: '';
  position: fixed;
  inset: -50%;
  z-index: 1000;
  pointer-events: none;
  opacity: .06;
  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='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grain 8s steps(8) infinite;
}

/* ============================================
   TYPE SYSTEM (Editorial)
   ============================================ */

.display {
  font-family: var(--f-display);
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 0.92;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.display--huge {
  font-size: clamp(5rem, 18vw, 18rem);
}
.display--big {
  font-size: clamp(3.5rem, 11vw, 11rem);
}
.display--mid {
  font-size: clamp(2.5rem, 7vw, 6rem);
}

.italic {
  font-style: italic;
  font-weight: 400;
}

.overline {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-light-60);
}
.overline--light { color: var(--t-light); }
.overline--center { display: block; text-align: center; }

.lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  color: var(--t-light-60);
  letter-spacing: -0.005em;
}
.lede--small {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: normal;
  font-family: var(--f-body);
  font-weight: 400;
  max-width: 38ch;
}

/* ============================================
   LOADER
   ============================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--c-night);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--e-out), visibility 0.8s;
  overflow: hidden;
}

.loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(217,122,48,0.10), transparent 70%);
  pointer-events: none;
}

.loader__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.loader__logo {
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 688 / 605;
  opacity: 0;
  transform: translateY(12px);
  animation: loader-logo-in 1.2s var(--e-out) 0.1s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader__logo svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

@keyframes loader-logo-in {
  to { opacity: 0.95; transform: translateY(0); }
}

.loader__count {
  position: absolute;
  bottom: clamp(40px, 6vh, 80px);
  right: clamp(20px, 4vw, 56px);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--t-light);
  font-variation-settings: "opsz" 144;
}

.loader__count::after {
  content: '%';
  font-style: normal;
  font-size: 0.35em;
  vertical-align: top;
  margin-left: 6px;
  color: var(--c-amber);
  font-weight: 500;
  letter-spacing: 0;
  font-family: var(--f-body);
  position: relative;
  top: 0.6em;
}

.loader__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background: var(--c-amber);
  width: 0;
  transition: width 0.4s linear;
}

@media (max-width: 768px) {
  .loader__count {
    bottom: clamp(30px, 5vh, 60px);
    right: 20px;
    font-size: clamp(3.5rem, 22vw, 7rem);
  }
}

.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ============================================
   FLOATING NAV
   ============================================ */

.nav {
  position: fixed;
  top: clamp(34px, 4vw, 50px);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: clamp(14px, 2vw, 22px) var(--pad);
  pointer-events: none;
  transition: transform 0.5s var(--e-out);
}

.nav > * { pointer-events: auto; }

.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: transform 0.4s var(--e-out), opacity 0.3s;
}

.nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s var(--e-out);
}

.nav__logo:hover img {
  filter: none;
}

.nav__logo:hover {
  transform: scale(1.06);
}

/* Centered audio toggle button */
.nav__sound {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(244,234,216,.22);
  background: rgba(12,10,8,.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--t-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  transition: border-color 0.35s var(--e-out), color 0.35s var(--e-out), background 0.35s var(--e-out);
}

.nav__sound:hover {
  border-color: var(--c-amber);
  color: var(--c-amber);
}

.nav__sound-icon {
  width: 16px;
  height: 16px;
}

.nav__sound-icon--play { display: block; }
.nav__sound-icon--pause { display: none; }

.nav__sound[aria-pressed="true"] .nav__sound-icon--play { display: none; }
.nav__sound[aria-pressed="true"] .nav__sound-icon--pause { display: block; }

/* Equalizer indicator only when playing */
.nav__sound-eq {
  display: none;
  position: absolute;
  inset: auto 0 -10px 0;
  height: 6px;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}
.nav__sound[aria-pressed="true"] .nav__sound-eq { display: flex; }

.nav__sound-eq span {
  width: 2px;
  height: 30%;
  background: var(--c-amber);
  border-radius: 1px;
  animation: eq-bar 0.9s var(--e-out) infinite alternate;
}
.nav__sound-eq span:nth-child(2) { animation-delay: 0.15s; }
.nav__sound-eq span:nth-child(3) { animation-delay: 0.3s; }

@keyframes eq-bar {
  0% { height: 30%; }
  100% { height: 100%; }
}

@media (max-width: 768px) {
  .nav__sound {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav__sound-eq span { animation: none !important; height: 60%; }
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(244,234,216,.25);
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--t-light);
  transition: all 0.4s var(--e-out);
}

.nav__cta:hover {
  background: var(--t-light);
  color: var(--c-night);
  border-color: var(--t-light);
}

.nav__cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-amber);
  box-shadow: 0 0 0 0 rgba(217,122,48,0.7);
  animation: pulse 2.4s var(--e-out) infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(217,122,48,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(217,122,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,122,48,0); }
}

/* ============================================
   TICKER (sub-nav)
   ============================================ */

.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244,234,216,.08);
  background: rgba(12,10,8,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--e-out), transform 0.5s var(--e-out);
}

.is-loaded .ticker { opacity: 1; }

.ticker__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--t-light-60);
}

.ticker__track em {
  font-style: normal;
  color: var(--c-amber);
  font-family: var(--f-body);
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SCENE — ARRIVAL HERO
   ============================================ */

.scene {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.scene--arrival {
  background: linear-gradient(180deg, #1a0e08 0%, #0c0a08 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 5vh));
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 5vh));
  align-items: flex-start;
  padding-top: clamp(140px, 18vh, 240px);
  padding-bottom: clamp(120px, 16vh, 200px);
  min-height: 115vh;
  min-height: 115dvh;
}

.journey {
  margin-top: -10vh;
  position: relative;
  z-index: 2;
}
.journey::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12vh;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(180deg, var(--c-night) 0%, transparent 100%);
}

.moment--01::after,
.moment--02::after,
.moment--03::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16vh;
  pointer-events: none;
  z-index: 4;
}
.moment--01::after { background: linear-gradient(180deg, transparent, #4a1f10); }
.moment--02::after { background: linear-gradient(180deg, transparent, #3a0a25); }
.moment--03::after { background: linear-gradient(180deg, transparent, var(--c-deep)); }

.crowd {
  margin-top: -8vh;
  z-index: 3;
}
.crowd::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16vh;
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(180deg, transparent, var(--c-deep));
}

.sound {
  margin-top: -6vh;
  z-index: 3;
}
.sound::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14vh;
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(180deg, transparent, #02030a);
}

.next {
  margin-top: -6vh;
  position: relative;
  z-index: 3;
}
.next::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16vh;
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(180deg, transparent, #0a1f15);
}

.cta {
  margin-top: -6vh;
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .scene--arrival {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 3vh));
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 3vh));
  }
  .journey::before { height: 8vh; }
  .moment--01::after, .moment--02::after, .moment--03::after,
  .crowd::after, .sound::after, .next::after { height: 10vh; }
  .journey, .crowd, .sound, .next, .cta { margin-top: -4vh; }
  .moment--01 {
    clip-path: polygon(0 3vh, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 3vh, 100% 0, 100% 100%, 0 100%);
    margin-top: -2vh;
  }
}

.scene__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.scene__bg-img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  opacity: 0.45;
  filter: contrast(1.1) saturate(0.9) hue-rotate(-10deg);
}

.scene__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(217,122,48,0.45), transparent 70%),
    radial-gradient(ellipse 50% 30% at 80% 20%, rgba(168,66,26,0.35), transparent 65%),
    linear-gradient(180deg, rgba(12,10,8,0.4) 0%, rgba(12,10,8,0.1) 40%, rgba(12,10,8,0.85) 100%);
  pointer-events: none;
}

/* DJ full-bleed layers in hero (Original-Style) */
.scene__dj {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scene__dj--right { z-index: 2; }
.scene__dj--left  { z-index: 3; }

.scene__dj-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: transform 1.2s var(--e-out), opacity 1s ease;
  will-change: transform;
}

.scene__dj--right .scene__dj-img { transform: translateX(100%); }
.scene__dj--left  .scene__dj-img { transform: translateX(-100%); }

.is-loaded .scene__dj--right .scene__dj-img {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.is-loaded .scene__dj--left .scene__dj-img {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

@media (max-width: 768px) {
  .scene__dj { display: none; }
}

.scene__content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 var(--pad);
  max-width: 1600px;
  width: 100%;
}

.scene__content .overline {
  display: inline-block;
  margin-bottom: clamp(40px, 5vh, 80px);
  position: relative;
  padding: 0 28px;
}
.scene__content .overline::before,
.scene__content .overline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--t-light-40);
}
.scene__content .overline::before { left: 0; }
.scene__content .overline::after { right: 0; }

.scene--arrival .display {
  margin-bottom: clamp(30px, 4vh, 50px);
}

.scene--arrival .display span {
  display: block;
}

.scene__scroll {
  position: absolute;
  bottom: clamp(50px, 8vh, 90px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-light);
}

.scene__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--t-light-60), transparent);
  background-size: 100% 200%;
  animation: scroll-line 2.4s var(--e-out) infinite;
}

@keyframes scroll-line {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

/* ============================================
   JOURNEY — Sticky Storytelling
   ============================================ */

.journey {
  position: relative;
  background: linear-gradient(180deg, var(--c-night) 0%, #110a06 100%);
}

.journey__intro {
  padding: clamp(80px, 14vh, 180px) var(--pad);
  max-width: 1600px;
  margin: 0 auto;
}

.journey__intro .overline {
  margin-bottom: 24px;
  display: block;
}

.moments {
  display: flex;
  flex-direction: column;
}

.moment {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding: clamp(60px, 10vh, 120px) var(--pad);
  gap: clamp(24px, 5vw, 80px);
}

.moment--01 {
  background: linear-gradient(180deg, #160d08 0%, #2b1810 18%, #4a1f10 100%);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 5vh, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 5vh, 100% 0, 100% 100%, 0 100%);
  margin-top: -3vh;
  isolation: isolate;
}

/* Decorative background art layer — sits between gradient and content */
.section-art {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

/* Lift moment children above the bg art */
.moment > .moment__media,
.moment > .moment__caption {
  position: relative;
  z-index: 2;
}

.cta__inner {
  position: relative;
  z-index: 2;
}

.moment--02,
.moment--03 {
  isolation: isolate;
}

.cta {
  isolation: isolate;
}

.cta .section-art {
  opacity: 0.18;
}
.moment--01::before {
  content: '';
  position: absolute;
  inset: -15%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 75% 110%,
    rgba(43, 24, 16, 0) 0%,
    rgba(43, 24, 16, 0) 38%,
    rgba(255, 190, 100, 0.10) 40%,
    rgba(217, 122, 48, 0.06) 46%,
    rgba(217, 122, 48, 0.02) 60%,
    transparent 80%
  );
  filter: blur(2px);
  opacity: 0.6;
}
.moment--01 > * {
  position: relative;
  z-index: 1;
}

.moment--02 { background: linear-gradient(180deg, #4a1f10 0%, #3a0a25 100%); }
.moment--03 { background: linear-gradient(180deg, #3a0a25 0%, #0c0a08 100%); }

.moment:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}
.moment:nth-child(even) .moment__media { order: 2; }
.moment:nth-child(even) .moment__caption { order: 1; }

.moment__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}

.moment__media img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  transition: transform 1.6s var(--e-out);
}

/* Stacked media — color image fades out, b/w stays beneath */
.moment__media--stacked .moment__media-bg,
.moment__media--stacked .moment__media-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.moment__media--stacked .moment__media-fg {
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.4s linear;
}

.moment__caption {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.moment__num {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--c-amber);
  text-transform: uppercase;
}

.moment__word {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
}
.moment--01 .moment__word { color: var(--c-amber); }
.moment--02 .moment__word { color: var(--c-rose); }
.moment--03 .moment__word { color: var(--c-sand); }

.moment__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--t-light-60);
  max-width: 22ch;
}

@media (max-width: 768px) {
  .moment {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .moment:nth-child(even) .moment__media { order: 1; }
  .moment:nth-child(even) .moment__caption { order: 2; }
  .moment__media { aspect-ratio: 4/5; }
}

/* ============================================
   CROWD
   ============================================ */

.crowd {
  background: var(--c-deep);
  padding: clamp(80px, 14vh, 180px) 0 0;
  position: relative;
  overflow: hidden;
}

.crowd::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(185,74,93,0.18), transparent 65%),
    radial-gradient(ellipse 50% 30% at 80% 100%, rgba(74,143,106,0.12), transparent 65%);
  pointer-events: none;
}

.crowd__head {
  padding: 0 var(--pad);
  max-width: 1600px;
  margin: 0 auto clamp(60px, 10vh, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  position: relative;
  z-index: 2;
}

.crowd__head .overline {
  display: block;
  margin-bottom: 24px;
}

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

.crowd__strip {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.crowd__track {
  display: flex;
  gap: 16px;
  padding: 0 var(--pad);
  width: max-content;
  animation: scroll-imgs 60s linear infinite;
  animation-play-state: paused;
}

.crowd.is-playing .crowd__track {
  animation-play-state: running;
}

.crowd__track:hover { animation-play-state: paused; }

.crowd__track figure {
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 380px);
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--c-night);
}

.crowd__track figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.8s var(--e-out), filter 0.8s var(--e-out);
}

.crowd__track figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.2) contrast(1.1);
}

@keyframes scroll-imgs {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SOUND
   ============================================ */

.sound {
  background: linear-gradient(180deg, #060607 0%, #0a0807 50%, #060607 100%);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 14vh, 180px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sound::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(214, 102, 24, 0.18), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Moon glows behind "Afro" */
.sound__moon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: clamp(560px, 62vw, 1180px);
  height: auto;
  z-index: 1;
  opacity: 0.26;
  pointer-events: none;
  user-select: none;
  filter: saturate(0.85) brightness(0.6);
}

/* Waveform between headline and subline */
.sound__waves {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(1400px, 160vw, 3000px);
  height: clamp(500px, 78vh, 980px);
  object-fit: contain;
  z-index: 1;
  opacity: 0.36;
  pointer-events: none;
  user-select: none;
  filter: brightness(0.6) saturate(0.8);
}

.sound .overline { margin-bottom: 60px; position: relative; z-index: 3; }

.sound__type {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(3rem, 11vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: clamp(12px, 2vw, 32px);
  position: relative;
  z-index: 3;
  margin-bottom: 40px;
}

.sound__type em {
  font-style: normal;
  color: var(--c-amber);
  font-size: 0.7em;
  font-weight: 400;
}

.sound__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--t-light-60);
  position: relative;
  z-index: 3;
  margin-top: clamp(60px, 10vh, 130px);
}

@media (max-width: 768px) {
  .sound__moon {
    width: clamp(380px, 95vw, 600px);
    transform: translate(-50%, -62%);
    opacity: 0.22;
  }
  .sound__waves {
    width: 180vw;
    height: clamp(360px, 60vh, 560px);
    top: 64%;
    transform: translate(-50%, -50%);
    opacity: 0.32;
  }
  .sound__sub { margin-top: clamp(40px, 8vh, 80px); }
}

/* ============================================
   NEXT EVENT
   ============================================ */

.next {
  background: linear-gradient(180deg, var(--c-deep) 0%, #02030a 100%);
  padding: clamp(100px, 16vh, 200px) var(--pad);
  position: relative;
}

.next__layout {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.4s var(--e-out);
}
.next__layout:hover { opacity: 0.85; }
.next__layout:hover .next__cta { color: var(--c-amber); }

.next__cta {
  margin-top: 16px;
  color: var(--t-light-60);
  font-style: normal;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s var(--e-out);
}
.next__cta span {
  display: inline-block;
  transition: transform 0.4s var(--e-out);
  margin-left: 4px;
}
.next__layout:hover .next__cta span { transform: translateX(4px); }

.next__col--label .overline { display: block; }

.next__col--main .display { margin-bottom: 24px; }

.next__date {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t-light-60);
}

.next__detail {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--t-light-40);
  line-height: 1.4;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .next__layout { grid-template-columns: 1fr; }
  .next__col--meta { margin-top: 24px; }
}

/* ============================================
   CTA
   ============================================ */

.cta {
  background: linear-gradient(180deg, #02030a 0%, #0a1f15 60%, #061a10 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 14vh, 180px) var(--pad);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(74,143,106,0.30), transparent 65%),
    radial-gradient(circle 40% at 80% 30%, rgba(217,122,48,0.15), transparent 65%);
  pointer-events: none;
}

.cta__inner {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta__inner .overline {
  display: inline-block;
  margin-bottom: 32px;
}

.cta__inner .display { margin-bottom: 48px; }

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 44px;
  border: 1px solid var(--t-light);
  border-radius: 100px;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--t-light);
  transition: all 0.5s var(--e-out);
  position: relative;
  overflow: hidden;
}

.cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-verde-glow);
  transform: translateY(101%);
  transition: transform 0.5s var(--e-out);
  z-index: -1;
}

.cta__btn:hover {
  color: var(--t-dark);
  border-color: var(--c-verde-glow);
}
.cta__btn:hover::before {
  transform: translateY(0);
}

.cta__btn svg {
  width: 28px;
  height: 28px;
  transition: transform 0.5s var(--e-out);
}

.cta__btn:hover svg { transform: translateX(6px); }

.cta__small {
  margin-top: 32px;
  font-size: 13px;
  color: var(--t-light-60);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */

.foot {
  background: var(--c-deep);
  padding: clamp(40px, 6vh, 60px) var(--pad);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid rgba(244,234,216,.06);
}

.foot__row {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  font-size: 13px;
  color: var(--t-light-60);
  flex-wrap: wrap;
}

.foot__row--end {
  justify-content: flex-end;
}

.foot__brand {
  display: flex;
  align-items: center;
  transition: opacity 0.3s var(--e-out);
}
.foot__brand:hover { opacity: 0.7; }
.foot__brand img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.foot a {
  position: relative;
  transition: color 0.3s var(--e-out);
}
.foot a:hover { color: var(--c-amber); }

@media (max-width: 700px) {
  .foot { grid-template-columns: 1fr; }
  .foot__row--end { justify-content: flex-start; }
}

/* ============================================
   CUSTOM CURSOR (desktop)
   ============================================ */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.6s var(--e-out), width 0.3s, height 0.3s;
  transform: translate(-50%, -50%);
}

.cursor__dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--t-light);
}

.cursor.is-hover {
  width: 56px;
  height: 56px;
  mix-blend-mode: difference;
}

@media (max-width: 768px) {
  .cursor { display: none; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal-up,
.reveal-stagger > span {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--e-out), transform 1.2s var(--e-out);
}

.reveal-up.is-visible,
.reveal-stagger.is-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > span:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > span:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > span:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > span:nth-child(4) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > span:nth-child(5) { transition-delay: 0.6s; }

.reveal--delay { transition-delay: 0.4s; }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--delay-6 { transition-delay: 0.6s; }

/* Reveal-Left — für Overlines */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s var(--e-out), transform 1s var(--e-out);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal-Clip — Clip-Path Image-Reveal */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s var(--e-out), -webkit-clip-path 1.4s var(--e-out);
}
.reveal-clip.is-visible {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}
.reveal-clip--right {
  clip-path: inset(0 0 0 100%);
  -webkit-clip-path: inset(0 0 0 100%);
}
.reveal-clip--right.is-visible {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}
.reveal-clip--up {
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
}
.reveal-clip--up.is-visible {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

/* Reveal-Scale — für Cards */
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1s var(--e-out), transform 1.1s var(--e-out);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Split-Text Word Reveal — Mask-Reveal pro Wort */
.split-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  padding-bottom: 0.2em;
  margin-bottom: -0.12em;
}
.split-word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--e-out);
  will-change: transform;
}
[data-split].is-visible .split-word {
  transform: translateY(0);
}

/* Reveal-Mask (für individuelle Spans wie sound__type) */
.reveal-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.reveal-mask > * {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--e-out);
}
.reveal-mask.is-visible > * {
  transform: translateY(0);
}

/* Section-Bleeds — fließende Übergänge */
.section-bleed {
  position: relative;
}
.section-bleed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 28vh;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(180deg, transparent 0%, var(--bleed-to, var(--c-night)) 100%);
}

/* Genre-Chip Stagger */
.dj-block__chips.is-visible .dj-block__chip {
  opacity: 1;
  transform: translateY(0);
}
.dj-block__chips .dj-block__chip {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--e-out), transform 0.6s var(--e-out);
}
.dj-block__chips.is-visible .dj-block__chip:nth-child(1) { transition-delay: 0.05s; }
.dj-block__chips.is-visible .dj-block__chip:nth-child(2) { transition-delay: 0.10s; }
.dj-block__chips.is-visible .dj-block__chip:nth-child(3) { transition-delay: 0.15s; }
.dj-block__chips.is-visible .dj-block__chip:nth-child(4) { transition-delay: 0.20s; }
.dj-block__chips.is-visible .dj-block__chip:nth-child(5) { transition-delay: 0.25s; }
.dj-block__chips.is-visible .dj-block__chip:nth-child(6) { transition-delay: 0.30s; }
.dj-block__chips.is-visible .dj-block__chip:nth-child(7) { transition-delay: 0.35s; }
.dj-block__chips.is-visible .dj-block__chip:nth-child(8) { transition-delay: 0.40s; }
.dj-block__chips.is-visible .dj-block__chip:nth-child(9) { transition-delay: 0.45s; }
.dj-block__chips.is-visible .dj-block__chip:nth-child(10) { transition-delay: 0.50s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body::before { animation: none; }
}

/* ============================================
   MOBILE TWEAKS
   ============================================ */

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav__logo { width: 38px; height: 38px; font-size: 1.2rem; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }
  .scene__content { padding: 0 24px; }
  .scene__content .overline { margin-bottom: 24px; padding: 0 22px; }
  .moment__word { font-size: clamp(3.5rem, 18vw, 6rem); }
  .crowd__head { gap: 24px; }
  .next__layout { gap: 16px; }
  .cta__btn { padding: 18px 32px; font-size: 1.5rem; }
}

/* ============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================ */

.legal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #1a0e08 0%, #0c0a08 60%, #0c0a08 100%);
  position: relative;
  padding: clamp(140px, 22vh, 220px) var(--pad) clamp(80px, 12vh, 140px);
}

.legal-page::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60vh;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(217,122,48,0.18), transparent 70%);
  z-index: 0;
}

.legal-wrap {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.legal-meta {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 28px;
}

.legal-page h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--t-light);
  margin-bottom: clamp(40px, 6vh, 80px);
}
.legal-page h1 em,
.legal-page h1 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--c-amber);
}

.legal-page h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--t-light);
  margin: clamp(40px, 6vh, 64px) 0 16px;
}

.legal-page p {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--t-light-60);
  margin-bottom: 16px;
  max-width: 70ch;
}

.legal-page strong {
  color: var(--t-light);
  font-weight: 500;
}

.legal-page a {
  color: var(--c-amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(217,122,48,0.4);
  transition: border-color 0.3s var(--e-out);
}
.legal-page a:hover {
  border-color: var(--c-amber);
}

.legal-page ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  max-width: 70ch;
}

.legal-page ul li {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--t-light-60);
  padding-left: 24px;
  position: relative;
  margin-bottom: 6px;
}

.legal-page ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-amber);
}

.legal-page__lede {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.4;
  color: var(--t-light);
  margin-bottom: clamp(40px, 6vh, 60px);
  max-width: 50ch;
}


/* ============================================
   HEADER: DJs Link + Socials (rechts)
   ============================================ */

.nav { justify-content: space-between !important; }

.nav__right {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.nav__link {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--t-light);
  position: relative;
  padding: 4px 2px;
  transition: color 0.3s var(--e-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--e-out);
}

.nav__link:hover { color: var(--c-amber); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link.is-active {
  color: var(--c-amber);
}
.nav__link.is-active::after { transform: scaleX(1); }

.nav__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-light-60);
  transition: color 0.3s var(--e-out), transform 0.3s var(--e-out);
}

.nav__social:hover {
  color: var(--c-amber);
  transform: translateY(-2px);
}

.nav__social svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .nav__socials { display: none; }
  .nav__link { font-size: 0.95rem; }
  .nav__right { gap: 16px; }
}

/* ============================================
   DJ PAGE — Sub-Hero + Editorial DJ Blocks
   ============================================ */

.dj-hero {
  position: relative;
  min-height: 80vh;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  padding: clamp(140px, 22vh, 240px) var(--pad) clamp(80px, 12vh, 140px);
  background: linear-gradient(180deg, #1a0e08 0%, #0c0a08 100%);
  overflow: hidden;
}

.dj-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(217,122,48,0.30), transparent 70%),
    radial-gradient(circle 30% at 80% 20%, rgba(255, 179, 71, 0.18), transparent 60%);
}

.dj-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}

.dj-hero__heading .overline { display: block; margin-bottom: 32px; }

.dj-hero__lede {
  max-width: 38ch;
  align-self: end;
  margin-bottom: 8px;
}

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

/* DJ Block (editorial — image floats free, no container) */
.dj-block {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  padding: clamp(100px, 18vh, 220px) var(--pad);
  align-items: start;
}

.dj-block--haemma { background: linear-gradient(180deg, #1a0e08 0%, #1f110a 100%); }
.dj-block--jaroon { background: linear-gradient(180deg, #1f110a 0%, #2a0e1c 100%); }

.dj-block::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.dj-block--haemma::before {
  background:
    radial-gradient(ellipse 70% 50% at 25% 30%, rgba(217,122,48,0.20), transparent 65%),
    radial-gradient(circle 30% at 80% 70%, rgba(255,179,71,0.10), transparent 60%);
}
.dj-block--jaroon::before {
  background:
    radial-gradient(ellipse 70% 50% at 75% 30%, rgba(185,74,93,0.22), transparent 65%),
    radial-gradient(circle 30% at 20% 70%, rgba(217,122,48,0.10), transparent 60%);
}

/* Big background DJ-name marquee — editorial wow */
.dj-block__bg-name {
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(40px, 8vh, 100px);
  z-index: 0;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: rgba(244, 234, 216, 0.04);
  pointer-events: none;
  user-select: none;
  text-align: center;
}

.dj-block__media {
  position: sticky;
  top: clamp(120px, 14vh, 180px);
  width: 100%;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

.dj-block__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1px;
  transition: transform 1.4s var(--e-out);
}

.dj-block:hover .dj-block__media img {
  transform: scale(1.02);
}

/* Date stamp under image */
.dj-block__stamp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-light-40);
}
.dj-block__stamp-line {
  flex: 1;
  height: 1px;
  background: rgba(244,234,216,0.15);
  margin: 0 16px;
}

.dj-block__content {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vh, 40px);
  position: relative;
  z-index: 2;
  padding-top: clamp(20px, 4vh, 60px);
}

.dj-block__num {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--c-amber);
  text-transform: uppercase;
}
.dj-block--jaroon .dj-block__num { color: var(--c-rose); }

.dj-block__head {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  flex-wrap: wrap;
}

.dj-block__logo {
  height: clamp(48px, 6vw, 76px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.4s var(--e-out), transform 0.4s var(--e-out);
}
.dj-block__logo:hover {
  opacity: 1;
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .dj-block__logo { height: 44px; }
}

.dj-block__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--t-light);
}

.dj-block__bio {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  color: var(--t-light-60);
  max-width: 38ch;
  position: relative;
}

.dj-block__quote-mark {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 600;
  font-size: 3.4em;
  line-height: 0;
  color: var(--c-amber);
  vertical-align: -0.25em;
  margin-right: 8px;
  display: inline-block;
}

.dj-block--jaroon .dj-block__quote-mark {
  color: var(--c-rose);
}

.dj-block__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.dj-block__chip {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(244,234,216,.2);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--t-light-60);
  transition: all 0.3s var(--e-out);
  background: transparent;
}

.dj-block--haemma .dj-block__chip:hover {
  border-color: var(--c-amber);
  color: var(--c-amber);
  background: rgba(217,122,48,.08);
}
.dj-block--jaroon .dj-block__chip:hover {
  border-color: var(--c-rose);
  color: var(--c-rose);
  background: rgba(185,74,93,.08);
}

.dj-block__socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.dj-block__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid rgba(244,234,216,.18);
  border-radius: 100px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--t-light);
  transition: all 0.4s var(--e-out);
  max-width: 320px;
}

.dj-block__social-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--e-out);
}

.dj-block--haemma .dj-block__social-link:hover {
  background: var(--c-amber);
  border-color: var(--c-amber);
  color: var(--c-night);
}
.dj-block--jaroon .dj-block__social-link:hover {
  background: var(--c-rose);
  border-color: var(--c-rose);
  color: var(--t-light);
}
.dj-block__social-link:hover svg { transform: translateX(6px); }

/* Mirror layout for Jaroon */
.dj-block--reverse {
  direction: rtl;
}
.dj-block--reverse > * { direction: ltr; }
.dj-block--reverse .dj-block__content { text-align: left; }

@media (max-width: 900px) {
  .dj-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: clamp(80px, 12vh, 120px) var(--pad);
  }
  .dj-block__media {
    position: relative;
    top: 0;
  }
  .dj-block__media img {
    max-height: 75vh;
    object-fit: cover;
    width: 100%;
  }
  .dj-block--reverse {
    direction: ltr;
  }
  .dj-block__bg-name {
    font-size: clamp(5rem, 30vw, 9rem);
    top: clamp(20px, 4vh, 60px);
  }
  .dj-block__stamp {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .dj-block__stamp-line {
    margin: 0 10px;
  }
  .dj-block__quote-mark {
    font-size: 2.6em;
  }
}


/* ============================================
   MOBILE FINAL PASS — alle Section-Tweaks
   ============================================ */

@media (max-width: 768px) {
  :root { --pad: 20px; }

  /* Header - kompakter */
  .nav {
    top: clamp(28px, 5.5vw, 40px);
    padding: 10px var(--pad);
  }
  .nav__logo { width: 40px; height: 40px; }
  .nav__right { gap: 14px; }
  .nav__link { font-size: 1rem; }

  /* Ticker — kleiner, langsamer auf Mobile */
  .ticker { padding: 7px 0; }
  .ticker__track {
    font-size: 12px;
    gap: 22px;
    animation-duration: 50s;
  }

  /* Loader — Logo + Counter angepasst */
  .loader__logo { width: 140px; }

  /* HERO */
  .scene--arrival { min-height: 100dvh; }
  .display--huge { font-size: clamp(5.5rem, 30vw, 10rem); }
  .scene__content { padding: 0 16px; }
  .scene__content .overline {
    margin-bottom: 32px;
    padding: 0 26px;
    font-size: 13px;
    letter-spacing: 0.22em;
  }
  .scene__content .overline::before,
  .scene__content .overline::after {
    width: 18px;
  }
  .lede { font-size: 1.15rem; }

  /* Hero DJs etwas zurücknehmen damit der Title atmen kann */
  .scene__dj-img { object-position: 50% 25%; }

  /* JOURNEY */
  .journey__intro {
    padding: clamp(60px, 10vh, 100px) var(--pad);
  }
  .journey__intro .overline { margin-bottom: 18px; }
  .display--mid { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .moment {
    min-height: auto;
    padding: clamp(50px, 8vh, 80px) var(--pad);
    gap: 28px;
  }
  .moment__media { aspect-ratio: 4/5; max-width: 92%; margin: 0 auto; }
  .moment__caption { gap: 16px; align-items: flex-start; }
  .moment__num { font-size: 11px; }
  .moment__word {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
    line-height: 0.9;
  }
  .moment__sub { font-size: 1rem; }

  /* CROWD */
  .crowd { padding-top: clamp(60px, 10vh, 100px); }
  .crowd__head {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .crowd__head .overline { margin-bottom: 14px; }
  .lede--small { font-size: 0.95rem; }
  .crowd__track {
    gap: 12px;
    animation-duration: 75s;
  }
  .crowd__track figure {
    width: 62vw;
  }

  /* SOUND */
  .sound {
    min-height: auto;
    padding: clamp(70px, 12vh, 120px) var(--pad);
  }
  .sound .overline { margin-bottom: 32px; }
  .sound__type {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
  }
  .sound__type em { font-size: 0.5em; }
  .sound__sub { font-size: 1.05rem; }

  /* NEXT */
  .next {
    padding: clamp(80px, 12vh, 120px) var(--pad);
  }
  .next__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .next__col--meta { margin-top: 12px; }
  .display--big { font-size: clamp(2.8rem, 13vw, 5.5rem); }
  .next__date { font-size: 12px; }

  /* CTA */
  .cta { min-height: auto; padding: clamp(80px, 14vh, 140px) var(--pad); }
  .cta__inner .display { margin-bottom: 36px; }
  .cta__btn {
    padding: 16px 28px;
    font-size: 1.4rem;
    gap: 12px;
  }
  .cta__btn svg { width: 22px; height: 22px; }
  .cta__small { font-size: 12px; margin-top: 24px; word-break: break-all; }

  /* FOOTER */
  .foot {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 36px var(--pad);
  }
  .foot__row,
  .foot__row--end {
    justify-content: flex-start;
    gap: 14px;
    font-size: 12px;
  }
  .foot__brand { font-size: 1rem; }

  /* DJ-PAGE Sub-Hero */
  .dj-hero {
    padding: clamp(120px, 18vh, 160px) var(--pad) clamp(60px, 9vh, 90px);
    min-height: auto;
  }
  .dj-hero__content { gap: 28px; }
  .dj-hero__lede { align-self: start; }
  .dj-hero__heading .overline { margin-bottom: 24px; }

  /* DJ-Block layout (already 1col below 900px) */
  .dj-block {
    padding: clamp(60px, 10vh, 100px) var(--pad);
    gap: 28px;
  }
  .dj-block__name {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }
  .dj-block__bio { font-size: 1.05rem; max-width: 100%; }
  .dj-block__chip {
    padding: 7px 13px;
    font-size: 11px;
  }
  .dj-block__social-link {
    font-size: 1rem;
    padding: 14px 20px;
    max-width: 100%;
  }

  /* Reduce expensive animations on small screens */
  body::before { opacity: 0.04; }
}

/* Extra-tight phones */
@media (max-width: 380px) {
  :root { --pad: 16px; }
  .display--huge { font-size: clamp(4.5rem, 30vw, 8rem); }
  .display--big { font-size: clamp(2.4rem, 13vw, 4.5rem); }
  .display--mid { font-size: clamp(1.9rem, 10vw, 3rem); }
  .moment__word { font-size: clamp(2.8rem, 18vw, 4.5rem); }
  .nav__link { font-size: 0.92rem; }
  .ticker__track { font-size: 11px; }
}

/* Landscape phones — Hero etwas kompakter */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .scene--arrival { min-height: 110vh; }
  .display--huge { font-size: clamp(3rem, 12vw, 5rem); }
  .scene__scroll { display: none; }
}


/* ============================================
   DJ MIXTAPE EMBEDS (SoundCloud / Mixcloud)
   ============================================ */

.dj-block__mix {
  margin-top: clamp(12px, 1.5vh, 24px);
  width: 100%;
  max-width: 480px;
}

.dj-block__mix-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-light-60);
  margin-bottom: 14px;
}

.dj-block__mix-iframe {
  width: 100%;
  border: 0;
  border-radius: 4px;
  display: block;
  background: rgba(0, 0, 0, 0.3);
}

.dj-block__mix-iframe--soundcloud { height: 300px; }
.dj-block__mix-iframe--mixcloud { height: 120px; }

@media (max-width: 600px) {
  .dj-block__mix-iframe--soundcloud { height: 260px; }
}


/* ============================================
   EVENTS PAGE
   ============================================ */

.events-page {
  background: linear-gradient(180deg, #0c0a08 0%, #110a06 100%);
  padding: clamp(140px, 22vh, 220px) var(--pad) clamp(80px, 12vh, 140px);
  position: relative;
  overflow: hidden;
}

.events-page::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50vh;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(217,122,48,0.16), transparent 70%);
  z-index: 0;
}

.events-hero {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto clamp(80px, 14vh, 160px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}

.events-hero__heading .overline { display: block; margin-bottom: 32px; }
.events-hero__lede { max-width: 32ch; align-self: end; margin-bottom: 8px; }

@media (max-width: 900px) {
  .events-hero { grid-template-columns: 1fr; gap: 28px; }
  .events-hero__lede { align-self: start; }
}

.events-list {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 14vh, 160px);
}

/* CMS-managed container — kids participate directly in events-list flex layout */
#eventsList {
  display: contents;
}

.event-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
}

.event-row--reverse { direction: rtl; }
.event-row--reverse > * { direction: ltr; }

.event-row__media {
  overflow: hidden;
  background: var(--c-night);
  border-radius: 2px;
}
.event-row__media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.4s var(--e-out);
}
.event-row:hover .event-row__media img { transform: scale(1.02); }

.event-row__num {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
}

.event-row__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 18px 0 14px;
  color: var(--t-light);
}
.event-row__title em,
.event-row__title .italic {
  font-style: italic;
  font-weight: 400;
}

.event-row__location {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--t-light-60);
  margin-bottom: 18px;
}

.event-row__tagline {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--t-light-60);
  max-width: 38ch;
  margin-bottom: 28px;
}

.event-row__ticket {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid var(--c-amber);
  border-radius: 100px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--c-amber);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--e-out), border-color 0.4s var(--e-out);
}
.event-row__ticket::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-amber);
  transform: translateY(101%);
  transition: transform 0.5s var(--e-out);
  z-index: 0;
}
.event-row__ticket:hover {
  color: var(--c-night);
  border-color: var(--c-amber);
}
.event-row__ticket:hover::before {
  transform: translateY(0);
}
.event-row__ticket span,
.event-row__ticket svg {
  position: relative;
  z-index: 1;
}
.event-row__ticket svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--e-out);
}
.event-row__ticket:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .event-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .event-row--reverse { direction: ltr; }
}

/* CTA inside events-page should not overlap the last event flyer */
.events-page .cta {
  margin-top: clamp(80px, 12vh, 160px);
  z-index: 1;
}
.events-page .event-row {
  position: relative;
  z-index: 2;
}

/* Past event styling (slight desaturation, "Vergangen" badge color) */
.event-row--past .event-row__num {
  color: var(--t-light-40);
}

/* Event Gallery — slideshow inside event-row */
.event-row__media--gallery {
  background: var(--c-night);
}

.event-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}

.event-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--e-out);
  pointer-events: none;
}
.event-gallery__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.event-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-gallery__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  padding: 8px 14px;
  background: rgba(12, 10, 8, 0.5);
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.event-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(244, 234, 216, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--e-out), transform 0.3s var(--e-out);
}
.event-gallery__dot.is-active {
  background: var(--t-light);
  transform: scale(1.2);
}
.event-gallery__dot:hover {
  background: var(--c-amber);
}


/* ============================================
   PICS PAGE — Event Galleries
   ============================================ */

.pics-page {
  background: linear-gradient(180deg, #0c0a08 0%, #110a06 100%);
  padding: clamp(140px, 22vh, 220px) var(--pad) clamp(80px, 12vh, 140px);
  position: relative;
  overflow: hidden;
}

.pics-page::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50vh;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(217,122,48,0.14), transparent 70%);
  z-index: 0;
}

.pics-hero {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto clamp(80px, 14vh, 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
.pics-hero__heading .overline { display: block; margin-bottom: 32px; }
.pics-hero__lede { max-width: 32ch; align-self: end; margin-bottom: 8px; }

@media (max-width: 900px) {
  .pics-hero { grid-template-columns: 1fr; gap: 28px; }
  .pics-hero__lede { align-self: start; }
}

.pics-albums {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 14vh, 160px);
}

.pics-album {
  position: relative;
}

.pics-album__head {
  position: sticky;
  top: clamp(60px, 9vh, 90px);
  z-index: 5;
  background: linear-gradient(180deg, #0c0a08 60%, transparent 100%);
  padding: clamp(16px, 2vh, 28px) 0 clamp(20px, 2.5vh, 32px);
  margin-bottom: clamp(20px, 3vh, 36px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pics-album__overline {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  display: block;
  margin-bottom: 12px;
}

.pics-album__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--t-light);
  margin-bottom: 12px;
}
.pics-album__title em,
.pics-album__title .italic {
  font-style: italic;
  font-weight: 400;
}

.pics-album__meta {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: var(--t-light-60);
}

.pics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.pics-grid__item {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--c-night);
  cursor: pointer;
  border: 0;
  padding: 0;
  border-radius: 1px;
}

.pics-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--e-out), filter 0.4s var(--e-out);
  filter: brightness(0.92);
}

.pics-grid__item:hover img,
.pics-grid__item:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.pics-grid__item:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .pics-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .pics-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .pics-album__head { top: clamp(50px, 8vh, 70px); }
}

/* ============================================
   LIGHTBOX — Editorial Dark
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 8, 6, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--e-out), visibility 0.35s;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: min(92vw, 1600px);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.25s var(--e-out);
}

.lightbox.is-switching .lightbox__img { opacity: 0.4; }

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  border: 1px solid rgba(244, 234, 216, 0.25);
  background: rgba(12, 10, 8, 0.5);
  color: var(--t-light);
  font-family: var(--f-display);
  font-weight: 400;
  cursor: pointer;
  border-radius: 50%;
  transition: border-color 0.3s var(--e-out), color 0.3s var(--e-out), background 0.3s var(--e-out), transform 0.3s var(--e-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  border-color: var(--c-amber);
  color: var(--c-amber);
}

.lightbox__close {
  top: clamp(20px, 3vh, 40px);
  right: clamp(20px, 3vw, 40px);
  width: 48px;
  height: 48px;
  font-size: 24px;
  line-height: 1;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 32px;
  line-height: 1;
}
.lightbox__prev { left: clamp(20px, 3vw, 48px); }
.lightbox__next { right: clamp(20px, 3vw, 48px); }

.lightbox__count {
  position: absolute;
  bottom: clamp(20px, 3vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--t-light-60);
  padding: 8px 16px;
  background: rgba(12, 10, 8, 0.6);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 700px) {
  .lightbox__prev,
  .lightbox__next {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
  .lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 22px; }
  .lightbox__img { max-width: 96vw; max-height: 80vh; }
  .lightbox__count { bottom: 14px; font-size: 12px; }
}

body.lightbox-open {
  overflow: hidden;
}
