/*
Theme Name:  Kaur Nellis
Description: One-page portfolio for Kaur Nellis — cellist, DJ and producer.
             Static single-page theme: all content lives in index.php.
Author:      Kaur Nellis
Version:     1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License:     GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kaur-nellis

NOTE: the GPL applies to this theme's code. The photographs and video in
assets/ remain the copyright of their photographers — see the press folder's
READ-ME-FIRST.txt for credits.
*/

/* ==========================================================================
   Kaur Nellis — cellist, DJ, producer
   Art direction: "stage light". Every photograph in his archive is a body in a
   beam of light in a dark room, so the site behaves like that room — near-black
   ground, photography at full bleed, each section washed by the colour of the
   light in its own pictures. See DESIGN-PLAN.md.
   ========================================================================== */

/* ---------- Fonts (self-hosted, no CDN) --------------------------------- */
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('assets/fonts/instrument-serif-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('assets/fonts/instrument-serif-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('assets/fonts/familjen-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('assets/fonts/familjen-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ------------------------------------------------------- */
:root {
  --void:   #05060B;
  --frost:  #EDEFF4;
  --dim:    #7B8499;
  --hair:   rgb(237 239 244 / 0.13);

  /* the three lights, sampled from his own photographs */
  --gold:    #E4A63C;
  --cyan:    #35B4D2;
  --magenta: #B653DE;

  --light: var(--gold);

  --display: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --body: 'Familjen Grotesk', ui-sans-serif, -apple-system, 'Segoe UI', Roboto,
          'Helvetica Neue', Arial, sans-serif;

  --gutter: clamp(1.25rem, 0.6rem + 3vw, 4.5rem);
  --band: clamp(5rem, 3rem + 8vw, 11rem);
  --maxw: 82rem;
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

body {
  background: var(--void); color: var(--frost); font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.09rem); line-height: 1.62;
  -webkit-font-smoothing: antialiased; font-synthesis-weight: none;
}
/* NOTE: deliberately no `overflow-x: hidden` on body. It makes overflow-y compute
   to `auto`, which turns body into the scroll container — scroll events then stop
   reaching `window` and any scroll-driven behaviour silently dies. Everything that
   could overflow (marquee track, hero zoom, journey backgrounds) is clipped by its
   own container instead. */
a { color: inherit; }
:focus-visible { outline: 2px solid var(--light); outline-offset: 4px; border-radius: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;   /* justified: the one case where a
                                                 blanket motion kill is correct */
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

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

.band { padding-block: var(--band); position: relative; }
/* .band is the ONLY rule that sets section padding — no per-section overrides,
   so two selectors can never cancel out and break the vertical rhythm. */

.warm  { --light: var(--gold); }
.cold  { --light: var(--cyan); }
.hinge { --light: var(--magenta); }

.band::before {                      /* a soft stage wash in the section's light */
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(62% 46% at 80% 10%,
              color-mix(in srgb, var(--light) 12%, transparent), transparent 72%);
}
.band > * { position: relative; z-index: 1; }

.meta {
  font-size: clamp(0.66rem, 0.6rem + 0.2vw, 0.76rem);
  font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--dim);
}

.eyebrow { display: flex; align-items: center; gap: 1.1rem;
           margin-bottom: clamp(1.5rem, 1rem + 2vw, 3rem); }
.eyebrow .num { font-family: var(--display);
                font-size: clamp(1.5rem, 1rem + 1.8vw, 2.4rem);
                line-height: 1; color: var(--light); }
.eyebrow .rule { flex: 1 1 auto; height: 1px; background: var(--hair); }

/* element-agnostic: the same treatment is used on h2 and h3 */
.title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.6rem, 1.2rem + 6.2vw, 6.6rem);
  line-height: 0.94; letter-spacing: -0.028em; text-wrap: balance;
  margin-bottom: clamp(1.25rem, 0.8rem + 2vw, 2.25rem);
}
.sub { font-family: var(--display); font-weight: 400;
       font-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.6rem);
       line-height: 1.06; letter-spacing: -0.018em; text-wrap: balance; }
h1, h2, h3 { text-wrap: balance; }

.lede { font-size: clamp(1.15rem, 0.98rem + 0.85vw, 1.6rem);
        line-height: 1.42; max-width: 34ch; text-wrap: pretty; }
.body { max-width: 58ch; color: #C4CBD9; text-wrap: pretty; }
.body p + p { margin-top: 1em; }
.body strong { color: var(--frost); font-weight: 600; }
.body em { font-style: italic; }
.body a { color: var(--frost); text-decoration-color: var(--light);
          text-underline-offset: 0.22em; text-decoration-thickness: 1px; }
.body a:hover { color: var(--light); }

.skip { position: fixed; left: var(--gutter); top: -5rem; z-index: 90;
        background: var(--frost); color: var(--void);
        padding: 0.7rem 1.1rem; font-weight: 600; border-radius: 2px;
        transition: top 0.2s ease; }
.skip:focus { top: 1rem; }

/* ---------- Scroll reveal ------------------------------------------------ */
.rise { opacity: 0; transform: translateY(26px); }
.rise.in { opacity: 1; transform: none;
           transition: opacity 0.9s cubic-bezier(.2,.7,.2,1),
                       transform 0.9s cubic-bezier(.2,.7,.2,1); }
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; } }
.no-js .rise { opacity: 1; transform: none; }

/* ---------- Sticky header ------------------------------------------------ */
.bar { position: fixed; inset-inline: 0; top: 0; z-index: 60;
       display: flex; align-items: center; justify-content: space-between; gap: 1rem;
       padding: 0.8rem var(--gutter);
       background: color-mix(in srgb, var(--void) 84%, transparent);
       backdrop-filter: blur(14px); border-bottom: 1px solid transparent;
       transform: translateY(-102%);
       transition: transform 0.45s cubic-bezier(.2,.7,.2,1), border-color 0.45s ease; }
.bar.show { transform: none; border-bottom-color: var(--hair); }
.bar__name { font-family: var(--display); font-size: 1.2rem;
             letter-spacing: -0.01em; text-decoration: none; white-space: nowrap; }
.bar__nav { display: none; gap: clamp(1rem, 0.4rem + 1.5vw, 2.1rem); }
@media (min-width: 1040px) { .bar__nav { display: flex; } }
.bar__nav a { font-size: 0.71rem; font-weight: 700; letter-spacing: 0.2em;
              text-transform: uppercase; color: var(--dim); text-decoration: none;
              transition: color 0.2s ease; }
.bar__nav a:hover, .bar__nav a[aria-current='true'] { color: var(--frost); }
.bar__cta { font-size: 0.71rem; font-weight: 700; letter-spacing: 0.18em;
            text-transform: uppercase; text-decoration: none;
            border: 1px solid var(--hair); border-radius: 999px;
            padding: 0.5rem 1.05rem; white-space: nowrap;
            transition: border-color 0.25s ease, color 0.25s ease; }
.bar__cta:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Hero --------------------------------------------------------- */
.hero { position: relative; min-height: 100svh;
        display: grid; grid-template-rows: auto 1fr auto;
        isolation: isolate; overflow: hidden; }
.hero__img { position: absolute; inset: 0; z-index: -2; }
.hero__img img { width: 100%; height: 100%; object-fit: cover;
                 object-position: 57% 32%; animation: slowzoom 24s ease-out forwards; }
@keyframes slowzoom { from { transform: scale(1.06); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero__img img { animation: none; } }

.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgb(5 6 11 / 0.7) 0%, rgb(5 6 11 / 0.1) 30%,
                    rgb(5 6 11 / 0.34) 60%, rgb(5 6 11 / 0.95) 100%),
    linear-gradient(90deg, rgb(5 6 11 / 0.8) 0%, rgb(5 6 11 / 0.34) 34%,
                    rgb(5 6 11 / 0) 62%);
}
.hero__top { padding: clamp(1.1rem, 0.7rem + 1.8vw, 2.2rem) var(--gutter) 0;
             display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.hero__body { align-self: end; padding: 0 var(--gutter) clamp(1.9rem, 1rem + 3.2vw, 3.5rem); }

/* The name: Instrument Serif, sentence case, one line. */
.hero__name {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.9rem, 11.4vw, 11rem);
  line-height: 0.9; letter-spacing: -0.035em; white-space: nowrap;
  margin-bottom: clamp(0.9rem, 0.6rem + 1.4vw, 1.8rem);
}

.hero__foot { display: grid; gap: clamp(1.2rem, 0.6rem + 1.8vw, 2.5rem); align-items: end; }
@media (min-width: 860px) { .hero__foot { grid-template-columns: minmax(0, 1fr) auto; } }
.hero__claim { font-size: clamp(1.02rem, 0.9rem + 0.6vw, 1.32rem);
               line-height: 1.4; max-width: 44ch; color: #D7DCE7; text-wrap: pretty; }
.hero__claim b { color: var(--frost); font-weight: 600; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 0.6rem 2.1rem; }
.hero__stats div { display: grid; gap: 0.1rem; }
.hero__stats dt { font-family: var(--display);
                  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.8rem); line-height: 1; }
.hero__stats dd { margin: 0; font-size: 0.64rem; font-weight: 700;
                  letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); }

.cue { position: absolute; left: 50%; bottom: 0.7rem; translate: -50% 0;
       width: 1px; height: clamp(26px, 3.6vw, 42px);
       background: rgb(237 239 244 / 0.16); overflow: hidden; }
.cue::after { content: ''; position: absolute; inset: 0;
              background: linear-gradient(var(--frost), transparent);
              animation: drop 2.8s ease-in-out infinite; }
@keyframes drop { 0% { transform: translateY(-100%); opacity: 0; }
                  40% { opacity: 1; } 100% { transform: translateY(100%); opacity: 0; } }

/* ---------- Intro -------------------------------------------------------- */
.intro__grid { display: grid; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
@media (min-width: 920px) { .intro__grid { grid-template-columns: 0.9fr 1.1fr; } }
.intro__img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
                  object-position: 50% 32%; }

/* ---------- Full-bleed plate --------------------------------------------- */
.plate { position: relative; min-height: min(84svh, 48rem);
         display: grid; align-items: end; overflow: hidden; isolation: isolate; }
.plate__img { position: absolute; inset: 0; z-index: -2; }
.plate__img img, .plate__img video { width: 100%; height: 100%; object-fit: cover; }
.plate::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgb(5 6 11 / 0.5) 0%, rgb(5 6 11 / 0.04) 34%,
                              rgb(5 6 11 / 0.88) 100%); }
.plate--video { min-height: 0; aspect-ratio: 16 / 9; }
.plate--video .plate__img video { object-fit: contain; background: #000; }
.plate__cap { padding: var(--gutter); display: grid; gap: 0.45rem; }
.plate__cap p { max-width: 48ch; color: #CFD5E1; }

/* ---------- The Gulf journey (scroll-driven) ----------------------------- */
.journey { position: relative; }
.journey__bg { position: sticky; top: 0; height: 100svh; z-index: 0; overflow: hidden; }
.jb { position: absolute; inset: 0; opacity: 0; transition: opacity 0.85s ease; }
.jb.on { opacity: 1; }
/* Without JS nothing gets .on, so show the first background. Scoped to .no-js
   so it can never fight .on once the script has run — an unscoped
   `.jb:first-child { opacity: 1 }` has the same specificity as `.jb.on` and,
   coming later, would pin the first background on permanently. */
.no-js .jb:first-child { opacity: 1; }
.jb img { width: 100%; height: 100%; object-fit: cover;
          transform: scale(1.0); transition: transform 7s ease-out; }
.jb.on img { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) { .jb img, .jb.on img { transform: none; } }

/* Readable on the left, photograph clear on the right. */
.journey__bg::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgb(5 6 11 / 0.94) 0%, rgb(5 6 11 / 0.86) 30%,
              rgb(5 6 11 / 0.45) 58%, rgb(5 6 11 / 0.12) 100%);
}
@media (max-width: 860px) {
  .journey__bg::after { background: linear-gradient(180deg, rgb(5 6 11 / 0.72) 0%,
                        rgb(5 6 11 / 0.86) 55%, rgb(5 6 11 / 0.94) 100%); }
}

.journey__steps { position: relative; z-index: 1; margin-top: -100svh; }
.step { min-height: 100svh; display: flex; align-items: center;
        padding-block: clamp(3rem, 2rem + 4vw, 6rem); }
.step__in { width: 100%; max-width: 46rem; }
@media (min-width: 861px) { .step__in { max-width: 40rem; } }
.step__when { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 0.9rem; }
.step__yr { font-family: var(--display);
            font-size: clamp(1.9rem, 1.2rem + 2.2vw, 3rem); line-height: 0.95;
            color: var(--light); }
.step h3 { margin-bottom: 0.7rem; }
.step .body { color: #D2D8E4; }

.watch {
  display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 1.4rem;
  border: 1px solid var(--hair); border-radius: 999px;
  padding: 0.55rem 1.15rem 0.55rem 0.55rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgb(5 6 11 / 0.4); backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.watch span { display: grid; place-items: center; width: 1.9rem; height: 1.9rem;
              border-radius: 50%; background: var(--frost); flex: none; }
.watch svg { width: 0.6rem; height: 0.6rem; fill: var(--void); translate: 1px 0; }
.watch:hover, .watch:focus-visible { border-color: var(--light); background: rgb(5 6 11 / 0.7); }

.guest { margin-top: 1.35rem; padding-left: 1.15rem; border-left: 2px solid var(--light);
         color: #CFD5E1; max-width: 52ch; }
.guest .meta { display: block; margin-bottom: 0.4rem; color: var(--light); }

/* ---------- Contrast pairs ----------------------------------------------- */
.pairs { display: grid; gap: clamp(0.45rem, 0.2rem + 0.9vw, 1rem); }
.pair { display: grid; grid-template-columns: 1fr auto 1fr; align-items: baseline;
        gap: clamp(0.55rem, 0.3rem + 1vw, 1.5rem); font-family: var(--display);
        font-size: clamp(1.2rem, 0.62rem + 2.5vw, 2.75rem);
        line-height: 1.1; letter-spacing: -0.02em; }
.pair span:first-child { color: var(--gold); text-align: right; }
.pair span:last-child { color: var(--cyan); }
.pair i { font-style: normal; color: var(--dim); opacity: 0.5;
          font-size: 0.5em; transform: translateY(-0.08em); }

.quote-lg { font-family: var(--display); font-weight: 400;
            font-size: clamp(1.35rem, 1rem + 1.5vw, 2.15rem);
            line-height: 1.2; letter-spacing: -0.015em; max-width: 26ch; }
.quote-lg footer { font-family: var(--body); font-size: 0.7rem; font-weight: 700;
                   letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim);
                   margin-top: 1.2rem; letter-spacing: 0.2em; }

/* ---------- Media -------------------------------------------------------- */
.pair-media { display: grid; gap: clamp(0.9rem, 0.5rem + 1.4vw, 1.5rem); margin-top: var(--band); }
@media (min-width: 780px) { .pair-media { grid-template-columns: 1fr 1fr; align-items: start; } }
/* The picture is exactly as tall as the column of text next to it. */
.pair-media--match { align-items: stretch; }
.pair-media--match .play,
.pair-media--match .play picture,
.pair-media--match .play img { height: 100%; }
.pair-media--match .play img { aspect-ratio: auto; object-fit: cover; }
.shot { display: grid; gap: 0.7rem; }
.shot img { width: 100%; height: auto; }
.shot--tall img { aspect-ratio: 4 / 5; object-fit: cover; }
.shot--wide img { aspect-ratio: 3 / 2; object-fit: cover; }
.shot figcaption { color: var(--dim); font-size: 0.9rem; line-height: 1.45; max-width: 46ch; }
.shot figcaption b { color: var(--frost); font-weight: 600; }

/* ---------- Video trigger (poster + play) -------------------------------- */
.play { position: relative; display: block; width: 100%; padding: 0;
        overflow: hidden; isolation: isolate; background: #000; }
.play img { width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.85s cubic-bezier(.2,.7,.2,1); }
.play--3x2 img { aspect-ratio: 3 / 2; }   /* matches the photo beside it, so both columns align */
.play:hover img, .play:focus-visible img { transform: scale(1.04); }
.play::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgb(5 6 11 / 0.08), rgb(5 6 11 / 0.66)); }
.play__ui { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
            display: flex; align-items: center; gap: 0.85rem;
            padding: clamp(0.9rem, 0.6rem + 1vw, 1.5rem); }
.play__disc { flex: none; width: 3rem; height: 3rem; border-radius: 50%;
              border: 1px solid rgb(237 239 244 / 0.5); display: grid; place-items: center;
              background: rgb(5 6 11 / 0.32); backdrop-filter: blur(6px);
              transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.play__disc svg { width: 0.8rem; height: 0.8rem; translate: 1px 0; fill: var(--frost);
                  transition: fill 0.3s ease; }
.play:hover .play__disc, .play:focus-visible .play__disc {
  background: var(--frost); border-color: var(--frost); transform: scale(1.06); }
.play:hover .play__disc svg, .play:focus-visible .play__disc svg { fill: var(--void); }
.play__txt { text-align: left; display: grid; gap: 0.1rem; }
.play__txt b { font-size: 0.95rem; font-weight: 600; }
.play__txt span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
                  text-transform: uppercase; color: #BAC2D2; }

/* ---------- Lightbox ----------------------------------------------------- */
.lb[hidden] { display: none; }
.lb { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
      padding: clamp(0.75rem, 2vw, 2.5rem);
      background: rgb(3 4 8 / 0.95); backdrop-filter: blur(10px);
      animation: fade 0.28s ease both; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lb__inner { position: relative; width: min(100%, 64rem); }
.lb video { width: auto; max-width: 100%; max-height: 78svh; height: auto;
            background: #000; margin-inline: auto; }
.lb__cap { margin-top: 0.8rem; color: var(--dim); font-size: 0.9rem; text-align: center; }
.lb__x { position: absolute; top: -2.9rem; right: 0; display: flex; align-items: center;
         gap: 0.5rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
         text-transform: uppercase; color: var(--frost); }
.lb__x svg { width: 0.8rem; height: 0.8rem; stroke: currentColor; stroke-width: 2.2; fill: none; }
.lb__x:hover { color: var(--gold); }

/* ---------- Marquee ------------------------------------------------------ */
.marq { overflow: hidden; padding-block: clamp(1.4rem, 1rem + 1.4vw, 2.4rem);
        border-block: 1px solid var(--hair); margin-top: var(--band);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marq__track { display: flex; width: max-content; animation: slide 52s linear infinite; }
.marq:hover .marq__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .marq { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marq__track { animation: none; }
}
@keyframes slide { to { transform: translateX(-50%); } }
.marq__set { display: flex; align-items: center; flex: none; }
.marq__set span { font-family: var(--display);
                  font-size: clamp(1.3rem, 0.9rem + 1.8vw, 2.4rem); line-height: 1;
                  padding-inline: clamp(0.85rem, 0.5rem + 1.3vw, 1.9rem);
                  color: #AAB3C5; white-space: nowrap; }
.marq__set i { font-style: normal; color: var(--light); opacity: 0.7; }

/* ---------- Slideshow ---------------------------------------------------- */
.slides { position: relative; margin-top: var(--band); }
.slides--bleed { margin-top: 0; }
.slides--bleed .slides__stage { aspect-ratio: 16 / 9; }
.slides--bleed .slides__dots { position: absolute; z-index: 3; left: var(--gutter);
                               bottom: var(--gutter); margin-top: 0; }
.slides--bleed .slides__cap { padding-left: var(--gutter); padding-bottom: calc(var(--gutter) + 1.6rem); }
.slides__stage { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.slides__stage figure { position: absolute; inset: 0; margin: 0; opacity: 0;
                        transition: opacity 1.1s ease; }
.slides__stage figure.on { opacity: 1; }
.slides__stage img { width: 100%; height: 100%; object-fit: cover; }
.slides__cap { position: absolute; left: 0; bottom: 0; right: 0; z-index: 2;
               padding: clamp(0.9rem, 0.6rem + 1vw, 1.6rem);
               background: linear-gradient(transparent, rgb(5 6 11 / 0.85)); }
.slides__dots { display: flex; gap: 0.5rem; margin-top: 1rem; }
.slides__dots button { width: 2.4rem; height: 2px; background: var(--hair); border-radius: 2px;
                       transition: background 0.3s ease; }
.slides__dots button[aria-current='true'] { background: var(--light); }

/* ---------- Endorsements ------------------------------------------------- */
.quotes { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); } }
.qcard { display: flex; flex-direction: column; gap: 1.1rem;
         padding-top: 1.4rem; border-top: 2px solid var(--light); }
.qcard blockquote { font-size: 1.02rem; line-height: 1.55; color: #D2D8E4; text-wrap: pretty; }
.qcard footer { margin-top: auto; }
.qcard cite { font-style: normal; font-family: var(--display); font-size: 1.25rem;
              display: block; letter-spacing: -0.01em; }
.qcard .role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
               text-transform: uppercase; color: var(--dim); margin-top: 0.2rem; }

/* ---------- Index lists -------------------------------------------------- */
.list { display: grid; }
.list > * { display: grid; gap: 0.2rem 2.5rem; align-items: baseline;
            padding-block: clamp(0.9rem, 0.6rem + 0.7vw, 1.35rem);
            border-top: 1px solid var(--hair); }
.list > *:last-child { border-bottom: 1px solid var(--hair); }
@media (min-width: 700px) { .list--dated > * { grid-template-columns: 9rem minmax(0, 1fr); } }
.list dt, .list .k { font-size: 0.71rem; font-weight: 700; letter-spacing: 0.18em;
                     text-transform: uppercase; color: var(--light);
                     font-variant-numeric: tabular-nums; }
.list dd, .list .v { margin: 0; }
.list .v b { font-weight: 600; }
.list .v span { color: var(--dim); }

.formats { display: grid; }
.formats li { display: flex; align-items: baseline; gap: 1.1rem;
              padding-block: clamp(0.8rem, 0.55rem + 0.6vw, 1.15rem);
              border-top: 1px solid var(--hair);
              font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem); }
.formats li:last-child { border-bottom: 1px solid var(--hair); }
.formats li i { font-style: normal; font-size: 0.68rem; font-weight: 700;
                letter-spacing: 0.14em; color: var(--light); flex: none; width: 2rem; }

/* Booking sits over a photograph, dimmed to the section ground. */
.band--photo { isolation: isolate; }
.band--photo .bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.band--photo .bg img { width: 100%; height: 100%; object-fit: cover;
                       object-position: 50% 28%; opacity: var(--bg-opacity, 0.42); }
.band--photo .bg::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--void) 0%, rgb(5 6 11 / 0.72) 34%,
                              rgb(5 6 11 / 0.8) 66%, var(--void) 100%); }

/* ---------- Layout shells ------------------------------------------------ */
.split { display: grid; gap: clamp(2rem, 1rem + 4vw, 5rem); }
@media (min-width: 920px) { .split { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); } }
.sticky { align-self: start; }
@media (min-width: 920px) { .sticky { position: sticky; top: 6rem; } }

/* ---------- Contact ------------------------------------------------------ */
.contact-links { display: grid; margin-top: 1.5rem; }
.contact-links a { display: grid; gap: 0.1rem;
                   padding-block: clamp(1rem, 0.7rem + 0.8vw, 1.45rem);
                   border-top: 1px solid var(--hair); text-decoration: none;
                   transition: color 0.25s ease; }
.contact-links a:last-of-type { border-bottom: 1px solid var(--hair); }
.contact-links a:hover { color: var(--gold); }
.contact-links b { font-family: var(--display); font-weight: 400;
                   font-size: clamp(1.3rem, 1rem + 1.3vw, 2rem);
                   letter-spacing: -0.01em; overflow-wrap: anywhere; }

.foot { margin-top: var(--band); padding-top: 1.5rem; border-top: 1px solid var(--hair);
        display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: space-between; }

.vh { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
      overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }

/* ---------- WordPress admin bar ----------------------------------------- *
   Only logged-in users see it, and only for them does WordPress add
   .admin-bar to <body>. Without this the site's own fixed nav sits
   underneath it and becomes unclickable when you are viewing your own site.
   32px on desktop, 46px below 782px — WordPress's own breakpoint.          */
.admin-bar .bar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .bar { top: 46px; }
}
