/* ====== HITMEN – אנשי הלהיטים ====== */
:root {
  --bg: #0c0a14;
  --bg-2: #131022;
  --surface: #1a1628;
  --surface-2: #221c35;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f6f4fa;
  --muted: #b7afc9;
  --accent-1: #ff3d8c;
  --accent-2: #ffb02e;
  --grad: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  --whatsapp: #1fb355;
  --whatsapp-hover: #25d366;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --container: 1140px;
  --font-body: 'Rubik', system-ui, sans-serif;
  --font-display: 'Karantina', 'Rubik', sans-serif;
  --font-accent: 'Amatic SC', 'Rubik', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* header is fixed at ~68px; this keeps anchor jumps clear of it */
section[id], footer[id] { scroll-margin-top: 84px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.container-narrow { max-width: 820px; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
h3 { font-family: var(--font-body); font-weight: 700; line-height: 1.3; }

h2 { font-size: clamp(2.6rem, 6vw, 4.2rem); margin-bottom: 18px; }

.kicker {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  background: rgba(255, 176, 46, 0.1);
  border: 1px solid rgba(255, 176, 46, 0.25);
  border-radius: 999px;
  padding: 3px 18px;
  margin-bottom: 14px;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.center { text-align: center; margin-top: 34px; }
.muted { color: var(--muted); }
.link { color: var(--accent-2); text-decoration: none; }
.link:hover { text-decoration: underline; }

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  border: none;
}
.btn:active { transform: scale(0.97); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn-lg { font-size: 1.15rem; padding: 16px 34px; }
.btn-sm { font-size: 0.9rem; padding: 9px 18px; }

.ico { width: 1.25em; height: 1.25em; fill: currentColor; flex-shrink: 0; }

/* ====== Header ====== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(12, 10, 20, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 10px;
}
.brand-logo { height: 48px; width: auto; }

.main-nav { display: flex; gap: 2px; }
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 11px;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { background: rgba(255, 255, 255, 0.1); color: var(--accent-2); }

/* Nav dropdown: מופעים */
.nav-drop { position: relative; }
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 11px;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-drop-btn .caret { font-size: 0.75em; transition: transform 0.2s ease; }
.nav-drop.open .nav-drop-btn .caret { transform: rotate(180deg); }
.nav-drop-btn:hover, .nav-drop.open .nav-drop-btn { background: rgba(255, 255, 255, 0.1); color: var(--accent-2); }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  background: rgba(18, 14, 30, 0.98);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  z-index: 120;
}
.nav-drop.open .nav-drop-menu { display: flex; }
.nav-drop-menu a {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-drop-menu a:hover { background: rgba(255, 255, 255, 0.08); color: var(--accent-2); }
.nav-drop-menu .drop-back {
  margin-top: 6px;
  padding-top: 13px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
}

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ====== Hero ====== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 110px 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/hero-crowd.jpg') center 30% / cover no-repeat;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(12, 10, 20, 0.8) 14%, rgba(12, 10, 20, 0.38) 50%, rgba(12, 10, 20, 0.5) 100%),
    radial-gradient(ellipse 80% 60% at 50% 42%, rgba(12, 10, 20, 0.28), transparent 70%),
    radial-gradient(ellipse at 50% 95%, rgba(255, 61, 140, 0.16), transparent 55%);
}
.hero-content { position: relative; z-index: 2; }

.hero-logo {
  height: clamp(90px, 16vw, 150px);
  width: auto;
  margin-inline: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.6));
}

.hero h1 {
  font-size: clamp(3.4rem, 10vw, 6.5rem);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
  margin-bottom: 14px;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: #e8e3f2;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 30px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 42px;
}

.trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 38px;
  padding: 16px 26px;
  background: rgba(12, 10, 20, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  width: fit-content;
  margin-inline: auto;
}
.trust-strip li { display: flex; flex-direction: column; align-items: center; min-width: 86px; }
.trust-strip strong {
  font-family: var(--font-accent);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-strip span { font-size: 0.85rem; color: var(--muted); }
.stars-svg { display: inline-flex; align-items: center; height: 1.9rem; }
.stars-svg svg { height: 1.15rem; width: auto; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4)); }

.hero-microcopy {
  font-size: 0.95rem;
  color: #e8e3f2;
  margin-top: -24px;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.scroll-hint {
  position: absolute;
  bottom: 18px;
  inset-inline: 0;
  margin-inline: auto;
  width: 44px;
  text-align: center;
  font-size: 1.6rem;
  color: var(--muted);
  text-decoration: none;
  animation: bob 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ====== Sections ====== */
.section { padding-block: 90px; }
.section-dark { background: var(--bg-2); }

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(255, 176, 46, 0.4); }
.why-ico { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--accent-2); }
.why-card p { color: var(--muted); font-size: 0.95rem; }

/* Clients */
.clients { padding-block: 40px 50px; border-block: 1px solid var(--border); background: #0a0911; }
.clients-title {
  text-align: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #0a0911, transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, #0a0911, transparent); }
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Client logo tiles – real logos on white plates */
.logo-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 158px;
  height: 84px;
  padding: 16px 22px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}
.logo-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.logo-tile:hover img { transform: scale(1.05); }
/* logos that already carry a dark background */
.logo-tile.dark { background: #050505; }
/* tall emblems get a touch more height room */
.logo-tile.emblem img { max-height: 60px; }
.clients-sub {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-2);
}

/* Event types */
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.event-card img { height: 170px; width: 100%; object-fit: cover; }
.event-body { padding: 18px; }
.event-card h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--accent-2); }
.event-card p { color: var(--muted); font-size: 0.92rem; }

/* Decades – interactive */
.decades {
  padding-block: 70px;
  background:
    linear-gradient(rgba(12, 10, 20, 0.9), rgba(12, 10, 20, 0.9)),
    url('../assets/crowd-2.jpg') center / cover no-repeat;
  text-align: center;
}
.decades-title { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: 8px; }
.decades-hint {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-2);
  margin-bottom: 22px;
}
.decade-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.decade-chips button {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.decade-chips button:hover { transform: translateY(-2px); border-color: var(--accent-2); }
.decade-chips button.active,
.decade-chips .now.active,
.decade-chips .il.active {
  background: var(--grad);
  color: #18130b;
  border-color: transparent;
}
.decade-chips .now { background: rgba(255, 176, 46, 0.18); }
.decade-chips .il { background: rgba(61, 140, 255, 0.14); }

.songs-panel {
  max-width: 720px;
  margin: 18px auto 10px;
  background: rgba(20, 16, 32, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  backdrop-filter: blur(8px);
  animation: panelIn 0.3s ease;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.songs-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 28px;
  text-align: start;
}
.songs-list li {
  font-size: 0.98rem;
  padding-inline-start: 22px;
  position: relative;
}
.songs-list li::before {
  content: '♪';
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent-1);
}
.songs-list li small { color: var(--muted); display: block; font-size: 0.82rem; }
/* English repertoire reads left-to-right; Hebrew (ישראלי) stays natural RTL */
.songs-list.ltr { direction: ltr; text-align: left; }
.songs-more { margin-top: 14px; color: var(--muted); font-size: 0.9rem; text-align: center; }

.decades-sub { color: var(--muted); font-size: 1rem; margin-top: 16px; }

/* Lineups */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.lineup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lineup-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.lineup-card img { height: 230px; width: 100%; object-fit: cover; object-position: center 28%; }
.lineup-body { padding: 22px; }
.lineup-size {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  background: var(--grad);
  color: #18130b;
  border-radius: 999px;
  padding: 3px 16px;
  margin-bottom: 10px;
}
.lineup-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.lineup-card p { color: var(--muted); font-size: 0.95rem; }

/* Sound strip */
.sound-strip {
  background:
    linear-gradient(rgba(10, 9, 17, 0.92), rgba(10, 9, 17, 0.92)),
    url('../assets/bw-stage.jpg') center / cover no-repeat;
  padding-block: 80px;
  border-block: 1px solid var(--border);
}
.sound-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}
.sound-text p { color: var(--muted); margin-bottom: 14px; }
.sound-text strong { color: var(--text); }
.sound-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sound-points li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  font-weight: 500;
}
.sound-points li.sp-hero {
  background: linear-gradient(120deg, rgba(255, 46, 99, 0.16), rgba(255, 176, 46, 0.16));
  border-color: rgba(255, 176, 46, 0.5);
  font-weight: 700;
  font-size: 1.06rem;
}
/* Systems block – unified inside the sound section */
.systems-block {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.systems-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 8px;
}

/* Videos */
.video-featured { margin-top: 36px; margin-bottom: 26px; }
.video-featured video {
  width: 100%;
  max-height: 560px;
  border-radius: var(--radius);
  background: #000;
  display: block;
}
.video-featured h3,
.video-item h3 {
  font-size: 1.05rem;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 500;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 28px;
}
.yt-lite {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  padding: 0;
}
.yt-lite img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.yt-lite:hover img { opacity: 1; transform: scale(1.03); }
.yt-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px; height: 50px;
  background: rgba(20, 16, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.yt-play::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #fff;
  transform: translateX(2px);
}
.yt-lite:hover .yt-play { background: var(--accent-1); transform: scale(1.08); }
.yt-lite iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 26px;
  color: var(--muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.g-item {
  border: none;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface);
  aspect-ratio: 4 / 3;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.g-item:hover img { transform: scale(1.06); opacity: 0.9; }

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 7, 14, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
}
.lightbox img {
  max-width: 94vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 22px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--accent-1); }

/* Reviews – Google style */
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 12px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reviews-summary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4); }
.g-mark { width: 30px; height: 30px; }
.rs-text { display: flex; align-items: center; gap: 8px; }
.rs-text strong { font-family: var(--font-body); font-size: 1.5rem; color: #202124; line-height: 1; }
.rs-stars { color: #fbbc04; font-size: 1.1rem; letter-spacing: 1px; }
.rs-label { color: #5f6368; font-size: 0.92rem; font-weight: 500; }

/* Reviews carousel (auto-scroll, pause on hover) */
.reviews-marquee {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  /* page is RTL; force the marquee subtree LTR so the wide track is left-anchored
     and translateX(-offset) scrolls correctly (cards keep direction:rtl for Hebrew). */
  direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex;
  width: max-content;
  padding: 8px 0;
  will-change: transform;
  /* motion is driven by JS (rAF) in main.js — measures real width & wraps with modulo,
     so it never blanks regardless of card count/length. Per-card margin-right = spacing. */
}

.review-card {
  direction: rtl;
  flex: 0 0 260px;
  width: 260px;
  margin-right: 16px;
  background: #fff;
  border: 1px solid #e4e7eb;
  border-radius: 12px;
  padding: 14px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24); }
.rev-head { display: flex; align-items: center; gap: 9px; }
.rev-avatar {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
}
.rev-id { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.rev-name { color: #202124; font-weight: 600; font-size: 0.86rem; }
.rev-meta { color: #5f6368; font-size: 0.72rem; }
.rev-meta .stars-gold { color: #fbbc04; letter-spacing: 1px; }
.rev-g { width: 17px; height: 17px; flex-shrink: 0; }
.g-stars { color: #fbbc04; letter-spacing: 1px; font-size: 0.95rem; }
.review-card p {
  color: #3c4043; font-size: 0.85rem; line-height: 1.5; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

.systems-intro { color: var(--muted); max-width: 720px; margin: 6px auto 0; }
.systems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
  text-align: start;
}
.system-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.system-card:hover { transform: translateY(-5px); border-color: rgba(255, 176, 46, 0.4); }
/* product photo area (image swaps in when supplied) */
.system-photo {
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 176, 46, 0.12), transparent 60%),
    linear-gradient(160deg, #221c35, #14101f);
  border-bottom: 1px solid var(--border);
}
.system-photo img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.sp-icon { font-size: 2.6rem; filter: grayscale(0.1); }
.sp-model {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.1;
  text-align: center;
  color: var(--text);
}
.system-info { padding: 22px 26px 26px; }
.system-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.system-badge.badge-premium {
  background: var(--grad);
  color: #18130b;
  border-color: transparent;
}
.system-card h4 { font-size: 1.3rem; margin-bottom: 8px; color: var(--accent-2); font-family: var(--font-body); font-weight: 700; }
.system-card p { color: var(--muted); }

/* Reels (vertical) */
.reels-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-bottom: 28px;
}
.reel-item { width: 260px; max-width: 100%; }
.reel-item h3 { font-size: 1rem; margin-top: 12px; color: var(--muted); font-weight: 500; text-align: center; }
.yt-lite.reel { aspect-ratio: 9 / 16; }
.yt-lite.featured { aspect-ratio: 16 / 9; max-height: 560px; margin-inline: auto; }
.video-featured .yt-lite.featured img { opacity: 0.92; }

/* Productions */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.prod-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prod-img { height: 240px; width: 100%; object-fit: cover; }
.prod-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.prod-body-tall { padding-top: 32px; }
.prod-story { background: linear-gradient(145deg, #3a1626, #1a1628); }
.prod-beatbox { background: linear-gradient(145deg, #16303a, #1a1628); }
.prod-emoji { font-size: 2.3rem; }
.prod-card h3 { font-size: 1.4rem; }
.prod-card p { color: var(--muted); font-size: 0.97rem; flex: 1; }
.prod-link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.prod-link:hover { text-decoration: underline; }

/* Bilgo */
.bilgo-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.bilgo-photos { display: flex; flex-direction: column; gap: 14px; }
.bilgo-photo { margin: 0; }
.bilgo-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}
.bilgo-photo:first-child img { max-height: 460px; }
.bilgo-photo-mc img { height: auto; object-fit: contain; }
.bilgo-photo-mc figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.bilgo-text > p { color: var(--muted); margin-bottom: 16px; }
.bilgo-text strong { color: var(--text); }
.bilgo-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.bilgo-points li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.97rem;
}

/* FAQ */
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
  padding-inline-start: 48px;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: '+';
  position: absolute;
  inset-inline-start: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-2);
}
.faq-item[open] summary::before { content: '–'; }
.faq-item summary:hover { color: var(--accent-2); }
.faq-item p { padding: 0 22px 20px 22px; padding-inline-start: 48px; color: var(--muted); }
.faq-item strong { color: var(--text); }

/* Final CTA */
.final-cta {
  position: relative;
  padding-block: 110px;
  text-align: center;
  overflow: hidden;
}
.final-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(12, 10, 20, 0.82), rgba(12, 10, 20, 0.86)),
    url('../assets/big-band.jpg') center 25% / cover no-repeat;
}
.final-inner { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(3rem, 7vw, 4.6rem); }
.final-sub { color: var(--muted); font-size: 1.15rem; margin-bottom: 38px; }
.contact-mail { margin-top: 18px; color: var(--muted); font-size: 0.95rem; }

/* Contact: two paths (WhatsApp + form) */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  max-width: 940px;
  margin-inline: auto;
  text-align: start;
  align-items: stretch;
}
.contact-quick, .contact-form-wrap {
  background: rgba(20, 16, 32, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  backdrop-filter: blur(8px);
}
.contact-quick { display: flex; flex-direction: column; gap: 14px; }
.contact-quick h3, .contact-form-wrap h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent-2);
}
.contact-quick > p { color: var(--muted); margin-top: -6px; }
.contact-quick .btn { width: 100%; justify-content: center; }
.contact-quick .contact-mail { margin-top: auto; text-align: center; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.contact-form input,
.contact-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.contact-form input::placeholder { color: #7d7592; }
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent-2);
  background: rgba(255, 255, 255, 0.07);
}
.contact-form select { appearance: none; cursor: pointer; }
.contact-form select option { background: #1a1628; color: var(--text); }
.contact-form input[type="date"] { color-scheme: dark; }
.turnstile-widget { min-height: 65px; display: flex; justify-content: center; }
.btn-form { width: 100%; justify-content: center; margin-top: 4px; font-size: 1.05rem; }
.btn-form:disabled { opacity: 0.6; cursor: progress; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status { font-size: 0.95rem; font-weight: 500; min-height: 1.2em; margin-top: 2px; text-align: center; }
.form-status.ok { color: #4ade80; }
.form-status.err { color: #ff7a8a; }

/* Footer */
.site-footer {
  background: #080711;
  padding-block: 44px 28px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo { height: 56px; width: auto; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; }
.footer-nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.footer-nav a:hover { color: var(--accent-2); }
.socials { display: flex; gap: 16px; }
.socials a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.2s ease, transform 0.2s ease;
}
.socials a:hover { background: var(--accent-1); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; fill: #fff; }
.copyright { color: #6f6885; font-size: 0.85rem; }

/* Floating WhatsApp */
.wa-fab {
  position: fixed;
  bottom: 22px;
  inset-inline-start: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}
.wa-fab:hover { transform: scale(1.1); background: var(--whatsapp-hover); }
.wa-fab svg { width: 32px; height: 32px; fill: #fff; }
.wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.5;
  z-index: -1;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  from { transform: scale(1); opacity: 0.5; }
  to { transform: scale(1.65); opacity: 0; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  .wa-fab::before, .scroll-hint { animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ====== Responsive ====== */
@media (max-width: 1060px) {
  .main-nav a { font-size: 0.88rem; padding: 8px 8px; }
}

@media (max-width: 960px) {
  .why-grid, .event-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .sound-inner, .bilgo-inner { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; max-width: 540px; }
  .bilgo-photo { max-width: 420px; margin-inline: auto; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open { background: rgba(12, 10, 20, 0.97); }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: rgba(12, 10, 20, 0.97);
    backdrop-filter: blur(14px);
    padding: 16px 22px 24px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.5);
  }
  .main-nav.open a { padding: 13px 10px; font-size: 1.1rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  /* dropdown inside the mobile menu */
  .nav-drop { width: 100%; }
  .nav-drop-btn {
    width: 100%;
    justify-content: space-between;
    padding: 13px 10px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .nav-drop-menu {
    position: static;
    display: none;
    min-width: 0;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
  }
  .nav-drop.open .nav-drop-menu { display: flex; }
  .nav-drop-menu a { padding: 12px 24px; font-size: 1.02rem; border-bottom: 1px solid var(--border); border-radius: 0; }
}

@media (max-width: 640px) {
  .section { padding-block: 64px; }
  .why-grid, .event-grid, .lineup-grid, .review-grid, .video-grid, .systems-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .songs-list { grid-template-columns: 1fr; }
  .trust-strip { gap: 12px 22px; padding: 14px 18px; }
  .trust-strip li { min-width: 70px; }
  .trust-strip strong { font-size: 1.6rem; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-microcopy { margin-top: -14px; font-size: 0.88rem; }
  .field-row { grid-template-columns: 1fr; }
  .brand-logo { height: 40px; }
  /* dramatic vertical hero image on mobile */
  .hero-bg {
    background-image: url('../assets/singing-portrait.jpg');
    background-position: center 22%;
  }
  .hero { padding-block: 104px 88px; }
}
