/* =========================================================
   TRENCHES — World-class overhaul
   Warm sepia-monochrome · Amber accent · Minimal editorial
   UI UX Pro Max: Theater/Cinema dark + Parallax Storytelling
   ========================================================= */

/* ─── CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  --bg:            #0A0806;
  --bg-surface:    #0F0C09;
  --bg-card:       #161210;

  --text:          #F0EDE6;
  --text-dim:      #C8C4BE;
  --text-muted:    #7A7672;

  --accent:        #C49A3C;
  --accent-dim:    rgba(196, 154, 60, 0.10);
  --accent-glow:   rgba(196, 154, 60, 0.22);
  --accent-border: rgba(196, 154, 60, 0.22);

  --font-display:  'Bebas Neue', sans-serif;
  --font-ui:       'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;

  --nav-h:         68px;
  --container:     1160px;
  --section-v:     72px;

  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.76, 0, 0.24, 1);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* lock horizontal on iOS */
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Disable smooth scroll on touch — let iOS native momentum take over */
@media (pointer: coarse) {
  html { scroll-behavior: auto; }
}

a    { color: inherit; text-decoration: none; }
img  { display: block; max-width: 100%; }
ul   { list-style: none; }
button { background: none; border: none; font: inherit; }

/* ─── FILM GRAIN ─────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9000;
  animation: grain 7s steps(10) infinite;
}

@keyframes grain {
  0%   { transform: translate(0,0) }
  10%  { transform: translate(-5%,-10%) }
  20%  { transform: translate(-15%,5%) }
  30%  { transform: translate(7%,-25%) }
  40%  { transform: translate(-5%,25%) }
  50%  { transform: translate(-15%,10%) }
  60%  { transform: translate(15%,0%) }
  70%  { transform: translate(0%,15%) }
  80%  { transform: translate(3%,35%) }
  90%  { transform: translate(-10%,10%) }
  100% { transform: translate(0,0) }
}

/* ─── CURSOR ─────────────────────────────────────────────── */
.cursor, .cursor-dot { display: none; }

/* ─── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ─── EYEBROW ────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.eyebrow--sub {
  color: var(--text-muted);
  margin-top: 56px;
  margin-bottom: 24px;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background .5s ease, backdrop-filter .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 8, 6, 0.85);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: rgba(255,255,255,0.05);
}

.nav__logo { display: flex; align-items: center; }

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity .2s ease;
}

.nav__logo:hover .nav__wordmark { opacity: 0.7; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding-bottom: 2px;
  transition: color .25s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}

.nav__link:hover        { color: var(--text); }
.nav__link:hover::after { width: 100%; }
.nav__link.active::after { width: 100%; color: var(--text); }

.nav__link--cta {
  color: var(--accent);
  border: 1px solid var(--accent-border);
  padding: 7px 16px 7px;
  border-radius: 2px;
  transition: all .25s ease;
}

.nav__link--cta::after    { display: none; }
.nav__link--cta:hover     { background: var(--accent-dim); color: var(--accent); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text);
  transition: all .3s ease;
}

@media (max-width: 768px) {
  .nav        { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__wordmark { font-size: 16px; }
}

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(10,8,6,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .2s ease;
}

.mobile-menu__close:hover { color: var(--text); }

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  transition: color .2s ease;
}

.mobile-menu__link:hover { color: var(--accent); }

.mobile-menu__socials {
  display: flex;
  gap: 28px;
  margin-top: 40px;
}

.mobile-menu__socials a   { color: var(--text-muted); transition: color .2s ease; }
.mobile-menu__socials svg { width: 20px; height: 20px; display: block; }
.mobile-menu__socials a:hover { color: var(--accent); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 56px;
  }
}

/* Video — atmospheric but visible */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.48;
  z-index: 0;
}

/* Static fallback for mobile / reduced-motion */
.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  opacity: 0.28;
  z-index: 0;
  display: none;
}

@media (pointer: coarse) {
  .hero__video { display: none; }
  .hero__photo { display: block; opacity: 0.42; }
  /* Kill grain animation on touch — too heavy for mobile GPU */
  .grain { display: none; }
}

/* Heavy vignette — deep black at edges, slightly lighter centre */
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 90% at 50% 45%, transparent 0%, rgba(10,8,6,0.55) 65%, rgba(10,8,6,0.92) 100%),
    linear-gradient(to top, rgba(10,8,6,1) 0%, transparent 40%);
}

/* The name — lower third, centered */
.hero__name-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(56px, 13vw, 220px);
  letter-spacing: 0.08em;
  line-height: 0.9;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

.hero__name.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__origin {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 16px;
  opacity: 0;
  transition: opacity 1s var(--ease) .6s;
}

.hero__origin.visible { opacity: 1; }

/* Scroll cue — hidden */
.hero__scroll { display: none; }

/* ─── MUSIC SECTION ──────────────────────────────────────── */
.music {
  padding: var(--section-v) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.release {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 960px) {
  .release {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Artwork — looping canvas video */
.release__artwork {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-card);
}

.release__canvas,
.release__artwork img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.release__artwork-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  pointer-events: none;
  transition: box-shadow .4s ease;
}

.release__artwork:hover .release__artwork-glow {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1),
              0 0 60px var(--accent-glow);
}

/* Listen overlay on artwork */
.release__listen-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(10,8,6,0.55);
  opacity: 0;
  transition: opacity .3s var(--ease);
  color: var(--text);
}

.release__listen-overlay span {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.release__artwork:hover .release__listen-overlay { opacity: 1; }

/* Release info */
.release__badge {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.release__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 72px);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 16px;
}

.release__meta {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 40px;
}

/* Primary listen CTA */
.release__cta {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
  margin-bottom: 20px;
}

.release__cta:hover {
  color: var(--accent);
}

/* Secondary platform text links */
.release__secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.release__secondary a {
  color: var(--text-dim);
  transition: color .2s ease;
}

.release__secondary a:hover { color: var(--text); }

.release__secondary span { opacity: 0.3; }

/* ─── LIVE STRIP ─────────────────────────────────────────── */
.live-strip {
  position: relative;
  height: 62vh;
  min-height: 380px;
  overflow: hidden;
}

.live-strip__photo {
  position: absolute;
  inset: 0;
  background: url('../assets/images/dj-outdoor.jpg') center / cover no-repeat;
  filter: sepia(35%) saturate(0.6) brightness(0.5) contrast(1.1);
}

.live-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    transparent 10%,
    transparent 88%,
    var(--bg) 100%
  );
}

.live-strip__label {
  position: absolute;
  bottom: 40px;
  right: 48px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

@media (max-width: 768px) {
  .live-strip__label { right: 24px; }
}

/* ─── SHOWS SECTION ──────────────────────────────────────── */
.shows {
  padding: var(--section-v) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.shows-tba {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 24px;
}

/* Show rows — ultra-minimal */
.show-row {
  display: grid;
  grid-template-columns: 120px 1fr 160px 80px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .2s ease;
  gap: 16px;
}

.show-row:first-of-type {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.show-row:hover { background: rgba(255,255,255,0.015); }

.show-row__date {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
}

.show-row__venue {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.show-row--venues .show-row__venue {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

.show-row__city {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.show-row__note {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
  opacity: .5;
}

.show-row__ticket {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-align: right;
  transition: opacity .2s;
}

.show-row__ticket:hover { opacity: .7; }

.show-row--upcoming .show-row__venue { color: var(--text); }

@media (max-width: 768px) {
  .show-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 4px 8px;
    padding: 16px 0;
  }

  .show-row__venue { grid-column: 1 / -1; font-size: 13px; }
  .show-row__date  { font-size: 10px; }
  .show-row__city  { font-size: 10px; }
  .show-row__note, .show-row__ticket { text-align: right; }
}

/* ─── PORTRAIT DIVIDER ───────────────────────────────────── */
.portrait-divider {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
}

.portrait-divider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(30%) saturate(0.6) brightness(0.72) contrast(1.1);
}

.portrait-divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    transparent 20%,
    transparent 78%,
    var(--bg) 100%
  );
}

/* ─── ABOUT SECTION ──────────────────────────────────────── */
.about {
  padding: var(--section-v) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

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

  .about__photo img {
    aspect-ratio: 4/3;
    object-position: center 20%;
  }
}

.about__photo {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.about__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  transition: transform .9s var(--ease);
  display: block;
}

.about__photo:hover img {
  transform: scale(1.03);
}

.about__text {
  padding-top: 8px;
}

.about__bio {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.about__bio em {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

.about__support {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.about__labels {
  margin-top: 24px;
}

.about__support-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.about__support-names {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.9;
}

/* ─── BOOKING SECTION ────────────────────────────────────── */
.booking {
  padding: var(--section-v) 0 calc(var(--section-v) * 1.4);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.booking__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 600px;
}

.booking__email {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 4px;
  margin-bottom: 48px;
  transition: color .25s ease, border-color .25s ease;
}

.booking__email:hover {
  color: var(--accent);
  border-color: var(--accent-border);
}

.booking__socials {
  display: flex;
  gap: 32px;
  align-items: center;
}

.booking__social {
  color: var(--text-dim);
  transition: color .25s ease, transform .25s ease;
}

.booking__social svg {
  width: 26px; height: 26px;
  display: block;
}

.booking__social--img img {
  width: 26px; height: 26px;
  display: block;
  object-fit: contain;
  filter: invert(1) opacity(0.75);
  transition: filter .25s ease;
}

.booking__social--img:hover img {
  filter: invert(1) opacity(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(0.85);
}

.booking__social:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .25s ease;
}

.footer__wordmark:hover { color: var(--text); }

.footer__copy {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar              { width: 3px; }
::-webkit-scrollbar-track        { background: var(--bg); }
::-webkit-scrollbar-thumb        { background: rgba(196,154,60,.18); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover  { background: rgba(196,154,60,.45); }

/* ─── SELECTION ──────────────────────────────────────────── */
::selection { background: var(--accent-glow); color: #fff; }

/* ─── FOCUS ──────────────────────────────────────────────── */
:focus-visible { outline: 1px solid var(--accent); outline-offset: 3px; }

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__scroll-line { animation: none; }
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1 !important; transform: none !important;
  }
  .hero__name, .hero__origin { opacity: 1 !important; transform: none !important; }
}
