/*
Purpose: Shared Dual Ink design system — nav, footer, buttons, sections, cards,
         portfolio filter, booking stepper, FAQ accordion, sticky CTA, motion.
         Built strictly from the existing brand tokens (see DESIGN-SYSTEM.md).
Last modified: 2026-06-22
Change summary: Removes the unreachable .booking-page refit block; booking
                pages use the verified .di-page shell.
*/

:root {
  --void: #050505;
  --ink: #11100f;
  --graphite: #282725;
  --paper: #f3f0ea;
  --cream: #e4d08a;
  --gold: #c9a13b;
  --gold-bright: #e3c365;
  --gold-deep: #a87f24;
  --gold-on-light: #8a6618; /* H5: AA-compliant gold for light surfaces (gold-deep was 3.22:1) */
  --line: rgba(243, 240, 234, 0.18);
  --line-strong: rgba(243, 240, 234, 0.42); /* L1: bump from .34 for field borders / inactive stepper */
  /* bold ink-palette accents (small pops) */
  --a-pink: #ff2d6b; --a-teal: #18c2b0; --a-amber: #ffc21e; --a-blue: #3a86ff; --a-violet: #7b3ff2; --a-lime: #a3e635;
  --accent-rule: linear-gradient(90deg, var(--gold) 0%, var(--a-pink) 26%, var(--a-violet) 46%, var(--a-blue) 64%, var(--a-teal) 82%, var(--gold) 100%);
  --ease-heavy: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1180px, 100% - clamp(32px, 8vw, 120px));
  --space-section: clamp(64px, 9vw, 150px);
  --mono: "Courier New", monospace;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

/* M6: keep focused targets clear of the sticky mobile CTA bar */
html { scroll-padding-bottom: 72px; }

/* base — only applied on the new pages that load site.css as their primary sheet.
   (the home keeps style.css; these rules are scoped not to fight it) */
.di-page {
  margin: 0;
  min-width: 320px;
  background: var(--graphite);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.di-page * { box-sizing: border-box; }
.di-page a:not([class]) { color: inherit; }
/* buttons must keep their own colour even as links inside .di-page */
.di-page a.btn, .btn { color: var(--ink); }
.di-page a.btn--ghost, .btn--ghost { color: var(--paper); }
.di-page a.btn--on-light, .btn--on-light { color: var(--paper); }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--paper); color: var(--ink); padding: 10px 16px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- atmosphere (reused from home identity) ---------- */
.di-grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.06;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.06), transparent 34%),
    radial-gradient(circle at 72% 88%, rgba(0,0,0,0.24), transparent 40%);
  mix-blend-mode: overlay;
}

/* ---------- site header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: clamp(12px, 1.6vw, 20px) clamp(16px, 4vw, 54px);
  background: var(--graphite);
  border-bottom: 1px solid var(--line);
}
.site-header__brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--paper);
  font-family: var(--sans); font-weight: 200; letter-spacing: 0.26em;
  text-transform: uppercase; font-size: clamp(14px, 1.4vw, 18px);
}
.site-header__brand img, .brand-logo { height: 34px; width: auto; flex: 0 0 auto; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.site-nav a {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; color: rgba(243,240,234,0.78);
  padding: 6px 0; position: relative;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: var(--paper); }
.site-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
}
.nav-toggle { display: none; }

/* mobile nav */
@media (max-width: 880px) {
  /* backdrop-filter would trap the fixed drawer inside the header's box — drop it on mobile */
  .site-header { backdrop-filter: none; background: var(--graphite); }
  /* toggle floats above the open drawer (z70) so the X is visible to close */
  .nav-toggle {
    position: relative; z-index: 80; padding: 0;
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: none; border: 1px solid var(--line-strong);
    color: var(--paper); cursor: pointer; border-radius: 0;
    transition: background 0.25s ease, border-color 0.25s ease;
  }
  .nav-toggle span {
    position: relative; display: block; width: 20px; height: 2px;
    background: var(--paper); transition: background 0.2s ease;
  }
  .nav-toggle span::before, .nav-toggle span::after {
    content: ""; position: absolute; left: 0; width: 20px; height: 2px;
    background: var(--paper); transition: transform 0.3s var(--ease-heavy);
  }
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }
  /* open = X, sitting on the drawer */
  .nav-toggle[aria-expanded="true"] { border-color: rgba(243,240,234,0.5); }
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 22px; padding: 0 32px;
    background: var(--ink); border-left: 1px solid var(--line);
    /* clip-path keeps the closed panel inside the viewport — no horizontal overflow */
    clip-path: inset(0 0 0 100%); pointer-events: none;
    transition: clip-path 0.42s var(--ease-heavy);
    z-index: 70;
  }
  .site-nav.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
  .site-nav a { font-size: 15px; }
}

/* ---------- layout primitives ---------- */
.section { padding-block: var(--space-section); position: relative; z-index: 2; background: var(--graphite); }
.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  margin: 0 0 18px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}
.h-display {
  margin: 0; font-family: var(--sans); font-weight: 200; line-height: 0.96;
  letter-spacing: 0.01em; text-transform: uppercase;
  font-size: clamp(34px, 6vw, 86px);
}
.h-section { font-size: clamp(30px, 4.6vw, 64px); }
.lede {
  max-width: 60ch; margin: 22px 0 0; font-weight: 300;
  font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; color: rgba(243,240,234,0.82);
}
.muted { color: rgba(243, 240, 234, 0.62); }
.page-hero { padding-top: clamp(48px, 8vw, 110px); }
.breadcrumbs { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(243,240,234,0.55); margin-bottom: 22px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-bright); }

/* ---------- buttons (match home) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 16px;
  border-radius: 0; padding: 11px 11px 11px 22px;
  font-family: var(--mono); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; font-size: 13px; text-decoration: none; cursor: pointer;
  border: 1px solid var(--paper); background: var(--paper); color: var(--ink);
  transition: transform 0.36s var(--ease-heavy), background 0.3s ease, color 0.3s ease;
}
.btn .btn-mark {
  display: grid; place-items: center; width: 32px; height: 32px;
  background: var(--ink); color: var(--paper); font-size: 16px;
}
.btn:hover { transform: translate3d(3px, -3px, 0); }
.btn:active { transform: translate3d(1px, -1px, 0) scale(0.98); }
.btn:focus-visible,
button:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 2px; box-shadow: 0 0 0 4px var(--gold-bright);
}
.btn--ghost {
  background: transparent; color: var(--paper); border-color: var(--paper);
}
.btn--ghost .btn-mark { background: var(--paper); color: var(--ink); }
.btn--on-light { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--on-light .btn-mark { background: var(--paper); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- trust strip ---------- */
.trust-strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent 60%), var(--ink);
}
.trust-strip__row {
  display: flex; flex-wrap: wrap; gap: clamp(14px, 3vw, 46px);
  padding-block: clamp(18px, 2.4vw, 30px); align-items: center; justify-content: center;
}
.trust-strip__item {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(243,240,234,0.74);
  display: inline-flex; align-items: center; gap: 10px;
}
.trust-strip__item::before { content: "✕"; color: var(--gold); font-size: 9px; }

/* ---------- surface cards ---------- */
.panel {
  border: 1px solid var(--line-strong); border-top: 2px solid var(--gold);
  background: rgba(5,5,5,0.2); padding: clamp(20px, 3vw, 44px);
}

/* ---------- editorial / featured grid ---------- */
.feature-grid {
  display: grid; gap: clamp(8px, 1vw, 16px);
  grid-template-columns: repeat(3, 1fr);
}
.feature-grid .tile { position: relative; overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line); background: #0d0c0b; cursor: pointer; }
.feature-grid .tile:nth-child(1) { grid-row: span 2; aspect-ratio: 4/5; }
.feature-grid[data-home-feature-grid] .tile:nth-child(1) { grid-row: span 1; }
.feature-grid img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.14) contrast(1.05) brightness(0.92);
  transform: scale(1.01); transition: transform 0.6s var(--ease-heavy), filter 0.4s ease;
}
.feature-grid .tile:hover img { transform: scale(1.07); filter: grayscale(0) contrast(1.07) brightness(1.02); }
@media (max-width: 760px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } .feature-grid .tile:nth-child(1) { grid-row: span 1; } }
@media (max-width: 520px) { .feature-grid[data-home-feature-grid] { grid-template-columns: 1fr; } }

/* ---------- published reviews (homepage social proof) ---------- */
.reviews-grid {
  display: grid; gap: clamp(12px, 1.6vw, 22px); margin-top: 34px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.review-card {
  margin: 0; display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--line-strong); border-top: 2px solid var(--gold);
  background: rgba(5,5,5,0.2); padding: clamp(20px, 2.4vw, 30px);
}
.review-stars { font-size: 15px; letter-spacing: 0.18em; color: var(--gold-bright); line-height: 1; }
.review-quote {
  margin: 0; font-weight: 300; font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5; color: rgba(243,240,234,0.9);
}
.review-quote::before { content: "\201C"; color: var(--gold); margin-right: 1px; }
.review-quote::after { content: "\201D"; color: var(--gold); margin-left: 1px; }
.review-meta {
  margin-top: auto; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.review-name { color: var(--paper); font-weight: 700; }
.review-artist { color: var(--gold); }
.review-artist::before { content: "·"; margin-right: 8px; color: rgba(243,240,234,0.5); }
@media (max-width: 520px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- portfolio filter + grid ---------- */
.filterbar { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-group__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(243,240,234,0.62); margin-right: 6px; min-width: 78px;
}
.chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 14px; min-height: 24px; border: 1px solid var(--line-strong); background: transparent;
  color: rgba(243,240,234,0.78); cursor: pointer; border-radius: 0;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.chip:hover { color: var(--paper); border-color: rgba(243,240,234,0.6); }
.chip[aria-pressed="true"], .chip[aria-checked="true"] { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.chip:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; box-shadow: 0 0 0 4px var(--gold-bright); }

.portfolio-grid {
  display: grid; gap: clamp(6px, 0.8vw, 12px);
  grid-template-columns: repeat(auto-fill, minmax(clamp(150px, 21vw, 280px), 1fr));
}
.work-card {
  position: relative; margin: 0; overflow: hidden; aspect-ratio: 4/5;
  border: 1px solid var(--line); background: #0d0c0b; cursor: pointer;
}
.work-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.14) contrast(1.05) brightness(0.9);
  transform: scale(1.01); transition: transform 0.6s var(--ease-heavy), filter 0.4s ease;
}
.work-card:hover img, .work-card:focus-within img { transform: scale(1.07); filter: grayscale(0) brightness(1); }
.work-card__meta {
  position: absolute; inset: auto 0 0 0; padding: 14px 14px 12px;
  background: linear-gradient(transparent, rgba(5,5,4,0.86));
  transform: translateY(8px); opacity: 0; transition: opacity 0.3s ease, transform 0.3s var(--ease-heavy);
}
.work-card:hover .work-card__meta, .work-card:focus-within .work-card__meta { opacity: 1; transform: none; }
.work-card__style { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright); }
.work-card__title { display: block; font-family: var(--sans); font-weight: 300; letter-spacing: 0.04em; font-size: 15px; margin-top: 4px; }
.work-card.is-hidden { display: none; }
.work-card { animation: card-in 0.5s var(--ease-heavy) both; }
@keyframes card-in { from { opacity: 0; filter: blur(6px); transform: translateY(10px); } to { opacity: 1; filter: blur(0); transform: none; } }
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card__meta { opacity: 1; transform: none; }
}

/* ---------- artist cards ---------- */
.artist-grid { display: grid; gap: clamp(20px, 3vw, 40px); grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .artist-grid { grid-template-columns: 1fr; } }
.artist-card { margin: 0; border: 1px solid var(--line-strong); border-top: 2px solid var(--gold); background: rgba(5,5,5,0.2); overflow: hidden; }
.artist-card__photo { aspect-ratio: 4/5; overflow: hidden; background: #141312; }
.artist-card__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2) contrast(1.05); transition: transform 0.6s var(--ease-heavy); }
.artist-card:hover .artist-card__photo img { transform: scale(1.04); }
.artist-card__body { padding: clamp(18px, 2.4vw, 30px); }
.artist-card__name { font-family: var(--sans); font-weight: 200; font-size: clamp(28px, 4vw, 48px); letter-spacing: 0.16em; line-height: 1; }
.artist-card__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 8px; }
.artist-card__bio { margin: 16px 0 0; line-height: 1.55; color: rgba(243,240,234,0.82); }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; border: 1px solid var(--line-strong); color: rgba(243,240,234,0.7); }
.status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 18px; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 8px var(--gold-bright); }
.status--closed::before { background: #8a8a8a; box-shadow: none; }

/* ---------- booking stepper ---------- */
.stepper { max-width: 760px; margin-inline: auto; }
.stepper__progress { display: flex; gap: 8px; margin-bottom: 28px; }
.stepper__progress span { flex: 1; height: 3px; background: var(--line-strong); }
.stepper__progress span.is-active { background: var(--gold); }
.stepper__progress span.is-done { background: var(--gold-deep); }
.step { display: none; animation: step-in 0.45s var(--ease-heavy) both; }
.step.is-active { display: block; }
@keyframes step-in { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.step__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 6px; }
.step__title { font-family: var(--sans); font-weight: 200; text-transform: uppercase; letter-spacing: 0.04em; font-size: clamp(22px, 3vw, 36px); margin: 0 0 22px; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 560px) { .option-grid { grid-template-columns: 1fr; } }
.option {
  display: flex; align-items: center; gap: 12px; padding: 16px;
  border: 1px solid var(--line-strong); background: rgba(5,5,5,0.2); cursor: pointer;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.option:hover { border-color: rgba(243,240,234,0.6); }
.option input { accent-color: var(--gold); width: 16px; height: 16px; }
.option:has(input:checked) { border-color: var(--gold); background: rgba(201,161,59,0.1); }
.consent-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.consent-list .option { align-items: flex-start; text-transform: none; letter-spacing: 0.04em; font-size: 11px; }
.returning-client__panel { margin-top: 12px; display: grid; gap: 4px; }
.returning-client__panel[hidden] { display: none; }
.returning-client__status { margin: 6px 0 0; min-height: 1.2em; font: 12px/1.45 var(--sans); color: rgba(243,240,234,0.72); }
.returning-client__status.is-ok { color: var(--gold); }
.returning-client__status.is-error { color: #d8345f; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
/* `display:grid` above out-specifies the UA `[hidden]` rule, so a hidden grid
   (e.g. the P2.7 generic vs per-type brief swap) must re-assert display:none. */
.field-grid[hidden] { display: none; }
/* Same UA `[hidden]` override for the grid/flex display rules below — needed so a
   conditionally-shown block (e.g. the deposit consent for no-deposit types) hides. */
.field[hidden], .option[hidden] { display: none; }
.field-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .field-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line-strong); border-radius: 0; background: rgba(5,5,5,0.22);
  color: var(--paper); padding: 11px 12px; font: 16px/1.4 var(--mono); outline: none;
  transition: border-color 0.26s var(--ease-heavy), background 0.26s var(--ease-heavy);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: var(--gold); background: rgba(5,5,5,0.36); }
.field textarea { resize: vertical; min-height: 110px; }
.field input.invalid, .field textarea.invalid { border-color: #d8345f; }
.slot-picker {
  border: 1px solid var(--line-strong);
  background: rgba(5,5,5,0.16);
  padding: clamp(16px, 3vw, 28px);
  font-family: var(--sans);
  letter-spacing: 0;
  text-transform: none;
}
.slot-picker__status,
.slot-picker__empty {
  margin: 0;
  color: rgba(243,240,234,0.72);
  font: 14px/1.45 var(--sans);
}
.slot-picker__inner {
  display: grid;
  grid-template-columns: 1fr;          /* calendar on top, time slots below it */
  gap: clamp(20px, 3vw, 32px);
}
.slot-picker__monthbar {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.slot-picker__monthbar strong {
  text-align: center;
  font: 300 20px/1.2 var(--sans);
  color: var(--paper);
}
.slot-picker__nav {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--paper);
  font: 34px/1 var(--sans);
  cursor: pointer;
}
.slot-picker__nav:hover,
.slot-picker__nav:focus-visible {
  color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.slot-picker__weekdays,
.slot-picker__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(34px, 1fr));
  gap: 8px;
}
.slot-picker__weekdays {
  margin-bottom: 10px;
  color: rgba(243,240,234,0.82);
  font: 700 13px/1 var(--mono);
  text-align: center;
}
.slot-picker__day {
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  color: var(--paper);
  font: 300 18px/1 var(--sans);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.slot-picker__day--blank {
  pointer-events: none;
}
.slot-picker__day:disabled {
  color: rgba(243,240,234,0.24);
  cursor: default;
}
.slot-picker__day:not(:disabled):hover,
.slot-picker__day:not(:disabled):focus-visible {
  outline: 1px solid var(--gold);
}
.slot-picker__day[aria-pressed="true"] {
  background: #d83477;
  color: #fff;
  border-radius: 999px;
}
.slot-picker__times {
  border-top: 1px solid rgba(243,240,234,0.18);
  padding-top: clamp(20px, 3vw, 28px);
}
.slot-picker__times h3 {
  margin: 0 0 18px;
  font: 300 20px/1.25 var(--sans);
  color: var(--paper);
}
.slot-picker__zone {
  margin: 0 0 18px;
  font: 700 11px/1.2 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243,240,234,0.72);
}
.slot-picker__time-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px 12px;
}
.slot-picker__time {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  background: rgba(243,240,234,0.04);
  color: var(--paper);
  font: 700 20px/1 var(--mono);
  cursor: pointer;
}
.slot-picker__time:hover,
.slot-picker__time[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(201,161,59,0.12);
  outline: none;
}
.slot-picker__time:focus-visible {
  border-color: var(--gold);
  background: rgba(201,161,59,0.12);
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}
@media (max-width: 720px) {
  .slot-picker__inner { grid-template-columns: 1fr; }
  .slot-picker__times {
    border-left: 0;
    border-top: 1px solid rgba(243,240,234,0.18);
    padding-left: 0;
    padding-top: 22px;
  }
}
.stepper__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.form-status { min-height: 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(243,240,234,0.86); margin-top: 14px; }
.field-decoy { position: absolute; left: -9999px; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--sans); font-weight: 300; font-size: clamp(16px, 1.8vw, 22px); color: var(--paper);
}
.faq-q:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; box-shadow: 0 0 0 4px var(--gold-bright); }
.faq-q .pm { font-family: var(--mono); color: var(--gold); font-size: 20px; transition: transform 0.3s var(--ease-heavy); }
.faq-q[aria-expanded="true"] .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-heavy); }
.faq-a > div { padding: 0 4px 24px; line-height: 1.6; color: rgba(243,240,234,0.8); max-width: 70ch; }

/* ---------- testimonials / proof ---------- */
.proof-grid { display: grid; gap: clamp(14px, 2vw, 26px); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .proof-grid { grid-template-columns: 1fr; } }
.quote { margin: 0; border: 1px solid var(--line-strong); border-top: 2px solid var(--gold); background: rgba(5,5,5,0.2); padding: clamp(20px, 2.4vw, 32px); }
.quote blockquote { margin: 0; font-weight: 300; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55; }
.quote figcaption { margin-top: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.stat-row { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 64px); }
.stat { }
.stat__n { font-family: var(--sans); font-weight: 200; font-size: clamp(34px, 4vw, 60px); line-height: 1; }
.stat__l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(243,240,234,0.6); margin-top: 8px; }

/* ---------- product / commerce cards ---------- */
.product-grid { display: grid; gap: clamp(14px, 2vw, 26px); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }
.product { border: 1px solid var(--line-strong); background: rgba(5,5,5,0.2); display: flex; flex-direction: column; }
.product__art { aspect-ratio: 1; background: linear-gradient(135deg, #1a1917, #0d0c0b); display: grid; place-items: center; border-bottom: 1px solid var(--line); }
.product__art .di-moon { width: 46px; opacity: 0.35; }
.product__art--blank span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: rgba(243,240,234,0.48); }
.product__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product__name { font-family: var(--sans); font-weight: 300; letter-spacing: 0.04em; font-size: 18px; }
.product__price { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--gold-bright); }
.product__state { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(243,240,234,0.55); margin-top: auto; }
.product--soon { opacity: 0.78; }
.badge { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 8px; border: 1px solid var(--line-strong); width: fit-content; }
.badge--soon { color: var(--gold); border-color: var(--gold-deep); }
.badge--sold { color: #b5b1a6; }

/* ---------- newsletter ---------- */
.newsletter { border: 1px solid var(--line-strong); border-top: 2px solid var(--gold); background: rgba(5,5,5,0.22); padding: clamp(24px, 3.5vw, 48px); }
.newsletter__form { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.newsletter__form input[type="email"] { flex: 1 1 240px; border: 1px solid var(--line-strong); background: rgba(5,5,5,0.22); color: var(--paper); padding: 13px 14px; font: 15px/1.2 var(--mono); border-radius: 0; }
.newsletter__form input[type="email"]:focus-visible { outline: none; border-color: var(--gold); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: rgba(243,240,234,0.6); }
.consent input { accent-color: var(--gold); margin-top: 2px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--ink); position: relative; z-index: 2; }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(24px, 4vw, 60px); padding: clamp(40px, 6vw, 80px) 0 clamp(28px, 4vw, 50px); }
@media (max-width: 760px) { .site-footer__top { grid-template-columns: 1fr; gap: 32px; } }
.site-footer h3 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-decoration: none; color: rgba(243,240,234,0.74); }
.footer-links a:hover { color: var(--gold-bright); }
.site-footer__brand { font-family: var(--sans); font-weight: 200; letter-spacing: 0.24em; text-transform: uppercase; font-size: 22px; }
.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 18px 0 calc(24px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(243,240,234,0.62); }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 880px) {
  .sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--line);
    padding-bottom: env(safe-area-inset-bottom);
    transform: translateY(110%); transition: transform 0.4s var(--ease-heavy);
    border-top: 1px solid var(--line);
  }
  .sticky-cta.is-visible { transform: none; }
  .sticky-cta a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 10px; text-decoration: none;
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  }
  .sticky-cta a:first-child { background: var(--ink); color: var(--paper); }
  .sticky-cta a:last-child { background: var(--paper); color: var(--ink); font-weight: 700; }
  .di-page, body { padding-bottom: 56px; }
  /* M6: sticky CTA must not occlude a freshly-focused interactive element */
  .btn, .chip, .faq-q, .lang-toggle button, .nav-toggle,
  .field input, .field select, .field textarea,
  .option, a.btn, .work-card, .di-page main a {
    scroll-margin-bottom: 72px;
  }
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-heavy), transform 0.7s var(--ease-heavy); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-reveal="ink"] { clip-path: inset(0 100% 0 0); transition: clip-path 0.8s var(--ease-heavy), opacity 0.6s ease; transform: none; opacity: 1; }
.reveal[data-reveal="ink"].in { clip-path: inset(0 0 0 0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease-heavy), transform 0.6s var(--ease-heavy); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.06s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.18s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.36s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.42s; }
.reveal-stagger.in > *:nth-child(9) { transition-delay: 0.48s; }

/* ---------- lightbox (shared with home gallery viewer styling) ---------- */
.di-viewer { position: fixed; inset: 0; z-index: 100; display: grid; grid-template-columns: minmax(44px,8vw) 1fr minmax(44px,8vw); place-items: center; padding: clamp(12px,3vw,42px); background: rgba(5,5,5,0.93); backdrop-filter: blur(16px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.di-viewer.is-open { opacity: 1; pointer-events: auto; }
.di-viewer figure { grid-column: 2; margin: 0; width: min(86vw, 920px); height: min(84vh, 920px); display: grid; place-items: center; border: 1px solid var(--line-strong); background: #080808; overflow: hidden; }
.di-viewer img { width: 100%; height: 100%; object-fit: contain; }
.di-viewer button { appearance: none; border: 1px solid var(--line-strong); background: rgba(243,240,234,0.08); color: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; }
.di-viewer .v-close { position: absolute; top: clamp(12px,2vw,28px); right: clamp(12px,2vw,28px); min-height: 38px; padding: 0 14px; }
.di-viewer .v-nav { width: clamp(42px,5vw,60px); height: clamp(42px,5vw,60px); border-radius: 50%; font-size: 0; }
.di-viewer .v-nav::before { content: ""; display: block; width: 12px; height: 12px; margin: auto; border-top: 2px solid currentColor; border-left: 2px solid currentColor; }
.di-viewer .v-prev { grid-column: 1; }
.di-viewer .v-next { grid-column: 3; }
.di-viewer .v-prev::before { transform: rotate(-45deg); }
.di-viewer .v-next::before { transform: rotate(135deg); }
.di-viewer button:hover { border-color: var(--gold-bright); background: rgba(227,195,101,0.12); }
/* P2.4 part 2: compare toggle (Before / After / Fresh / Healed) over the image. */
.di-viewer figure { position: relative; }
.v-compare { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; padding: 6px; background: rgba(5,5,5,0.72); border: 1px solid var(--line-strong); backdrop-filter: blur(6px); z-index: 2; }
.v-compare[hidden] { display: none; }
.v-compare__btn { padding: 6px 12px; min-height: 32px; border-radius: 0; }
.v-compare__btn[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.v-compare__btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
/* "Comparison available" marker on thumbnails / work-cards that carry before/healed. */
.book-work-thumb.has-compare, .work-card.has-compare { position: relative; }
.book-work-thumb.has-compare::after, .work-card.has-compare::after {
  content: "⇄"; position: absolute; top: 4px; right: 4px; z-index: 1;
  font-size: 10px; line-height: 1; padding: 2px 4px; border-radius: 2px;
  background: rgba(5,5,5,0.7); color: var(--gold-bright); pointer-events: none;
}
.work-card.has-compare::after { top: 8px; right: 8px; font-size: 12px; }

/* ---------- IG icon (reused from home) ---------- */
.ig-icon { position: relative; width: 17px; height: 17px; flex: 0 0 auto; border-radius: 5px;
  background: radial-gradient(circle at 30% 105%, #feda75 0 18%, #fa7e1e 28%, transparent 46%), radial-gradient(circle at 72% 18%, #4f5bd5 0 18%, transparent 34%), linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 54%, #962fbf 76%, #4f5bd5 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.24); }
.ig-icon::before { content: ""; position: absolute; inset: 4px; border: 1.8px solid #fff; border-radius: 50%; }
.ig-icon::after { content: ""; position: absolute; right: 4px; top: 4px; width: 3px; height: 3px; border-radius: 50%; background: #fff; }

/* ---------- moon hint (reused) ---------- */
/* crisp inline crescent — reused in header + corner hint */
.moon-hint { position: fixed; left: clamp(12px,2vw,28px); bottom: clamp(64px,8vw,28px); z-index: 55; display: block; height: clamp(42px,5vw,58px); width: auto; opacity: 0.62; transform: rotate(-8deg); transition: opacity 0.4s ease, transform 0.45s var(--ease-heavy); animation: moon-wink 7s ease-in-out infinite; }
.moon-hint img { height: 100%; width: auto; display: block; }
.moon-hint:hover, .moon-hint:focus-visible { opacity: 1; transform: rotate(0deg) scale(1.12); outline: 2px solid var(--gold); outline-offset: 4px; }
@keyframes moon-wink { 0%,100% { opacity: 0.46; filter: drop-shadow(0 0 4px rgba(227,195,101,0)); } 50% { opacity: 0.6; } 70% { opacity: 1; filter: drop-shadow(0 0 16px rgba(227,195,101,0.65)); } 76% { opacity: 0.5; filter: drop-shadow(0 0 4px rgba(227,195,101,0)); } }
@media (min-width: 881px) { .moon-hint { bottom: clamp(14px,2vw,28px); } }

/* language toggle */
.lang-toggle { display: inline-flex; border: 1px solid var(--line-strong); }
.lang-toggle button { appearance: none; background: none; border: 0; cursor: pointer; padding: 8px 12px; min-height: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: rgba(243,240,234,0.6); }
.lang-toggle button[aria-pressed="true"] { background: var(--gold); color: var(--ink); }
.lang-toggle button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; box-shadow: 0 0 0 4px var(--gold-bright); }
@media (max-width: 880px) { .site-nav .lang-toggle { margin-top: 8px; } }

/* ---------- links: no underline at rest, stylish gold underline on hover ---------- */
.contact-lines a, .crew-link, .footer-links a, .breadcrumbs a,
.faq-a a, .lede a, .newsletter a, .consent a, .form-status a,
.di-page main a:not(.btn):not(.chip):not(.instagram-link) {
  text-decoration: none;
  border-bottom: 0 !important;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1.5px;
  padding-bottom: 1px;
  transition: background-size 0.32s var(--ease-heavy), color 0.25s ease;
}
.contact-lines a:hover, .contact-lines a:focus-visible,
.crew-link:hover, .crew-link:focus-visible,
.footer-links a:hover, .footer-links a:focus-visible,
.breadcrumbs a:hover, .breadcrumbs a:focus-visible,
.faq-a a:hover, .faq-a a:focus-visible,
.lede a:hover, .lede a:focus-visible,
.newsletter a:hover, .consent a:hover, .form-status a:hover,
.di-page main a:not(.btn):not(.chip):not(.instagram-link):hover,
.di-page main a:not(.btn):not(.chip):not(.instagram-link):focus-visible {
  background-size: 100% 1.5px;
  color: var(--gold-bright);
}

/* ---------- artistic accents: white, bold colour pops, motion ---------- */
/* small bold colour mark before each eyebrow */
.eyebrow::before {
  content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 11px;
  vertical-align: 1px; background: var(--a-pink);
}
.eyebrow { display: flex; align-items: center; }
/* a thin multicolour ink rule at the top of every page hero (drifts subtly) */
.page-hero { position: relative; }
.page-hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent-rule); background-size: 240% 100%;
  animation: accent-drift 9s linear infinite;
}
@keyframes accent-drift { to { background-position: 240% 0; } }

/* gold rules become a subtle ink-gradient on key surfaces (small bold colour) */
.panel, .artist-card, .quote, .newsletter, .crew-panel {
  border-top-color: transparent !important; position: relative;
}
.panel::after, .artist-card::after, .quote::after, .newsletter::after, .crew-panel::after {
  content: ""; position: absolute; top: -2px; left: -1px; right: -1px; height: 2px;
  background: var(--accent-rule); background-size: 240% 100%; pointer-events: none;
}
.artist-card { overflow: visible; }
.artist-card .artist-card__photo { overflow: hidden; }

/* light section — breaks the dark, adds white */
.section--light { background: var(--paper); color: var(--ink); }
.section--light .h-display, .section--light .h-section { color: var(--ink); }
.section--light .lede { color: rgba(17,16,15,0.72); }
.section--light .eyebrow { color: var(--gold-on-light); }
.section--light .btn--ghost { color: var(--ink); border-color: var(--ink); }
.section--light .btn--ghost .btn-mark { background: var(--ink); color: var(--paper); }
.section--light .feature-grid .tile { border-color: rgba(17,16,15,0.16); }

/* ---------- mobile tidy ---------- */
@media (max-width: 760px) {
  .trust-strip__row { flex-direction: column; align-items: flex-start; gap: 13px; }
  .section { scroll-margin-top: 72px; }
  .h-display { scroll-margin-top: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; animation-delay: 0ms !important; transition-duration: 1ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  /* M1: fully stop looping/decorative motion (duration clamp alone still loops) */
  .moon-hint,
  .page-hero::before,
  .work-card,
  .panel::after, .artist-card::after, .quote::after, .newsletter::after, .crew-panel::after {
    animation: none !important;
  }
  .white-blast { animation: none !important; opacity: 0 !important; }
}

/* a11y: FAQ question heading wrapper carries no default heading box. */
.faq-h { margin: 0; font: inherit; }

/* ---- Booking artist card selection ---- */
.booking-artist-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 8px; }
@media (max-width: 560px) { .booking-artist-cards { grid-template-columns: 1fr; } }
.booking-artist-card {
  display: flex; flex-direction: column; align-items: stretch; text-align: left;
  background: rgba(5,5,5,0.3); border: 1px solid var(--line-strong);
  cursor: pointer; padding: 0; overflow: hidden; transition: border-color 200ms, transform 200ms;
  font-family: inherit; color: inherit;
}
.booking-artist-card:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.booking-artist-card.is-selected { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.booking-artist-card.is-selected .booking-artist-card__photo img { filter: grayscale(0) contrast(1.05); }
.booking-artist-card__photo { aspect-ratio: 4/5; overflow: hidden; background: #141312; }
.booking-artist-card__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) contrast(1.02); transition: filter 200ms, transform 400ms var(--ease-heavy); }
.booking-artist-card:hover .booking-artist-card__photo img { transform: scale(1.03); }
.booking-artist-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 5px; }
.booking-artist-card__name { font-family: var(--sans); font-weight: 200; font-size: clamp(18px, 2.5vw, 28px); letter-spacing: 0.12em; line-height: 1; }
.booking-artist-card__role { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.booking-artist-card__styles { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(243,240,234,0.5); margin-top: 2px; }
/* Per-artist services listed inside the card — the card itself is no longer a
   single clickable button; the service radios are the selectable controls. */
.booking-artist-card { cursor: default; }
.booking-artist-card:hover { transform: none; }
.booking-artist-card__services { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line-strong); display: flex; flex-direction: column; gap: 8px; }
.booking-artist-card__services-title { margin: 0; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; }
.booking-artist-card__service-list { display: flex; flex-direction: column; gap: 6px; }
.book-service {
  display: flex; align-items: baseline; gap: 8px;
  padding: 9px 11px; border: 1px solid var(--line-strong); border-radius: 4px;
  cursor: pointer; transition: border-color 160ms, background-color 160ms;
}
.book-service:hover { border-color: var(--gold-deep); }
.book-service:has(.book-service__radio:checked) { border-color: var(--gold); background: rgba(212,175,55,0.10); }
.book-service:has(.book-service__radio:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }
.book-service__radio { margin: 0; accent-color: var(--gold); flex: 0 0 auto; align-self: center; }
.book-service__name { font-weight: 500; font-size: 14px; }
.book-service__meta { margin-left: auto; font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; opacity: 0.65; white-space: nowrap; }

/* P2.4 pick-by-style — style filter chips above the artist cards. */
.book-style-filter { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 4px 0 16px; }
.book-style-filter[hidden] { display: none; }
.book-style-filter__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-right: 2px; }
.book-style-filter .chip[hidden] { display: none; }
.book-style-filter .chip { padding: 6px 11px; font-size: 10px; }

/* P2.4 — per-artist recent-work preview inside the booking card. */
.booking-artist-card__work { margin-top: 12px; }
.booking-artist-card__work-label { margin: 0 0 8px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; }
.booking-artist-card__work-label[hidden] { display: none; }
.book-work-strip { display: flex; flex-wrap: wrap; gap: 6px; }
.book-work-thumb {
  flex: 0 0 auto; width: 56px; height: 56px; padding: 0; margin: 0;
  border: 1px solid var(--line-strong); border-radius: 4px; overflow: hidden;
  background: #141312; cursor: pointer; transition: border-color 160ms, transform 200ms var(--ease-heavy);
}
.book-work-thumb[hidden] { display: none; }
.book-work-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(0.25) contrast(1.02); transition: filter 200ms; }
.book-work-thumb:hover { border-color: var(--gold); transform: translateY(-2px); }
.book-work-thumb:hover img { filter: grayscale(0); }
.book-work-thumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
/* Style filter de-emphasises artists with work but none in the chosen style — the
   card stays fully bookable. Dim the PHOTO only (not text), so all card text keeps
   its full WCAG AA contrast; restore on hover/focus. */
.booking-artist-card.is-style-dim .booking-artist-card__photo { opacity: 0.4; transition: opacity 200ms; }
.booking-artist-card.is-style-dim:hover .booking-artist-card__photo,
.booking-artist-card.is-style-dim:focus-within .booking-artist-card__photo { opacity: 1; }

.booking-slot-section { border-top: 1px solid var(--line-strong); padding-top: 24px; margin-top: 24px; }

/* -------------------- Review page (P2.3) -------------------- */
.field-legend {
  font-family: var(--mono, "Courier New", monospace);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.rating-stars {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
}
.rating-stars input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.rating-stars label {
  font-size: 38px;
  line-height: 1;
  color: rgba(243, 240, 234, 0.22);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}
.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
  color: var(--gold-bright);
}
.rating-stars label:hover { transform: scale(1.08); }
.rating-stars input:focus-visible + label {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
.review-confirm-title {
  font-weight: 300;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem);
  margin: 6px 0 12px;
}
.form-actions { margin-top: 22px; }
.link-arrow {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
