/* ==========================================================================
   RAFAEL PAULO — Producer • DJ • Mastering Engineer
   styles.css

   Table of contents
   01  Design tokens
   02  Reset & base
   03  Typography
   04  Layout helpers & section furniture
   05  Buttons & links
   06  Intro (VIP reveal)
   07  Header / navigation
   08  Mobile navigation
   09  Hero
   10  Platform tiles
   12  About the artist
   13  Production
   14  DJ & Live
   15  Mastering Best Audio
   19  Contact
   20  Footer
   21  Sub pages (music index, legal, 404)
   22  Motion, reveals, grain
   23  Accessibility & print
   ========================================================================== */

/* NOTE: fonts.css is linked separately in the <head>, *before* this file.
   It is not @imported here on purpose — an @import would delay rendering by
   one extra round trip. If you ever move this stylesheet, keep both links. */

/* ==========================================================================
   01  Design tokens
   ========================================================================== */

:root {
  /* Brand colour world ----------------------------------------------------
     Taken from the hero photograph: black, raw concrete, warm stone, golden
     hour light. Warm greys throughout — no blue anywhere in the ground. */
  --ink-900: #080808;   /* deep black     — page ground                     */
  --ink-850: #0d0d0c;
  --ink-800: #111111;   /* charcoal       — raised surfaces                 */
  --ink-700: #181817;   /* warm graphite  — cards, quiet bands              */
  --ink-deep: #131312;  /* the calm band the mastering world sits on        */

  --gold: #c7a664;        /* champagne gold — the brand tone                */
  --gold-light: #d4b97a;  /* soft gold      — hover, highlights             */
  --gold-deep: #8e7442;

  --stone: #bdb3a3;     /* warm stone   — quiet captions on dark            */
  --concrete: #8c8982;  /* concrete grey — the quietest structural tone     */
  --cream: #eee9df;
  --warm-white: #f6f3ed;

  --alert: #b8615c;     /* the single warm red, for form errors only        */

  /* Derived, opacity-based tints ------------------------------------------ */
  --gold-08: rgba(199, 166, 100, 0.08);
  --gold-14: rgba(199, 166, 100, 0.14);
  --gold-20: rgba(199, 166, 100, 0.20);
  --gold-24: rgba(199, 166, 100, 0.24);
  --gold-40: rgba(199, 166, 100, 0.40);
  /* Three text tiers on the black ground. The opacities are chosen so that
     even the quietest one clears WCAG AA (>= 4.5:1) on --ink-900. */
  --cream-quiet: rgba(238, 233, 223, 0.56);  /*  ~5.2:1  meta, captions      */
  --cream-soft: rgba(238, 233, 223, 0.70);   /*  ~7.6:1  secondary copy      */
  --cream-body: rgba(238, 233, 223, 0.82);   /* ~10.4:1  running body text   */
  --hairline: rgba(238, 233, 223, 0.10);
  --hairline-strong: rgba(238, 233, 223, 0.18);

  /* Type ------------------------------------------------------------------ */
  --font-sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype",
    Georgia, "Times New Roman", serif;

  /* A single fluid type scale, mobile → 4K ------------------------------- */
  --t-display: clamp(2.9rem, 1.4rem + 7.4vw, 8.4rem);
  --t-h1: clamp(2.3rem, 1.35rem + 4.1vw, 5.2rem);
  --t-h2: clamp(1.85rem, 1.25rem + 2.5vw, 3.5rem);
  --t-h3: clamp(1.25rem, 1.05rem + 0.9vw, 1.85rem);
  --t-lede: clamp(1.02rem, 0.95rem + 0.42vw, 1.32rem);
  --t-body: clamp(0.97rem, 0.93rem + 0.2vw, 1.08rem);
  --t-small: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  --t-label: clamp(0.66rem, 0.63rem + 0.13vw, 0.76rem);

  /* Space ----------------------------------------------------------------- */
  --gutter: clamp(1.25rem, 0.4rem + 3.4vw, 4.5rem);
  --section-y: clamp(5rem, 2.5rem + 9vw, 11.5rem);
  --shell: 1560px;
  --measure: 62ch;

  /* Motion ---------------------------------------------------------------- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 220ms;
  --dur: 420ms;
  --dur-slow: 900ms;

  /* Chrome ---------------------------------------------------------------- */
  --header-h: 78px;
  --radius: 2px;     /* deliberately near-square: editorial, not bubbly */
}

@media (min-width: 62rem) {
  :root { --header-h: 92px; }
}

/* ==========================================================================
   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) + 1.5rem);
}

body {
  margin: 0;
  background-color: var(--ink-900);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.006em;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Locks scrolling while the fullscreen menu or the intro is on screen */
body.is-locked { overflow: hidden; }

img, svg, video, picture { display: block; max-width: 100%; }
img { height: auto; }

/* A <picture> only wraps its image; left alone it collapses to the image's own
   aspect ratio, so an img inside it can never fill a full-bleed container.
   Wherever a picture backs a whole section, it has to stretch with it. */
.booking__bg picture,
.page-head__bg picture {
  width: 100%;
  height: 100%;
}

h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

button { background: none; border: 0; cursor: pointer; }

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

::selection { background: var(--gold); color: var(--ink-900); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink-900); }
::-webkit-scrollbar-thumb { background: #26282e; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* Skip link ---------------------------------------------------------------- */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 400;
  padding: 0.8rem 1.4rem;
  background: var(--gold);
  color: var(--ink-900);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform var(--dur-fast) var(--ease);
}
.skip-link:focus { transform: translateY(0); }

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

/* ==========================================================================
   03  Typography
   ========================================================================== */

.display,
.h1, .h2, .h3 {
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--warm-white);
  text-wrap: balance;
}

.display { font-size: var(--t-display); }
.h1 { font-size: var(--t-h1); line-height: 1.05; }
.h2 { font-size: var(--t-h2); line-height: 1.08; }
.h3 {
  font-size: var(--t-h3);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -0.012em;
}

/* Editorial serif accent — used for one word or phrase inside a headline.   */
.accent {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.005em;
  color: var(--gold-light);
}

/* Small letterspaced caps: eyebrows, labels, meta ------------------------- */
.label {
  display: inline-block;
  font-size: var(--t-label);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.label--muted { color: var(--cream-quiet); }

.lede {
  max-width: var(--measure);
  font-size: var(--t-lede);
  font-weight: 300;
  line-height: 1.62;
  color: var(--cream-body);
}

.body-text { max-width: var(--measure); color: var(--cream-body); }
.body-text + .body-text { margin-top: 1.15em; }
.body-text strong { color: var(--cream); font-weight: 600; }

.text-gold { color: var(--gold-light); }

/* ==========================================================================
   04  Layout helpers & section furniture
   ========================================================================== */

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

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--tight { padding-block: clamp(3.5rem, 2rem + 5vw, 7rem); }
.section--deep { background: var(--ink-deep); }
.section--raise { background: var(--ink-800); }

/* The handover out of the photograph: warm graphite under the hero, easing
   into the black page. No hard edge, no sudden black box. */
.hero + .section {
  background: linear-gradient(to bottom, var(--ink-700) 0%, var(--ink-900) 46%);
}
.hero + .section::before { content: none; }

/* Hairline rule that separates the long editorial scroll into chapters      */
.section + .section::before {
  content: "";
  position: absolute;
  inset-inline: var(--gutter);
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hairline) 12%,
    var(--hairline) 88%,
    transparent
  );
}

/* Section head: numbered label, headline, lede ---------------------------- */
.section__head {
  display: grid;
  gap: clamp(1rem, 0.5rem + 1.4vw, 1.75rem);
  margin-bottom: clamp(2.5rem, 1.4rem + 3.6vw, 5rem);
  max-width: 58rem;
}

.section__index {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.section__index::after {
  content: "";
  flex: 0 1 5rem;
  height: 1px;
  background: var(--gold-40);
}

/* Two column editorial split ---------------------------------------------- */
.split {
  display: grid;
  gap: clamp(2.5rem, 1rem + 5vw, 5.5rem);
  align-items: center;
}
@media (min-width: 62rem) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .split--media-first > :first-child { order: -1; }
  .split--wide-text { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
}

.section__head--flush { margin-bottom: 0; }

/* The one-line promise under a section headline. Sans, not serif — the serif
   is reserved for the two places that earn it. */
.section__sub {
  font-size: clamp(1.05rem, 0.9rem + 0.65vw, 1.5rem);
  font-weight: 300;
  letter-spacing: -0.008em;
  color: var(--gold-light);
}

/* The handful of spacing exceptions the layout genuinely needs —
   named, reusable, and kept out of the markup as inline styles. */
.u-mt-s { margin-top: 1.5rem; }
.u-mt-l { margin-top: clamp(2.5rem, 1.5rem + 3vw, 4.5rem); }
.u-narrow { max-width: 56rem; }
.u-center { margin-inline: auto; }
.u-center-row { justify-content: center; }

.stack { display: grid; gap: 1.5rem; align-content: start; }
.stack--tight { gap: 0.85rem; }
.stack--loose { gap: 2.25rem; }

/* A framed image: a thin gold hairline stepped out to the bottom right, so it
   reads as a second plane behind the photograph rather than a border.       */
.framed {
  --frame-step: clamp(0.75rem, 0.3rem + 1.2vw, 1.6rem);
  position: relative;
  padding-right: var(--frame-step);
  padding-bottom: var(--frame-step);
}
.framed::before {
  content: "";
  position: absolute;
  inset: var(--frame-step) 0 0 var(--frame-step);
  border: 1px solid var(--gold-24);
  pointer-events: none;
  z-index: 0;
}
.framed > img,
.framed > picture {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: saturate(0.94) contrast(1.02);
}

/* ==========================================================================
   05  Buttons & links
   ========================================================================== */

.btn {
  --btn-fg: var(--cream);
  --btn-bd: var(--hairline-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  min-height: 52px;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  color: var(--btn-fg);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  /* Own stacking context, so the sweep below sits above the button's own
     background and below its label — never behind the section. */
  isolation: isolate;
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

/* Gold sweep that fills from the left on hover */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur) var(--ease-out);
}
.btn > * { position: relative; z-index: 1; }

.btn:hover, .btn:focus-visible {
  color: var(--ink-900);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn:hover::after, .btn:focus-visible::after { transform: scaleX(1); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-900);
}
.btn--gold::after { background: var(--gold-light); }
.btn--gold:hover, .btn--gold:focus-visible { color: var(--ink-900); border-color: var(--gold-light); }

.btn--ghost { --btn-fg: var(--cream); }

.btn--quiet {
  min-height: 44px;
  padding: 0.6rem 1.2rem;
  border-color: var(--hairline);
  font-size: 0.7rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Text link with an animated gold underline -------------------------------- */
.link {
  position: relative;
  display: inline-block;
  color: var(--cream);
  transition: color var(--dur-fast) var(--ease);
}
.link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.18em;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--dur) var(--ease-out);
}
/* Inline links sit inside running text, so they cannot simply grow taller.
   An invisible overlay lifts the tap target to ~44 px without moving a pixel. */
.link::before,
.form__consent a::before,
.breadcrumb a::before,
.prose p a::before {
  content: "";
  position: absolute;
  inset: -0.55rem -0.25rem;
}
.form__consent a,
.breadcrumb a,
.prose p a { position: relative; }

.link:hover, .link:focus-visible { color: var(--gold-light); }
.link:hover::after, .link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.link--gold { color: var(--gold-light); }
.link--gold::after { transform: scaleX(1); transform-origin: left center; opacity: 0.4; }
.link--gold:hover::after { opacity: 1; }

/* Social icon buttons ------------------------------------------------------ */
.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.socials__link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--cream-soft);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.socials__link svg { width: 19px; height: 19px; fill: currentColor; }
.socials__link:hover,
.socials__link:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold-24);
  transform: translateY(-2px);
}
.socials--large .socials__link { width: 56px; height: 56px; border-color: var(--hairline); }
.socials--large .socials__link svg { width: 22px; height: 22px; }

/* ==========================================================================
   06  Intro (VIP reveal) — max 1.2s, opt-in via .has-intro on <html>
   ========================================================================== */

.intro { display: none; }

/* Page is frozen for the (very short) moment the reveal is on screen. */
.has-intro body { overflow: hidden; }

.has-intro .intro {
  display: grid;
  position: fixed;
  inset: 0;
  z-index: 300;
  place-items: center;
  background: var(--ink-900);
  /* 0 → 1200 ms end to end. Never longer. */
  animation: intro-out 300ms var(--ease) 900ms forwards;
}

.intro__stage {
  display: grid;
  place-items: center;
  gap: 1.75rem;
  width: min(72vw, 520px);
}

/* The gold signal: a flat line that briefly modulates, then settles --------- */
.intro__signal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 44px;
  width: 100%;
  opacity: 0;
  animation: intro-signal-in 220ms var(--ease) forwards;
}

.intro__bar {
  width: 2px;
  height: 1px;
  background: var(--gold);
  transform-origin: center;
  animation: intro-bar 620ms var(--ease-out) 180ms both;
}

.intro__logo {
  width: min(60vw, 340px);
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: intro-logo 460ms var(--ease-out) 520ms forwards;
}

@keyframes intro-signal-in {
  from { opacity: 0; transform: scaleX(0.2); }
  to   { opacity: 1; transform: scaleX(1); }
}

/* height is driven by --h, set per bar in the markup-free JS builder */
@keyframes intro-bar {
  0%   { height: 1px; }
  38%  { height: var(--h, 12px); }
  72%  { height: calc(var(--h, 12px) * 0.35); }
  100% { height: 1px; opacity: 0.35; }
}

@keyframes intro-logo {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to   { opacity: 1; clip-path: inset(0 0 0 0); }
}

@keyframes intro-out {
  to { opacity: 0; visibility: hidden; }
}

/* The signal envelope. 25 bars, tallest in the middle, rippling outwards —
   an audio waveform reduced to its quietest possible expression.            */
.intro__bar:nth-child(1),  .intro__bar:nth-child(25) { --h: 7px;  animation-delay: 300ms; }
.intro__bar:nth-child(2),  .intro__bar:nth-child(24) { --h: 11px; animation-delay: 288ms; }
.intro__bar:nth-child(3),  .intro__bar:nth-child(23) { --h: 9px;  animation-delay: 276ms; }
.intro__bar:nth-child(4),  .intro__bar:nth-child(22) { --h: 16px; animation-delay: 264ms; }
.intro__bar:nth-child(5),  .intro__bar:nth-child(21) { --h: 13px; animation-delay: 252ms; }
.intro__bar:nth-child(6),  .intro__bar:nth-child(20) { --h: 22px; animation-delay: 240ms; }
.intro__bar:nth-child(7),  .intro__bar:nth-child(19) { --h: 17px; animation-delay: 228ms; }
.intro__bar:nth-child(8),  .intro__bar:nth-child(18) { --h: 28px; animation-delay: 216ms; }
.intro__bar:nth-child(9),  .intro__bar:nth-child(17) { --h: 21px; animation-delay: 204ms; }
.intro__bar:nth-child(10), .intro__bar:nth-child(16) { --h: 34px; animation-delay: 192ms; }
.intro__bar:nth-child(11), .intro__bar:nth-child(15) { --h: 26px; animation-delay: 186ms; }
.intro__bar:nth-child(12), .intro__bar:nth-child(14) { --h: 40px; animation-delay: 182ms; }
.intro__bar:nth-child(13) { --h: 30px; animation-delay: 180ms; }

/* ==========================================================================
   07  Header / navigation
   ========================================================================== */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-stuck {
  background: rgba(8, 8, 8, 0.80);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: var(--gold-20);
}

/* Header hides on scroll-down, returns on scroll-up */
.site-header.is-hidden { transform: translateY(-100%); }
.site-header { transition-property: background-color, backdrop-filter, border-color, transform; }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 48px; /* the wordmark is only ~16 px tall — keep it tappable */
  transition: opacity var(--dur-fast) var(--ease);
}
.brand:hover { opacity: 0.78; }

/* The header carries the reduced RP mark, not a second copy of the wordmark —
   the hero already owns the full logo. */
.brand img {
  width: clamp(34px, 3vw, 44px);
  height: auto;
}

.primary-nav { display: none; }

@media (min-width: 68rem) {
  .primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 0.3rem + 1.3vw, 2.1rem);
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 0.3rem + 1.4vw, 2.2rem);
}

.nav-link {
  position: relative;
  display: inline-block;
  padding-block: 0.4rem;
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--cream-body);
  transition: color var(--dur-fast) var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--dur) var(--ease-out);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--warm-white); }
.nav-link:hover::after, .nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav-link.is-current { color: var(--gold-light); }
.nav-link.is-current::after { transform: scaleX(1); }

.nav-divider {
  width: 1px;
  height: 22px;
  background: var(--hairline-strong);
}

/* Language switcher -------------------------------------------------------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.lang-switch__link {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  padding-inline: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cream-quiet);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.lang-switch__link:hover,
.lang-switch__link:focus-visible { color: var(--warm-white); border-color: var(--gold-24); }
.lang-switch__link[aria-current="true"] { color: var(--gold-light); border-color: var(--gold-24); }

.header-socials { display: none; }
@media (min-width: 82rem) { .header-socials { display: flex; } }

/* In the header the icons are a footnote, not a feature. */
.header-socials .socials__link { width: 36px; height: 36px; color: var(--cream-quiet); }
.header-socials .socials__link svg { width: 16px; height: 16px; }
.header-socials .socials__link:hover,
.header-socials .socials__link:focus-visible { color: var(--gold-light); }

.header-cta { display: none; }
@media (min-width: 68rem) { .header-cta { display: inline-flex; } }

/* Hamburger ---------------------------------------------------------------- */
.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-right: -0.6rem;
  color: var(--cream);
}
@media (min-width: 68rem) { .nav-toggle { display: none; } }

.nav-toggle__box {
  display: grid;
  gap: 6px;
  width: 26px;
}
.nav-toggle__box span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   08  Mobile navigation (fullscreen)
   ========================================================================== */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: var(--header-h);
  background: var(--ink-900);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--dur) var(--ease), visibility 0s linear var(--dur);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity var(--dur) var(--ease), visibility 0s;
}
@media (min-width: 68rem) { .mobile-nav { display: none; } }

.mobile-nav__body {
  display: grid;
  align-content: center;
  gap: 0.25rem;
  padding: 2rem var(--gutter);
}

.mobile-nav__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.62rem;
  font-size: clamp(1.9rem, 1.1rem + 3.6vw, 2.9rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--warm-white);
  opacity: 0;
  transform: translateY(14px);
  transition: color var(--dur-fast) var(--ease);
}
.mobile-nav.is-open .mobile-nav__link { animation: mnav-in 520ms var(--ease-out) both; }
.mobile-nav.is-open .mobile-nav__link:nth-child(1) { animation-delay: 60ms; }
.mobile-nav.is-open .mobile-nav__link:nth-child(2) { animation-delay: 115ms; }
.mobile-nav.is-open .mobile-nav__link:nth-child(3) { animation-delay: 170ms; }
.mobile-nav.is-open .mobile-nav__link:nth-child(4) { animation-delay: 225ms; }
.mobile-nav.is-open .mobile-nav__link:nth-child(5) { animation-delay: 280ms; }
.mobile-nav__link .num {
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-40);
}
.mobile-nav__link:hover,
.mobile-nav__link:focus-visible,
.mobile-nav__link.is-current { color: var(--gold-light); }

@keyframes mnav-in {
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav__foot {
  display: grid;
  gap: 1.5rem;
  padding: 2rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--hairline);
}
.mobile-nav__foot .btn { width: 100%; }
.mobile-nav__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ==========================================================================
   09  Hero — one continuous photograph, wordmark laid over it

   The picture runs edge to edge; there is no column split and no seam. The
   text layer is a single bottom-left stack in normal flow: wordmark, roles,
   genre, buttons, scroll cue. Nothing is absolutely positioned except the
   picture itself, which is pinned to a box that already has a definite size —
   the one construction both engines resolve identically.
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(2rem, 5vh, 4.5rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-900);
}

/* --- the photograph, full bleed ------------------------------------------ */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Rafael Paulo stands right of centre; 22% from the top keeps his head in
     frame on wide, short windows. */
  object-position: 62% 22%;
}
@media (max-width: 47.99rem) {
  .hero__media img { object-position: 50% 26%; }
}

/* --- gradients: enough to carry the type, never enough to dim his face --- */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(8, 8, 8, 0.58) 0%,
      rgba(8, 8, 8, 0.30) 34%,
      rgba(8, 8, 8, 0.10) 52%,
      rgba(8, 8, 8, 0.02) 66%,
      rgba(8, 8, 8, 0.00) 80%),
    linear-gradient(to top,
      rgba(8, 8, 8, 0.90) 0%,
      rgba(8, 8, 8, 0.58) 18%,
      rgba(8, 8, 8, 0.20) 36%,
      rgba(8, 8, 8, 0.00) 56%),
    linear-gradient(to bottom,
      rgba(8, 8, 8, 0.48) 0%,
      rgba(8, 8, 8, 0.00) 18%);
}
@media (max-width: 47.99rem) {
  .hero__scrim {
    background:
      linear-gradient(to top,
        rgba(8, 8, 8, 0.93) 0%,
        rgba(8, 8, 8, 0.74) 21%,
        rgba(8, 8, 8, 0.30) 42%,
        rgba(8, 8, 8, 0.00) 62%),
      linear-gradient(to bottom,
        rgba(8, 8, 8, 0.52) 0%,
        rgba(8, 8, 8, 0.00) 20%);
  }
}

/* --- the text layer: one bottom-left stack, plain flow -------------------- */
.hero__inner {
  display: grid;
  justify-items: start;
  gap: clamp(0.7rem, 0.4rem + 0.9vw, 1.35rem);
  width: 100%;
  max-width: 1900px;
  margin-inline: 0;            /* left aligned, never centred away from the edge */
  padding-inline: var(--gutter);
}

.hero__logo {
  width: min(88vw, 26rem);
  margin: 0;
  line-height: 0;
}
.hero__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 48rem) { .hero__logo { width: min(82vw, 1100px); } }
@media (min-width: 75rem) { .hero__logo { width: min(78vw, 1500px); } }

.hero__roles {
  font-size: clamp(0.66rem, 0.58rem + 0.34vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
}

.hero__genre {
  font-size: clamp(0.64rem, 0.56rem + 0.3vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(0.35rem, 1vh, 0.9rem);
}
.hero__actions .btn { min-width: 10.5rem; }
@media (max-width: 29.99rem) {
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 10rem; min-width: 0; }
}

/* --- scroll cue ----------------------------------------------------------- */
.hero__scroll {
  display: none;
  align-items: center;
  gap: 0.7rem;
  margin-top: clamp(0.75rem, 2vh, 1.6rem);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-quiet);
}
@media (min-width: 48rem) and (min-height: 44rem) { .hero__scroll { display: flex; } }
.hero__scroll .tick {
  position: relative;
  width: 1px;
  height: 30px;
  background: var(--hairline-strong);
  overflow: hidden;
}
.hero__scroll .tick::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 11px;
  background: var(--gold);
  animation: scroll-tick 2.4s var(--ease) infinite;
}
@keyframes scroll-tick {
  0%   { transform: translateY(-12px); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(30px); opacity: 0; }
}

/* --- entrance: opacity only, so nothing can shift the layout -------------- */
@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero__logo,
.hero__roles,
.hero__genre,
.hero__actions { opacity: 0; }
.hero__logo    { animation: hero-fade 600ms var(--ease-out) 120ms forwards; }
.hero__roles   { animation: hero-fade 500ms var(--ease-out) 320ms forwards; }
.hero__genre   { animation: hero-fade 500ms var(--ease-out) 400ms forwards; }
.hero__actions { animation: hero-fade 500ms var(--ease-out) 480ms forwards; }

/* ==========================================================================
   10  Platform tiles

   Five campaign cards instead of a release grid. Dark warm graphite, one large
   platform mark, name and call to action. The brand gold is what ties them
   together; each platform's own colour appears only as a hairline and a very
   quiet wash on hover, never as a filled surface.
   ========================================================================== */

.platforms {
  display: grid;
  gap: clamp(0.85rem, 0.4rem + 1.4vw, 1.5rem);
  grid-template-columns: 1fr;
}

@media (min-width: 34rem) {
  .platforms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.platform {
  --accent: var(--gold);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: clamp(11rem, 9rem + 9vw, 15rem);
  padding: clamp(1.2rem, 0.8rem + 1.4vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--ink-700);
  color: var(--cream);
  cursor: pointer;
  transition: transform var(--dur) var(--ease-out),
              border-color var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
}

/* Spotify and YouTube carry the section. On desktop all five cards share one
   row, so their weight comes from surface and hairline only — never from size.
   Below the five-column breakpoint they may still take more height. */
.platform--lead {
  background: var(--ink-800);
  border-color: var(--gold-14);
}
@media (max-width: 61.999rem) {
  .platform--lead { min-height: clamp(13rem, 10rem + 12vw, 19rem); }
}

/* Desktop: five equal cards in one row. minmax(0, 1fr) instead of the implicit
   minmax(auto, 1fr) so a wide child can never push a track past its share.

   This block must stay *after* the .platform and .platform--lead declarations
   above: media queries add no specificity, so an equal-specificity rule later
   in the file would otherwise win and the min-height would beat the ratio. */
@media (min-width: 62rem) {
  .platforms {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
  }
  .platform,
  .platform--lead {
    min-width: 0;
    min-height: 0;          /* the ratio governs the box from here up */
    aspect-ratio: 4 / 5;
  }
}

/* A very quiet diagonal sheen — depth without a texture image. */
.platform__sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 82% 6%, rgba(238, 233, 223, 0.05) 0%, rgba(238, 233, 223, 0) 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 42%);
  opacity: 1;
  transition: opacity var(--dur) var(--ease);
}

/* The platform's own colour: a hairline at the foot, nothing more. */
.platform::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur) var(--ease-out);
}

.platform__icon {
  position: relative;
  display: block;
  color: var(--cream);
  transition: color var(--dur-fast) var(--ease), transform var(--dur) var(--ease-out);
}
/* Hard size lock.

   An <svg> that carries only a viewBox has no intrinsic pixel size: with
   width:auto it resolves to 100% of its containing block, which is how the
   Spotify mark could grow to fill the whole card. The markup now also carries
   width="52" height="52" attributes, so the icons stay 52px even if this
   stylesheet is missing or stale. These four properties are the belt to that
   pair of braces — max-* caps the box, flex stops any flex context from
   growing or shrinking it, and no size is inherited from the card. All five
   platforms are deliberately identical; nothing overrides this per platform. */
.platform__icon,
.platform__icon svg,
.platform-card svg,
.platform-card .platform-icon {
  width: 52px;
  height: 52px;
  max-width: 52px;
  max-height: 52px;
  flex: 0 0 52px;
  display: block;
}
.platform__icon svg { fill: currentColor; }

.platform__foot {
  position: relative;
  display: grid;
  gap: 0.3rem;
}

.platform__name {
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--warm-white);
  transition: color var(--dur-fast) var(--ease);
}
.platform--lead .platform__name {
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.7rem);
}

.platform__cta {
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--dur-fast) var(--ease);
}

/* --- hover / focus: restrained on purpose -------------------------------- */
.platform:hover,
.platform:focus-visible {
  transform: scale(1.02);
  border-color: var(--gold-24);
  background: var(--ink-800);
}
.platform--lead:hover,
.platform--lead:focus-visible { background: #1a1a19; }

.platform:hover::after,
.platform:focus-visible::after { transform: scaleX(1); }

.platform:hover .platform__icon,
.platform:focus-visible .platform__icon {
  color: var(--gold-light);
  transform: scale(1.06);
}
.platform:hover .platform__name,
.platform:focus-visible .platform__name { color: var(--gold-light); }

.platform:hover .platform__sheen,
.platform:focus-visible .platform__sheen { opacity: 0.65; }

/* Each platform's accent, used only by the hairline and a faint wash. */
.platform--spotify   { --accent: #1db954; }
.platform--youtube   { --accent: #ff3b30; }
.platform--tiktok    { --accent: #25f4ee; }
.platform--instagram { --accent: #d6249f; }
.platform--facebook  { --accent: #1877f2; }

.platform--spotify:hover   { box-shadow: inset 0 -60px 60px -60px rgba(29, 185, 84, 0.28); }
.platform--youtube:hover   { box-shadow: inset 0 -60px 60px -60px rgba(255, 59, 48, 0.24); }
.platform--tiktok:hover    { box-shadow: inset 0 -60px 60px -60px rgba(37, 244, 238, 0.18); }
.platform--facebook:hover  { box-shadow: inset 0 -60px 60px -60px rgba(24, 119, 242, 0.22); }
.platform--instagram:hover { box-shadow: inset 0 -60px 60px -60px rgba(214, 36, 159, 0.20); }

/* Instagram has no single colour — its hairline carries the real gradient. */
.platform--instagram::after {
  background: linear-gradient(90deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}

@media (prefers-reduced-motion: reduce) {
  .platform,
  .platform__icon { transition: none; }
  .platform:hover,
  .platform:focus-visible { transform: none; }
  .platform:hover .platform__icon { transform: none; }
}

/* ==========================================================================
   12  About the artist
   ========================================================================== */

.about__portrait { max-width: 33rem; }
@media (min-width: 62rem) { .about__portrait { margin-inline-start: auto; } }

.facts {
  display: grid;
  gap: 0;
  margin-top: 0.5rem;
  border-top: 1px solid var(--hairline);
}
@media (min-width: 32rem) {
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.fact {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 32rem) {
  .fact:nth-child(odd) { padding-right: 1.5rem; }
  .fact:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--hairline); }
}
.fact__value {
  display: block;
  font-size: clamp(1.35rem, 1rem + 1.3vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--warm-white);
}
.fact__label {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   13  Production

   The disciplines line replaces what used to be four description blocks in
   Production and four more in Mastering. Same words, one quiet line: the
   page states the range without reading like a service catalogue.
   ========================================================================== */

.disciplines {
  /* No measure limit: this is a single line of terms, not running text, and
     it should hold on one row wherever the shell is wide enough. */
  font-size: var(--t-small);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.disciplines span {
  margin: 0 0.6rem;
  color: var(--gold-40);
}

/* ==========================================================================
   14  DJ & Live
   ========================================================================== */

.booking {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.booking__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.booking__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* The live photograph puts Rafael slightly left of centre with his head near
     the top edge. On wide viewports the crop is vertical, so it is pulled up;
     on narrow ones it is horizontal, so it is pulled left onto him. */
  object-position: 50% 22%;
  /* Dimming eased in two steps, 0.55 → 0.62 → 0.70, so the room, the desk and
     the crowd read as a live shot rather than a texture. Saturation is
     untouched — the section keeps its restrained colour, only less suppressed. */
  filter: saturate(0.7) brightness(0.7);
}
@media (max-width: 47.999rem) {
  .booking__bg img { object-position: 34% 30%; }
}
.booking__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Same three colours and the same angle as before — only the two alpha
     values are eased back, so more of the photograph survives towards the
     right where the crowd is. The first stop stays fully opaque: that is the
     band the headline and the body copy sit on, and it carries their contrast. */
  background:
    linear-gradient(100deg, var(--ink-900) 8%, rgba(7, 7, 7, 0.68) 42%, rgba(16, 25, 35, 0.48) 100%);
}

.venues {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 46rem;
}
.venue {
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-body);
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.venue:hover { border-color: var(--gold-40); color: var(--warm-white); }

/* ==========================================================================
   15  Mastering Best Audio
   ========================================================================== */

.mba-lockup {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.5rem + 1.6vw, 1.75rem);
}
.mba-lockup img {
  width: clamp(72px, 8vw, 104px);
  height: auto;
  border: 1px solid var(--gold-24);
}
.mba-lockup__text { display: grid; gap: 0.3rem; }
.mba-lockup__name {
  font-size: clamp(1.35rem, 1rem + 1.5vw, 2.15rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--warm-white);
}
.mba-lockup__by {
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.mba-claim {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 3.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--gold-light);
}

.mba-detail {
  display: grid;
  gap: clamp(0.75rem, 0.4rem + 1vw, 1.25rem);
}
@media (min-width: 30rem) { .mba-detail { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.mba-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--hairline);
  filter: saturate(0.8) brightness(0.82);
  transition: filter var(--dur) var(--ease);
}
.mba-detail img:hover { filter: saturate(0.95) brightness(1); }

/* ==========================================================================
   19  Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 1rem + 5vw, 5rem);
}
@media (min-width: 68rem) {
  .contact-grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
}

.contact-channels {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.channel {
  display: grid;
  gap: 0.4rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--hairline);
}
.channel__name {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.channel__text { font-size: var(--t-small); color: var(--cream-soft); }

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.7rem);
  font-weight: 300;
  letter-spacing: -0.012em;
  color: var(--warm-white);
}

/* Form --------------------------------------------------------------------- */
.form { display: grid; gap: 1.35rem; }
.form__row { display: grid; gap: 1.35rem; }
@media (min-width: 40rem) { .form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.field { display: grid; gap: 0.5rem; }

.field__label {
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.field__label .req { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  background: var(--ink-800);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  color: var(--warm-white);
  font-size: var(--t-body);
  transition: border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.field textarea { min-height: 168px; resize: vertical; line-height: 1.6; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(238, 233, 223, 0.44); }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--gold-24); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ink-700);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.75rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 1px), calc(100% - 14px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field select option { background: var(--ink-800); color: var(--warm-white); }

.field__error {
  display: none;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--alert);
}
.field.has-error .field__error { display: block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--alert); }

/* Honeypot — hidden from people, visible to naive bots */
.field--trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--cream-soft);
}
.form__consent input[type="checkbox"] {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  accent-color: var(--gold);
}
.form__consent a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

.form__status {
  display: none;
  padding: 1rem 1.15rem;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  font-size: var(--t-small);
  line-height: 1.6;
}
.form__status.is-visible { display: block; }
.form__status.is-ok { border-color: var(--gold-40); color: var(--cream); background: rgba(199, 166, 100, 0.06); }
.form__status.is-error { border-color: var(--alert); color: #e8b8b4; background: rgba(184, 97, 92, 0.12); }

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.form__hint { font-size: 0.76rem; color: var(--cream-quiet); }

/* ==========================================================================
   20  Footer
   ========================================================================== */

.site-footer {
  padding-top: clamp(3.5rem, 2rem + 5vw, 7rem);
  padding-bottom: clamp(2rem, 1.2rem + 2vw, 3rem);
  background: var(--ink-850);
  border-top: 1px solid var(--gold-14);
}

.footer-top {
  display: grid;
  gap: clamp(2.5rem, 1.2rem + 4vw, 4.5rem);
}
@media (min-width: 56rem) {
  .footer-top { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr); }
}

.footer-brand { display: grid; gap: 1.25rem; align-content: start; }
.footer-brand img { width: clamp(180px, 20vw, 250px); }
.footer-brand__lines {
  display: grid;
  gap: 0.3rem;
  font-size: var(--t-small);
}
.footer-brand__name { color: var(--warm-white); font-weight: 600; letter-spacing: 0.02em; }
.footer-brand__role { color: var(--cream-soft); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.72rem; }
.footer-brand__genre { color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.7rem; font-weight: 600; }

.footer-col__title {
  margin-bottom: 1.1rem;
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-links { display: grid; gap: 0.1rem; }
.footer-links a {
  display: inline-block;
  padding-block: 0.55rem;
  font-size: var(--t-small);
  color: var(--cream-soft);
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.footer-links a:hover, .footer-links a:focus-visible { color: var(--gold-light); transform: translateX(3px); }

.footer-sign {
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  padding-top: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.footer-sign__line {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 0.9rem + 0.9vw, 1.6rem);
  font-style: italic;
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.75rem, 1rem + 2vw, 2.75rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.76rem;
  color: var(--cream-quiet);
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
  margin-block: -0.6rem;
}
.footer-bottom a {
  display: inline-block;
  padding-block: 0.65rem;
  transition: color var(--dur-fast) var(--ease);
}
.footer-bottom a:hover, .footer-bottom a:focus-visible { color: var(--gold-light); }

/* ==========================================================================
   21  Sub pages (music index, legal, 404)
   ========================================================================== */

.page-head {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3.5rem, 2rem + 6vw, 8rem));
  padding-bottom: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.page-head__bg { position: absolute; inset: 0; z-index: -2; }
.page-head__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-head__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, var(--ink-900) 4%, rgba(7, 7, 7, 0.86) 55%, rgba(7, 7, 7, 0.78) 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-quiet);
}
.breadcrumb a { transition: color var(--dur-fast) var(--ease); }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--gold-light); }
.breadcrumb li:not(:last-child)::after { content: " / "; color: var(--gold-40); margin-left: 0.55rem; }
.breadcrumb ol, .breadcrumb li { display: contents; }

/* Long-form prose for imprint / privacy ----------------------------------- */
.prose { max-width: 74ch; }
.prose h2 {
  margin-top: clamp(2.25rem, 1.5rem + 2vw, 3.25rem);
  margin-bottom: 0.85rem;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.008em;
  color: var(--warm-white);
}
.prose h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
}
.prose p, .prose ul { color: var(--cream-body); }
.prose p + p, .prose ul + p, .prose p + ul { margin-top: 1rem; }
.prose ul { display: grid; gap: 0.5rem; padding-left: 0; }
.prose ul li { display: flex; gap: 0.8rem; }
.prose ul li::before {
  content: "";
  flex: none;
  width: 12px; height: 1px;
  margin-top: 0.82em;
  background: var(--gold-40);
}
.prose a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--warm-white); }
.prose address { font-style: normal; }

/* Editorial TODO marker for legally required data the owner must supply ---- */
.todo {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  background: rgba(184, 97, 92, 0.16);
  border: 1px solid rgba(184, 97, 92, 0.5);
  border-radius: var(--radius);
  color: #e8b8b4;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.notice {
  padding: 1.15rem 1.35rem;
  margin-bottom: 2rem;
  border: 1px solid var(--gold-24);
  border-left-width: 3px;
  border-radius: var(--radius);
  background: rgba(199, 166, 100, 0.05);
  font-size: var(--t-small);
  color: var(--cream-body);
}


.error-page {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: calc(var(--header-h) + 3rem) var(--gutter) 4rem;
  text-align: center;
}
.error-page__code {
  font-size: clamp(5rem, 2rem + 14vw, 12rem);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-40);
}

/* ==========================================================================
   22  Motion, reveals, grain
   ========================================================================== */

/* Scroll reveal — JS adds .is-in once the element enters the viewport ------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Without JS nothing may stay invisible */
.no-js .reveal { opacity: 1; transform: none; }

/* Fine film grain over the whole page — texture, never noise -------------- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 150;
  pointer-events: none;
  opacity: 0.045;
  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='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 7s steps(6) infinite;
}
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  16%  { transform: translate(-3%, -2%); }
  33%  { transform: translate(2%, -3%); }
  50%  { transform: translate(-2%, 3%); }
  66%  { transform: translate(3%, 2%); }
  83%  { transform: translate(-3%, 1%); }
}

/* ==========================================================================
   23  Accessibility & print
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  /* The hero stack starts at opacity 0 and is revealed by an animation.
     With motion switched off it must simply be there. */
  .hero__logo,
  .hero__roles,
  .hero__genre,
  .hero__actions { opacity: 1; animation: none; }
  .grain { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .has-intro .intro { display: none; }
  .mobile-nav__link { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root {
    --cream-quiet: rgba(238, 233, 223, 0.72);
    --cream-soft: rgba(238, 233, 223, 0.85);
    --cream-body: rgba(238, 233, 223, 0.95);
    --hairline: rgba(238, 233, 223, 0.32);
    --hairline-strong: rgba(238, 233, 223, 0.45);
  }
  .grain { display: none; }
}

@media print {
  .site-header, .mobile-nav, .grain, .intro,
  .hero__media, .hero__scrim, .booking__bg, .booking__scrim { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .h1, .h2, .h3, .display { color: #000; }
  a { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
