/* =====================================================================
   Jazz After Work — refonte
   Direction : élégant feutré, club de jazz parisien
   Palette : noir profond, or chaud, ivoire
   ===================================================================== */

:root {
  /* Couleurs */
  --ink-900: #0a0807;        /* noir profond chaud */
  --ink-800: #110e0a;
  --ink-700: #1a1611;
  --ink-600: #221d16;
  --ink-500: #2c251c;
  --line:    #2a2218;

  --cream-50:  #f6efdd;
  --cream-100: #ecdfc1;
  --cream-200: #d8c89f;
  --cream-300: #a89678;
  --cream-400: #6f6452;

  --gold-100: #e7c98a;
  --gold-200: #d4ad65;
  --gold-300: #c4974a;       /* primaire */
  --gold-400: #a87a32;
  --gold-500: #8a5f22;

  --rust:    #b15a2a;
  --burgundy:#5a1f1f;

  /* Type */
  --f-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --f-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Échelle */
  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius: 2px;

  --shadow-soft: 0 30px 60px -30px rgba(0,0,0,.7);
  --shadow-card: 0 1px 0 rgba(255,255,255,.04), 0 30px 60px -40px rgba(0,0,0,.8);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--ink-900);
  color: var(--cream-50);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  padding-bottom: 96px; /* place pour lecteur sticky */
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(196,151,74,.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(196,151,74,.04), transparent 70%);
}

img { max-width: 100%; display: block; }

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

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

/* ----- Typo ----- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--cream-50);
}
h1 { font-size: clamp(48px, 7vw, 104px); font-weight: 400; }
h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 400; }
h3 { font-size: clamp(24px, 2.4vw, 32px); }
h4 { font-size: clamp(18px, 1.6vw, 22px); font-family: var(--f-body); font-weight: 600; letter-spacing: .02em; }

p { margin: 0; }
p + p { margin-top: 1em; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold-300);
}
.eyebrow.no-bar::before { display: none; }

.serif-italic { font-family: var(--f-display); font-style: italic; font-weight: 400; }

.lead {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.45;
  color: var(--cream-100);
  font-weight: 400;
  letter-spacing: 0;
  max-width: 60ch;
}

/* ----- Layout primitives ----- */
.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(80px, 10vw, 140px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.divider { height: 1px; background: var(--line); margin-block: 0; }

.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 860px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

/* ----- Header ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10,8,7,.92), rgba(10,8,7,.72));
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--cream-50);
}
.brand__mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-200), var(--gold-400) 70%, var(--gold-500));
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.4), 0 1px 2px rgba(255,255,255,.06);
  flex: none;
}
.brand__mark::after {
  content: "";
  position: absolute; inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.4), transparent 60%);
  mix-blend-mode: screen;
}
.brand__mark::before {
  content: "";
  position: absolute; inset: 12px;
  border-radius: 50%;
  background: var(--ink-900);
}
.brand small {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-300);
  margin-top: 2px;
}
.brand__text { line-height: 1; }

.nav {
  display: flex; align-items: center; gap: 28px;
}
.nav a {
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--cream-200);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a:hover, .nav a.is-active { color: var(--cream-50); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold-300);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream-100);
  cursor: pointer;
  border-radius: var(--radius);
  align-items: center; justify-content: center;
}
.btn-burger span {
  display: block; width: 18px; height: 1px;
  background: currentColor;
  position: relative;
}
.btn-burger span::before, .btn-burger span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px; background: currentColor;
}
.btn-burger span::before { top: -6px; }
.btn-burger span::after { top: 6px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .btn-burger { display: inline-flex; }
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--ink-900);
  z-index: 80;
  display: flex; flex-direction: column;
  padding: 24px var(--pad-x);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav__close {
  background: transparent; border: 1px solid var(--line); color: var(--cream-100);
  width: 40px; height: 40px; cursor: pointer; font-size: 18px;
}
.mobile-nav__list {
  list-style: none; padding: 0; margin: auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-nav__list a {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--cream-50);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--gold-300);
  color: var(--ink-900);
  background: var(--gold-300);
  cursor: pointer;
  border-radius: var(--radius);
  transition: all .2s ease;
  position: relative;
}
.btn:hover { background: var(--gold-200); border-color: var(--gold-200); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--cream-50);
  border-color: var(--line);
}
.btn--ghost:hover { background: transparent; border-color: var(--gold-300); color: var(--gold-100); }
.btn--small { padding: 10px 16px; font-size: 11px; }
.btn .arrow { font-family: var(--f-mono); font-weight: 400; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 92vh;
  padding-block: clamp(80px, 10vw, 140px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 70% 40%, rgba(196,151,74,.18), transparent 60%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .25; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero h1 {
  font-weight: 400;
  max-width: 16ch;
}
.hero h1 .accent {
  color: var(--gold-200);
  font-style: italic;
  font-weight: 400;
}
.hero__meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero__meta-item {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 140px;
}
.hero__meta-item .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--cream-300); }
.hero__meta-item .v { font-family: var(--f-display); font-size: 22px; color: var(--cream-50); }

.hero__visual {
  position: relative;
  height: 100%;
  min-height: 480px;
}
.hero__portrait {
  position: absolute;
  width: 78%;
  aspect-ratio: 3/4;
  background: var(--ink-700);
  overflow: hidden;
  filter: grayscale(.2) contrast(1.05);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero__portrait.p1 { top: 0; left: 0; }
.hero__portrait.p2 { bottom: 0; right: 0; width: 55%; aspect-ratio: 4/5; }
.hero__portrait .label {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-50);
  background: rgba(10,8,7,.6); padding: 6px 10px; backdrop-filter: blur(6px);
}

@media (max-width: 860px) {
  .hero__visual { display: none; }
}

/* ----- Marquee ----- */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding-block: 22px;
  background: var(--ink-800);
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 50s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--cream-200);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee__track .dot { color: var(--gold-300); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----- Cards ----- */
.card {
  background: var(--ink-800);
  border: 1px solid var(--line);
  padding: clamp(20px, 2vw, 32px);
  border-radius: var(--radius);
  position: relative;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--cream-400); }
.card__num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--gold-300);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Repertoire chip */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--cream-200);
  background: var(--ink-800);
}
.chip.is-active { color: var(--ink-900); background: var(--gold-300); border-color: var(--gold-300); }

/* ----- Repertoire list ----- */
.tracklist { display: flex; flex-direction: column; }
.track {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-inline .2s, background .2s;
}
.track:hover { padding-inline: 8px; background: linear-gradient(90deg, transparent, rgba(196,151,74,.05), transparent); }
.track__num { font-family: var(--f-mono); font-size: 12px; color: var(--cream-400); }
.track__title { font-family: var(--f-display); font-size: 22px; color: var(--cream-50); }
.track__artist { font-size: 12px; color: var(--cream-300); margin-top: 2px; letter-spacing: .04em; }
.track__tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; color: var(--cream-300); text-transform: uppercase; }
.track__play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink-700);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-100);
  transition: all .2s;
}
.track:hover .track__play { background: var(--gold-300); color: var(--ink-900); border-color: var(--gold-300); }

@media (max-width: 640px) {
  .track { grid-template-columns: 32px 1fr auto; }
  .track__tag { display: none; }
}

/* ----- Gallery ----- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--ink-700);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item.size-l { grid-column: span 6; aspect-ratio: 4/3; }
.gallery__item.size-m { grid-column: span 4; aspect-ratio: 1; }
.gallery__item.size-s { grid-column: span 3; aspect-ratio: 4/5; }
.gallery__item.size-w { grid-column: span 8; aspect-ratio: 16/10; }
.gallery__item.size-t { grid-column: span 4; aspect-ratio: 3/4; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery__item { grid-column: span 1 !important; aspect-ratio: 4/3 !important; }
}

/* ----- Lightbox ----- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5,4,3,.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 80vh; object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream-50);
  width: 48px; height: 48px;
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 14px;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-200);
}

/* ----- Sticky audio player ----- */
.player {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 70;
  background: linear-gradient(180deg, rgba(15,12,9,.95), rgba(10,8,7,.99));
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  color: var(--cream-50);
}
.player__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.player__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-300);
  border: none;
  color: var(--ink-900);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s;
}
.player__btn:hover { transform: scale(1.05); }
.player__btn svg { width: 16px; height: 16px; }
.player__nav {
  background: transparent; border: none;
  color: var(--cream-300); cursor: pointer;
  width: 32px; height: 32px;
  font-family: var(--f-mono);
}
.player__nav:hover { color: var(--cream-50); }
.player__center {
  display: flex; flex-direction: column; gap: 6px;
  min-width: 0;
}
.player__meta {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 13px;
  white-space: nowrap; overflow: hidden;
}
.player__title {
  font-family: var(--f-display); font-size: 18px; color: var(--cream-50);
  overflow: hidden; text-overflow: ellipsis;
}
.player__sub {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-300);
}
.player__bar {
  height: 3px;
  background: var(--ink-700);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.player__bar-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-100));
  width: 0%;
  transition: width .2s linear;
}
.player__times {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 10px; color: var(--cream-400);
  letter-spacing: .1em;
}
.player__right { display: flex; align-items: center; gap: 12px; }
.player__sc {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-300);
  display: inline-flex; align-items: center; gap: 8px;
}
.player__sc::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 8px var(--gold-300);
  animation: pulse 2s ease-in-out infinite;
}
.player.is-paused .player__sc::before { animation: none; opacity: .4; }
@keyframes pulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

@media (max-width: 720px) {
  .player__inner { grid-template-columns: auto 1fr; gap: 12px; padding-block: 10px; }
  .player__right { display: none; }
  .player__title { font-size: 16px; }
}

/* ----- Forms ----- */
.field {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-300);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--cream-50);
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--gold-300);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select option { background: var(--ink-800); }

/* ----- Footer ----- */
.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  background: var(--ink-800);
  padding: 64px var(--pad-x) 32px;
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.site-footer h5 {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: var(--cream-200); font-size: 14px; transition: color .2s; }
.site-footer a:hover { color: var(--cream-50); }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em;
  color: var(--cream-400);
}
@media (max-width: 640px) {
  .site-footer__bottom { flex-direction: column; gap: 12px; }
}

/* ----- Reveal animations ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-line {
  position: relative;
  overflow: hidden;
}
.reveal-line > * {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.2,.6,.2,1);
}
.reveal-line.is-in > * {
  transform: translateY(0);
}

/* ----- Config formula ----- */
.config {
  background: linear-gradient(180deg, var(--ink-800), var(--ink-900));
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 48px);
}
.config__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.config__group { margin-bottom: 28px; }
.config__group-label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream-300);
  margin-bottom: 12px;
}
.config__options { display: flex; gap: 8px; flex-wrap: wrap; }
.config__opt {
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: var(--ink-700);
  color: var(--cream-100);
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: .03em;
  transition: all .2s;
  border-radius: var(--radius);
}
.config__opt:hover { border-color: var(--gold-400); color: var(--cream-50); }
.config__opt.is-selected {
  background: var(--gold-300);
  color: var(--ink-900);
  border-color: var(--gold-300);
}
.config__opt small { display: block; font-size: 10px; opacity: .75; margin-top: 2px; }

.config__summary {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
@media (max-width: 640px) { .config__summary { grid-template-columns: 1fr; } }
.config__price {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--cream-50);
}
.config__price small {
  display: block;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream-300);
  margin-bottom: 4px;
}

/* ----- Quotes / Testimonials ----- */
.quote {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-style: italic;
  line-height: 1.35;
  color: var(--cream-50);
  max-width: 32ch;
}
.quote::before {
  content: "“";
  display: block;
  font-size: 5em;
  line-height: .5;
  color: var(--gold-300);
  margin-bottom: 24px;
}
.quote__author {
  margin-top: 24px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream-300);
  font-style: normal;
}

/* ----- References scroller ----- */
.refs {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.refs__item {
  flex: 1 0 25%;
  min-width: 200px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--cream-100);
  display: flex; align-items: center;
  min-height: 100px;
  transition: background .2s, color .2s;
}
.refs__item:hover { background: var(--ink-700); color: var(--cream-50); }
.refs__item .star { color: var(--gold-300); margin-right: 12px; font-size: 12px; }
@media (max-width: 640px) { .refs__item { flex: 1 0 50%; } }

/* ----- Schema.org card ----- */
.schema-card {
  background: var(--ink-800);
  border: 1px dashed var(--gold-500);
  padding: 24px;
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--cream-200);
  border-radius: var(--radius);
  white-space: pre-wrap;
  overflow: auto;
  max-height: 320px;
}
.schema-card .k { color: var(--gold-200); }
.schema-card .s { color: var(--cream-100); }
.schema-card .n { color: var(--rust); }

/* ----- Video grid ----- */
.video-card {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink-700);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: .75; transition: opacity .3s, transform .6s; }
.video-card:hover img { opacity: .95; transform: scale(1.03); }
.video-card__play {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(10,8,7,.65); border: 1px solid var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-200);
  backdrop-filter: blur(4px);
  transition: all .2s;
}
.video-card:hover .video-card__play { background: var(--gold-300); color: var(--ink-900); }
.video-card__info {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; justify-content: space-between; align-items: end;
  color: var(--cream-50);
}
.video-card__title { font-family: var(--f-display); font-size: 22px; }
.video-card__meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-200); }

/* ----- Hero secondary (for SEO pages) ----- */
.hero-sec {
  padding-block: clamp(120px, 14vw, 180px) clamp(60px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero-sec__crumbs {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream-300);
  margin-bottom: 32px;
}
.hero-sec__crumbs a { color: var(--cream-300); }
.hero-sec__crumbs a:hover { color: var(--gold-300); }

/* ----- FAQ ----- */
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: clamp(20px, 1.9vw, 26px);
  color: var(--cream-50);
}
.faq__q::after {
  content: "+";
  font-family: var(--f-mono);
  color: var(--gold-300);
  font-size: 24px;
  transition: transform .3s;
}
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
  color: var(--cream-200);
  font-size: 15px;
  line-height: 1.7;
}
.faq__item.is-open .faq__a { max-height: 400px; padding-top: 16px; }

/* ----- Steps ----- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step__num {
  font-family: var(--f-display); font-size: 56px; color: var(--gold-300);
  line-height: 1; margin-bottom: 16px;
}
.step__title { font-family: var(--f-display); font-size: 22px; color: var(--cream-50); margin-bottom: 8px; }
.step__desc { color: var(--cream-200); font-size: 14px; line-height: 1.6; }

/* ----- Misc ----- */
.muted { color: var(--cream-300); }
.gold { color: var(--gold-200); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-gap-12 { gap: 12px; }
.flex-gap-24 { gap: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Section title block */
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; } }
.section-head__sub { color: var(--cream-200); font-size: 15px; max-width: 50ch; }
