/* ============================================================
   PULSE — הפקות אירועים | תאורה · הגברה · DJ's
   Design language: Modern-Retro poster (per VÉLOCE Figma template)
   cream / ink / caramel · condensed display type · oval buttons ·
   checkerboard dividers · hard offset shadows · flat 2px borders
   DJ page stage: Vynora CoverFlow (dark, 3D, reflections)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette (from template) */
  --cream: #f6f0e4;
  --paper: #fffdf8;
  --ink: #16130f;
  --ink-soft: #40382e;
  --caramel: #d19a5b;
  --caramel-deep: #6f4a17;
  --wa-green: #128c4b;
  --error: #b3261e;
  --ok: #1f7a4d;

  /* Stage (DJ page, from Vynora) */
  --stage-black: #000000;
  --stage-deep: #111111;

  /* Type */
  --font-display: 'Karantina', 'Heebo', system-ui, sans-serif;
  --font-body: 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fs-hero: clamp(3rem, 9vw, 6.5rem);
  --fs-h2: clamp(2.2rem, 5.5vw, 3.8rem);
  --fs-h3: clamp(1.5rem, 3vw, 2.1rem);
  --fs-statement: clamp(1.9rem, 4.6vw, 3.4rem);

  /* Layout */
  --container: 1200px;
  --line: 2px solid var(--ink);
  --shadow-pop: 6px 6px 0 var(--ink);
  --header-h: 64px;

  /* Motion */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --dur: 0.25s;

  /* z-scale */
  --z-header: 100;
  --z-overlay: 200;
  --z-float: 300;
  --z-lightbox: 400;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* scroll-behavior: smooth הוסר בכוונה — הוא מתבטל ע"י scroll-anchoring
   בזמן אנימציות ה-reveal וגורם לעוגנים לא לגלול כלל בכרום. */
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  /* clip (לא hidden!) — hidden הופך את body ל-scroll container ושובר גלילת עוגנים */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.02; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--caramel); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--caramel-deep);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 12px;
  top: -60px;
  z-index: 999;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  padding: 10px 18px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

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

/* Display type helper — condensed retro caps */
.disp {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.01em;
}

/* ---------- Checkerboard divider (template signature) ---------- */
.checker {
  height: 26px;
  background:
    repeating-conic-gradient(var(--ink) 0% 25%, transparent 0% 50%)
    0 0 / 26px 26px;
  border-block: var(--line);
  background-color: var(--paper);
}

/* ---------- Oval buttons (template signature) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 34px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur), color var(--dur);
  touch-action: manipulation;
  text-align: center;
}
.btn:active { transform: scale(0.96); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-ink {
  background: var(--ink);
  color: var(--cream);
}
.btn-ink:hover { transform: translateY(-2px) rotate(-1.5deg); box-shadow: var(--shadow-pop); background: var(--ink); }
.btn-ink:hover { box-shadow: 5px 5px 0 var(--caramel); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn-outline:hover { transform: translateY(-2px) rotate(1.5deg); background: var(--ink); color: var(--cream); }

.btn-cream {
  background: var(--cream);
  color: var(--ink);
}
.btn-cream:hover { transform: translateY(-2px) rotate(-1.5deg); box-shadow: 5px 5px 0 var(--caramel); }

.btn-wa {
  background: var(--wa-green);
  color: #fff;
}
.btn-wa:hover { transform: translateY(-2px) rotate(1deg); box-shadow: 5px 5px 0 var(--ink); }

/* ---------- Sticky slim header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--paper);
  border-bottom: var(--line);
  transform: translateY(-100%);
  transition: transform 0.3s var(--ease);
}
.site-header.scrolled { transform: none; }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header .logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.site-header .logo small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: block;
  color: var(--ink-soft);
}

.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background var(--dur), color var(--dur);
}
.main-nav a:hover { background: var(--ink); color: var(--cream); }
.main-nav a.active { background: var(--caramel); color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { min-height: 42px; padding: 8px 22px; font-size: 1.15rem; }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border: var(--line);
  background: var(--paper);
  position: relative;
  z-index: calc(var(--z-overlay) + 1);
}
.burger span {
  position: absolute;
  inset-inline: 11px;
  height: 2.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s, top 0.3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 30px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav ul { display: flex; flex-direction: column; }
.mobile-menu nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  padding: 10px 4px;
  border-bottom: var(--line);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s, background var(--dur);
}
.mobile-menu.open nav a { transform: none; opacity: 1; }
.mobile-menu nav a:hover { background: var(--ink); color: var(--cream); }
.mobile-menu nav a.active { color: var(--caramel-deep); }
.mobile-menu nav li:nth-child(1) a { transition-delay: 0.04s; }
.mobile-menu nav li:nth-child(2) a { transition-delay: 0.08s; }
.mobile-menu nav li:nth-child(3) a { transition-delay: 0.12s; }
.mobile-menu nav li:nth-child(4) a { transition-delay: 0.16s; }
.mobile-menu nav li:nth-child(5) a { transition-delay: 0.2s; }
.mobile-menu nav li:nth-child(6) a { transition-delay: 0.24s; }
.mobile-menu nav li:nth-child(7) a { transition-delay: 0.28s; }
.mobile-menu .menu-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }

/* ---------- Masthead (giant logo header, per template) ---------- */
.masthead {
  background: var(--paper);
  padding: clamp(22px, 4vw, 44px) 0 clamp(18px, 3vw, 34px);
}
.masthead .container {
  display: grid;
  gap: clamp(16px, 3vw, 40px);
  align-items: end;
}
@media (min-width: 900px) {
  .masthead .container { grid-template-columns: auto 1fr; }
}
.masthead .brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.2rem, 12vw, 10rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  display: block;
  text-transform: uppercase;
}
.masthead .brand-side { display: grid; gap: clamp(14px, 2.5vw, 26px); align-content: space-between; height: 100%; }
.masthead .tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.05;
  margin: 0;
}
.masthead-nav {
  border-top: var(--line);
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: space-between;
}
.masthead-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.03em;
  padding: 2px 6px;
  transition: background var(--dur), color var(--dur);
}
.masthead-nav a:hover { background: var(--ink); color: var(--cream); }
.masthead-nav a.active { background: var(--caramel); }

/* ---------- Split hero (caramel block + photo, per template) ---------- */
.hero-split {
  display: grid;
  min-height: clamp(420px, 62vh, 640px);
  border-bottom: var(--line);
}
@media (min-width: 820px) {
  .hero-split { grid-template-columns: minmax(340px, 5fr) 7fr; }
}
.hero-copy {
  background: var(--caramel);
  padding: clamp(30px, 5vw, 60px) clamp(22px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 40px);
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  line-height: 1.0;
}
.hero-copy .hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
  max-width: 42ch;
  margin: 0;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; min-height: 300px; }
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* trust strip under hero */
.trust-strip {
  background: var(--paper);
  border-bottom: var(--line);
}
.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.trust-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
}
.trust-strip li + li { border-inline-start: var(--line); }
.trust-strip svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 620px) {
  .trust-strip ul { grid-template-columns: 1fr; }
  .trust-strip li + li { border-inline-start: 0; border-top: var(--line); }
}

/* ---------- Marquee (black strip) ---------- */
.marquee {
  --marquee-dur: 24s;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding-block: 12px;
  display: flex;
  user-select: none;
  border-bottom: var(--line);
}
.marquee-track {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  animation: marquee var(--marquee-dur) linear infinite;
}
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-inline: 15px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.marquee span::after { content: '✦'; color: var(--caramel); font-size: 0.9em; }
@keyframes marquee { to { transform: translateX(50%); } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(56px, 8vw, 100px); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(30px, 4.5vw, 50px); }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  background: var(--ink);
  color: var(--cream);
  padding: 5px 14px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 0.98;
  margin-bottom: 12px;
}
.section-head h2 em { font-style: normal; color: var(--caramel-deep); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

.bg-paper { background: var(--paper); border-block: var(--line); }

/* ---------- Statement (giant condensed paragraph, per template) ---------- */
.statement {
  background: var(--paper);
  border-block: var(--line);
  padding-block: clamp(56px, 8vw, 100px);
}
.statement p.disp {
  font-size: var(--fs-statement);
  line-height: 1.04;
  max-width: 21ch;
  margin: 0 0 34px;
}
.statement p.disp em { font-style: normal; color: var(--caramel-deep); }

/* ---------- DJ spotlight (black section, per template PRIMAVERA) ---------- */
.spotlight {
  position: relative;
  background: var(--stage-black);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
  padding-block: clamp(64px, 10vw, 130px);
  border-block: var(--line);
  isolation: isolate;
}
.spotlight .spot-img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(620px, 82%);
  height: 78%;
  object-fit: cover;
  opacity: 0.55;
  z-index: -1;
  filter: saturate(1.15);
}
.spotlight .badge-new {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 8px 26px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  transform: rotate(-6deg);
  margin-bottom: -10px;
  background: rgba(0, 0, 0, 0.35);
}
.spotlight h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.2rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.8);
}
.spotlight .spot-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  margin: 10px auto 30px;
  max-width: 34ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
}

/* ---------- Service poster cards (per template product cards) ---------- */
.services-grid {
  display: grid;
  gap: 0;
  border: var(--line);
  background: var(--ink);
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
.svc-card {
  position: relative;
  min-height: clamp(300px, 38vw, 420px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  isolation: isolate;
}
.svc-card + .svc-card { border-top: var(--line); }
@media (min-width: 720px) {
  .svc-card + .svc-card { border-top: 0; }
  .svc-card:nth-child(2), .svc-card:nth-child(4) { border-inline-start: var(--line); }
  .svc-card:nth-child(3), .svc-card:nth-child(4) { border-top: var(--line); }
}
.svc-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}
.svc-card:hover img { transform: scale(1.05); }
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,8,5,0.25) 0%, rgba(10,8,5,0.05) 40%, rgba(10,8,5,0.82) 100%);
}
.svc-card .svc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 0.95;
  padding: 22px 24px 0;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.7);
}
.svc-body {
  background: rgba(12, 10, 7, 0.55);
  backdrop-filter: blur(4px);
  padding: 16px 24px 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.35);
}
.svc-body p { margin: 0 0 10px; font-size: 0.96rem; max-width: 52ch; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--caramel);
  transition: gap var(--dur);
}
.svc-link:hover { gap: 14px; }
.svc-link svg { width: 16px; height: 16px; transform: scaleX(-1); }

/* ---------- Stats (flat, display numerals) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border: var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}
.stat {
  padding: clamp(20px, 3vw, 36px) 14px;
  text-align: center;
}
.stat + .stat { border-inline-start: var(--line); }
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-inline-start: 0; }
  .stat:nth-child(n+3) { border-top: var(--line); }
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1;
  color: var(--caramel-deep);
  font-variant-numeric: tabular-nums;
}
.stat span { font-weight: 600; font-size: 0.95rem; }

/* ---------- Caramel wall (per template FIND US) ---------- */
.wall {
  background: var(--caramel);
  border-block: var(--line);
  padding-block: clamp(48px, 7vw, 90px);
}
.wall .wall-label {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.wall a.wall-line, .wall span.wall-line {
  display: block;
  width: fit-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8.5vw, 6.4rem);
  line-height: 0.94;
  color: var(--caramel-deep);
  transition: color var(--dur), transform var(--dur) var(--ease);
}
.wall a.wall-line:hover { color: var(--ink); transform: translateX(-10px); }
.wall .wall-cta {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

/* ---------- About split (white text + photo) ---------- */
.about-split {
  display: grid;
  border-block: var(--line);
  background: var(--paper);
}
@media (min-width: 880px) {
  .about-split { grid-template-columns: 1.1fr 1fr; }
  .about-split .about-media { border-inline-start: var(--line); }
}
.about-copy { padding: clamp(30px, 5vw, 64px) clamp(22px, 4vw, 56px); }
.about-copy h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  margin-bottom: 18px;
}
.about-copy > p { color: var(--ink-soft); font-size: 1.05rem; max-width: 58ch; }
.about-points { display: grid; gap: 0; margin-top: 26px; border: var(--line); }
.about-point {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 14px 18px;
  background: var(--cream);
}
.about-point + .about-point { border-top: var(--line); }
.about-point b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}
.about-point span { color: var(--ink-soft); font-size: 0.95rem; }
.about-media { position: relative; min-height: 340px; }
.about-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-media .about-badge {
  position: absolute;
  bottom: 22px;
  inset-inline-start: 22px;
  background: var(--cream);
  border: var(--line);
  box-shadow: var(--shadow-pop);
  padding: 12px 20px;
  transform: rotate(-3deg);
}
.about-badge b {
  font-family: var(--font-display);
  font-size: 2rem;
  display: block;
  line-height: 1;
}
.about-badge span { font-size: 0.85rem; font-weight: 600; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .gallery-grid .tall { grid-row: span 2; }
}
.gal-item {
  position: relative;
  overflow: hidden;
  border: var(--line);
  min-height: 170px;
  padding: 0;
  display: block;
  width: 100%;
  background: var(--ink);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gal-item:hover, .gal-item:focus-visible { transform: translate(-3px, -3px); box-shadow: var(--shadow-pop); }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease), opacity var(--dur);
}
.gal-item:hover img { transform: scale(1.04); opacity: 0.85; }
.gal-item .gal-cap {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  z-index: 2;
  background: var(--cream);
  color: var(--ink);
  border-top: var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 6px 12px 7px;
  text-align: start;
  transform: translateY(101%);
  transition: transform var(--dur) var(--ease);
}
.gal-item:hover .gal-cap, .gal-item:focus-visible .gal-cap { transform: none; }

/* Lightbox */
.lightbox {
  border: var(--line);
  padding: 0;
  background: var(--cream);
  max-width: min(94vw, 1100px);
  max-height: 92vh;
}
.lightbox::backdrop { background: rgba(15, 12, 8, 0.85); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; background: var(--ink); }
.lightbox .lb-close {
  width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 10px;
  border-top: var(--line);
  background: var(--cream);
}
.lightbox .lb-close:hover { background: var(--ink); color: var(--cream); }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.testi-card {
  background: var(--paper);
  border: var(--line);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.testi-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-pop); }
.testi-stars { display: flex; gap: 3px; color: var(--caramel-deep); }
.testi-stars svg { width: 17px; height: 17px; }
.testi-card blockquote { margin: 0; font-size: 1rem; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 12px; border-top: var(--line); padding-top: 14px; }
.testi-who .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--caramel);
  flex-shrink: 0;
}
.testi-who b { display: block; font-size: 0.96rem; }
.testi-who span { color: var(--ink-soft); font-size: 0.84rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; border: var(--line); background: var(--paper); }
.faq-item { border-bottom: var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  cursor: pointer;
  min-height: 44px;
  transition: background var(--dur);
}
.faq-item summary:hover { background: var(--cream); }
.faq-item[open] summary { background: var(--caramel); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-x {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.3s var(--ease), background var(--dur);
  background: var(--paper);
}
.faq-item summary .faq-x::before,
.faq-item summary .faq-x::after {
  content: '';
  position: absolute;
  background: var(--ink);
}
.faq-item summary .faq-x::before { width: 12px; height: 2px; }
.faq-item summary .faq-x::after { width: 2px; height: 12px; }
.faq-item[open] summary .faq-x { transform: rotate(45deg); }
.faq-item .faq-a { padding: 16px 20px 20px; color: var(--ink-soft); border-top: var(--line); background: var(--paper); }
.faq-item .faq-a p { margin: 0; }

/* ---------- CTA band (caramel poster) ---------- */
.cta-band {
  border: var(--line);
  box-shadow: var(--shadow-pop);
  background: var(--caramel);
  text-align: center;
  padding: clamp(40px, 6.5vw, 76px) clamp(22px, 5vw, 70px);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.96;
  margin-bottom: 12px;
}
.cta-band p { font-size: 1.08rem; font-weight: 500; max-width: 52ch; margin: 0 auto 28px; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 26px; }
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}
.contact-form {
  background: var(--paper);
  border: var(--line);
  box-shadow: var(--shadow-pop);
  padding: clamp(22px, 4vw, 40px);
}
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) {
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 700; font-size: 0.92rem; }
.field label .req { color: var(--caramel-deep); }
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: var(--line);
  border-radius: 0;
  padding: 12px 15px;
  min-height: 50px;
  transition: box-shadow var(--dur), background var(--dur);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--caramel);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 4px 4px 0 var(--error);
}
.field .err {
  display: none;
  color: var(--error);
  font-size: 0.83rem;
  font-weight: 600;
}
.field.invalid .err { display: block; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2316130f' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-inline-end: 16px;
}
.hp-field { position: absolute; opacity: 0; height: 0; overflow: hidden; pointer-events: none; }

.form-note { color: var(--ink-soft); font-size: 0.84rem; margin: 14px 0 0; text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #e7f3ea;
  border: 2px solid var(--ok);
  color: var(--ok);
  font-weight: 700;
  padding: 14px 18px;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

.contact-aside { display: grid; gap: 0; align-content: start; border: var(--line); background: var(--paper); }
.info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  transition: background var(--dur);
}
.info-card + .info-card { border-top: var(--line); }
a.info-card:hover { background: var(--caramel); }
.info-card .ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
}
.info-card .ic svg { width: 21px; height: 21px; }
.info-card b { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.info-card span { color: var(--ink-soft); font-size: 0.92rem; direction: ltr; unicode-bidi: embed; }
.info-card span.rtl-text { direction: rtl; }

/* ---------- Footer (black, giant logo, per template) ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  border-top: var(--line);
  position: relative;
  z-index: 2;
}
.footer-marquee {
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 240, 228, 0.25);
  padding-block: 10px;
  display: flex;
}
.footer-marquee .marquee-track { animation-duration: 30s; }
.footer-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-inline: 14px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.footer-marquee span::after { content: '✦'; color: var(--caramel); }
.footer-grid {
  display: grid;
  gap: 34px;
  padding-block: clamp(40px, 6vw, 64px) 40px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}
.footer-brand .brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 6vw, 5rem);
  line-height: 0.85;
  display: block;
  text-transform: uppercase;
}
.footer-brand p { color: rgba(246, 240, 228, 0.75); font-size: 0.94rem; max-width: 280px; margin-top: 14px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--caramel);
  margin-bottom: 14px;
}
.footer-col ul { display: grid; gap: 8px; }
.footer-col a { color: rgba(246, 240, 228, 0.85); font-size: 0.95rem; transition: color var(--dur); }
.footer-col a:hover { color: var(--caramel); }
.footer-col li { color: rgba(246, 240, 228, 0.85); font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid rgba(246, 240, 228, 0.25);
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: rgba(246, 240, 228, 0.6);
  font-size: 0.85rem;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 20px;
  z-index: var(--z-float);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa-green);
  border: var(--line);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float:hover { transform: translate(-2px, -2px) rotate(-4deg); box-shadow: 6px 6px 0 var(--ink); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }

/* ============================================================
   DJ PAGE — Vynora CoverFlow stage
   ============================================================ */
.page-masthead {
  background: var(--paper);
  padding: clamp(24px, 4vw, 44px) 0 clamp(20px, 3vw, 32px);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs svg { width: 12px; height: 12px; transform: scaleX(-1); opacity: 0.6; }
.page-masthead h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  line-height: 0.88;
}
.page-masthead .lead {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 14px 0 0;
}

/* --- The stage (Vynora) --- */
.stage {
  position: relative;
  background: linear-gradient(to bottom, #000000 0%, #111111 100%);
  color: #fff;
  border-block: var(--line);
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(30px, 4vw, 50px) clamp(40px, 5vw, 60px);
}
/* reflective floor (from Vynora App.tsx) */
.stage::before {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 50%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  z-index: 0;
}
.stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  padding-bottom: 6px;
}
.stage-top .st-dot { display: inline-flex; align-items: center; gap: 8px; }
.stage-top .st-dot::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--caramel);
  box-shadow: 0 0 10px var(--caramel);
}

/* CoverFlow container */
.cf-wrap { position: relative; }
.coverflow {
  position: relative;
  height: clamp(300px, 44vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  user-select: none;
  cursor: grab;
  perspective: 1500px;
  perspective-origin: center center;
  touch-action: pan-y;
  direction: ltr; /* transform math stays LTR; content is visual */
  z-index: 1;
}
.coverflow.dragging { cursor: grabbing; }
.cf-card {
  position: absolute;
  width: var(--album, 200px);
  height: var(--album, 200px);
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.coverflow.dragging .cf-card { transition: none; }
.cf-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 8px 32px rgba(0, 0, 0, 0.6);
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
/* glass sheen */
.cf-card .cf-sheen {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 25%, transparent 50%, rgba(0,0,0,0.02) 75%, rgba(0,0,0,0.08) 100%);
}
/* reflection (from Vynora ReflectionComponent) */
.cf-card .cf-reflect {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%; height: 100%;
  border-radius: 8px;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transform: scaleY(-1);
  opacity: 0.75;
  -webkit-mask-image: linear-gradient(to top, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.4) 20%, rgba(255,255,255,0.15) 40%, transparent 60%);
  mask-image: linear-gradient(to top, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.4) 20%, rgba(255,255,255,0.15) 40%, transparent 60%);
  filter: blur(0.5px) brightness(0.6) contrast(1.3);
  transition: opacity 0.5s;
}
.cf-card.center .cf-reflect { opacity: 0.9; }
/* floor glow strip */
.cf-card .cf-glow {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%; height: 12px;
  border-radius: 8px;
  pointer-events: none;
  transform: translateY(6px);
  background: linear-gradient(to bottom, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.12) 40%, transparent 100%);
  opacity: 0.35;
  transition: opacity 1s;
}
.cf-card.center .cf-glow { opacity: 0.6; }
/* center card ring + indicator */
.cf-card .cf-ring {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.cf-card.center .cf-ring { opacity: 1; }
.cf-card .cf-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
  animation: cfdot 1.6s ease-in-out infinite;
  pointer-events: none;
}
.cf-card.center .cf-dot { opacity: 0.9; }
@keyframes cfdot { 50% { opacity: 0.35; } }

/* arrows */
.cf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background var(--dur), border-color var(--dur), transform var(--dur) var(--ease);
  backdrop-filter: blur(6px);
}
.cf-arrow:hover { background: var(--caramel); border-color: var(--caramel); color: var(--ink); transform: translateY(-50%) scale(1.08); }
.cf-arrow svg { width: 22px; height: 22px; }
/* physical sides — the coverflow track is LTR inside the RTL page */
.cf-prev { left: clamp(6px, 3vw, 40px); }
.cf-next { right: clamp(6px, 3vw, 40px); }

/* selected DJ panel */
.stage-info {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: clamp(50px, 7vw, 80px);
}
.stage-info .si-genre {
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--caramel);
  border: 1.5px solid rgba(209, 154, 91, 0.55);
  border-radius: 50%;
  padding: 6px 20px;
  margin-bottom: 12px;
}
.stage-info h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 0.95;
  color: #fff;
}
.stage-info .si-tagline { color: var(--caramel); font-weight: 700; font-size: 1.02rem; margin: 6px 0 10px; }
.stage-info .si-desc {
  color: rgba(255, 255, 255, 0.75);
  max-width: 54ch;
  margin: 0 auto 22px;
  font-size: 0.98rem;
  min-height: 3.2em;
}

/* player row */
.stage-player {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}
.sp-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--cream);
  display: grid;
  place-items: center;
  transition: transform var(--dur) var(--ease), background var(--dur), box-shadow var(--dur);
  box-shadow: 0 10px 34px rgba(209, 154, 91, 0.35);
}
.sp-play:hover { transform: scale(1.07); background: var(--caramel); border-color: var(--caramel); }
.sp-play:active { transform: scale(0.96); }
.sp-play svg { width: 26px; height: 26px; }
.sp-play .icon-pause { display: none; }
.stage.playing .sp-play .icon-play { display: none; }
.stage.playing .sp-play .icon-pause { display: block; }

/* EQ */
.sp-eq { display: flex; align-items: flex-end; gap: 4px; height: 30px; width: 34px; }
.sp-eq i {
  flex: 1;
  height: 100%;
  border-radius: 2px;
  background: var(--caramel);
  transform: scaleY(0.18);
  transform-origin: bottom;
  animation: eq 0.9s ease-in-out infinite;
  animation-play-state: paused;
}
.stage.playing .sp-eq i { animation-play-state: running; }
.sp-eq i:nth-child(1) { animation-delay: 0s; }
.sp-eq i:nth-child(2) { animation-delay: 0.2s; }
.sp-eq i:nth-child(3) { animation-delay: 0.35s; }
.sp-eq i:nth-child(4) { animation-delay: 0.12s; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.18); }
  50% { transform: scaleY(1); }
}

/* progress */
.sp-progress {
  width: min(300px, 56vw);
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  overflow: hidden;
}
.sp-progress i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--caramel), var(--cream));
  transition: width 0.25s linear;
}
.sp-time {
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  min-width: 3.4em;
}

.stage-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.stage-note {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 22px;
}

/* dots nav — LTR to match the coverflow card order */
.cf-dots { display: flex; direction: ltr; justify-content: center; gap: 8px; margin-top: 18px; position: relative; z-index: 2; }
.cf-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  padding: 0;
  transition: background var(--dur), transform var(--dur);
}
.cf-dots button[aria-current="true"] { background: var(--caramel); border-color: var(--caramel); transform: scale(1.25); }

/* ---------- Features / events / steps (template flat style) ---------- */
.feature-grid {
  display: grid;
  gap: 0;
  border: var(--line);
  background: var(--paper);
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card { padding: 26px 24px; }
.feature-card + .feature-card { border-top: var(--line); }
@media (min-width: 720px) {
  .feature-card + .feature-card { border-top: 0; }
  .feature-card:nth-child(even) { border-inline-start: var(--line); }
  .feature-card:nth-child(n+3) { border-top: var(--line); }
}
@media (min-width: 1080px) {
  .feature-card:nth-child(n+2) { border-inline-start: var(--line); border-top: 0; }
}
.feature-card .ft-icon {
  width: 48px; height: 48px;
  border: var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--caramel);
  margin-bottom: 14px;
}
.feature-card .ft-icon svg { width: 23px; height: 23px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

.event-types { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.event-type {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: var(--line);
  background: var(--paper);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.event-type:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-pop); }
.event-type .et-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--caramel);
}
.event-type .et-icon svg { width: 21px; height: 21px; }
.event-type b { display: block; font-family: var(--font-display); font-size: 1.3rem; }
.event-type span { color: var(--ink-soft); font-size: 0.86rem; }

.steps { display: grid; gap: 0; border: var(--line); background: var(--paper); counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: 24px 22px; }
.step + .step { border-top: var(--line); }
@media (min-width: 720px) {
  .step + .step { border-top: 0; }
  .step:nth-child(even) { border-inline-start: var(--line); }
  .step:nth-child(n+3) { border-top: var(--line); }
}
@media (min-width: 1080px) {
  .step:nth-child(n+2) { border-inline-start: var(--line); border-top: 0; }
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--caramel);
  -webkit-text-stroke: 1.5px var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.step h3 { font-family: var(--font-display); font-size: 1.45rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.93rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .burger { display: block; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none; }
}
@media (max-width: 640px) {
  .hero-ctas .btn { flex: 1 1 100%; }
  .cta-band .hero-ctas .btn { flex: 1 1 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
  .stage-player { flex-wrap: wrap; }
  .sp-progress { width: 100%; order: 5; }
  :root { --album: 170px; }
}
@media (min-width: 641px) {
  :root { --album: 200px; }
}

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