/* ==========================================================================
   dj Darko — iamdjdarko.com
   Gold on black. Poster type, club light, no template smell.
   ========================================================================== */

@font-face {
  font-family: 'Bodoni Moda';
  src: url('/assets/fonts/bodoni-moda-latin.woff2') format('woff2');
  font-weight: 400 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bodoni Moda';
  src: url('/assets/fonts/bodoni-moda-latin-italic.woff2') format('woff2');
  font-weight: 400 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('/assets/fonts/instrument-sans-latin.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('/assets/fonts/instrument-sans-latin-italic.woff2') format('woff2');
  font-weight: 400 700; font-style: italic; font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  /* Warm near-black rather than pure black: gold sits on it without ringing. */
  --ink:       #08080b;
  --ink-1:     #0d0d11;
  --ink-2:     #141418;
  --ink-3:     #1e1e23;

  /* Champagne, not brass. Same hue family as the wordmark, ~half the chroma. */
  --gold:      #c6af80;
  --gold-hi:   #f0e7d4;
  --gold-lo:   #8b7a57;

  /* The club uplight, desaturated into a plum-slate so it reads as depth
     rather than as a colour. */
  --accent:    #6f6486;
  --accent-lo: #2c2738;

  --bone:      #f1ede6;
  --muted:     #979289;
  --muted-2:   #6a665f;

  --line:      color-mix(in oklab, var(--bone) 11%, transparent);
  --line-gold: color-mix(in oklab, var(--gold) 30%, transparent);

  --display: 'Bodoni Moda', 'Didot', 'Bodoni 72', 'Playfair Display', Georgia, serif;
  --sans: 'Instrument Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --pad: clamp(1.25rem, 5vw, 5rem);
  --maxw: 84rem;
  --r: 2px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --dur: .7s;

  --nav-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
/* A class-level `display` outranks the UA rule for [hidden], which silently
   leaves "hidden" elements on screen. Make the attribute win, always. */
[hidden] { display: none !important; }
html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: clamp(1.02rem, .97rem + .25vw, 1.11rem);
  line-height: 1.62;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: var(--gold); color: #000; }

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

.skip {
  position: fixed; top: .5rem; left: .5rem; z-index: 200;
  padding: .6rem 1rem; background: var(--gold); color: #000;
  font-weight: 700; transform: translateY(-200%);
}
.skip:focus { transform: none; }

/* ---------- shared type ---------- */
.eyebrow {
  display: flex; align-items: center; gap: .7rem;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.eyebrow i {
  width: 2.5rem; height: 1px; background: currentColor; display: block; flex: none;
  transform-origin: left; animation: rule 1.1s var(--ease) both;
}
@keyframes rule { from { transform: scaleX(0); } }

.section__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: .42em 0 .34em;
  text-wrap: balance;
  font-optical-sizing: auto;
}
.section__title .ital {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(98deg, var(--gold-hi), var(--gold) 46%, var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* a real italic, so there is no skew transform and nothing to clip */
  display: inline-block;
  padding-right: .06em;
}
.section__lede {
  max-width: 46ch; color: var(--muted); font-size: 1.05rem;
}

.section {
  padding: clamp(3.25rem, 5.5vw, 5rem) var(--pad);
  max-width: var(--maxw); margin-inline: auto;
  position: relative;
}
.section__head { margin-bottom: clamp(2.25rem, 5vw, 4rem); }
/* the stats strip already carries its own bottom space */
.numbers + .section { padding-top: clamp(2rem, 4vw, 3.25rem); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: transparent;
  position: relative; display: inline-flex; align-items: center; gap: .65rem;
  padding: 1.05rem 1.9rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 999px; isolation: isolate; overflow: hidden;
  transition: color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; stroke-width: 2; }
.btn--sm { padding: .7rem 1.25rem; font-size: .7rem; }
.btn--wide { width: 100%; justify-content: center; padding-block: 1.25rem; }

.btn--gold {
  background: linear-gradient(100deg, var(--gold-hi), var(--gold) 55%, #b98c2b);
  color: #120c00;
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--gold) 40%, transparent);
}
.btn--gold::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, #fff6dd, var(--gold-hi));
  opacity: 0; transition: opacity .35s var(--ease);
}
.btn--gold:hover { box-shadow: 0 10px 40px -8px color-mix(in oklab, var(--gold) 65%, transparent); }
.btn--gold:hover::after { opacity: 1; }
.btn--gold svg { transition: transform .35s var(--ease); }
.btn--gold:hover svg { transform: translateX(4px); }

.btn--ghost {
  color: var(--bone);
  box-shadow: inset 0 0 0 1px var(--line-gold);
}
.btn--ghost::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--gold); transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn--ghost:hover { color: #120c00; }
.btn--ghost:hover::after { transform: none; }

.btn__eq { display: flex; align-items: flex-end; gap: 2px; height: .8em; }
.btn__eq i {
  width: 2px; height: 40%; background: currentColor; display: block;
  animation: eq .9s var(--ease-in-out) infinite alternate;
}
.btn__eq i:nth-child(2) { animation-delay: .15s; }
.btn__eq i:nth-child(3) { animation-delay: .3s; }
.btn__eq i:nth-child(4) { animation-delay: .45s; }
@keyframes eq { to { height: 100%; } }

/* ---------- grain + cursor ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  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='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 4%); }
  40%  { transform: translate(4%, -2%); }
  60%  { transform: translate(-2%, -4%); }
  80%  { transform: translate(3%, 3%); }
  100% { transform: translate(0, 0); }
}

.cursor {
  position: fixed; top: 0; left: 0; z-index: 120; pointer-events: none;
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1px solid var(--line-gold); border-radius: 50%;
  transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease),
              background-color .3s var(--ease), opacity .3s;
  opacity: 0;
}
.cursor span {
  position: absolute; inset: 0; margin: auto; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
}
.cursor.is-on { opacity: 1; }
.cursor.is-hot {
  width: 70px; height: 70px; margin: -35px 0 0 -35px;
  background: color-mix(in oklab, var(--gold) 16%, transparent);
  border-color: var(--gold);
}
.cursor.is-hot span { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- intro ---------- */
.intro {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center; background: var(--ink);
  transition: opacity .6s var(--ease), visibility .6s;
}
.intro.is-done { opacity: 0; visibility: hidden; }
.intro__inner { display: grid; justify-items: center; gap: 1.6rem; padding: 2rem; }
.intro__logo {
  width: min(340px, 62vw); height: auto;
  clip-path: inset(0 100% 0 0);
  animation: wipe 1s var(--ease) .1s forwards;
}
@keyframes wipe { to { clip-path: inset(0 0 0 0); } }
.intro__bars { display: flex; gap: 3px; height: 26px; align-items: flex-end; }
.intro__bars i {
  width: 3px; background: var(--gold); display: block; height: 12%;
  animation: eq .55s var(--ease-in-out) infinite alternate;
}
.intro__word {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(.7rem, 2.2vw, .95rem); letter-spacing: .5em; color: var(--muted-2);
  opacity: 0; animation: fadeUp .7s var(--ease) .7s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-inline: var(--pad);
  transition: background-color .4s var(--ease), backdrop-filter .4s, box-shadow .4s, transform .5s var(--ease);
}
.nav.is-stuck {
  background: color-mix(in oklab, var(--ink) 78%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-hidden { transform: translateY(-105%); }
.nav__brand img { width: clamp(112px, 14vw, 158px); height: auto; }

.nav__links { display: flex; gap: .35rem; }
.nav__links a {
  position: relative; padding: .55rem .9rem; overflow: hidden;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
}
.nav__links a span { display: block; transition: transform .4s var(--ease); }
.nav__links a::after {
  content: attr(data-hover); position: absolute; inset: auto 0 .55rem; text-align: center;
}
.nav__links a::before {
  content: ''; position: absolute; left: .9rem; right: .9rem; bottom: .45rem; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav__links a:hover::before, .nav__links a.is-active::before { transform: scaleX(1); transform-origin: left; }
.nav__links a:hover span { transform: translateY(-2px); }

.nav__end { display: flex; align-items: center; gap: .75rem; }
.nav__burger {
  display: none; width: 44px; height: 44px; place-items: center;
  border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-gold);
}
.nav__burger span {
  display: block; width: 18px; height: 1.5px; background: var(--bone);
  transition: transform .4s var(--ease), opacity .3s;
}
.nav__burger span + span { margin-top: 5px; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobilemenu {
  position: fixed; inset: 0; z-index: 99;
  background: color-mix(in oklab, var(--ink) 96%, transparent);
  backdrop-filter: blur(20px);
  display: grid; align-content: center; gap: 2rem; padding: var(--pad);
}
.mobilemenu[hidden] { display: none; }
.mobilemenu nav { display: grid; gap: .25rem; }
.mobilemenu nav a {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.85rem, 9vw, 2.9rem); line-height: 1.18; letter-spacing: .012em;
  padding: .15em 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(18px);
  animation: fadeUp .5s var(--ease) forwards;
}
.mobilemenu nav a:nth-child(1) { animation-delay: .05s; }
.mobilemenu nav a:nth-child(2) { animation-delay: .1s; }
.mobilemenu nav a:nth-child(3) { animation-delay: .15s; }
.mobilemenu nav a:nth-child(4) { animation-delay: .2s; }
.mobilemenu nav a em {
  font-family: var(--sans); font-style: normal; font-size: .7rem;
  letter-spacing: .2em; color: var(--gold);
}
.mobilemenu__social { display: flex; gap: 1.5rem; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: end;
  padding: calc(var(--nav-h) + 3rem) var(--pad) clamp(2.25rem, 7vh, 6rem);
  overflow: hidden; isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -3;
  overflow: clip;   /* contain the drift scale, or it widens the document */
  /* Blur-up placeholder so the first paint is the photograph, not a void.
     Portrait crop by default, the landscape crop once the aspect flips. */
  background: #14100e url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABMNDhEODBMRDxEVFBMXHTAfHRoaHToqLCMwRT1JR0Q9Q0FMVm1dTFFoUkFDX4JgaHF1e3x7SlyGkIV3j214e3b/2wBDARQVFR0ZHTgfHzh2T0NPdnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnb/wAARCAAkACADASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwCEgREFiFJOME1mSPKrvK0hC78BOoxnpitCYKbnCnlOw7VDexRK6yiT5DlggABB9zWfLZXN3O75SR0yNoTp2Haq0sec5Gfw/wDrVPbsWWQMQcMMDPqKR1HHOSepxUGtxt9kyDy8bhtA29MmmSRrcYAcK+RujcYz9PWiz1OKOZ/OBbeCASAMcZ659qINRtXEkMttkyHhmIwv41s4+Zzc2rugtonUNuILHgjsKVztPv8ArVWC7BkCxRv5Z5G4/Mvrz3+lLNfR5KjeRjINZ8rNlNWKkzGW+cNgDdjAGOp/+vU1xAkV4YVHy+Xu565oorY5is8jK7qMYRjgEUJMZZU3KoB/hHAoopAf/9k=") center 20% / cover no-repeat;
}
@media (min-aspect-ratio: 1/1) {
  .hero__media { background-image: url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABMNDhEODBMRDxEVFBMXHTAfHRoaHToqLCMwRT1JR0Q9Q0FMVm1dTFFoUkFDX4JgaHF1e3x7SlyGkIV3j214e3b/2wBDARQVFR0ZHTgfHzh2T0NPdnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnb/wAARCAASACADASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDMijPHB/KrKoQMFQAT/ntUaKOc5GOh/wAii4bCx4IHzEkdun0rA7LlOPe0iTCRtwfBBPGM9MVprtmLYO5gehzxVexEBYzF2GMER5+8frUsWwXIDEZbPB5HrzWnLdXMlO0uUrjoD3z1qO84aP6H+VFFZmj2Es/v47Zb+tT6cT5r8+v86KK1f6GMf1P/2Q=="); background-position: center 22%; }
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 55% 35%;
  filter: grayscale(.3) contrast(1.06) brightness(1.02) saturate(.9);
  transform: scale(1.04);
  animation: drift 30s var(--ease-in-out) infinite alternate;
  /* gentle: a heavy zoom pushed his face out of frame on wide viewports */
}
@keyframes drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.09) translate3d(-1%, -1%, 0); }
}
.hero__viz { position: absolute; inset: auto 0 0; z-index: -2; width: 100%; height: 42vh; opacity: .75; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  /* Plain rgba, not color-mix: mixing a near-black with `transparent` in oklab
     keeps the blackness and the stack ends up far darker than the percentages
     suggest. These alphas are what actually lands on screen. */
  background:
    radial-gradient(88% 58% at 86% 4%, rgba(111, 100, 134, .18), rgba(111, 100, 134, 0) 60%),
    linear-gradient(180deg,
      rgba(8, 8, 11, .42) 0%,
      rgba(8, 8, 11, .06) 26%,
      rgba(8, 8, 11, .18) 66%,
      rgba(8, 8, 11, .82) 93%,
      #08080b 100%);
}
/* The side pass only helps when the copy sits beside the subject. On a phone
   it covers the whole frame and erases the photograph. */
@media (min-width: 900px) {
  .hero__scrim {
    background:
      radial-gradient(88% 58% at 88% 2%, rgba(111, 100, 134, .18), rgba(111, 100, 134, 0) 58%),
      radial-gradient(60% 40% at 0% 100%, rgba(198, 175, 128, .12), rgba(198, 175, 128, 0) 60%),
      linear-gradient(96deg,
        rgba(8, 8, 11, .76) 0%,
        rgba(8, 8, 11, .46) 34%,
        rgba(8, 8, 11, .16) 56%,
        rgba(8, 8, 11, 0) 74%),
      linear-gradient(180deg,
        rgba(8, 8, 11, .30) 0%,
        rgba(8, 8, 11, 0) 22%,
        rgba(8, 8, 11, .12) 64%,
        rgba(8, 8, 11, .80) 93%,
        #08080b 100%);
  }
}

.hero__body { position: relative; max-width: 62rem; }
.hero__kicker {
  font-size: clamp(.62rem, .5rem + .4vw, .72rem);
  letter-spacing: clamp(.14em, .1em + .4vw, .26em);
  text-transform: uppercase;
  color: var(--bone); margin-bottom: 1.2rem;
}
.hero__kicker .dot {
  /* inline so it rides with the first word instead of orphaning on its own row */
  display: inline-block; vertical-align: middle;
  width: 7px; height: 7px; margin-right: .7rem; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--gold) 70%, transparent);
  animation: pulse 2.4s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--gold) 70%, transparent); }
  70%  { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero__title {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.15rem, min(9.4vw, 15.5vh), 8.4rem);
  line-height: .98; letter-spacing: .012em;
  margin: 0 0 1.45rem;
  font-optical-sizing: auto;
}
.hero__title .line { display: block; }
.hero__title .line > span {
  display: inline-block;
  background: linear-gradient(178deg, #fffaf0 4%, var(--gold-hi) 34%, var(--gold) 62%, #8f6c25 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: rise 1.05s var(--ease) both;
  text-shadow: 0 0 70px rgba(198, 175, 128, .18);
}
.hero__title .line--out > span {
  animation-delay: .12s;
  -webkit-text-stroke: 1.6px var(--gold-hi);
  background: none; color: rgba(8, 8, 11, .46);
  paint-order: stroke fill;
  filter: drop-shadow(0 2px 14px rgba(8, 8, 11, .55));
}
@keyframes rise { from { transform: translateY(.34em); } }


.hero__lede {
  max-width: 44ch; color: color-mix(in oklab, var(--bone) 78%, transparent);
  font-size: clamp(1rem, .95rem + .35vw, 1.2rem);
  margin-bottom: 2.2rem;
  animation: fadeUp .8s var(--ease) .35s both;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; animation: fadeUp .8s var(--ease) .45s both; }

.hero__scroll {
  position: absolute; right: var(--pad); bottom: clamp(3rem, 8vh, 6rem);
  display: grid; justify-items: center; gap: .7rem;
  font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted);
  writing-mode: vertical-rl;
}
.hero__scrollline { width: 1px; height: 64px; background: linear-gradient(var(--gold), transparent); }
@media (max-width: 800px) { .hero__scroll { display: none; } }

/* ---------- ticker ---------- */
.ticker {
  border-block: 1px solid var(--line-gold);
  background: linear-gradient(90deg, var(--ink-1), color-mix(in oklab, var(--accent-lo) 26%, var(--ink-1)) 50%, var(--ink-1));
  overflow: hidden; padding: .9rem 0;
}
.ticker__track { display: flex; width: max-content; animation: roll 34s linear infinite; }
.ticker__set {
  display: flex; align-items: center; gap: 1.4rem; padding-right: 1.4rem;
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(.95rem, 2.1vw, 1.45rem); letter-spacing: .06em; white-space: nowrap;
}
.ticker__set b { color: var(--gold); font-size: .55em; }
.ticker__set span { color: color-mix(in oklab, var(--bone) 88%, transparent); }
.ticker__set span:nth-child(4n+1) { color: var(--gold-lo); }
@keyframes roll { to { transform: translateX(-50%); } }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* ---------- numbers ---------- */
.numbers { padding: clamp(2.75rem, 5.5vw, 4.25rem) var(--pad); max-width: var(--maxw); margin-inline: auto; }
.numbers__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.stat { background: var(--ink); padding: clamp(1.4rem, 3vw, 2.2rem); }
.stat dt {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2);
  margin-bottom: .5rem;
}
.stat dd {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.1rem); line-height: 1.05;
  letter-spacing: .01em; display: flex; align-items: baseline;
  background: linear-gradient(170deg, var(--gold-hi), var(--gold) 60%, var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat dd em { font-style: normal; font-size: .55em; }

/* ---------- mixes ---------- */
.mixgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); gap: 1.15rem; }

.mix {
  position: relative; isolation: isolate; overflow: hidden;
  border: 1px solid var(--line); border-radius: 4px;
  background: linear-gradient(165deg, var(--ink-2), var(--ink));
  padding: clamp(1.4rem, 3vw, 2rem);
  display: grid; gap: 1.1rem;
  grid-template-rows: auto auto 1fr auto auto;
  min-height: 20rem;
  transition: border-color .45s var(--ease), transform .45s var(--ease);
}
.mix::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(70% 60% at 50% 0%, color-mix(in oklab, var(--gold) 16%, transparent), transparent 70%);
  transition: opacity .5s var(--ease);
}
.mix:hover, .mix.is-live { border-color: var(--line-gold); transform: translateY(-4px); }
.mix:hover::before, .mix.is-live::before { opacity: 1; }
.mix.is-soon { opacity: .62; }

.mix__no {
  font-family: var(--sans); font-weight: 600; font-size: .72rem;
  letter-spacing: .3em; color: var(--gold-lo);
}
.mix__title {
  font-family: var(--display); text-transform: uppercase; font-weight: 800;
  font-size: clamp(1.45rem, 3.1vw, 1.95rem); line-height: 1.08; letter-spacing: .012em;
}
.mix__desc { color: var(--muted); font-size: .95rem; max-width: 30ch; }
.mix__tags {
  display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0;
  align-items: flex-start; align-content: flex-start;   /* chips keep their own height */
}
.mix__tags li {
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .32rem .6rem; border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--line); color: var(--muted);
}
.mix__wave { width: 100%; height: 52px; opacity: .8; }
.mix__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.mix__go {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  color: var(--gold);
}
.mix__go i {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line-gold);
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.mix__go svg { width: 15px; height: 15px; }
.mix:not(.is-soon) .mix__go svg { fill: currentColor; stroke: none; }
.mix.is-soon .mix__go svg { fill: none; stroke: currentColor; stroke-width: 1.6; }
.mix:hover .mix__go i { background: var(--gold); color: #120c00; transform: scale(1.06); }
.mix.is-soon .mix__go { color: var(--muted-2); }
.mix__len { font-size: .72rem; letter-spacing: .14em; color: var(--muted-2); text-transform: uppercase; }
.mixes__note { margin-top: 1.4rem; color: var(--muted-2); font-size: .9rem; }

/* ---------- gallery ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 12rem;
  grid-auto-flow: row dense;   /* feature cells leave no holes */
  gap: .55rem;
}
.bento__cell {
  position: relative; overflow: hidden; margin: 0; cursor: pointer;
  background: var(--ink-2) center / cover no-repeat;   /* inline blur-up */
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow .4s var(--ease);
}
.bento__cell--tall  { grid-row: span 2; }
.bento__cell--wide  { grid-column: span 2; grid-row: span 2; }

@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 11rem; }
  .bento__cell--wide { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-auto-rows: 9rem; gap: .4rem; }
  .bento__cell--tall { grid-row: span 2; }
}

.bento__cell img {
  width: 100%; height: 100%; object-fit: cover;
  /* readable at rest, full colour on hover — never a black rectangle */
  filter: grayscale(.5) contrast(1.04) saturate(.85);
  transform: scale(1.03);
  transition: filter .6s var(--ease), transform .9s var(--ease);
}
.bento__cell::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 8, 11, 0) 52%, rgba(8, 8, 11, .72));
  opacity: .8; transition: opacity .5s var(--ease);
}
.bento__cell:hover img, .bento__cell:focus-visible img {
  filter: none; transform: scale(1.08);
}
.bento__cell:hover::after { opacity: .55; }
.bento__cell:hover { box-shadow: inset 0 0 0 1px var(--line-gold); }
.bento__cell figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: .85rem .95rem;
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: color-mix(in oklab, var(--bone) 72%, transparent);
  opacity: 0;
  transition: opacity .45s var(--ease), letter-spacing .45s var(--ease), color .45s var(--ease);
}
.bento__cell:hover figcaption, .bento__cell:focus-visible figcaption {
  opacity: 1; letter-spacing: .22em; color: var(--gold-hi);
}

/* ---------- about ---------- */
.about__grid {
  display: grid; gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 900px) { .about__grid { grid-template-columns: .85fr 1fr; } }
/* The studio portrait is shot on white, which would punch a hole in a dark
   page. Luminosity blending keeps his tonal range and takes the panel's
   colour, turning the white sweep into a gold-to-violet duotone. */
.about__portrait { position: relative; }
/* True two-layer duotone: the white studio sweep becomes gold, the shadows
   become deep violet. Highlight fill -> multiply image -> lighten shadow fill. */
.about__portrait picture {
  display: block; position: relative; overflow: hidden; border-radius: 3px;
  background: #c6af80;                 /* highlight: champagne */
  isolation: isolate;
}
.about__portrait img {
  width: 100%; display: block;
  filter: grayscale(1) contrast(1.05);
  mix-blend-mode: multiply;
}
.about__portrait picture::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: #241f2e;                 /* shadow: plum-slate */
  mix-blend-mode: lighten;
}
.about__portrait picture::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 8, 11, 0) 62%, rgba(8, 8, 11, .58));
}
@media (prefers-contrast: more) {
  .about__portrait img { mix-blend-mode: normal; filter: grayscale(.2); }
  .about__portrait picture::before { display: none; }
}

.about__frame {
  position: absolute; inset: 1.15rem -1.15rem -1.15rem 1.15rem; z-index: -1;
  border: 1px solid var(--line-gold); border-radius: 3px;
}
@media (max-width: 899px) { .about__frame { display: none; } }
.about__text { display: grid; gap: 1.1rem; color: color-mix(in oklab, var(--bone) 76%, transparent); max-width: 56ch; }
.pull {
  margin: 2rem 0; padding-left: 1.6rem; border-left: 2px solid var(--gold);
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 2.5vw, 1.72rem); line-height: 1.36; letter-spacing: 0;
  color: var(--bone); max-width: 32ch;
}
.chips { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; padding: 0; margin: 0 0 2rem; }
.chips li {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  padding: .45rem .85rem; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line);
}

/* ---------- book ---------- */
.book { position: relative; }
.book::before {
  content: ''; position: absolute; inset: 0 calc(var(--pad) * -1); z-index: -1;
  background:
    radial-gradient(60% 50% at 12% 0%, color-mix(in oklab, var(--gold) 9%, transparent), transparent 70%),
    radial-gradient(50% 50% at 92% 100%, color-mix(in oklab, var(--accent) 12%, transparent), transparent 70%);
}
.book__inner {
  display: grid; gap: clamp(2.5rem, 6vw, 4.5rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 960px) {
  .book__inner { grid-template-columns: .8fr 1fr; align-items: start; }
  /* the confirmation replaces the form, so it must claim the form's column */
  .form, .booked { grid-column: 2; grid-row: 1; }
}
.book__head { position: sticky; top: calc(var(--nav-h) + 2rem); }
@media (max-width: 959px) { .book__head { position: static; } }
.book__reassure { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: .6rem; }
.book__reassure li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .84rem; color: var(--muted);
}
.book__reassure li::before {
  content: ''; width: 6px; height: 6px; flex: none; rotate: 45deg;
  background: var(--gold);
}

.form {
  display: grid; gap: 1.35rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line); border-radius: 5px;
  background: linear-gradient(168deg, var(--ink-2), var(--ink));
}
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__row { display: grid; gap: 1.35rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

.form__types { border: 0; padding: 0; margin: 0; display: grid; gap: .8rem; }
.form__types legend {
  padding: 0; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.typechips { display: flex; flex-wrap: wrap; gap: .5rem; }
.typechips label { cursor: pointer; }
.typechips input { position: absolute; opacity: 0; width: 0; height: 0; }
.typechips span {
  display: block; padding: .6rem 1rem; border-radius: 999px;
  font-size: .74rem; letter-spacing: .1em; color: var(--muted);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.typechips label:hover span { color: var(--bone); box-shadow: inset 0 0 0 1px var(--line-gold); }
.typechips input:checked + span {
  background: var(--gold); color: #120c00; font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--gold);
}
.typechips input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 3px; }

.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea {
  width: 100%; padding: 1.5rem .95rem .65rem;
  background: color-mix(in oklab, var(--ink) 60%, transparent);
  border: 0; border-bottom: 1px solid var(--line); border-radius: 3px 3px 0 0;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
  resize: vertical;
}
.field textarea { padding-top: 1.7rem; min-height: 7rem; }
.field input:hover, .field textarea:hover { border-color: var(--line-gold); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  background: color-mix(in oklab, var(--gold) 5%, var(--ink));
}
.field label {
  position: absolute; left: .95rem; top: 1.15rem;
  font-size: .95rem; color: var(--muted-2); pointer-events: none;
  transform-origin: left top;
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.field label em { font-style: normal; opacity: .65; }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field label.label--up {
  transform: translateY(-.75rem) scale(.72);
  color: var(--gold);
}
.field input[type="date"] { color-scheme: dark; }
.field.is-bad input, .field.is-bad textarea { border-color: #ff6b5e; }

.err { min-height: 1.1rem; margin-top: .3rem; font-size: .74rem; color: #ff8b80; }
.err:empty { min-height: 0; margin: 0; }
.form__error {
  padding: .85rem 1rem; border-radius: 3px; font-size: .85rem;
  background: color-mix(in oklab, #ff6b5e 12%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, #ff6b5e 40%, transparent);
  color: #ffb4ac;
}
.form__legal { font-size: .74rem; color: var(--muted-2); text-align: center; }

#submitBtn.is-busy { pointer-events: none; opacity: .8; }
#submitBtn.is-busy .btn__label::after {
  content: ''; display: inline-block; width: .8em; height: .8em; margin-left: .5em;
  border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%;
  animation: spin .7s linear infinite; vertical-align: -1px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.booked {
  display: grid; justify-items: center; text-align: center; gap: 1rem;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line-gold); border-radius: 5px;
  background: linear-gradient(168deg, color-mix(in oklab, var(--gold) 7%, var(--ink-2)), var(--ink));
  animation: fadeUp .6s var(--ease) both;
}
.booked[hidden] { display: none; }
.booked__mark {
  width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--line-gold);
  color: var(--gold);
}
.booked__mark svg { width: 40px; height: 40px; stroke-width: 2.5; stroke-dasharray: 44; animation: draw .7s var(--ease) .2s both; }
@keyframes draw { from { stroke-dashoffset: 44; } to { stroke-dashoffset: 0; } }
.booked h3 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.2rem); letter-spacing: .012em; line-height: 1.1;
}
.booked p { color: var(--muted); max-width: 42ch; }
.booked__ref { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.booked__ref code {
  color: var(--gold); font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: none;  /* a reference id is case-sensitive */
}

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding: clamp(3rem, 7vw, 5rem) var(--pad) 2rem; }
.foot__top {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
  padding-bottom: 2.5rem;
}
.foot__brand img { width: 160px; opacity: .9; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; }
.foot__nav a { color: var(--muted); transition: color .3s; }
.foot__nav a:hover { color: var(--gold); }
.foot__social { display: flex; gap: .6rem; }
.foot__social a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--line); color: var(--muted);
  transition: color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.foot__social a:hover { color: var(--gold); box-shadow: inset 0 0 0 1px var(--line-gold); transform: translateY(-2px); }
.foot__social svg { width: 19px; height: 19px; }
.foot__bottom {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 1.5rem;
  font-size: .74rem; color: var(--muted-2);
}
.foot__tag { color: var(--gold-lo); letter-spacing: .08em; }

/* ---------- dock player ---------- */
.dock {
  position: fixed; inset: auto 0 0; z-index: 95;
  background: color-mix(in oklab, var(--ink-1) 92%, transparent);
  backdrop-filter: blur(16px) saturate(150%);
  border-top: 1px solid var(--line-gold);
  transform: translateY(100%);
  visibility: hidden;
  /* visible the instant it opens; hidden only once it has slid away */
  transition: transform .55s var(--ease), visibility 0s linear .55s;
  isolation: isolate;
}
.dock.is-open {
  transform: none; visibility: visible;
  transition: transform .55s var(--ease), visibility 0s;
}
.dock__viz { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .35; }
.dock__inner {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; gap: 1rem;
  padding: .85rem var(--pad);
}
.dock__play {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  display: grid; place-items: center; background: var(--gold); color: #120c00;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.dock__play:hover { transform: scale(1.07); box-shadow: 0 0 26px -4px var(--gold); }
.dock__play svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.dock__play .i-pause, .dock.is-playing .dock__play .i-play { display: none; }
.dock.is-playing .dock__play .i-pause { display: block; }
.dock__meta { min-width: 0; flex: none; max-width: 34%; }
.dock__title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: .98rem; line-height: 1.45; letter-spacing: .014em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dock__sub { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }
.dock__scrub { flex: 1; display: flex; align-items: center; gap: .8rem; min-width: 0; }
.dock__time { font-size: .7rem; color: var(--muted-2); font-variant-numeric: tabular-nums; white-space: nowrap; }
.dock__time i { font-style: normal; }
.dock__close {
  width: 38px; height: 38px; flex: none; border-radius: 50%; display: grid; place-items: center;
  color: var(--muted); transition: color .3s, box-shadow .3s;
}
.dock__close:hover { color: var(--bone); box-shadow: inset 0 0 0 1px var(--line); }
.dock__close svg { width: 16px; height: 16px; }

#dockSeek {
  -webkit-appearance: none; appearance: none; width: 100%; height: 20px;
  background: none; cursor: pointer;
}
#dockSeek::-webkit-slider-runnable-track {
  height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) var(--p, 0%), var(--line) var(--p, 0%));
}
#dockSeek::-moz-range-track { height: 3px; border-radius: 999px; background: var(--line); }
#dockSeek::-moz-range-progress { height: 3px; border-radius: 999px; background: var(--gold); }
#dockSeek::-webkit-slider-thumb {
  -webkit-appearance: none; width: 13px; height: 13px; border-radius: 50%;
  background: var(--gold-hi); margin-top: -5px; box-shadow: 0 0 12px var(--gold);
}
#dockSeek::-moz-range-thumb { width: 13px; height: 13px; border: 0; border-radius: 50%; background: var(--gold-hi); }

@media (max-width: 700px) {
  .dock__meta { max-width: none; flex: 1; }
  .dock__scrub { display: none; }
}

/* ---------- lightbox ---------- */
.lightbox {
  width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh;
  padding: 0; border: 0; background: color-mix(in oklab, var(--ink) 96%, transparent);
  color: var(--bone);
  display: none; place-items: center;
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: rgba(0, 0, 0, .9); }
.lightbox__fig { margin: 0; display: grid; gap: 1rem; justify-items: center; padding: 4rem 1rem; }
.lightbox__fig img {
  max-width: min(92vw, 1100px); max-height: 78dvh; object-fit: contain; border-radius: 3px;
  animation: pop .4s var(--ease) both;
}
@keyframes pop { from { opacity: 0; transform: scale(.97); } }
.lightbox__fig figcaption {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 2; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: var(--bone);
  background: color-mix(in oklab, var(--ink-2) 80%, transparent);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: color .3s, box-shadow .3s, transform .3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { color: var(--gold); box-shadow: inset 0 0 0 1px var(--line-gold); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav--prev { left: 1.2rem; }
.lightbox__nav--next { right: 1.2rem; }
.lightbox__close svg, .lightbox__nav svg { width: 18px; height: 18px; }

/* ---------- reveal ---------- */
/* Only hide it if scripting is actually alive to bring it back. */
.js [data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- responsive nav ---------- */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; }
  .nav__end .btn--gold { display: none; }
}

/* ---------- motion / contrast preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero__media img { transform: scale(1.02); }
  .cursor { display: none; }
}
@media (prefers-contrast: more) {
  :root { --muted: #cfcac1; --muted-2: #a8a29a; --line: rgba(244, 239, 230, .3); }
}

/* ---------- SoundCloud players inside the mix cards ---------- */

.mix__player {
  display: block;
  width: 100%;
  border: 0;
  border-radius: var(--r);
  margin-block: .35rem;
  /* The widget paints its own near-white ground; this keeps it from glaring
     against the black card. */
  filter: invert(1) hue-rotate(180deg) saturate(.85) brightness(.92);
}

/* An embedded card is not a target for the dock, so it should not offer the
   hover affordance that says it is. */
.mix.has-embed { cursor: default; }
.mix.has-embed .mix__go a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--line-gold);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mix.has-embed .mix__go a:hover { border-bottom-color: var(--gold); }
