/* =========================================================
   TJ BAKER — styles
   Dark cinematic minimalism + one warm accent.
   Palette lives in :root — change it once, retheme the site.
   ========================================================= */

:root {
  /* Canvas */
  --bg:        #08080A;
  --panel:     #121214;
  --panel-2:   #16161A;
  --line:      #26262A;

  /* Ink */
  --text:      #F4F4F2;
  --muted:     #9A9A9F;
  --faint:     #6A6A70;

  /* Accent (the "good vibes" glow) — swap to #FF8A5B for coral */
  --accent:    #F5C36B;
  --accent-2:  #FFB35B;
  --accent-ink:#1A1407;

  /* Cool counterpoint — the "mystery" / club-light side. Used sparingly. */
  --cool:      #7A5CFF;
  --cool-2:    #4B3CC4;

  /* Type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  /* Layout */
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 6px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Shared section bits ---------- */
.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); position: relative; }

.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.section__title {
  font-size: clamp(1.9rem, 1.2rem + 3vw, 3.4rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.section__lead {
  color: var(--muted);
  max-width: 46ch;
  font-size: 1.075rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn--sm { padding: 0.65rem 1.15rem; font-size: 0.85rem; }

.btn--solid {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 0 rgba(245, 195, 107, 0.5);
}
.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px -10px rgba(245, 195, 107, 0.6);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* =========================================================
   Intro loader
   ========================================================= */
.intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  display: grid;
  place-content: center;
  gap: 1.5rem;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }

.intro__mark {
  display: flex;
  gap: 0.4em;
  font-weight: 700;
  font-size: clamp(2rem, 9vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.intro__mark span {
  opacity: 0;
  transform: translateY(0.4em);
  animation: introUp 0.7s var(--ease) forwards;
}
.intro__mark span:nth-child(2) { animation-delay: 0.12s; }

.intro__line {
  height: 2px;
  width: 0;
  background: var(--accent);
  justify-self: center;
  animation: introLine 1.1s var(--ease) 0.3s forwards;
  box-shadow: 0 0 24px 2px var(--accent);
}

@keyframes introUp { to { opacity: 1; transform: none; } }
@keyframes introLine { to { width: min(280px, 60vw); } }

/* =========================================================
   Custom cursor
   ========================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 250;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease),
              background 0.2s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
  mix-blend-mode: difference;
}
body.cursor-ready .cursor { opacity: 1; }
.cursor.is-hover {
  width: 52px; height: 52px;
  background: rgba(245, 195, 107, 0.12);
}

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}
.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__menu a {
  font-size: 0.9rem;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  transition: color 0.2s var(--ease);
}
.nav__menu a:hover, .nav__menu a.is-active { color: var(--text); }
.nav__cta {
  color: var(--accent) !important;
  border: 1px solid var(--line);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  transition: border-color 0.2s var(--ease);
}
.nav__cta:hover { border-color: var(--accent); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; padding-block: 8rem 4rem; }

.hero__bloom {
  position: absolute;
  z-index: 0;
  top: 38%; left: 50%;
  width: min(120vw, 1000px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 38% 42%,
      rgba(245, 195, 107, 0.28) 0%,
      rgba(245, 160, 90, 0.12) 26%,
      transparent 52%),
    radial-gradient(circle at 66% 60%,
      rgba(122, 92, 255, 0.22) 0%,
      rgba(122, 92, 255, 0.07) 30%,
      transparent 58%);
  filter: blur(24px);
  animation: bloom 11s ease-in-out infinite;
}
@keyframes bloom {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
  50%      { transform: translate(-50%, -54%) scale(1.12); opacity: 1; }
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  /* SVG fractal-noise grain, inlined */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
}

.hero__title {
  font-size: clamp(3.6rem, 15vw, 12rem);
  line-height: 0.84;
  font-weight: 700;
  letter-spacing: -0.045em;
  margin-bottom: 1.8rem;
}
.hero__title span { display: block; }
/* Solid warm gold — committed, not a gradient sweep. The soft glow does
   the cinematic lifting that the old gradient was reaching for. */
.hero__title span:last-child {
  color: var(--accent-2);
  text-shadow: 0 0 44px rgba(245, 160, 90, 0.28);
}

.hero__tag {
  max-width: 40ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.25rem);
  margin-bottom: 1.8rem;
}

/* Availability status — live mono metadata, DJ console flavour */
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.hero__status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: statusPulse 2.4s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 195, 107, 0.55); }
  50%      { box-shadow: 0 0 0 7px rgba(245, 195, 107, 0); }
}

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.4rem; }
.chips li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.02);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__scroll {
  position: absolute;
  bottom: 2rem; right: var(--gutter);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.7);} 50%{opacity:1; transform: scaleY(1);} }

/* =========================================================
   Hero spectrum — the signature: sound, made visible.
   Bars pulse like a club analyzer; gold peaks, violet floor.
   ========================================================= */
.spectrum {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(2px, 0.5vw, 5px);
  height: clamp(120px, 26vh, 260px);
  padding-inline: var(--gutter);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.spectrum::after {
  /* keeps the bars sitting on a soft floor line */
  content: "";
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.spectrum__bar {
  flex: 1 1 0;
  max-width: 14px;
  min-width: 2px;
  height: 100%;
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  transform: scaleY(var(--h, 0.2));
  background: linear-gradient(to top,
    rgba(122, 92, 255, 0.55) 0%,
    rgba(245, 160, 90, 0.75) 55%,
    var(--accent) 100%);
  opacity: 0.85;
  animation: eq var(--dur, 1s) var(--ease) var(--delay, 0s) infinite alternate;
}
@keyframes eq {
  from { transform: scaleY(var(--lo, 0.12)); opacity: 0.55; }
  to   { transform: scaleY(var(--hi, 0.9));  opacity: 0.95; }
}

/* =========================================================
   Vinyl — DJ graphic for the Sound section (swap for a photo)
   ========================================================= */
.vinyl {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.vinyl__glow {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(245,195,107,0.18), rgba(122,92,255,0.10) 45%, transparent 70%);
  filter: blur(18px);
}
.vinyl__disc {
  position: relative;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      #050507 0 2px, #161618 2px 3px),
    radial-gradient(circle at 38% 32%, #2a2a2e, #050506 70%);
  box-shadow:
    inset 0 0 60px rgba(0,0,0,0.9),
    0 30px 60px -24px rgba(0,0,0,0.8),
    0 0 0 1px var(--line);
  animation: spin 18s linear infinite;
}
/* sheen sweeping across the grooves */
.vinyl__disc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 210deg,
    transparent 0deg,
    rgba(255,255,255,0.05) 26deg,
    transparent 60deg,
    transparent 200deg,
    rgba(122,92,255,0.06) 230deg,
    transparent 270deg);
}
.vinyl__label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, var(--accent-2), var(--accent) 55%, #B5821F 100%);
  display: grid;
  place-content: center;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.25);
}
.vinyl__label::after {
  /* spindle hole */
  content: "";
  width: 9%;
  min-width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}
.vinyl__label span {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.7rem, 1.4vw, 1rem);
  letter-spacing: -0.03em;
  color: var(--accent-ink);
}
.vinyl__label span:first-child { top: 20%; }
.vinyl__label span:last-child  { bottom: 20%; }
/* tonearm dropped onto the record */
.vinyl__arm {
  position: absolute;
  top: 4%; right: 2%;
  width: 46%;
  height: 46%;
  transform: rotate(8deg);
  transform-origin: top right;
}
.vinyl__arm::before {
  content: "";
  position: absolute;
  top: 6%; right: 6%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--panel-2);
  box-shadow: 0 0 0 4px var(--panel), 0 0 0 5px var(--line);
}
.vinyl__arm::after {
  content: "";
  position: absolute;
  top: 12%; right: 10%;
  width: 3px;
  height: 86%;
  border-radius: 3px;
  background: linear-gradient(180deg, #3a3a40, #18181b);
  transform-origin: top;
  transform: rotate(28deg);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   Waveform divider — a thin musical seam between sections
   ========================================================= */
.wave-divider {
  display: block;
  width: 100%;
  height: clamp(36px, 6vw, 64px);
  color: var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.wave-divider svg { width: 100%; height: 100%; display: block; }
.wave-divider path { stroke: currentColor; stroke-width: 1.4; fill: none; }
.wave-divider .wave-divider__hot { stroke: var(--accent); opacity: 0.55; }

/* =========================================================
   Sound / About
   ========================================================= */
.sound__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.sound__copy p { color: var(--muted); margin-bottom: 1.1rem; }
.sound__copy .section__title { color: var(--text); }

.sound__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--faint) !important;
}

.sound__media { position: relative; }
.photo-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 80% at 30% 10%, rgba(245,195,107,0.10), transparent 60%),
    var(--panel);
  display: grid;
  place-content: center;
  gap: 0.4rem;
  text-align: center;
  font-family: var(--font-mono);
}
.photo-placeholder span { letter-spacing: 0.3em; color: var(--muted); font-size: 0.9rem; }
.photo-placeholder small { color: var(--faint); font-size: 0.75rem; letter-spacing: 0.1em; }

/* =========================================================
   Played at
   ========================================================= */
.played__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
}
.played__list li {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.5rem);
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* =========================================================
   Mixes
   ========================================================= */
.mixes .section__lead { margin-bottom: 2.6rem; }

.mixes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}

.mix {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.mix:hover { border-color: #3a3a40; transform: translateY(-3px); }

.mix__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--panel-2);
  overflow: hidden;
}
.mix__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.mix__facade {
  position: absolute;
  inset: 0;
  width: 100%;
  display: block;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}
.mix__facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.1), rgba(10,10,11,0.55));
  transition: background 0.25s var(--ease);
}
.mix__facade:hover::after { background: linear-gradient(180deg, rgba(10,10,11,0), rgba(10,10,11,0.4)); }

.mix__play {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-content: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 8px 30px -8px rgba(245,195,107,0.6);
}
.mix__facade:hover .mix__play { transform: translate(-50%, -50%) scale(1.08); }
.mix__play svg { width: 22px; height: 22px; fill: var(--accent-ink); margin-left: 3px; }

/* SoundCloud audio facade — no 16:9, shorter */
.mix--audio .mix__frame { aspect-ratio: auto; height: 168px; }

.mix--soon .mix__frame {
  display: grid;
  place-content: center;
  gap: 0.5rem;
  text-align: center;
}
.mix--soon .mix__frame .badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.mix--soon .mix__frame .dots { color: var(--faint); font-size: 0.8rem; }

.mix__meta { padding: 1rem 1.15rem 1.2rem; }
.mix__title { font-weight: 600; font-size: 1.02rem; margin-bottom: 0.2rem; }
.mix__sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--faint);
}

/* Mono spec tags — BPM, length, genre. Renders from a mix's `tags` array. */
.mix__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.85rem; }
.mix__tags li {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.22rem 0.5rem;
}

/* TikTok / follow card */
.mix--follow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.8rem;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(245,195,107,0.10), transparent 55%),
    var(--panel);
  text-align: left;
}
.mix--follow .label { margin-bottom: 0.2rem; }
.mix--follow strong { font-size: 1.15rem; font-weight: 600; }
.mix--follow p { color: var(--muted); font-size: 0.9rem; }
.mix--follow .btn { margin-top: 0.6rem; align-self: flex-start; }

/* =========================================================
   Booking
   ========================================================= */
.book { overflow: hidden; }
.book__bloom {
  top: 50%;
  opacity: 0.5;
  width: min(110vw, 820px);
}
.book__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.book__email {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1.8rem;
}
.book__email-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 1rem + 2vw, 2.2rem);
  letter-spacing: -0.01em;
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  transition: color 0.2s var(--ease);
  word-break: break-word;
}
.book__email-link:hover { color: var(--accent); }

.book__socials { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.book__socials a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.book__socials a:hover { color: var(--accent); border-color: var(--accent); }

.book__card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.book__card .label { margin-bottom: 1.1rem; }

/* ---------- Booking form ---------- */
.book__form { display: flex; flex-direction: column; gap: 1rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label span {
  color: var(--faint);
  text-transform: none;
  letter-spacing: 0.04em;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #1b1b1f;
}

.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Honeypot — visually & functionally removed for humans, present in DOM */
.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.book__form .btn { margin-top: 0.5rem; }
.book__form .btn:disabled { opacity: 0.6; cursor: default; transform: none; }

.book__form-status {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  min-height: 1.2em;
}
.book__form-status.is-ok { color: var(--accent); }
.book__form-status.is-error { color: #e08b6f; }

/* tiny copy-confirmation flash */
.is-copied { color: var(--accent) !important; border-color: var(--accent) !important; }

/* =========================================================
   Footer
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 2.5rem; }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__brand { font-weight: 700; letter-spacing: 0.02em; }
.footer__socials { display: flex; gap: 1.2rem; }
.footer__socials a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.footer__socials a:hover { color: var(--accent); }
.footer__copy { font-family: var(--font-mono); font-size: 0.75rem; color: var(--faint); }

/* =========================================================
   Scroll reveal
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  /* per-element stagger set in JS so each section enters as a sequence */
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 860px) {
  .sound__grid { grid-template-columns: 1fr; }
  .sound__media { max-width: 360px; }
  .book__grid { grid-template-columns: 1fr; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10,10,11,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease);
  }
  .nav__menu.is-open { transform: none; }
  .nav__menu a { padding: 0.9rem 0; font-size: 1rem; width: 100%; }
  .nav__cta { margin-top: 0.5rem; }

  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
}

/* =========================================================
   Reduced motion — calm everything down
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .cursor { display: none; }
  .intro { display: none; }
  .hero__bloom, .book__bloom { animation: none; }
  .vinyl__disc { animation: none !important; }
  .spectrum__bar {
    animation: none !important;
    transform: scaleY(var(--h)) !important;
  }
}

/* Hide custom cursor on touch / coarse pointers */
@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
}
