/* =========================================================
   THE DOORS REVIVAL — 2026
   Design tokens & global styles
   ========================================================= */

:root {
  --ink:     #0A0908;
  --ink-2:   #121110;
  --smoke:   #1C1B19;
  --bone:    #F4EDE4;
  --bone-d:  #C9C2B8;
  --ember:   #A12003;
  --ember-d: #7A1802;
  --whiskey: #B8860B;
  --blood:   #5C0A0A;

  --f-display: "Fraunces", "Playfair Display", Georgia, serif;
  --f-body:    "Inter Tight", "Inter", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  --max: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius: 2px;

  --t-fast: 200ms cubic-bezier(.2,.7,.2,1);
  --t-med:  500ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 900ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  font-feature-settings: "ss01","ss02";
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Film grain overlay ---------- */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -.02em;
  line-height: .92;
}
.h1 { font-size: clamp(48px, 9vw, 160px); }
.h2 { font-size: clamp(36px, 6vw, 96px); }
.h3 { font-size: clamp(24px, 3vw, 44px); }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ember);
}
.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  max-width: 60ch;
  color: var(--bone-d);
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(80px, 12vw, 180px) 0; position: relative; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--whiskey), transparent); opacity: .4; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--t-med), backdrop-filter var(--t-med), padding var(--t-med);
}
.site-header.scrolled {
  background: rgba(10,9,8,.78);
  backdrop-filter: blur(14px);
  padding: 14px var(--gutter);
  border-bottom: 1px solid rgba(244,237,228,.06);
}
.logo {
  display: flex; align-items: center; gap: 12px;
  height: 44px;
}
.logo img { height: 100%; width: auto; display: block; filter: brightness(1.05); }
.nav { display: flex; gap: 36px; align-items: center; }
.nav a {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--ember);
  transition: width var(--t-med);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--bone);
  padding: 10px 18px !important;
  transition: all var(--t-fast);
}
.nav-cta:hover { background: var(--ember); border-color: var(--ember); }
.nav-cta::after { display: none; }

.lang-switch { display: flex; gap: 4px; align-items: center; padding-left: 8px; border-left: 1px solid rgba(244,237,228,.2); }
.lang-switch a {
  font-family: var(--f-mono);
  font-size: 11px !important;
  letter-spacing: .15em;
  padding: 6px 8px !important;
  color: var(--bone-d);
  opacity: .55;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.lang-switch a::after { display: none !important; }
.lang-switch a.active, .lang-switch a:hover { opacity: 1; color: var(--ember); }

.burger { display: none; width: 32px; height: 32px; position: relative; }
.burger span {
  position: absolute; left: 4px; right: 4px; height: 1px; background: var(--bone);
  transition: var(--t-fast);
}
.burger span:nth-child(1) { top: 12px; }
.burger span:nth-child(2) { top: 19px; }
.burger.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { top: 15px; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--bone);
  background: transparent;
  transition: all var(--t-fast);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ember);
  transform: translateX(-101%);
  transition: transform var(--t-med);
  z-index: -1;
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { border-color: var(--ember); }
.btn--primary { background: var(--ember); border-color: var(--ember); }
.btn--primary:hover { background: var(--ember-d); }
.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(6px); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 0 var(--gutter) clamp(60px, 10vh, 120px);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(161,32,3,.25), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(92,10,10,.4), transparent 70%),
    linear-gradient(180deg, #1a0e08 0%, #0a0908 100%);
}
.hero__video {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;        /* 16:9 */
  min-height: 100vh; min-width: 177.77vh; /* cover */
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
  z-index: 0;
  filter: grayscale(.4) contrast(1.05) brightness(.55) sepia(.25) hue-rotate(-10deg);
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 0%, rgba(10,9,8,.55) 60%, var(--ink) 100%),
    linear-gradient(180deg, rgba(10,9,8,.5) 0%, transparent 30%, transparent 60%, var(--ink) 100%);
}
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'><defs><radialGradient id='g' cx='50%25' cy='50%25'><stop offset='0%25' stop-color='%23A12003' stop-opacity='.4'/><stop offset='100%25' stop-color='%230A0908' stop-opacity='0'/></radialGradient></defs><circle cx='800' cy='450' r='300' fill='url(%23g)'/></svg>");
  background-size: cover; background-position: center;
  mix-blend-mode: screen;
  opacity: .6;
  animation: drift 18s ease-in-out infinite alternate;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--ink) 100%);
}
@keyframes drift {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.1) translate(-2%, -1%); }
}

.hero__content { position: relative; z-index: 2; max-width: 1200px; }
.hero__eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.hero__eyebrow::before { content:""; width: 60px; height:1px; background: var(--ember);}
.hero__title { margin-bottom: 32px; }
.hero__title .word { display: inline-block; overflow: hidden; }
.hero__title .word span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.2s var(--t-slow) forwards;
}
.hero__title .word:nth-child(2) span { animation-delay: .15s; }
.hero__title .word:nth-child(3) span { animation-delay: .3s; }
.hero__title .word:nth-child(4) span { animation-delay: .45s; color: var(--ember); }
@keyframes rise { to { transform: translateY(0); } }

.hero__sub {
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 50ch;
  color: var(--bone-d);
  margin-bottom: 48px;
  opacity: 0; animation: fade 1s 1s forwards;
}
.hero__cta { display: flex; gap: 20px; flex-wrap: wrap; opacity: 0; animation: fade 1s 1.2s forwards; }
.hero__next {
  margin-top: 32px; font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--bone-d);
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fade 1s 1.4s forwards;
}
.hero__next strong { color: var(--ember); font-size: 13px; }
@keyframes fade { to { opacity: 1; } }

.hero__meta {
  position: absolute;
  bottom: 40px; right: var(--gutter);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bone-d);
  text-align: right;
  z-index: 2;
}
.hero__meta strong { color: var(--ember); display: block; font-size: 13px; }

.scroll-cue {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bone-d);
  z-index: 2;
}
.scroll-cue::after {
  content: ""; display: block;
  width: 1px; height: 40px;
  background: var(--bone-d);
  margin: 14px auto 0;
  animation: drop 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drop {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.3); }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 220px var(--gutter) 100px;
  position: relative;
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 { margin-bottom: 24px; }

/* ---------- THE VOICE / quote section ---------- */
.voice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.voice__portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2a1a10, #0a0908);
  position: relative;
  overflow: hidden;
}
.voice__portrait::after {
  content: "STÉPHANE";
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--ember);
}
.voice__portrait::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(161,32,3,.35), transparent 60%);
}
.voice__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.voice__quote span { color: var(--ember); }
.voice__source {
  margin-top: 32px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bone-d);
}

/* ---------- BAND CARDS ---------- */
.band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(244,237,228,.08);
  border: 1px solid rgba(244,237,228,.08);
}
.member {
  background: var(--ink);
  padding: 0;
  aspect-ratio: 3/4;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.member__photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(.55) contrast(1.05) brightness(.85) sepia(.2);
  transition: transform var(--t-slow), filter var(--t-med);
}
.member { cursor: pointer; }
.member:hover .member__photo { transform: scale(1.06); filter: grayscale(0) contrast(1.1) brightness(1) sepia(.05); }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,9,8,.85);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center; justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  transition: opacity var(--t-med);
}
.modal.open { display: flex; opacity: 1; }
.modal__panel {
  background: var(--smoke);
  border: 1px solid rgba(244,237,228,.1);
  max-width: 900px; width: 100%;
  max-height: 86vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform var(--t-med);
}
.modal.open .modal__panel { transform: none; }
.modal__photo {
  background-size: cover; background-position: center 20%;
  filter: grayscale(.4) contrast(1.05) sepia(.15);
  min-height: 400px;
}
.modal__body { padding: 60px 50px; overflow-y: auto; min-height: 0; max-height: 86vh; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: var(--ember) transparent; }
.modal__body::-webkit-scrollbar { width: 6px; }
.modal__body::-webkit-scrollbar-thumb { background: var(--ember); }
.modal__role { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ember); margin-bottom: 16px;}
.modal__name { font-family: var(--f-display); font-style: italic; font-size: clamp(36px, 4vw, 56px); line-height: .95; margin-bottom: 32px;}
.modal__text { color: var(--bone-d); font-size: 15px; line-height: 1.7; }
.modal__text p + p { margin-top: 16px; }
.modal__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border: 1px solid rgba(244,237,228,.3);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: all var(--t-fast);
}
.modal__close:hover { background: var(--ember); border-color: var(--ember); }
.modal__close::before, .modal__close::after {
  content: ""; position: absolute; width: 18px; height: 1px;
  background: var(--bone);
}
.modal__close::before { transform: rotate(45deg); }
.modal__close::after { transform: rotate(-45deg); }

@media (max-width: 780px) {
  .modal__panel { grid-template-columns: 1fr; max-height: 92vh;}
  .modal__photo { min-height: 240px; }
  .modal__body { padding: 40px 28px; }
}
.member::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,9,8,.5) 60%, var(--ink) 100%);
  z-index: 1;
}
.member::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(161,32,3,.0), rgba(161,32,3,.15));
  opacity: 0; transition: opacity var(--t-med); z-index: 1;
}
.member:hover::after { opacity: 1; }
.member__body { position: relative; z-index: 2; padding: 40px 32px; }
.member__name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: .95;
  margin-bottom: 12px;
  overflow-wrap: break-word;
}
.member__role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bone-d);
  margin-bottom: 16px;
}
.member__gear {
  font-size: 13px;
  color: var(--bone-d);
  line-height: 1.5;
}

/* ---------- LIVE / Concerts ---------- */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px; gap: 40px; flex-wrap: wrap;
}
.section-head h2 { max-width: 14ch; }

.shows { display: flex; flex-direction: column; }
.show {
  display: grid;
  grid-template-columns: 140px 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid rgba(244,237,228,.1);
  transition: padding var(--t-med);
}
.show:last-child { border-bottom: 1px solid rgba(244,237,228,.1); }
.show:hover { padding-left: 20px; }
.show__date {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(32px, 3vw, 48px);
  line-height: .9;
}
.show__date small { display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; color: var(--ember); margin-top: 8px; font-style: normal;}
.show__venue { font-family: var(--f-display); font-style: italic; font-size: clamp(20px, 1.8vw, 28px); }
.show__city { font-family: var(--f-mono); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--bone-d); }
.show__cta { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; padding: 14px 22px; border: 1px solid var(--bone); transition: all var(--t-fast);}
.show__cta:hover { background: var(--ember); border-color: var(--ember);}

/* ---------- LISTEN / Player ---------- */
.player {
  background: var(--smoke);
  border: 1px solid rgba(244,237,228,.08);
  padding: 48px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
}
.player__cover {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--ember), var(--blood));
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.player__cover svg { width: 50%; height: 50%; opacity: .8; }
.player__track-eyebrow { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; color: var(--ember); text-transform: uppercase; }
.player__title { font-family: var(--f-display); font-style: italic; font-size: clamp(28px, 3vw, 44px); margin: 8px 0 24px; }
.player__wave {
  display: flex; align-items: center; gap: 3px;
  height: 60px; margin-bottom: 20px;
}
.player__wave span {
  flex: 1; background: var(--ember); opacity: .5;
  animation: wave 1.4s ease-in-out infinite;
  transform-origin: bottom;
}
.player__wave span:nth-child(odd) { animation-delay: .2s; opacity: .8; }
.player__wave span:nth-child(3n) { animation-delay: .4s; opacity: .35;}
.player__wave span:nth-child(5n) { animation-delay: .6s;}
@keyframes wave {
  0%, 100% { transform: scaleY(.2); }
  50% { transform: scaleY(1); }
}
.player__progress { margin-bottom: 20px; }
.player__progress-bar {
  width: 100%; height: 4px; background: rgba(244,237,228,.15);
  cursor: pointer; position: relative; border-radius: 2px;
}
.player__progress-fill {
  height: 100%; background: var(--ember); width: 0%;
  border-radius: 2px; transition: width 0.1s linear;
  position: relative;
}
.player__progress-fill::after {
  content: ""; position: absolute; right: -5px; top: -3px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bone); opacity: 0; transition: opacity var(--t-fast);
}
.player__progress-bar:hover .player__progress-fill::after { opacity: 1; }
.player__controls { display: flex; align-items: center; gap: 24px; }
.player__btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ember); display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-fast);
}
.player__btn:hover { transform: scale(1.08); }
.player__time { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; color: var(--bone-d); }

.tracklist { margin-top: 60px; display: flex; flex-direction: column; gap: 1px; background: rgba(244,237,228,.08); }
.track {
  background: var(--ink); padding: 22px 28px;
  display: grid; grid-template-columns: 36px 30px 1fr auto; gap: 24px;
  align-items: center; transition: background var(--t-fast);
  cursor: pointer;
}
.track:hover { background: var(--smoke); }
.track.is-active { background: var(--smoke); }
.track.is-active .track__name { color: var(--ember); }
.track.is-active .track__play svg path { fill: var(--ember); }
.track__play {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(244,237,228,.08); display: flex;
  align-items: center; justify-content: center;
  transition: background var(--t-fast);
}
.track:hover .track__play { background: rgba(244,237,228,.15); }
.track__num { font-family: var(--f-mono); font-size: 11px; color: var(--bone-d); }
.track__name { font-family: var(--f-display); font-style: italic; font-size: 22px; transition: color var(--t-fast); }
.track__time, .track__album { font-family: var(--f-mono); font-size: 11px; letter-spacing: .15em; color: var(--bone-d); text-transform: uppercase; }

/* ---------- GALLERY ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-rows: 120px;
}
.tile {
  background: linear-gradient(135deg, #2a1a10, #0a0908);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.tile::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(161,32,3,.4), transparent 60%);
  transition: var(--t-med);
}
.tile::after {
  content: attr(data-label);
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em;
  color: var(--bone); text-transform: uppercase;
  opacity: 0; transition: var(--t-med);
}
.tile:hover::before { background: radial-gradient(circle at 30% 30%, rgba(161,32,3,.7), transparent 70%); }
.tile:hover::after { opacity: 1; }
.tile.t-a { grid-column: span 6; grid-row: span 4; }
.tile.t-b { grid-column: span 3; grid-row: span 2; }
.tile.t-c { grid-column: span 3; grid-row: span 2; }
.tile.t-d { grid-column: span 3; grid-row: span 4; }
.tile.t-e { grid-column: span 3; grid-row: span 4; }
.tile.t-f { grid-column: span 4; grid-row: span 3; }
.tile.t-g { grid-column: span 4; grid-row: span 3; }
.tile.t-h { grid-column: span 4; grid-row: span 3; }

/* ---------- GALLERY TOGGLE ---------- */
.gallery-toggle {
  display: flex; gap: 0; margin-bottom: 40px;
  border: 1px solid rgba(244,237,228,.15); width: fit-content;
}
.gallery-toggle__btn {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; padding: 12px 28px;
  background: transparent; color: var(--bone-d);
  cursor: pointer; transition: all var(--t-fast);
  border-right: 1px solid rgba(244,237,228,.15);
}
.gallery-toggle__btn:last-child { border-right: none; }
.gallery-toggle__btn:hover { color: var(--bone); background: rgba(244,237,228,.05); }
.gallery-toggle__btn.is-active { background: var(--ember); color: var(--bone); }

/* ---------- VIDEO GRID ---------- */
.video-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px;
}
.video-card {
  position: relative; overflow: hidden;
  background: var(--smoke); cursor: pointer;
}
.video-card video, .video-card iframe {
  width: 100%; height: 100%; object-fit: cover; border: none;
}
.video-card__overlay {
  position: absolute; inset: 0; display: flex;
  flex-direction: column; justify-content: flex-end;
  padding: 20px; background: linear-gradient(transparent 40%, rgba(10,9,8,.8));
  transition: background var(--t-fast);
}
.video-card:hover .video-card__overlay { background: linear-gradient(transparent 20%, rgba(10,9,8,.9)); }
.video-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%; background: var(--ember);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-fast);
}
.video-card:hover .video-card__play { transform: translate(-50%,-50%) scale(1.1); }
.video-card__title {
  font-family: var(--f-display); font-style: italic; font-size: 18px;
  color: var(--bone);
}
.video-card__meta {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .15em;
  color: var(--bone-d); text-transform: uppercase; margin-top: 4px;
}
.video-card--yt { aspect-ratio: 16/9; }
.video-card--yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-card--local { aspect-ratio: auto; position: relative; }
.video-card--local video { width: 100%; height: auto; display: block; position: relative; }
.video-card__overlay { transition: opacity var(--t-med); }
.video-card__info {
  display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap;
  padding: 12px 0;
}

/* ---------- PHOTO GALLERY ---------- */
.album-selector {
  position: relative; margin-bottom: 40px;
}
.album-selector__current {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: var(--smoke);
  border: 1px solid rgba(244,237,228,.1);
  cursor: pointer; text-align: left; transition: border-color var(--t-fast);
}
.album-selector__current:hover { border-color: var(--ember); }
.album-selector.open .album-selector__current { border-color: var(--ember); }
.album-selector__label { display: flex; flex-direction: column; gap: 4px; }
.album-selector__name {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px); color: var(--bone);
}
.album-selector__meta {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .15em;
  color: var(--bone-d); text-transform: uppercase;
}
.album-selector__arrow {
  transition: transform var(--t-fast); flex-shrink: 0; margin-left: 16px;
}
.album-selector.open .album-selector__arrow { transform: rotate(180deg); }
.album-selector__dropdown {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 50;
  background: var(--smoke); border: 1px solid rgba(244,237,228,.1);
  border-top: none; display: none; max-height: 60vh; overflow-y: auto;
}
.album-selector.open .album-selector__dropdown { display: block; }
.album-selector__option {
  width: 100%; display: flex; flex-direction: column; gap: 4px;
  padding: 16px 24px; text-align: left;
  border-bottom: 1px solid rgba(244,237,228,.05);
  transition: background var(--t-fast); cursor: pointer;
}
.album-selector__option:last-child { border-bottom: none; }
.album-selector__option:hover { background: rgba(244,237,228,.05); }
.album-selector__option.is-active { background: rgba(161,32,3,.15); }
.album-selector__option.is-active .album-selector__name { color: var(--ember); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  aspect-ratio: 4/3; overflow: hidden; cursor: pointer;
  position: relative; background: var(--smoke);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-med), opacity 0.4s;
  opacity: 0;
}
.gallery-item img.loaded { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-loader {
  text-align: center; padding: 40px 0;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: .15em; color: var(--bone-d);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,9,8,.95); display: none;
  align-items: center; justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw; max-height: 80vh; object-fit: contain;
}
.lightbox__close {
  position: absolute; top: 20px; right: 28px;
  font-size: 36px; color: var(--bone); z-index: 2;
}
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 48px; color: var(--bone); z-index: 2;
  padding: 20px; opacity: .6; transition: opacity var(--t-fast);
}
.lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }
.lightbox__prev { left: 12px; }
.lightbox__next { right: 12px; }
.lightbox__caption {
  margin-top: 16px; font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .15em; color: var(--bone-d); text-transform: uppercase;
}

/* ---------- PRESS WALL ---------- */
.press { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(244,237,228,.08); border: 1px solid rgba(244,237,228,.08); }
.press__item { background: var(--ink); padding: 60px 50px; }
.press__quote {
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: clamp(22px, 2.2vw, 32px); line-height: 1.2;
  margin-bottom: 32px;
}
.press__source { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ember);}
.press__source span { color: var(--bone-d); margin-left: 12px;}

/* ---------- CONTACT / FORM ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); }
.contact-info p { color: var(--bone-d); margin-bottom: 24px;}
.contact-info dl { margin-top: 40px; }
.contact-info dt { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ember); margin-bottom: 6px;}
.contact-info dd { margin-bottom: 24px; font-size: 16px; }

.form { display: flex; flex-direction: column; gap: 28px;}
.field { display: flex; flex-direction: column; gap: 8px;}
.field label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--bone-d);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,237,228,.2);
  padding: 12px 0;
  font: inherit;
  color: var(--bone);
  transition: border-color var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--ember);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- CTA / Newsletter ---------- */
.cta-final {
  text-align: center;
  padding: clamp(120px, 18vw, 240px) var(--gutter);
}
.cta-final .display {
  font-size: clamp(40px, 7vw, 120px);
  margin-bottom: 60px;
}
.cta-final .display em { color: var(--ember); font-style: italic; }
.newsletter {
  display: flex;
  max-width: 520px; margin: 0 auto;
  border-bottom: 1px solid var(--bone);
  padding-bottom: 8px;
}
.newsletter input {
  flex: 1;
  background: none; border: none;
  padding: 16px 0;
  font: inherit;
  color: var(--bone);
}
.newsletter input:focus { outline: none; }
.newsletter button {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ember);
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid rgba(244,237,228,.1);
  padding: 60px var(--gutter) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-grid h4 {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ember); margin-bottom: 20px;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { color: var(--bone-d); transition: color var(--t-fast); font-size: 14px;}
.footer-grid a:hover { color: var(--ember); }
.footer-mark { font-family: var(--f-display); font-style: italic; font-size: 32px; line-height: 1; margin-bottom: 20px; }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(244,237,228,.08);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--bone-d);
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s, transform 1s; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Cursor blob (desktop) ---------- */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--ember);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width var(--t-fast), height var(--t-fast), background var(--t-fast);
  mix-blend-mode: difference;
}
.cursor.hover { width: 60px; height: 60px; background: rgba(161,32,3,.2);}

/* ---------- RESPONSIVE ---------- */
html, body { overflow-x: hidden; max-width: 100vw; }
img, svg, video { max-width: 100%; height: auto; }

@media (max-width: 980px) {
  :root { --gutter: clamp(18px, 5vw, 32px); }
  .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
         width: 100vw; height: 100vh; height: 100dvh; min-height: 100vh;
         background: var(--ink); flex-direction: column; justify-content: center;
         align-items: center; gap: 32px; padding: 80px 20px;
         z-index: 100; overflow-y: auto; }
  .nav.open { display: flex; }
  .nav a { font-size: 22px; }
  .nav .nav-cta { padding: 14px 24px !important; }
  .burger { display: block; z-index: 101;}
  section { padding: clamp(70px, 14vw, 120px) 0; }
  .voice { grid-template-columns: 1fr; gap: 40px;}
  .voice__portrait { aspect-ratio: 4/5; max-height: 60vh; }
  .band { grid-template-columns: repeat(2, 1fr); }
  .player { grid-template-columns: 1fr; padding: 28px; gap: 28px;}
  .player__cover { max-width: 220px; margin: 0 auto; }
  .show { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .show:hover { padding-left: 0; }
  .show__cta { justify-self: start; margin-top: 6px;}
  .press { grid-template-columns: 1fr;}
  .press__item { padding: 44px 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .album-selector__current { padding: 14px 18px; }
  .album-selector__option { padding: 14px 18px; }
  .grid { grid-auto-rows: 90px; gap: 10px; }
  .tile.t-a { grid-column: span 12; grid-row: span 4; }
  .tile.t-b, .tile.t-c { grid-column: span 6; grid-row: span 2;}
  .tile.t-d, .tile.t-e { grid-column: span 6; grid-row: span 3;}
  .tile.t-f, .tile.t-g, .tile.t-h { grid-column: span 12; grid-row: span 2;}
  .cursor { display: none; }
  .hero__meta { display: none; }
  .page-hero { padding: 140px var(--gutter) 60px; }
  .section-head { margin-bottom: 50px; }
  .tracklist .track { grid-template-columns: 32px 24px 1fr auto; gap: 14px; padding: 18px 18px;}
  .tracklist .track__album { display: none; }
  .track__name { font-size: 18px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center;}
}

@media (max-width: 600px) {
  :root { --gutter: 18px; }
  body { font-size: 15px; }
  .site-header { padding: 16px var(--gutter); }
  .site-header.scrolled { padding: 12px var(--gutter); }
  .logo { font-size: 15px; }
  .logo::before { width: 18px; }

  .hero { min-height: 92vh; padding-bottom: 80px; align-items: center;}
  .hero__title { margin-bottom: 24px; }
  .h1 { font-size: clamp(42px, 13vw, 68px); }
  .h2 { font-size: clamp(32px, 9vw, 48px); }
  .hero__sub { font-size: 15px; margin-bottom: 32px; }
  .hero__cta { flex-direction: column; gap: 12px; width: 100%;}
  .hero__cta .btn { width: 100%; justify-content: space-between; padding: 16px 22px;}
  .scroll-cue { bottom: 20px; font-size: 9px; }
  .scroll-cue::after { height: 28px; margin-top: 10px; }

  .page-hero { padding: 120px var(--gutter) 40px; }
  .lede { font-size: 16px; }

  .band { grid-template-columns: 1fr; }
  .member { aspect-ratio: auto; padding: 32px 24px; min-height: 280px;}
  .member__name { font-size: 32px; }

  .player { padding: 22px; }
  .player__cover { max-width: 160px; }
  .player__title { font-size: 26px; margin: 6px 0 18px; }
  .player__wave { height: 44px; }
  .player__controls { gap: 16px;}
  .player__btn { width: 50px; height: 50px; }

  .show__date { font-size: 30px; }
  .show__venue { font-size: 19px; }

  .press__item { padding: 36px 22px; }
  .press__quote { font-size: 21px; margin-bottom: 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px;}
  .footer-mark { font-size: 26px; }
  footer { padding: 50px var(--gutter) 30px; }

  .cta-final { padding: 100px var(--gutter); }
  .cta-final .display { font-size: clamp(36px, 11vw, 56px); margin-bottom: 40px;}
  .newsletter { flex-direction: column; align-items: stretch; gap: 14px; border: none;}
  .newsletter input { border-bottom: 1px solid var(--bone); padding: 14px 0;}
  .newsletter button { padding: 14px; border: 1px solid var(--ember); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-toggle__btn { padding: 10px 18px; font-size: 10px; }
  .lightbox__prev, .lightbox__next { font-size: 32px; padding: 12px; }
  .lightbox__prev { left: 4px; }
  .lightbox__next { right: 4px; }
  .form .btn { width: 100%; justify-content: space-between;}
  .grid { grid-auto-rows: 70px; }

  .voice__quote { font-size: 26px; }
  .section-head { gap: 24px; margin-bottom: 40px;}
  .section-head .btn { width: 100%; justify-content: space-between;}
}

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