/* ══════════════════════════════════════════════════════════
   soulkontrol — Rooftop Sessions  |  style.css
   Palette: dark orange #a43408, silver, black, white
   ══════════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────────── */
:root {
  --black:     #080807;
  --dark:      #0e0d0b;
  --surface:   #141210;
  --card:      #1a1714;

  /* Brand orange — brighter and more visible */
  --orange-1:  #c94010;        /* primary accent — was #a43408 */
  --orange-2:  #e85d20;        /* mid orange — was #c94010 */
  --orange-3:  #ff7a32;        /* bright orange — was #e05518 */

  /* Silver / neutral replacing gold-3 */
  --silver:    #c8c4bc;        /* light silver text / accents */
  --silver-dim:#7a7670;        /* muted silver */

  /* Aliases used throughout */
  --gold-1:    var(--orange-1);
  --gold-2:    var(--orange-2);
  --gold-3:    var(--orange-3);
  --amber:     var(--orange-3);

  --text:      #e4ddd4;
  --muted:     #6e6560;
  --line:      rgba(164,52,8,0.22);

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-serif:   'Cormorant Garamond', serif;
  --ff-body:    'DM Sans', sans-serif;
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  overflow-x: hidden;
  padding-bottom: 135px;
  font-size: 19px; /* base — all rem values scale from here */
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── UTILITY ──────────────────────────────────────────── */
.gold { color: var(--orange-2); }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ══════════════════════════════════════════════════════════
   LOGO — transparent PNG, no filters needed
   ══════════════════════════════════════════════════════════ */

/* Nav logo */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── HERO TITLE / LOGO ─────────────────────────────────── */
/* The h1.hero-title now holds the logo image instead of text */
.hero-title {
  margin: 0 0 .6rem;
  line-height: 1;
}
.hero-logo-img {
  /* Fill most of the hero width — wide logo needs room */
  width: clamp(280px, 72vw, 920px);
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  /* Subtle drop shadow to lift it off the dark bg */
  filter: drop-shadow(0 4px 32px rgba(164,52,8,0.35))
          drop-shadow(0 1px 8px rgba(0,0,0,0.6));
}

/* "Golden Hour" subtitle line that sits beneath the logo */
.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  letter-spacing: clamp(6px, 2vw, 18px);
  text-transform: uppercase;
  color: var(--orange-3);
  text-shadow: 0 0 30px rgba(255,122,50,0.5), 0 2px 12px rgba(0,0,0,0.8);
  margin-bottom: 1.4rem;
  line-height: 1;
}

/* Footer logo */
.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: .35rem;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.5));
}

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(8,8,7,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: padding .4s;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}
.nav-links a:hover { color: var(--orange-2); }
.nav-cta {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  /* Glass */
  background: rgba(164,52,8,0.18);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(164,52,8,0.45);
  color: var(--orange-2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 2px 10px rgba(164,52,8,0.2);
  transition: background .3s, color .3s, box-shadow .3s, transform .25s;
}
.nav-cta:hover {
  background: rgba(164,52,8,0.38);
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 6px 20px rgba(164,52,8,0.35);
}

/* ── HERO ─────────────────────────────────────────────── */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 5rem;
  position: relative;
  overflow: hidden;
  background-color: #080807;
}

/* Dark overlays sit on top of the inline background-image */
#home::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    /* Strong bottom-to-top fade so content is readable */
    linear-gradient(
      to top,
      rgba(8,8,7,1.0) 0%,
      rgba(8,8,7,0.92) 20%,
      rgba(8,8,7,0.55) 45%,
      rgba(8,8,7,0.15) 65%,
      transparent 80%
    ),
    /* Left edge darkening */
    linear-gradient(
      to right,
      rgba(8,8,7,0.75) 0%,
      rgba(8,8,7,0.3) 40%,
      transparent 70%
    ),
    /* Top nav area darkening */
    linear-gradient(
      to bottom,
      rgba(8,8,7,0.6) 0%,
      transparent 20%
    );
  pointer-events: none;
}

/* Remove old hero-bg and hero-photo-wrap styles */
.hero-bg,
.hero-photo-wrap,
.hero-photo,
.hero-photo-fade { display: none; }

/* Noise texture */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .35;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* Remove any outline that could cause orange box */
  outline: none;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
/* hero-title is now an img container — text styles removed */
.hero-title span { display: none; } /* safety: hide if stray span */
.hero-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(228,221,212,0.85);
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  max-width: 32rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  font-family: var(--ff-body);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  /* Liquid glass base */
  background: linear-gradient(
    135deg,
    rgba(164,52,8,0.72) 0%,
    rgba(224,85,24,0.58) 50%,
    rgba(164,52,8,0.68) 100%
  );
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  color: #fff;
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    0 4px 24px rgba(164,52,8,0.35),
    0 1px 0 rgba(255,255,255,0.06);
  transition: transform .3s cubic-bezier(.4,0,.2,1),
              box-shadow .3s ease,
              background .3s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    0 8px 32px rgba(164,52,8,0.5),
    0 1px 0 rgba(255,255,255,0.08);
  background: linear-gradient(
    135deg,
    rgba(180,58,10,0.82) 0%,
    rgba(230,90,28,0.68) 50%,
    rgba(180,58,10,0.78) 100%
  );
}
.btn-primary:hover::before { left: 120%; }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  font-family: var(--ff-body);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  /* Liquid glass — dark tinted, frosted */
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(164,52,8,0.32);
  color: var(--silver);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 2px 12px rgba(0,0,0,0.25);
  transition: transform .3s cubic-bezier(.4,0,.2,1),
              box-shadow .3s ease,
              border-color .3s ease,
              background .3s ease;
}
.btn-ghost::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(164,52,8,0.7);
  color: var(--orange-2);
  background: rgba(164,52,8,0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.1),
    0 6px 24px rgba(164,52,8,0.2);
}
.btn-ghost:hover::before { left: 120%; }
.btn-ghost:active { transform: translateY(0); }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  opacity: .4;
}
.scroll-hint span {
  font-size: .6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--muted);
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--orange-1), transparent);
}

/* ── MARQUEE ──────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 1.4rem 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  letter-spacing: 5px;
  color: var(--muted);
  padding: 0 3.5rem;
  white-space: nowrap;
  transition: color .3s;
}
.marquee-item.accent { color: var(--orange-2); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS BASE ────────────────────────────────────── */
section { padding: 7rem 4rem; }
.section-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-1);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--orange-1);
}
.section-label--after::before { display: none; }
.section-label--after::after {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--orange-1);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.section-intro {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.75;
}

/* ── ABOUT ────────────────────────────────────────────── */
#about {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: 'sk';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 18vw;
  color: rgba(164,52,8,0.05);
  pointer-events: none;
  letter-spacing: 4px;
  line-height: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(228,221,212,.75);
  margin-bottom: 1.2rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}
.stat { background: var(--card); padding: 1.5rem; text-align: center; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  color: var(--orange-2);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.about-visual { position: relative; }
.about-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(164,52,8,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 30% 70%, rgba(200,80,20,0.2) 0%, transparent 55%),
    linear-gradient(170deg, #1a0a02 0%, #0d0804 100%);
}
.about-img-inner {
  position: relative;
  z-index: 1;
  font-family: var(--ff-display);
  font-size: 2.6rem;
  color: rgba(164,52,8,0.28);
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.2;
}
.about-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--card), transparent);
  z-index: 2;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.about-badge span:first-child { font-family: var(--ff-display); font-size: 2rem; color: #fff; line-height: 1; }
.about-badge span:last-child { font-size: .55rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* ── RESIDENCIES ──────────────────────────────────────── */
#residencies { background: var(--dark); }
.residencies-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.residencies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.res-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform .4s, border-color .4s;
  cursor: pointer;
}
.res-card:hover { transform: translateY(-6px); border-color: var(--orange-1); }
.res-card-img { width: 100%; aspect-ratio: 3/4; position: relative; overflow: hidden; }
.res-card:nth-child(1) .res-card-img { background: linear-gradient(160deg, #2e0e02 0%, #170805 50%, #0a0604 100%); }
.res-card:nth-child(2) .res-card-img { background: linear-gradient(160deg, #1e0c04 0%, #120804 50%, #080604 100%); }
.res-card:nth-child(3) .res-card-img { background: linear-gradient(160deg, #2a0e03 0%, #160804 50%, #0a0604 100%); }
.res-card:nth-child(4) .res-card-img { background: linear-gradient(160deg, #240c04 0%, #120704 50%, #080504 100%); }
.res-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(164,52,8,0.28) 0%, transparent 70%);
}
.res-card-icon { position: relative; z-index: 1; font-size: 3rem; text-align: center; padding: 3rem 0 0; opacity: .3; }
.res-card-body { padding: 1.2rem 1.4rem 1.5rem; border-top: 1px solid var(--line); }
.res-venue { font-family: var(--ff-display); font-size: 1.05rem; letter-spacing: 2px; color: #fff; margin-bottom: .3rem; }
.res-location { font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange-1); margin-bottom: .5rem; }
.res-schedule { font-family: var(--ff-serif); font-style: italic; font-size: .85rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════════
   YIN YANG PHILOSOPHY BLOCK
   ══════════════════════════════════════════════════════════ */
.mixes-philosophy {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 3.5rem;
  margin-bottom: 4rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange-1);
  position: relative;
  overflow: hidden;
}
.mixes-philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(164,52,8,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.yy-symbol {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1;
  flex-shrink: 0;
  color: var(--orange-1);
  opacity: .85;
  animation: yy-spin 28s linear infinite;
  filter: drop-shadow(0 0 12px rgba(164,52,8,0.4));
}
@keyframes yy-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.yy-text {
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  color: var(--silver);
  line-height: 1.75;
}
.yy-sub {
  display: block;
  margin-top: .85rem;
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: var(--muted);
  font-style: italic;
  line-height: 1.85;
}

/* ── MIXES ────────────────────────────────────────────── */
#mixes { background: var(--surface); }
.mixes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.mixes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.mix-card { background: var(--card); position: relative; overflow: hidden; transition: background .3s; cursor: pointer; }
.mix-card:hover { background: #1e1612; }
.mix-card-cover { width: 100%; aspect-ratio: 1; position: relative; overflow: hidden; }
.mix-card:nth-child(1) .mix-card-cover { background: linear-gradient(145deg, #2e1002, #160804); }
.mix-card:nth-child(2) .mix-card-cover { background: linear-gradient(145deg, #240e04, #120603); }
.mix-card:nth-child(3) .mix-card-cover { background: linear-gradient(145deg, #2a0e03, #150703); }
.mix-card:nth-child(4) .mix-card-cover { background: linear-gradient(145deg, #200e04, #0e0603); }
.mix-card:nth-child(5) .mix-card-cover { background: linear-gradient(145deg, #280c02, #140603); }
.mix-card:nth-child(6) .mix-card-cover { background: linear-gradient(145deg, #1e0e04, #120502); }
.mix-card-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(164,52,8,0.32) 0%, transparent 60%);
}
.mix-card-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.8) 100%);
}
.mix-play {
  position: absolute;
  bottom: 1rem; right: 1rem;
  z-index: 2;
  width: 2.6rem; height: 2.6rem;
  border: 1px solid rgba(164,52,8,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8);
  transition: opacity .3s, transform .3s, background .3s;
}
.mix-play svg { width: 14px; fill: var(--orange-2); }
.mix-card:hover .mix-play { opacity: 1; transform: scale(1); background: rgba(164,52,8,.18); }
.mix-card-info { padding: 1.2rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.mix-meta { flex: 1; min-width: 0; }
.mix-title { font-family: var(--ff-display); font-size: 1rem; letter-spacing: 1.5px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: .25rem; }
.mix-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.mix-tag { font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange-2); }
.mix-tag--dot { color: var(--silver-dim); }
.mix-dur { font-size: .7rem; color: var(--muted); letter-spacing: 1px; white-space: nowrap; }

/* ── EPK ──────────────────────────────────────────────── */
#epk { background: var(--dark); }
.epk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 960px; }
/* Single card variant — full width */
.epk-grid--single { grid-template-columns: 1fr; max-width: 640px; }
.epk-card { background: var(--card); border: 1px solid var(--line); padding: 2.5rem; position: relative; overflow: hidden; }
.epk-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--orange-1), var(--orange-3)); }
.epk-card h3 { font-family: var(--ff-display); font-size: 1.3rem; letter-spacing: 2px; color: var(--orange-2); margin-bottom: 1.2rem; }
.epk-card p, .epk-card li { font-size: 1rem; line-height: 1.85; color: rgba(228,221,212,.75); }
.epk-card ul { list-style: none; padding: 0; }
.epk-card ul li { padding: .4rem 0; border-bottom: 1px solid var(--line); display: flex; gap: .75rem; }
.epk-card ul li::before { content: '—'; color: var(--orange-1); flex-shrink: 0; }
.epk-card:last-child { grid-column: span 1; }
.epk-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.highlight { text-align: center; }
.highlight-name { font-family: var(--ff-serif); font-size: .95rem; font-style: italic; color: var(--text); margin-bottom: .2rem; }
.highlight-role { font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-1); }

/* ── BOOKING ──────────────────────────────────────────── */
#booking { background: var(--surface); }
.booking-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; max-width: 1000px; align-items: start; }
.booking-info .contact-item { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.contact-label { font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--orange-1); margin-bottom: .3rem; }
.contact-val { font-size: 1rem; color: var(--text); }
.booking-form { background: var(--card); border: 1px solid var(--line); padding: 2.5rem; position: relative; }
.booking-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--orange-1), var(--orange-3), transparent); }
.form-title { font-family: var(--ff-display); font-size: 1.3rem; letter-spacing: 2px; color: #fff; margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .6rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: .85rem;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange-1); }
.form-group select option { background: var(--card); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(164,52,8,0.82) 0%,
    rgba(224,85,24,0.72) 100%
  );
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: #fff;
  font-family: var(--ff-body);
  font-size: .7rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.15),
    0 4px 20px rgba(164,52,8,0.32);
  transition: opacity .3s, transform .25s, box-shadow .3s;
}
.form-submit:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.15),
    0 8px 28px rgba(164,52,8,0.45);
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-tagline { font-family: var(--ff-serif); font-style: italic; font-size: .9rem; color: var(--muted); margin-top: .25rem; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.footer-links a:hover { color: var(--orange-2); }
.footer-copy { font-size: .65rem; letter-spacing: 1.5px; color: rgba(110,101,96,.4); text-transform: uppercase; }

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .9s forwards ease-out; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

/* ── HAMBURGER ────────────────────────────────────────── */
.ham-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem; height: 2.2rem;
  background: none; border: none;
  cursor: pointer; padding: .3rem;
  z-index: 202; flex-shrink: 0;
}
.ham-btn span {
  display: block; height: 1.5px;
  background: var(--orange-2);
  border-radius: 2px; transform-origin: center;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease, width .25s ease;
}
.ham-btn span:nth-child(1) { width: 100%; }
.ham-btn span:nth-child(2) { width: 68%; }
.ham-btn span:nth-child(3) { width: 100%; }
.ham-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 100%; }
.ham-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 100%; }

/* ── MOBILE DRAWER ────────────────────────────────────── */
#mob-drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200; pointer-events: none;
}
#mob-drawer::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .35s ease;
}
#mob-drawer.open { pointer-events: all; }
#mob-drawer.open::before { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0;
  width: min(80vw, 300px); height: 100%;
  background: linear-gradient(160deg, #1a0802 0%, #080604 100%);
  border-left: 1px solid rgba(164,52,8,.25);
  display: flex; flex-direction: column;
  padding: 5.5rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  box-shadow: -12px 0 60px rgba(0,0,0,.7);
}
#mob-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-links { list-style: none; display: flex; flex-direction: column; margin-bottom: 2.5rem; }
.drawer-links li { border-bottom: 1px solid rgba(164,52,8,.12); }
.drawer-links a {
  display: block; padding: 1.05rem 0;
  font-size: .72rem; font-weight: 500; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--muted); transition: color .25s, padding-left .25s;
}
.drawer-links a:hover { color: var(--orange-2); padding-left: .5rem; }
.drawer-cta {
  display: block; text-align: center;
  padding: .9rem 1.5rem;
  border-radius: 6px;
  background: rgba(164,52,8,0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(164,52,8,0.42);
  font-size: .7rem; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 10px rgba(164,52,8,0.18);
  transition: background .3s, color .3s, box-shadow .3s; margin-top: auto;
}
.drawer-cta:hover {
  background: rgba(164,52,8,0.35);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 4px 18px rgba(164,52,8,0.35);
}
.drawer-tagline { font-family: var(--ff-serif); font-style: italic; font-size: .85rem; color: rgba(110,101,96,.45); margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════════════
   STICKY PLAYER  +  CALENDAR
   ══════════════════════════════════════════════════════════ */
.dp-wrap { position: relative; }
.dp-input {
  cursor: pointer; caret-color: transparent;
  background: rgba(0,0,0,.35); border: 1px solid rgba(164,52,8,0.2);
  color: var(--text); font-family: var(--ff-body);
  font-size: .85rem; padding: .72rem 1rem; outline: none;
  border-radius: 6px; transition: border-color .3s; width: 100%;
}
.dp-input:focus, .dp-input.open { border-color: var(--orange-1); }
.cal-popup {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 9999;
  width: 280px; background: #0e0a06;
  border: 1px solid rgba(164,52,8,0.4); border-radius: 14px; padding: 1.1rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.9); display: none;
}
.cal-popup.open { display: block; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; }
.cal-nav {
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: rgba(164,52,8,0.1); border: 1px solid rgba(164,52,8,0.28);
  color: var(--orange-1); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; line-height: 1; transition: background .2s;
}
.cal-nav:hover { background: rgba(164,52,8,0.28); }
.cal-month-label { font-family: var(--ff-display); font-size: 1rem; letter-spacing: 3px; color: var(--orange-2); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: .3rem; }
.cal-wd { text-align: center; font-size: .5rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); padding: .3rem 0; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: .72rem; color: var(--text); border-radius: 50%; cursor: pointer;
  border: 1px solid transparent; transition: background .15s, color .15s, border-color .15s;
  user-select: none;
}
.cal-day:not(.cal-empty):not(.cal-past):hover { background: rgba(164,52,8,0.18); border-color: rgba(164,52,8,0.35); color: var(--orange-2); }
.cal-day.cal-today  { border-color: rgba(164,52,8,0.5); color: var(--orange-2); }
.cal-day.cal-selected { background: linear-gradient(135deg, var(--orange-1), var(--orange-3)); color: #fff; font-weight: 600; border-color: transparent; box-shadow: 0 0 14px rgba(164,52,8,0.55); }
.cal-day.cal-past  { color: rgba(110,101,96,0.3); cursor: default; pointer-events: none; }
.cal-day.cal-empty { cursor: default; pointer-events: none; }

/* ── STICKY PLAYER SHELL ──────────────────────────────── */
#pl-shell { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; display: flex; flex-direction: column; align-items: center; }

#pl-card {
  width: min(740px, 96vw);
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .5s cubic-bezier(.4,0,.2,1), opacity .3s ease;
  position: relative; border-radius: 20px 20px 0 0;
}
#pl-card.open { max-height: 530px; opacity: 1; }
.card-bg    { position: absolute; inset: 0; background: linear-gradient(150deg,#1a0802,#080604); z-index: 0; }
.card-blur  { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(30px) saturate(150%) brightness(0.28); transform: scale(1.15); z-index: 1; }
.card-fade  { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(8,8,7,.2) 0%, rgba(8,8,7,.6) 60%, rgba(8,8,7,.97) 100%); }
.card-inner { position: relative; z-index: 3; padding: 1.1rem 1.5rem 0; }
.card-top   { display: flex; align-items: center; justify-content: space-between; margin-bottom: .85rem; }
.card-title { font-family: var(--ff-display); font-size: .7rem; letter-spacing: 4px; color: var(--orange-1); text-transform: uppercase; }
.npb { display: flex; align-items: center; gap: 5px; font-size: .55rem; letter-spacing: 2px; text-transform: uppercase; color: #39ff7a; opacity: 0; transition: opacity .4s; margin-left: .8rem; }
.npb.on { opacity: 1; }
.npb-dot { width: 5px; height: 5px; border-radius: 50%; background: #39ff7a; animation: livepulse 1.2s ease-in-out infinite; }
@keyframes livepulse { 0%,100%{opacity:.4;transform:scale(1);} 50%{opacity:1;transform:scale(1.6);} }
.card-x {
  width: 1.8rem; height: 1.8rem; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(164,52,8,.22);
  color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 6px rgba(0,0,0,0.3);
  transition: background .2s, color .2s, box-shadow .2s;
}
.card-x:hover {
  background: rgba(164,52,8,.22);
  color: var(--orange-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 0 10px rgba(164,52,8,0.3);
}
.card-x svg { width: 10px; fill: currentColor; }

.track-list { display: flex; flex-direction: column; gap: 2px; max-height: 230px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(164,52,8,.2) transparent; }
.track-list::-webkit-scrollbar { width: 3px; }
.track-list::-webkit-scrollbar-thumb { background: rgba(164,52,8,.28); border-radius: 2px; }
.t-row { display: flex; align-items: center; gap: .85rem; padding: .55rem .7rem; border-radius: 7px; cursor: pointer; border: 1px solid transparent; transition: background .2s; }
.t-row:hover  { background: rgba(164,52,8,.07); }
.t-row.active { background: rgba(164,52,8,.13); border-color: rgba(164,52,8,.28); }
.t-num  { font-family: var(--ff-display); font-size: .78rem; letter-spacing: 1px; color: var(--muted); width: 1.3rem; text-align: center; flex-shrink: 0; }
.t-row.active .t-num { display: none; }
.t-thumb { width: 36px; height: 36px; border-radius: 4px; flex-shrink: 0; background: linear-gradient(135deg,#200a02,#100502); border: 1px solid rgba(164,52,8,.2); display: flex; align-items: center; justify-content: center; }
.t-thumb-ph { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid rgba(164,52,8,.35); display: flex; align-items: center; justify-content: center; }
.t-thumb-ph::after { content:''; width:3px; height:3px; border-radius:50%; background:rgba(164,52,8,.45); }
.t-meta { flex: 1; min-width: 0; }
.t-name { font-family: var(--ff-display); font-size: .85rem; letter-spacing: 1.5px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t-row.active .t-name { color: var(--orange-2); }
.t-genre { font-size: .55rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); margin-top: .1rem; }
.t-dur  { font-size: .62rem; letter-spacing: 1px; color: var(--muted); flex-shrink: 0; }
.t-bars { display: none; align-items: flex-end; gap: 2px; height: 13px; flex-shrink: 0; }
.t-row.active .t-bars { display: flex; }
.t-bars span { width: 3px; border-radius: 2px; background: #39ff7a; animation: tbb .8s ease-in-out infinite alternate; }
.t-bars span:nth-child(1){height:5px;animation-delay:0s;}
.t-bars span:nth-child(2){height:11px;animation-delay:.15s;}
.t-bars span:nth-child(3){height:7px;animation-delay:.3s;}
@keyframes tbb{from{transform:scaleY(.3)}to{transform:scaleY(1)}}

.share-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .7rem; padding: .85rem 0 1rem; border-top: 1px solid rgba(164,52,8,.12); margin-top: .75rem; }
.share-lbl { font-size: .55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }
.share-btn {
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(164,52,8,.22);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 2px 8px rgba(0,0,0,0.28);
  transition: background .2s, border-color .2s, transform .18s, box-shadow .2s;
  text-decoration: none;
}
.share-btn:hover {
  background: rgba(164,52,8,0.22);
  border-color: rgba(164,52,8,0.65);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 0 12px rgba(164,52,8,0.3),
    0 4px 10px rgba(0,0,0,0.3);
}
.share-btn svg { width: 12px; fill: var(--muted); transition: fill .2s; }
.share-btn:hover svg { fill: var(--orange-2); }
.copy-tip { font-size: .55rem; letter-spacing: 2px; color: #39ff7a; opacity: 0; transition: opacity .3s; }
.copy-tip.show { opacity: 1; }

#pl-pill {
  width: min(740px, 96vw);
  background: rgba(8,8,7,.9);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(164,52,8,.24);
  border-top: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset, 0 -6px 40px rgba(0,0,0,.7);
}
#pl-shell:not(.shelf-open) #pl-pill { border-top: 1px solid rgba(164,52,8,.24); border-radius: 20px 20px 0 0; }
.pill-controls { display: grid; align-items: center; padding: 0 1.3rem; gap: .9rem; height: 66px; }
.pill-eq { height: 52px; border-top: 1px solid rgba(164,52,8,.08); position: relative; overflow: hidden; }
#eq-canvas { display: block; width: 100%; height: 100%; }

.pl-left  { display: flex; align-items: center; gap: .75rem; min-width: 0; overflow: hidden; }
.pl-thumb { width: 42px; height: 42px; border-radius: 5px; flex-shrink: 0; border: 1px solid rgba(164,52,8,.28); overflow: hidden; background: linear-gradient(135deg,#200a02,#100502); display: flex; align-items: center; justify-content: center; }
.pl-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pl-thumb-ph { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(164,52,8,.35); display: flex; align-items: center; justify-content: center; }
.pl-thumb-ph::after { content:''; width:4px; height:4px; border-radius:50%; background:rgba(164,52,8,.45); }
.pl-thumb.spin .pl-thumb-ph { animation: vinylspin 3s linear infinite; }
@keyframes vinylspin { to { transform: rotate(360deg); } }
.pl-info { flex: 1; min-width: 0; overflow: hidden; display: flex; align-items: center; }
.pl-title-clip { overflow: hidden; width: 100%; }
.pl-title { font-family: var(--ff-display); font-size: 1rem; letter-spacing: 1.8px; color: #fff; white-space: nowrap; display: inline-block; line-height: 1.1; will-change: transform; }
.pl-genre { font-size: .57rem; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-1); margin-top: .18rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pl-btns { display: flex; align-items: center; gap: .35rem; flex-shrink: 0; }
.pl-btn {
  width: 1.85rem; height: 1.85rem; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(164,52,8,.22);
  color: var(--orange-2); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 2px 8px rgba(0,0,0,0.3);
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
  flex-shrink: 0;
}
.pl-btn:hover {
  background: rgba(164,52,8,0.22);
  border-color: rgba(164,52,8,0.6);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 0 12px rgba(164,52,8,0.3),
    0 2px 8px rgba(0,0,0,0.3);
}
.pl-btn:active { transform: scale(.9); }
.pl-btn svg { width: 10px; height: 10px; fill: currentColor; pointer-events: none; }
.pl-btn-play {
  width: 2.35rem; height: 2.35rem;
  background: linear-gradient(
    145deg,
    rgba(164,52,8,0.85) 0%,
    rgba(224,85,24,0.75) 100%
  );
  backdrop-filter: blur(16px) saturate(200%);
  -webkit-backdrop-filter: blur(16px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.18) !important;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 0 20px rgba(164,52,8,0.55),
    0 4px 12px rgba(0,0,0,0.4);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.pl-btn-play svg { width: 11px; height: 11px; fill: #fff; }
.pl-btn-play:hover {
  background: linear-gradient(145deg, rgba(180,58,10,0.92) 0%, rgba(230,90,28,0.82) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 0 28px rgba(164,52,8,0.75),
    0 6px 18px rgba(0,0,0,0.4);
  transform: scale(1.08);
}

.pl-center { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pl-dial-wrap { position: relative; width: 50px; height: 50px; cursor: pointer; user-select: none; }
#dial-canvas  { position: absolute; inset: 0; border-radius: 50%; }
.pl-time { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none; }
.pl-cur { font-size: .52rem; font-weight: 500; letter-spacing: .5px; color: var(--orange-2); line-height: 1; }
.pl-sep { width: 8px; height: 1px; background: rgba(164,52,8,.35); margin: 2px 0; }
.pl-dur { font-size: .45rem; letter-spacing: .5px; color: var(--muted); line-height: 1; }

.pl-right { display: flex; align-items: center; justify-content: flex-end; gap: .8rem; }
.pl-queue-btn {
  width: 1.85rem; height: 1.85rem; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(164,52,8,.22);
  color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 2px 8px rgba(0,0,0,0.3);
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
  flex-shrink: 0;
}
.pl-queue-btn:hover, .pl-queue-btn.on {
  background: rgba(164,52,8,0.22);
  border-color: rgba(164,52,8,0.65);
  color: var(--orange-2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 0 14px rgba(164,52,8,0.35),
    0 2px 8px rgba(0,0,0,0.3);
}
.pl-queue-btn svg { width: 12px; fill: currentColor; pointer-events: none; }
.knob-wrap { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 2px; cursor: ns-resize; user-select: none; }
#knob-canvas { display: block; filter: drop-shadow(0 0 5px rgba(164,52,8,.2)); transition: filter .2s; }
.knob-wrap:hover #knob-canvas { filter: drop-shadow(0 0 9px rgba(200,64,16,.45)); }
.knob-lbl { font-size: .43rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  .nav-links { gap: 1.5rem; }
  section { padding: 5rem 2rem; }
  #home { padding: 0 2rem 4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .residencies-grid { grid-template-columns: repeat(2, 1fr); }
  .mixes-grid { grid-template-columns: repeat(2, 1fr); }
  .epk-grid { grid-template-columns: 1fr; }
  .epk-card:last-child { grid-column: span 1; }
  .epk-highlights { grid-template-columns: repeat(2, 1fr); }
  .booking-layout { grid-template-columns: 1fr; gap: 3rem; }
  /* Tablet: logo scales with viewport width */
  .nav-logo-img { height: 32px; }
  .hero-logo-img { width: clamp(240px, 88vw, 680px); }
  .hero-tagline { letter-spacing: clamp(4px, 1.5vw, 12px); }
}

@media (max-width: 768px) {
  /* Yin yang block stacks */
  .mixes-philosophy {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .yy-symbol { font-size: 3.5rem; }
  /* Hero logo fills the width nicely on tablet portrait */
  .hero-logo-img { width: clamp(220px, 90vw, 580px); }
  .hero-tagline { font-size: clamp(1.3rem, 4vw, 2.2rem); }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .ham-btn { display: flex; }
  .nav-cta { display: none; }
  .residencies-grid { grid-template-columns: 1fr; }
  .mixes-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
  /* Mobile: nav logo smaller, hero logo near full width */
  .nav-logo-img { height: 28px; }
  .hero-logo-img {
    width: clamp(200px, 92vw, 420px);
    filter: drop-shadow(0 2px 16px rgba(164,52,8,0.4))
            drop-shadow(0 1px 6px rgba(0,0,0,0.7));
  }
  .hero-tagline {
    font-size: clamp(1.1rem, 6vw, 1.8rem);
    letter-spacing: clamp(4px, 2.5vw, 10px);
    margin-bottom: 1rem;
  }
  #home { padding: 0 1.5rem 4rem; }
  body { padding-bottom: 115px; }
}

@media(max-width:520px) {
  .pill-controls { grid-template-columns: 1fr auto; gap: .5rem; padding: 0 .9rem; }
  .pl-center { display: none; }
  .pill-eq { height: 40px; }
}

/* ── IMAGE PLACEHOLDERS ───────────────────────────────── */
/* About artist photo */
.about-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Venue card photos */
.res-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.75;
  transition: opacity .4s;
}
.res-card:hover .res-card-photo { opacity: 0.9; }
/* Keep emoji visible as fallback when no photo */
.res-card-img { position: relative; }
.res-card-icon {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* Mix cover photos */
.mix-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.about-img-frame {
  position: relative;
  z-index: 2;
}

.about-img-photo {
  position: relative;
  z-index: 2;
}
/* ── IMAGE Z-INDEX FIXES ──────────────────────────────── */

/* Venue card photos — sit above the ::before gradient overlay */
.res-card-img::before { z-index: 1; }
.res-card-photo { z-index: 2; }

/* Mix cover photos — sit above the ::before gradient, below ::after fade */
.mix-card-cover::before { z-index: 1; }
.mix-card-photo { z-index: 2; }
.mix-card-cover::after { z-index: 3; }
.mix-play { z-index: 4; }

/* ── VENUE NAME FONT SIZE ─────────────────────────────── */
.res-venue { font-size: 1.45rem; letter-spacing: 1.5px; }

.res-card-icon { display: none; }

.mix-play { opacity: 1; transform: scale(1); }

/* ── SPINNING LOGO (replaces yin yang) ───────── */
.yy-symbol { font-size: 0; }
.yy-logo {
  width: clamp(3.5rem, 7vw, 5.5rem);
  height: auto;
  display: block;
  animation: yy-spin 28s linear infinite;
  filter: drop-shadow(0 0 12px rgba(164,52,8,0.4));
}
.yy-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

/* ── BOOKING SINGLE COLUMN ────────────────────── */
.booking-layout-single {
  max-width: 680px;
}

/* Honeypot — completely hidden from humans */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.yy-sub { color: var(--text); }
.form-status { display: none; padding: 1rem; margin-bottom: 1.5rem; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; text-align: center; }
.form-status.sent  { display: block; border: 1px solid var(--orange-1); color: var(--orange-2); }
.form-status.error { display: block; border: 1px solid #ef4444; color: #ef4444; }

#form-thankyou {
  max-width: 680px;
}

.mix-play {
  width: 3.38rem;
  height: 3.38rem;
}
.mix-play svg { width: 18px; }

@media (max-width: 600px) {
  body { font-size: 19px; }
  .btn-primary, .btn-ghost {
    padding: 1.08rem 2.64rem;
    font-size: .84rem;
  }
}

/* ── DRAWER CLOSE BUTTON ─────────────────────── */
.drawer-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: .4rem;
  opacity: .8;
  transition: opacity .2s;
}
.drawer-close:hover { opacity: 1; }

/* ── FOOTER MOBILE FIX ───────────────────────── */
@media (max-width: 600px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }
  .footer-links {
    flex-direction: column;
    gap: .85rem;
  }
  .footer-links a {
    font-size: .75rem;
  }
}

/* ── QUEUE CARD CLOSE BUTTON ─────────────────── */
.card-x {
  background: var(--orange-1);
  border-radius: 50%;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.card-x:hover { background: var(--orange-2); transform: scale(1.1); }
.card-x svg { fill: #fff; width: 14px; height: 14px; }

/* ── MIX CARD CURSOR & CLICK AREA ────────────── */
.mix-card { cursor: pointer; }
.mix-card-cover { cursor: pointer; }

/* ── FOOTER SOCIALS ──────────────────────────── */
.footer-socials {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  transition: color .3s;
}
.social-link:hover { color: var(--orange-2); }
.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
.social-link span {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .footer-socials {
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .footer-socials {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  #pl-shell {
    bottom: 0;
    position: fixed;
    width: 100%;
  }
  body { padding-bottom: 120px; }
}

/* ── MOBILE PLAYER FLUSH FIX ─────────────────── */
@media (max-width: 600px) {
  #pl-shell {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
  #pl-pill {
    border-radius: 0;
    width: 100%;
  }
}

/* ── MOBILE HORIZONTAL SCROLL FIX ───────────── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ── QUEUE BUTTON MORE PROMINENT ────────────── */
.pl-queue-btn {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.pl-queue-btn svg { fill: #fff; }
.pl-queue-btn:hover, .pl-queue-btn.on {
  background: var(--orange-1);
  border-color: var(--orange-2);
  color: #fff;
}

/* ── MOBILE PLAYER BOTTOM FIX ───────────────── */
@media (max-width: 600px) {
  #pl-shell {
    bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* ── MOBILE PLAYER FULLY FLUSH ───────────────── */
@media (max-width: 600px) {
  #pl-shell {
    bottom: 0 !important;
  }
  #pl-pill {
    width: 100vw !important;
    border-radius: 0 !important;
  }
  #pl-shell:not(.shelf-open) #pl-pill {
    border-radius: 0 !important;
  }
  #pl-card {
    width: 100vw !important;
    border-radius: 0 !important;
  }
}

/* ── MOBILE EQ OVERFLOW FIX ──────────────────── */
@media (max-width: 600px) {
  .pill-eq { display: none; }
  body { padding-bottom: 80px; }
}

/* ── IOS SAFE AREA FIX ───────────────────────── */
@media (max-width: 600px) {
  #pl-shell {
    bottom: env(safe-area-inset-bottom);
    padding-bottom: 0;
  }
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/* ── MOBILE PLAYER TALLER ────────────────────── */
@media (max-width: 600px) {
  .pill-controls {
    height: 80px;
  }
  body {
    padding-bottom: 95px;
  }
}

@media (max-width: 600px) {
  .pl-genre { display: none; }
}

/* ── ALIGN LIST AND VOL LABELS ───────────────── */
.pl-right {
  align-items: flex-end;
}
.pl-queue-btn + span.knob-lbl,
.knob-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 600px) {
  .pl-left {
    max-width: 60%;
  }
}

/* ── MOBILE PLAYER — NO ART, WIDER TITLE ────── */
@media (max-width: 600px) {
  .pl-thumb { display: none; }
  .pl-left { max-width: 65%; }
  .pl-title { font-size: .82rem; }
}

/* ── MOBILE YIN YANG LOGO BIGGER ────────────── */
@media (max-width: 600px) {
  .yy-logo {
    width: clamp(4.9rem, 9.8vw, 7.7rem);
  }
}

/* ── PLAYER LIQUID GLASS ORANGE ─────────────── */
#pl-pill {
  background: rgba(164, 52, 8, 0.18);
  border: 1px solid rgba(201, 64, 16, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 8px 32px rgba(0,0,0,0.6),
    0 0 40px rgba(164,52,8,0.15);
}

/* ── LIST AND VOL LABELS WHITE ───────────────── */
.knob-lbl {
  color: rgba(228, 221, 212, 0.85);
}
.pl-right .knob-lbl {
  color: rgba(228, 221, 212, 0.85);
}

/* ── MOBILE EQ BACK ──────────────────────────── */
@media (max-width: 600px) {
  .pill-eq { display: block; }
  body { padding-bottom: 115px; }
}

/* ── LARGER PLAY ARROW ON MIX COVERS ────────── */
.mix-play {
  width: 3.8rem;
  height: 3.8rem;
}
.mix-play svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 600px) {
  #pl-pill {
    background: rgba(8, 8, 7, 0.75);
    border: 1px solid rgba(201, 64, 16, 0.35);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
  }
  .pill-eq { display: none; }
  body { padding-bottom: 95px; }
}

@media (max-width: 600px) {
  #home {
    justify-content: center;
    padding-top: 30vh;
  }
  .hero-content {
    margin-top: -10vh;
  }
}

@media (max-width: 600px) {
  .hero-content {
    margin-top: -18vh;
  }
}

/* ── LISTEN NOW ANCHOR OFFSET MOBILE ─────────── */
@media (max-width: 600px) {
  .mixes-header {
    scroll-margin-top: 80px;
  }
}

.mixes-header {
  scroll-margin-top: 80px;
}

/* ── HERO CONTENT LAPTOP FIX ─────────────────── */
@media (max-width: 1280px) and (min-width: 601px) {
  #home { padding: 0 4rem 14rem !important; }
}

/* ── PROGRESS BAR & PLAYER — ALL SCREENS ─────── */
.pill-progress {
  display: block;
  padding: 0 1.5rem 0.6rem;
}
.progress-bar {
  width: 100%;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  accent-color: var(--orange-2);
}
.progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange-2);
  cursor: pointer;
  box-shadow: 0 0 5px rgba(201,64,16,0.5);
}
.progress-time {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: .52rem;
  letter-spacing: 1.5px;
  color: var(--silver);
}
/* Desktop/laptop */
@media (min-width: 601px) {
  #pl-pill { width: min(740px, 96vw); }
  #pl-card { width: min(740px, 96vw); }
  .progress-bar { height: 2px; }
  .progress-bar::-webkit-slider-thumb { width: 8px; height: 8px; }
  .progress-time { font-size: .48rem; color: var(--muted); }
  .pill-eq { display: block; }
}

/* Mobile */
@media (max-width: 600px) {
  .pill-eq { display: none; }
  .pl-btn-play { width: 2rem; height: 2rem; }
  body { padding-bottom: 95px; }
}

/* ── HERO BUTTONS CLICKABLE ON LOAD ─────────── */
.hero-actions { position: relative; z-index: 10; pointer-events: all; }
#home::before { pointer-events: none; }
.hero-noise { pointer-events: none; }

/* ── PLAY BUTTON CLIP FIX ────────────────────── */
.pl-btn-play { flex-shrink: 0; overflow: visible; }
@media (min-width: 601px) { .pill-controls { overflow: visible; } }

/* ══════════════════════════════════════════════════════
   PLAYER LAYOUT — COMPLETE OVERRIDE
   Desktop: [title 1fr] [buttons auto] [progress 2fr] [right auto]
   Mobile:  [title 1fr] [buttons auto] [right auto] + progress row below
   ══════════════════════════════════════════════════════ */

/* ── DEFAULT (all screens) — 4-col desktop layout with progress bar always visible ── */
.pill-controls {
  grid-template-columns: 1fr auto 2fr auto !important;
  height: 66px !important;
  overflow: visible;
}
.pl-thumb  { display: none; }
.pl-center { display: flex !important; align-items: center; min-width: 0; overflow: hidden; }
.pill-eq   { display: block !important; height: 48px; }

/* ── MOBILE (≤600px) ── 3-col top row + progress bar as full-width second row ── */
@media (max-width: 600px) {
  .pill-controls {
    grid-template-columns: 1fr auto auto !important;
    grid-template-rows: 62px auto !important;
    height: auto !important;
    gap: .5rem;
    padding: 0 .9rem;
  }
  .pl-left   { grid-column: 1; grid-row: 1; }
  .pl-btns   { grid-column: 2; grid-row: 1; }
  .pl-right  { grid-column: 3; grid-row: 1; }
  .pl-center { grid-column: 1 / -1 !important; grid-row: 2 !important;
               padding: .1rem .5rem .5rem; flex-direction: column; }
  .pill-progress { padding: 0; }
  .pill-eq   { display: none !important; }
}

/* ── SHARED layout pieces ── */
.pl-left  { display: flex; align-items: center; gap: .55rem; min-width: 0; overflow: hidden; }
.pl-info  { flex: 1; min-width: 0; overflow: hidden; display: flex; align-items: center; }
.pl-title-clip { overflow: hidden; width: 100%; }
.pl-title { font-family: var(--ff-display); font-size: 1rem; letter-spacing: 1.8px; color: #fff;
            white-space: nowrap; display: inline-block; line-height: 1.1; will-change: transform; }
.pl-btns  { display: flex; align-items: center; gap: .35rem; flex-shrink: 0; }
.pl-right { display: flex; align-items: center; justify-content: flex-end; gap: .8rem; flex-shrink: 0; }
.pl-center { min-width: 0; overflow: hidden; }
.pill-progress { width: 100%; min-width: 0; padding: 0 1.5rem; }
.progress-time { display: flex; justify-content: space-between; margin-top: 5px;
                 font-size: .52rem; letter-spacing: 1.5px; color: #fff; }

/* section-label line after text */
.section-label--after::before { display: none; }
.section-label--after::after { content: ''; width: 1.5rem; height: 1px; background: var(--orange-1); }

/* ── PLAYER WIDTH — HARD LOCK ALL BREAKPOINTS ── */
#pl-pill { width: min(740px, 96vw) !important; max-width: 740px !important; }
#pl-card { width: min(740px, 96vw) !important; max-width: 740px !important; }
@media (max-width: 600px) {
  #pl-pill { width: 100% !important; max-width: 100% !important; border-radius: 0 !important; }
  #pl-card { width: 100% !important; max-width: 100% !important; border-radius: 0 !important; }
  #pl-shell { left: 0 !important; right: 0 !important; width: 100% !important; overflow: hidden; }
}

/* ── MOBILE HORIZONTAL SCROLL — HARD FIX ──────── */
/* position:fixed on pl-shell breaks overflow-x:hidden on body in iOS.
   Wrapping the page content and locking the shell width is the reliable fix. */
html { overflow-x: hidden !important; }
body { overflow-x: hidden !important; max-width: 100vw; position: relative; }
/* ══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

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

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
}
@media (max-width: 600px) {
  .reveal-up    { transform: translateY(20px); }
  .reveal-left  { transform: translateX(-25px); }
  .reveal-right { transform: translateX(25px); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #080807;
  animation: overlayFade 2s ease 0.2s forwards;
  z-index: 0;
  pointer-events: none;
}

@keyframes overlayFade {
  from { opacity: 1; }
  to   { opacity: 0; }
}
