/* =====================================================================
   WHITEMONEY — OFFICIAL SITE
   Rebuild by SounDisruptr
   Single stylesheet. No framework, no build step.
   ---------------------------------------------------------------------
   01  Tokens
   02  Reset & base
   03  Typography
   04  Layout primitives
   05  Buttons & links
   06  Header / navigation
   07  Hero — media, scrim, smoke, title reveal
   08  DSP strip
   09  Sections & cards
   10  Music
   11  Video
   12  Gallery & lightbox
   13  Forms
   14  Player dock
   15  Footer
   16  Motion — reveal, parallax, progress
   17  Utilities & reduced motion
   ===================================================================== */

/* ── 01 TOKENS ────────────────────────────────────────────────────── */
:root {
  /* Brand colour — sampled from the original build */
  --ink:          #141312;   /* page base            */
  --ink-2:        #1f1d1c;   /* raised surface       */
  --ink-3:        #241e1e;   /* card                 */
  --panel:        #231f20;   /* section band         */
  --cream:        #efe9ce;   /* primary brand cream  */
  --cream-soft:   #fdfbf0;   /* body copy            */
  --rule:         #4b4945;   /* hairline             */
  --red:          #f03033;   /* primary CTA          */
  --red-deep:     #b5312a;   /* link                 */
  --red-hover:    #a5251f;   /* link hover           */
  --gold:         #c2a212;   /* secondary accent     */

  /* Derived */
  --cream-70:     rgba(239, 233, 206, .70);
  --cream-52:     rgba(239, 233, 206, .52);
  --cream-14:     rgba(239, 233, 206, .14);
  --cream-08:     rgba(239, 233, 206, .08);
  --red-glow:     rgba(240, 48, 51, .30);
  --ink-80:       rgba(20, 19, 18, .80);

  /* Type — roc-grotesk is the client's licensed Adobe Typekit face.
     The stack degrades to a wide grotesque, never to a serif. */
  --font-display: roc-grotesk, "Archivo", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --font-body:    roc-grotesk, "Archivo", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;

  /* Fluid type scale */
  /* Capped at 6rem: any larger and the second line runs out of the dark
     side of the hero scrim and onto the busy part of the photograph. */
  --t-hero:   clamp(2.9rem, 1.6rem + 4.6vw, 6rem);
  --t-h1:     clamp(2.25rem, 1.5rem + 3.4vw, 4.25rem);
  --t-h2:     clamp(1.85rem, 1.25rem + 2.4vw, 3.15rem);
  --t-h3:     clamp(1.25rem, 1.05rem + 0.9vw, 1.75rem);
  --t-lead:   clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  --t-body:   1rem;
  --t-small:  0.875rem;
  --t-micro:  0.75rem;

  /* Space */
  --gap:        clamp(1rem, 0.6rem + 1.6vw, 2rem);
  --section-y:  clamp(4.5rem, 2.5rem + 6vw, 9rem);
  --shell:      1280px;
  --shell-pad:  clamp(1.25rem, 0.75rem + 2.2vw, 3rem);
  --header-h:   84px;
  --dock-h:     0px;   /* raised by JS when the player dock is open */

  /* Motion & shape */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-pill: 999px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --dur: .38s;
}

/* ── 02 RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream-soft);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

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

::selection { background: var(--red); color: var(--cream); }

* { scrollbar-width: thin; scrollbar-color: var(--rule) var(--ink); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--rule); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--red-deep); }

/* ── 03 TYPOGRAPHY ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--cream);
  text-wrap: balance;
}

h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); letter-spacing: -0.01em; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--t-lead);
  line-height: 1.6;
  color: var(--cream-70);
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
  flex: none;
  transform-origin: left;
  animation: rule-in .8s var(--ease-out-expo) both;
}
.eyebrow--center { justify-content: center; }
@keyframes rule-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.section-title { margin-bottom: .35em; }
.section-intro { max-width: 58ch; color: var(--cream-70); font-size: var(--t-lead); }

/* ── 04 LAYOUT PRIMITIVES ─────────────────────────────────────────── */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}
.shell--wide { max-width: 1560px; }
.shell--narrow { max-width: 860px; }

.section { padding-block: var(--section-y); position: relative; }
.section--panel { background: var(--panel); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem); }

.rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--rule) 22%, var(--rule) 78%, transparent);
}

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.grid--halves { grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid--halves { grid-template-columns: 1fr 1fr; } }

.split {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-right > .split__media { order: 2; }
  .split--5-7 { grid-template-columns: 5fr 7fr; }
  .split--7-5 { grid-template-columns: 7fr 5fr; }
}

/* ── 05 BUTTONS & LINKS ───────────────────────────────────────────── */
a { color: var(--cream); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--red); }

.link-underline {
  color: var(--cream);
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size var(--dur) var(--ease), color var(--dur) var(--ease);
  padding-bottom: 2px;
}
.link-underline:hover { background-size: 100% 1.5px; color: var(--cream); }

.btn {
  --btn-bg: var(--red);
  --btn-fg: var(--cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.85rem;
  min-height: 48px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: var(--t-small);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
/* Light sweep across the button on hover */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.22) 48%, transparent 72%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease-out-expo);
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px var(--red-glow);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border-color: var(--cream-14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
  box-shadow: none;
}

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn--gold:hover { box-shadow: 0 12px 30px -10px rgba(194, 162, 18, .4); }

.btn--sm { padding: .7rem 1.3rem; min-height: 40px; font-size: var(--t-micro); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }

@media (max-width: 460px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}

.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }

/* ── 06 HEADER / NAVIGATION ───────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--red);
  color: var(--cream);
  padding: .85rem 1.4rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; color: var(--cream); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: var(--ink-80);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--cream-08);
}
/* Scrolling down hides the bar; scrolling up brings it straight back */
.site-header.is-hidden { transform: translateY(-100%); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  min-height: var(--header-h);
}

.nav__brand { flex: none; display: flex; align-items: center; }
/* The wordmark's letters fill the full image height, so displayed letter
   height = width x 0.0488. The nav links sit at 12px, so these widths put
   the logo at roughly 11.7px on small screens and 14.6px on desktop —
   consistently a touch larger than the menu, never shouting over it. */
.nav__brand img {
  width: clamp(240px, 22vw, 300px);
  height: auto;
  transition: opacity var(--dur) var(--ease);
}
.nav__brand:hover img { opacity: .78; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, .3rem + 1.5vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  padding-block: .45rem;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); background: var(--red); }

.nav__cta { flex: none; }
.nav__item--cta { display: none; }

.nav__burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1.5px solid var(--cream-14);
  border-radius: var(--r-pill);
  position: relative;
  flex: none;
  z-index: 110;
  transition: border-color var(--dur) var(--ease);
}
.nav__burger:hover { border-color: var(--cream); }
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity .18s linear;
}
.nav__burger span { top: 50%; transform: translate(-50%, -50%); }
.nav__burger span::before { content: ""; left: 0; top: -6px; }
.nav__burger span::after  { content: ""; left: 0; top: 6px; }

body.nav-open .nav__burger span { background: transparent; }
body.nav-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav__burger span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__burger { display: block; order: 3; }
  .nav__cta { display: none; }
  .nav__item--cta { display: block; }

  .nav__menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1rem, 3vh, 2rem);
    background: var(--ink);
    padding: 6rem var(--shell-pad) 3rem;
    clip-path: circle(0% at calc(100% - 46px) 42px);
    transition: clip-path .55s var(--ease);
    pointer-events: none;
    overflow-y: auto;
  }
  body.nav-open .nav__menu {
    clip-path: circle(150% at calc(100% - 46px) 42px);
    pointer-events: auto;
  }

  .nav__link { font-size: clamp(1.5rem, 1rem + 3vw, 2.25rem); letter-spacing: .04em; }
  .nav__menu .btn { margin-top: 1rem; }

  .nav__item {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  body.nav-open .nav__item { opacity: 1; transform: none; }
  body.nav-open .nav__item:nth-child(1) { transition-delay: .16s; }
  body.nav-open .nav__item:nth-child(2) { transition-delay: .21s; }
  body.nav-open .nav__item:nth-child(3) { transition-delay: .26s; }
  body.nav-open .nav__item:nth-child(4) { transition-delay: .31s; }
  body.nav-open .nav__item:nth-child(5) { transition-delay: .36s; }
  body.nav-open .nav__item:nth-child(6) { transition-delay: .41s; }
  body.nav-open .nav__item:nth-child(7) { transition-delay: .46s; }
}

body.nav-open { overflow: hidden; }

/* ── 07 HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex;
  align-items: flex-end;
  padding-block: clamp(6rem, 3rem + 10vw, 9rem) clamp(4rem, 2rem + 6vw, 7rem);
  margin-top: calc(var(--header-h) * -1);
  overflow: clip;
  isolation: isolate;
}

/* Layer 1 — the photograph. Oversized so parallax never reveals an edge. */
/* Overscan is deliberately small: the source is cut at 3:2, close to this
   container's ratio, so object-fit crops only a few percent. A larger
   overscan would zoom straight past the subject. */
.hero__media {
  position: absolute;
  inset: -6% 0;
  z-index: -3;
  will-change: transform;
}
/* <picture> is an inline box by default, which breaks the percentage
   height chain between .hero__media and the <img> inside it. */
.hero__media picture { display: contents; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Holds him right of centre so the headline keeps the clear left side */
  object-position: 38% 32%;
  /* Slow push-in that never resets visibly */
  animation: hero-drift 26s var(--ease) infinite alternate;
}
@keyframes hero-drift {
  from { transform: scale(1.02); }
  to   { transform: scale(1.09); }
}

/* Layer 2 — scrim. Dark on the left where the type sits, clear on the right. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    /* Heavy only over the headline column, then opens up fast so the
       photograph still reads on the right two thirds. */
    linear-gradient(96deg,
      rgba(20,19,18,.92) 0%,
      rgba(20,19,18,.74) 22%,
      rgba(20,19,18,.34) 44%,
      rgba(20,19,18,.10) 66%,
      rgba(20,19,18,.30) 100%),
    /* Grounds the bottom edge into the page and behind the player dock */
    linear-gradient(0deg, var(--ink) 0%, rgba(20,19,18,.55) 14%, rgba(20,19,18,0) 34%);
}

/* Layer 3 — the smoke. Three offset copies of one texture, each on its own
   long, non-harmonic cycle, so the loop never visibly repeats. */
/* The texture carries its own alpha (cream smoke on transparent), so this
   composites normally — no blend mode, and nothing to grey out the photo. */
.hero__smoke {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  /* Three stacked layers compound quickly — this is the ceiling before the
     photograph behind starts to grey out. */
  opacity: .30;
}
.smoke {
  position: absolute;
  inset: -45%;
  background: url("../img/tex-smoke.webp") center / cover no-repeat;
  will-change: transform, opacity;
}
.smoke--1 { animation: smoke-a 37s ease-in-out infinite, breathe-a 11s ease-in-out infinite; opacity: .30; }
.smoke--2 {
  background-image: url("../img/tex-smoke-2.webp");
  animation: smoke-b 53s ease-in-out infinite, breathe-b 17s ease-in-out infinite;
  opacity: .22;
  transform: scaleX(-1);
  filter: blur(3px);
}
.smoke--3 { animation: smoke-c 71s ease-in-out infinite, breathe-c 23s ease-in-out infinite; opacity: .16; filter: blur(8px); }

/* Each drift returns exactly to its start, so there is no jump on repeat */
@keyframes smoke-a {
  0%   { transform: translate3d(-6%, 2%, 0) scale(1.10) rotate(0deg); }
  50%  { transform: translate3d(7%, -4%, 0) scale(1.26) rotate(4deg); }
  100% { transform: translate3d(-6%, 2%, 0) scale(1.10) rotate(0deg); }
}
@keyframes smoke-b {
  0%   { transform: scaleX(-1) translate3d(5%, -3%, 0) scale(1.18) rotate(0deg); }
  50%  { transform: scaleX(-1) translate3d(-8%, 5%, 0) scale(1.34) rotate(-5deg); }
  100% { transform: scaleX(-1) translate3d(5%, -3%, 0) scale(1.18) rotate(0deg); }
}
@keyframes smoke-c {
  0%   { transform: translate3d(2%, 6%, 0) scale(1.32) rotate(0deg); }
  50%  { transform: translate3d(-4%, -7%, 0) scale(1.48) rotate(7deg); }
  100% { transform: translate3d(2%, 6%, 0) scale(1.32) rotate(0deg); }
}
/* The "puff" — density swelling and thinning, offset per layer so the
   overall cloud never pulses in unison */
@keyframes breathe-a { 0%,100% { opacity: .12; } 50% { opacity: .30; } }
@keyframes breathe-b { 0%,100% { opacity: .20; } 50% { opacity: .06; } }
@keyframes breathe-c { 0%,100% { opacity: .05; } 50% { opacity: .16; } }

.hero__inner { position: relative; width: 100%; }

.hero__title {
  font-size: var(--t-hero);
  line-height: .90;
  letter-spacing: -0.04em;
  margin-bottom: .4em;
  text-transform: uppercase;
  max-width: 14ch;
}
.hero__title em {
  font-style: normal;
  display: block;
  /* Stops short of pure red so the last word keeps contrast against the
     lit part of the photograph behind it. */
  background: linear-gradient(96deg, var(--cream) 6%, #f4736f 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Mask reveal — each line rises out of its own clipped box */
.line { display: block; overflow: hidden; }
.line > span {
  display: block;
  transform: translateY(105%);
  animation: line-up 1.05s var(--ease-out-expo) forwards;
}
.line:nth-child(1) > span { animation-delay: .12s; }
.line:nth-child(2) > span { animation-delay: .24s; }
@keyframes line-up { to { transform: translateY(0); } }

.hero__sub {
  font-size: var(--t-lead);
  color: var(--cream-70);
  max-width: 44ch;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fade-up .9s var(--ease-out-expo) .48s forwards;
}
.hero .btn-row { opacity: 0; animation: fade-up .9s var(--ease-out-expo) .62s forwards; }
.hero .eyebrow { opacity: 0; animation: fade-up .7s var(--ease-out-expo) .05s forwards; }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Sits clear of the player dock, which also lives at the bottom edge */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: calc(var(--dock-h, 0px) + 1.25rem);
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  font-size: var(--t-micro);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-52);
  opacity: 0;
  /* Opacity-only: fade-up ends on `transform: none`, which would wipe out
     the translateX(-50%) that centres this. */
  animation: fade-in .8s var(--ease) 1.2s forwards;
  transition: bottom .45s var(--ease);
}
@keyframes fade-in { to { opacity: 1; } }
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--cream-52), transparent);
  animation: scrollpulse 2.2s var(--ease) infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .35; }
  50%      { transform: scaleY(1);  transform-origin: top; opacity: 1; }
}
@media (max-width: 900px) { .hero__scroll { display: none; } }

@media (max-width: 760px) {
  .hero { align-items: flex-end; min-height: 94svh; }
  /* Keeps his head in the clear top third, above the headline */
  .hero__media img { object-position: 50% 16%; }
  /* Light at the top so the portrait reads, darkening through the lower
     half where the headline and buttons sit. */
  .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(20,19,18,.30) 0%,
        rgba(20,19,18,.18) 18%,
        rgba(20,19,18,.60) 42%,
        rgba(20,19,18,.90) 68%,
        var(--ink) 96%);
  }
  /* Smoke compounds much faster in a narrow column */
  .hero__smoke { opacity: .18; }
  .hero__title { max-width: 100%; }
  .hero__sub { margin-bottom: 1.75rem; }
}

/* ── 08 DSP STRIP ─────────────────────────────────────────────────── */
.dsp-row { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.dsp {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1.15rem;
  border: 1px solid var(--cream-14);
  border-radius: var(--r-pill);
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-70);
  transition: border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.dsp:hover {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* ── 09 SECTIONS & CARDS ──────────────────────────────────────────── */
.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem);
}
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center .section-intro { text-align: center; }

.page-head {
  position: relative;
  isolation: isolate;
  padding-block: clamp(7rem, 4rem + 9vw, 11rem) clamp(3rem, 2rem + 4vw, 5rem);
  margin-top: calc(var(--header-h) * -1);
  overflow: clip;
  text-align: center;
}
.page-head__bg {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  object-fit: cover;
  width: 100%;
  height: 120%;
  opacity: .38;
  will-change: transform;
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,19,18,.86) 2%, rgba(20,19,18,.58) 45%, var(--ink) 99%);
}
.page-head h1 { margin-bottom: .3em; }

.crumbs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--t-micro);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-52);
}
.crumbs li + li::before { content: "/"; margin-right: .5rem; color: var(--rule); }
.crumbs a { color: var(--cream-52); }
.crumbs a:hover { color: var(--red); }

.card {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--cream-08);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.card:hover {
  border-color: var(--cream-14);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .8);
}

.stats { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stat {
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--cream-08);
  border-radius: var(--r-md);
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.stat:hover { border-color: var(--cream-14); transform: translateY(-3px); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: .35rem;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: var(--t-micro);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-52);
}

/* Framed media — cream hairline offset behind an image */
.framed { position: relative; }
.framed img { border-radius: var(--r-md); position: relative; z-index: 1; }
.framed::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--cream-14);
  border-radius: var(--r-md);
  z-index: 0;
}
@media (max-width: 600px) { .framed::before { inset: 10px -10px -10px 10px; } }

/* Media that drifts against the scroll direction */
.parallax-media { overflow: hidden; border-radius: var(--r-md); }
.parallax-media img { will-change: transform; transform: scale(1.16); }

/* ── 10 MUSIC ─────────────────────────────────────────────────────── */
.release {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .release { grid-template-columns: 1fr 1fr; } }

.release__embed {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--cream-08);
  background: var(--ink-3);
  min-height: 152px;
}
.release__embed iframe { display: block; width: 100%; border: 0; }

.album {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--cream-08);
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.album:hover {
  border-color: var(--cream-14);
  transform: translateY(-6px);
  box-shadow: 0 26px 54px -26px rgba(0, 0, 0, .85);
}
.album__art { position: relative; aspect-ratio: 1; overflow: hidden; }
.album__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out-expo), filter var(--dur) var(--ease);
}
.album:hover .album__art img { transform: scale(1.07); filter: brightness(.58); }

/* Sheen sweep across the artwork on hover */
.album__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.16) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .9s var(--ease-out-expo);
  pointer-events: none;
}
.album:hover .album__art::after { transform: translateX(110%); }

.album__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.album:hover .album__play, .album:focus-visible .album__play { opacity: 1; }
.album__play span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--red);
  transform: scale(.8);
  transition: transform .45s var(--ease-out-expo);
}
.album:hover .album__play span { transform: scale(1); }
.album__play svg { width: 22px; height: 22px; fill: var(--cream); margin-left: 3px; }

.album__body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
}
.album__title { font-size: 1.0625rem; margin: 0; }
.album__year { font-size: var(--t-micro); color: var(--cream-52); letter-spacing: .1em; flex: none; }

/* ── 11 VIDEO ─────────────────────────────────────────────────────── */
.video {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--cream-08);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-3);
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.video:hover {
  border-color: var(--cream-14);
  transform: translateY(-4px);
  box-shadow: 0 26px 54px -26px rgba(0, 0, 0, .85);
}
.video img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out-expo), filter var(--dur) var(--ease); }
.video:hover img { transform: scale(1.06); filter: brightness(.55); }

.video__play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.video__play span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--red);
  transition: transform var(--dur) var(--ease);
  animation: pulse 2.6s ease-out infinite;
}
.video:hover .video__play span { transform: scale(1.1); }
.video__play svg { width: 26px; height: 26px; fill: var(--cream); margin-left: 4px; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--red-glow); }
  70%  { box-shadow: 0 0 0 22px rgba(240, 48, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 48, 51, 0); }
}

.video__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.25rem 1.1rem;
  background: linear-gradient(transparent, rgba(20, 19, 18, .92));
  text-align: left;
  pointer-events: none;
}
.video__label strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--cream); }
.video__label small { font-size: var(--t-micro); letter-spacing: .14em; text-transform: uppercase; color: var(--cream-52); }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── 12 GALLERY & LIGHTBOX ────────────────────────────────────────── */
.gallery {
  display: grid;
  gap: clamp(.6rem, .3rem + 1vw, 1rem);
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.shot {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--cream-08);
  padding: 0;
  width: 100%;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.shot picture { display: contents; }
.shot:hover { border-color: var(--cream-14); transform: translateY(-4px); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out-expo); }
.shot:hover img { transform: scale(1.07); }

.shot__zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(20, 19, 18, .5);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.shot:hover .shot__zoom, .shot:focus-visible .shot__zoom { opacity: 1; }
.shot__zoom svg { width: 30px; height: 30px; stroke: var(--cream); fill: none; stroke-width: 2; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(10, 9, 9, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 84svh;
  width: auto;
  border-radius: var(--r-sm);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .9);
  transform: scale(.94);
  transition: transform .4s var(--ease-out-expo);
}
.lightbox.is-open img { transform: scale(1); }

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--cream-14);
  background: rgba(31, 29, 28, .8);
  color: var(--cream);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red); border-color: var(--red); }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__nav--prev { left: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__close svg, .lightbox__nav svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.lightbox__count {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--t-micro);
  letter-spacing: .2em;
  color: var(--cream-52);
}

/* ── 13 FORMS ─────────────────────────────────────────────────────── */
.field { display: block; margin-bottom: 1.1rem; }
.field__label {
  display: block;
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-70);
  margin-bottom: .5rem;
}
.field__input,
.field__textarea {
  width: 100%;
  padding: .95rem 1.1rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  color: var(--cream-soft);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.field__input::placeholder, .field__textarea::placeholder { color: rgba(239, 233, 206, .34); }
.field__input:focus, .field__textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, .05);
}
.field__textarea { min-height: 150px; resize: vertical; }

.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.subscribe { display: flex; flex-wrap: wrap; gap: .75rem; }
.subscribe .field { flex: 1 1 200px; margin: 0; }
.subscribe .btn { flex: none; }

.form-note {
  padding: .9rem 1.15rem;
  border-radius: var(--r-sm);
  font-size: var(--t-small);
  margin-bottom: 1.2rem;
  border: 1px solid transparent;
}
.form-note--ok    { background: rgba(97, 206, 112, .10); border-color: rgba(97, 206, 112, .38); color: #9fe0a8; }
.form-note--error { background: rgba(240, 48, 51, .10);  border-color: rgba(240, 48, 51, .40);  color: #ff9b9c; }
.form-note[hidden] { display: none; }

/* ── 14 PLAYER DOCK ───────────────────────────────────────────────── */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: rgba(20, 19, 18, .90);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-top: 1px solid var(--cream-14);
  /* Starts off-screen; .is-ready slides it up once the page has settled */
  transform: translateY(110%);
  transition: transform .7s var(--ease-out-expo);
  padding-bottom: env(safe-area-inset-bottom);
}
.dock.is-ready { transform: translateY(0); }

.dock__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 0 var(--shell-pad);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dock__label {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex: none;
  padding-block: .85rem;
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-70);
  white-space: nowrap;
}
/* Three bars that bounce like an equaliser */
.dock__eq { display: flex; align-items: flex-end; gap: 2px; height: 14px; flex: none; }
.dock__eq i {
  width: 3px;
  background: var(--red);
  border-radius: 1px;
  animation: eq 1.1s ease-in-out infinite;
}
.dock__eq i:nth-child(1) { height: 55%; animation-delay: -.2s; }
.dock__eq i:nth-child(2) { height: 100%; animation-delay: -.6s; }
.dock__eq i:nth-child(3) { height: 70%;  animation-delay: -.4s; }
@keyframes eq { 0%,100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }

.dock__body {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  max-height: 88px;
  transition: max-height .5s var(--ease-out-expo), opacity .3s var(--ease);
}
.dock__body iframe { display: block; width: 100%; height: 80px; border: 0; }

.dock__toggle {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--cream-14);
  background: transparent;
  color: var(--cream);
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.dock__toggle:hover { background: var(--red); border-color: var(--red); }
.dock__toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; transition: transform var(--dur) var(--ease); }

/* Collapsed — the embed folds away, the chevron flips */
.dock.is-collapsed .dock__body { max-height: 0; opacity: 0; }
.dock.is-collapsed .dock__toggle svg { transform: rotate(180deg); }

@media (max-width: 620px) {
  /* The embed needs the width, so the wording gives way to the equaliser —
     but once collapsed there is room again, and an unlabelled bar would be
     anonymous. */
  .dock__label span { display: none; }
  .dock.is-collapsed .dock__label span { display: inline; }
  .dock__inner { gap: .6rem; }
}

/* ── 14b PARTY JOLLOF ─────────────────────────────────────────────────
   Party Jollof is a separate brand with its own palette, sampled from the
   Diaspora flyer. Scoped to .pj so none of it leaks into the music site.
   ------------------------------------------------------------------- */
.pj {
  --pj-red:      #ae0001;   /* wordmark red        */
  --pj-red-deep: #640000;   /* backdrop red        */
  --pj-orange:   #f7941d;   /* accent band         */
  --pj-green:    #005801;   /* pre-order button    */
  --pj-cream:    #eff0eb;   /* torn-paper white    */

  background: var(--pj-red-deep);
  color: var(--pj-cream);
}
.pj h1, .pj h2, .pj h3 { color: var(--pj-cream); }
.pj .lead, .pj .section-intro { color: rgba(239, 240, 235, .82); }
.pj .rule { background: linear-gradient(90deg, transparent, rgba(239,240,235,.28) 22%, rgba(239,240,235,.28) 78%, transparent); }
.pj .eyebrow { color: var(--pj-orange); }
.pj .eyebrow::before { background: var(--pj-orange); }
.pj ::selection { background: var(--pj-orange); color: #1a0000; }

/* Buttons take the flyer's own colours */
.pj .btn { --btn-bg: var(--pj-green); --btn-fg: #fff; }
.pj .btn:hover { box-shadow: 0 12px 30px -10px rgba(0, 88, 1, .6); }
.pj .btn--ghost { --btn-bg: transparent; --btn-fg: var(--pj-cream); border-color: rgba(239,240,235,.32); }
.pj .btn--ghost:hover { background: var(--pj-cream); border-color: var(--pj-cream); color: var(--pj-red-deep); }
.pj .btn--orange { --btn-bg: var(--pj-orange); --btn-fg: #2a1200; }
.pj .btn--orange:hover { box-shadow: 0 12px 30px -10px rgba(247, 148, 29, .6); }

/* Header: badge logo, and a route back to the music site */
.pj-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(100, 0, 0, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(239, 240, 235, .14);
}
.pj-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.pj-nav__brand { display: flex; align-items: center; gap: .8rem; flex: none; }
.pj-nav__brand img { width: 54px; height: 54px; }
.pj-nav__brand span {
  font-family: var(--font-display);
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--pj-cream);
}
.pj-nav__brand span em { font-style: normal; display: block; color: var(--pj-orange); }
.pj-nav__links { display: flex; align-items: center; gap: .75rem; }
.pj-back {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(239, 240, 235, .78);
  white-space: nowrap;
}
.pj-back:hover { color: var(--pj-orange); }
.pj-back svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; }
@media (max-width: 560px) {
  .pj-nav__brand span { display: none; }
  .pj-back span { display: none; }
  .pj-back { width: 42px; height: 42px; justify-content: center; border: 1px solid rgba(239,240,235,.28); border-radius: 50%; }
}

/* Hero: flyer artwork beside the pitch */
.pj-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-block: clamp(3rem, 1.5rem + 6vw, 6rem);
}
.pj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(90% 70% at 80% 15%, rgba(247, 148, 29, .22), transparent 60%),
    radial-gradient(80% 70% at 10% 85%, rgba(174, 0, 1, .55), transparent 62%),
    var(--pj-red-deep);
}
.pj-hero__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .pj-hero__grid { grid-template-columns: 1.05fr .95fr; } }

.pj-hero__title {
  font-size: clamp(2.6rem, 1.4rem + 4.6vw, 5rem);
  line-height: .92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: .35em;
}
.pj-hero__title em { font-style: normal; display: block; color: var(--pj-orange); }

/* The flyer sits in a soft frame with a gentle float */
.pj-flyer {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(239, 240, 235, .2);
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, .8);
  animation: pj-float 9s ease-in-out infinite;
}
@keyframes pj-float {
  0%, 100% { transform: translateY(-8px); }
  50%      { transform: translateY(8px); }
}

/* The torn-paper edge from the flyer, rebuilt as a section divider */
.pj-torn {
  height: clamp(28px, 4vw, 54px);
  background: var(--pj-cream);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,60 L0,26 C40,18 70,32 110,28 C150,24 175,10 215,14 C255,18 280,34 320,30 C360,26 385,12 425,16 C465,20 490,36 530,32 C570,28 595,14 635,18 C675,22 700,38 740,34 C780,30 805,16 845,20 C885,24 910,40 950,36 C990,32 1015,18 1055,22 C1095,26 1120,40 1160,34 L1200,28 L1200,60 Z'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,60 L0,26 C40,18 70,32 110,28 C150,24 175,10 215,14 C255,18 280,34 320,30 C360,26 385,12 425,16 C465,20 490,36 530,32 C570,28 595,14 635,18 C675,22 700,38 740,34 C780,30 805,16 845,20 C885,24 910,40 950,36 C990,32 1015,18 1055,22 C1095,26 1120,40 1160,34 L1200,28 L1200,60 Z'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
}
/* Flipped copy, for closing a cream band back into red */
.pj-torn--up { transform: scaleY(-1); }

/* Cream band — the lower half of the flyer */
.pj-band { background: var(--pj-cream); color: #2a1200; }
.pj-band h2, .pj-band h3 { color: var(--pj-red); }
.pj-band .lead, .pj-band .section-intro { color: rgba(42, 18, 0, .78); }
.pj-band .eyebrow { color: var(--pj-red); }
.pj-band .eyebrow::before { background: var(--pj-red); }
.pj-band .btn--ghost { --btn-fg: var(--pj-red-deep); border-color: rgba(100, 0, 0, .3); }
.pj-band .btn--ghost:hover { background: var(--pj-red); border-color: var(--pj-red); color: #fff; }

/* Step cards on the cream band */
.pj-step {
  padding: 1.75rem 1.5rem;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid rgba(100, 0, 0, .12);
  box-shadow: 0 18px 40px -30px rgba(100, 0, 0, .5);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pj-step:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -28px rgba(100, 0, 0, .55); }
.pj-step__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pj-orange);
  color: #2a1200;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.pj-step h3 { font-size: 1.15rem; margin-bottom: .4rem; color: var(--pj-red); }
.pj-step p { color: rgba(42, 18, 0, .76); font-size: var(--t-small); margin: 0; }

/* Product shots */
.pj-plate { border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(100, 0, 0, .14); }
.pj-plate img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .9s var(--ease-out-expo); }
.pj-plate:hover img { transform: scale(1.06); }

/* Footer */
.pj-footer {
  background: #4a0000;
  border-top: 1px solid rgba(239, 240, 235, .14);
  padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem) 0;
  color: rgba(239, 240, 235, .78);
}
.pj-footer .footer__heading { color: var(--pj-cream); }
.pj-footer a { color: rgba(239, 240, 235, .8); }
.pj-footer a:hover { color: var(--pj-orange); }
.pj-footer .social { border-color: rgba(239, 240, 235, .24); color: rgba(239, 240, 235, .8); }
.pj-footer .social:hover { background: var(--pj-orange); border-color: var(--pj-orange); color: #2a1200; }
.pj-footer .footer__bar { border-top-color: rgba(239, 240, 235, .14); color: rgba(239, 240, 235, .6); padding-bottom: 1.5rem; }

/* ── 15 FOOTER ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--cream-08);
  padding-block: clamp(3rem, 2rem + 4vw, 5rem) 0;
}
.footer__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.footer__logo { width: 250px; max-width: 100%; margin-bottom: 1.25rem; }
.footer__heading {
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.1rem;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer__list a { color: var(--cream-70); font-size: var(--t-small); }
.footer__list a:hover { color: var(--red); }

.socials { display: flex; flex-wrap: wrap; gap: .6rem; }
.social {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--cream-14);
  border-radius: 50%;
  color: var(--cream-70);
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.social:hover { background: var(--red); border-color: var(--red); color: var(--cream); transform: translateY(-3px); }
.social svg { width: 17px; height: 17px; fill: currentColor; }

/* The extra bottom space clears the fixed player dock. Putting it on the
   footer rather than the body keeps it footer-coloured instead of showing
   as a stray dark band under the page. */
.footer__bar {
  border-top: 1px solid var(--cream-08);
  padding-block: 1.5rem calc(1.5rem + var(--dock-h, 0px));
  transition: padding-bottom .45s var(--ease);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: var(--t-micro);
  color: var(--cream-52);
}
.footer__bar a { color: var(--cream-70); }
.footer__bar a:hover { color: var(--red); }

/* ── 16 MOTION ────────────────────────────────────────────────────── */

/* Reading-progress bar pinned under the header */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 130;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* Scroll reveal. Scoped to .js so that if scripting is blocked, or the
   observer never fires, content is simply visible rather than hidden. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

.js .reveal--left  { transform: translateX(-34px); }
.js .reveal--right { transform: translateX(34px); }
.js .reveal--scale { transform: scale(.94); }
/* Image wipes in from the bottom edge */
.js .reveal--clip {
  opacity: 1;
  clip-path: inset(100% 0 0 0);
  transform: none;
  transition: clip-path 1.1s var(--ease-out-expo);
}
.js .reveal--clip.is-visible { clip-path: inset(0 0 0 0); }

.js .reveal[data-delay="1"] { transition-delay: .09s; }
.js .reveal[data-delay="2"] { transition-delay: .18s; }
.js .reveal[data-delay="3"] { transition-delay: .27s; }
.js .reveal[data-delay="4"] { transition-delay: .36s; }
.js .reveal[data-delay="5"] { transition-delay: .45s; }

/* ── 17 UTILITIES & REDUCED MOTION ────────────────────────────────── */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Everything decorative stops for anyone who asked for less motion. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; clip-path: none; }
  .hero__media img,
  .smoke,
  .dock__eq i,
  .video__play span { animation: none !important; }
  .line > span { transform: none; }
  .hero__sub, .hero .btn-row, .hero .eyebrow, .hero__scroll { opacity: 1; }
  .parallax-media img { transform: none; }
  .hero__smoke { opacity: .35; }
}

/* Print — strip chrome, keep content legible on white */
@media print {
  .site-header, .site-footer, .hero__smoke, .hero__scroll,
  .dock, .progress, .video__play, .lightbox { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  h1, h2, h3 { color: #000; }
  a { color: #000; text-decoration: underline; }
}
