/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #000; color: #fff; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── VARIABLES ── */
:root {
  --red: #e80014;
  --bg: #000;
  --surface: #111;
  --surface2: #1c1c1c;
  --text: #fff;
  --muted: #888;
  --border: #2a2a2a;
  --nav-h: 64px;
  --pad: 40px;
}
@media (max-width: 768px) {
  :root { --pad: 20px; --nav-h: 56px; }
}

/* ── HEADER / NAV ── */
#site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
#site-header.scrolled { border-color: var(--border); }

.nav-logo img { height: 30px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.2s;
}
.desktop-nav a:hover { color: #fff; }
.nav-book {
  padding: 7px 20px;
  background: var(--red);
  border-radius: 3px;
  color: #fff !important;
  transition: opacity 0.2s !important;
}
.nav-book:hover { opacity: 0.8; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(0,0,0,0.97);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .m-book { color: var(--red) !important; }

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) var(--pad) 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(232,0,20,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 90% 80%, rgba(180,0,10,0.18) 0%, transparent 55%),
    #0d0a0a;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  #hero-mute-btn { display: none; }
}

#hero.no-video .hero-video,
#hero.no-video #hero-mute-btn { display: none; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232,0,20,0.12) 0%, transparent 65%),
    rgba(0,0,0,0.52);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 155px;
}
.hero-scroll-hint { z-index: 2; }
#hero-mute-btn {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 3;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
#hero-mute-btn:hover { background: rgba(0,0,0,0.8); border-color: rgba(255,255,255,0.5); }
#hero-mute-btn svg { width: 18px; height: 18px; }
.hero-logo {
  width: min(690px, 90vw);
  margin-bottom: 8px;
}
.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(13px, 1.8vw, 17px);
  letter-spacing: 0.3em;
  color: var(--muted);
}
.hero-location {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #555;
  text-transform: uppercase;
}
.hero-cta {
  margin-top: 16px;
  display: inline-block;
  padding: 13px 36px;
  background: var(--red);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.12em;
  border-radius: 3px;
  transition: opacity 0.2s;
}
.hero-cta:hover { opacity: 0.82; }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #444;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 16px; opacity: 0.5; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── SECTION COMMON ── */
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: 0.05em;
}
.section-title span { color: var(--red); }

.arrow-group { display: flex; gap: 8px; }
.arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.arrow-btn:hover { background: var(--surface2); border-color: #555; }
.arrow-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

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

/* ── HORIZONTAL SCROLL ROW ── */
.scroll-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px var(--pad) 16px;
  cursor: grab;
  user-select: none;
}
.scroll-row:active { cursor: grabbing; }
.scroll-row::-webkit-scrollbar { height: 3px; }
.scroll-row::-webkit-scrollbar-track { background: transparent; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── ABOUT ── */
#about { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
}

.avatar-wrap {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
}
@media (max-width: 768px) {
  .avatar-wrap { width: 220px; height: 220px; margin: 0 auto; }
}

.about-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.about-eyebrow span { color: var(--red); }
.about-bio {
  font-size: 15px;
  line-height: 1.8;
  color: #bbb;
  margin-bottom: 28px;
}
.cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.pill {
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  color: var(--muted);
}
.pill.red { border-color: var(--red); color: var(--red); }
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.about-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.07em;
  color: var(--muted);
  transition: color 0.2s;
}
.about-links a:hover { color: #fff; }
.about-links svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* ── EVENTS ── */
#events { background: var(--bg); }
.event-card {
  flex: 0 0 auto;
  width: 180px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.2s;
}
.event-card:hover { transform: translateY(-3px); }
.event-card img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
}
.event-name {
  padding: 8px 10px 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) { .event-card { width: 140px; } }

/* ── MIXES (YouTube) ── */
#mixes { background: var(--surface); }
.mix-card {
  flex: 0 0 auto;
  width: 420px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.2s;
}
.mix-card:hover { transform: translateY(-3px); }
.mix-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.mix-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.mix-thumb:hover img { transform: scale(1.05); }
.mix-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.mix-thumb:hover .mix-play-overlay { background: rgba(0,0,0,0.15); }
.play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 2px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon svg { width: 24px; height: 24px; fill: #fff; margin-left: 4px; }
.mix-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.mix-info { padding: 12px 14px 14px; }
.mix-title {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mix-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
@media (max-width: 768px) { .mix-card { width: 300px; } }
@media (max-width: 480px) { .mix-card { width: 260px; } }

/* ── TRACKS (SoundCloud) ── */
#tracks { background: var(--bg); }
.track-card {
  flex: 0 0 auto;
  width: 290px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.track-card iframe { border: none; display: block; width: 100%; }
.track-label {
  padding: 10px 12px 12px;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) { .track-card { width: 250px; } }

/* ── PHOTOS ── */
#photos { background: var(--surface); }
.photo-card {
  flex: 0 0 auto;
  width: 720px;
  height: 404px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  pointer-events: none;
}
.photo-card:hover img { transform: scale(1.06); }
@media (max-width: 768px) {
  .photo-card { width: 480px; height: 270px; }
}
@media (max-width: 480px) {
  .photo-card { width: 320px; height: 180px; }
}

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  pointer-events: none;
}
#lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}
#lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 32px;
  width: 48px;
  height: 72px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.18); }
#lb-prev { left: 16px; }
#lb-next { right: 16px; }
#lb-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #555;
  letter-spacing: 0.1em;
}

/* ── FOOTER ── */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 56px var(--pad);
  text-align: center;
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo img { height: 36px; opacity: 0.7; }
.footer-tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-socials a {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.footer-socials a:hover { color: #fff; }
.footer-socials svg { width: 20px; height: 20px; fill: currentColor; }
.footer-email {
  font-size: 14px;
  color: var(--muted);
}
.footer-email a { color: var(--red); transition: opacity 0.2s; }
.footer-email a:hover { opacity: 0.8; }
.footer-book {
  display: inline-block;
  padding: 13px 40px;
  background: var(--red);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  border-radius: 3px;
  transition: opacity 0.2s;
}
.footer-book:hover { opacity: 0.82; }
.footer-copy {
  font-size: 11px;
  color: #333;
  letter-spacing: 0.08em;
}
