/* ==========================================================================
   Bere Gain · Peluquería archetype — Lúa (VISUAL-CRAFT push, 2026-06-09)
   --------------------------------------------------------------------------
   Editorial-but-ALIVE. The 2026-05-31 build was tasteful restraint that read
   "muy AI, sin vuelo, aburrida" (operator). This rewrite goes for Apple /
   award-site WOW while keeping the load-bearing class vocabulary the V2 base
   partials emit (so the renderer + tests are untouched) and the fingerprints
   the tests assert (.masthead, heroKenBurns).

   Design moves (vs the flat-cream baseline):
   · DARK CINEMATIC HERO — full-bleed graded photo, oversized clamp(...8rem)
     display headline in cream over a warm scrim, vivid accent, slow Ken-Burns.
   · LIGHT↔DARK SECTION RHYTHM — the page breathes ink→cream→ink instead of one
     long beige column. Services on ink, gallery on cream, an ink "manifesto"
     full-bleed photo band, booking on near-black, dark footer.
   · COLOR WITH DEPTH — layered surfaces, a confident accent ramp, radial mesh
     glows behind dark sections, subtle gradients on every band.
   · COHESIVE PHOTO GRADE — every image shares one warm filter so the Pexels
     shots read like one shoot.
   · DEPTH & LAYOUT — overlapping figures, asymmetric 12-col grids, big
     full-bleed photo bands alternating with contained editorial sections.
   · MOTION — hover sheen/fill, link underline draw, card lift, image
     scale-on-scroll; the JS in render_v2.py adds parallax + count-up + nav
     solidify. prefers-reduced-motion freezes all of it.
   ========================================================================== */

/* ---------- SELF-HOSTED FONTS ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-Regular.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- TOKENS ---------- */
:root {
  /* Warm paper family (light sections). */
  --paper:        #f3ede3;
  --paper-deep:   #e9e0d2;
  --paper-soft:   #faf6ee;

  /* Ink family (dark sections) — a deep warm espresso, not pure black, so the
     dark bands feel rich + intentional rather than flat #000. */
  --ink:          #17120e;
  --ink-2:        #221a13;   /* slightly lifted dark surface for layering */
  --ink-soft:     #3a322a;
  --ink-muted:    #6f655a;
  --rule:         #d9cdb8;

  /* Accent ramp — the per-business accent (#a9714a tobacco for Lúa) overridden
     inline; these defaults keep the sheet self-sufficient. The "vivid"
     companion (--accent-bold, a warm terracotta-copper) is used boldly, not
     once: it lights the hero rule, the section numerals, the booking, and the
     count-up figures. */
  --accent:       #a9714a;
  --accent-bold:  #d8623a;   /* vivid copper — used with confidence */
  --accent-warm:  #e8a06a;   /* light end of the ramp, for glows on dark */
  --accent-tint:  color-mix(in srgb, var(--accent) 14%, var(--paper-soft));
  --accent-deep:  color-mix(in srgb, var(--accent) 72%, var(--ink));
  --accent-soft:  color-mix(in srgb, var(--accent) 50%, var(--paper));

  /* Cohesive photo grade — one warm filter for ALL imagery so the stock reads
     like a single shoot (richer + slightly warmer than the prior near-neutral
     0.86/0.98). */
  --grade-saturate: 1.06;
  --grade-contrast: 1.08;
  --grade-bright:   0.97;
  --grade-warm:     sepia(0.22) hue-rotate(-10deg);

  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --body:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --pad-x:    clamp(20px, 5vw, 104px);
  --pad-y:    clamp(72px, 9vw, 148px);
  --maxw:     1480px;
  --cta-bar-h: 0px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "kern", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
figure { margin: 0; }
ol, ul, dl { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute; left: -9999px; top: 8px;
  padding: 10px 18px; background: var(--ink); color: var(--paper);
  font-size: 13px; z-index: 100;
}
.skip:focus { left: 8px; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

::selection { background: var(--accent-bold); color: #fff; }

.label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ==========================================================================
   MASTHEAD — sticky, solidifies on scroll (JS toggles .is-stuck on <body>)
   ========================================================================== */
.masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding-top: 6px;
  background: transparent;
  transition: background 360ms ease, backdrop-filter 360ms ease, padding 320ms ease,
    box-shadow 360ms ease;
}
/* Over the dark hero the masthead text is light; once scrolled past the hero it
   solidifies into a warm frosted bar with dark text. */
.masthead-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 22px;
  padding-bottom: 18px;
  transition: padding 320ms ease;
}
.masthead-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, color-mix(in srgb, var(--paper) 30%, transparent) 12%,
    color-mix(in srgb, var(--paper) 30%, transparent) 88%, transparent);
  opacity: 0.7;
  transition: opacity 320ms ease, background 320ms ease;
}
.brand { display: inline-flex; align-items: baseline; gap: 14px; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--paper);
  transition: color 320ms ease;
}
.brand-name em { font-style: italic; color: var(--accent-warm); transition: color 320ms ease; }
.brand-place {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 64%, transparent);
  font-weight: 600;
  transition: color 320ms ease;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--paper) 82%, transparent);
}
.nav a { position: relative; padding-bottom: 4px; transition: color 200ms; }
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--accent-bold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.nav a:hover { color: var(--paper); }
.nav a:hover::after { transform: scaleX(1); }
.masthead-meta {
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  color: color-mix(in srgb, var(--paper) 62%, transparent);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  transition: color 320ms ease;
}
.masthead-meta .meta-sep { color: var(--accent-warm); }

/* Solidified state (set by the motion script once the hero is scrolled past). */
body.is-stuck .masthead {
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  box-shadow: 0 10px 40px -28px rgba(23, 18, 14, 0.6);
}
body.is-stuck .masthead-row { padding-top: 16px; padding-bottom: 14px; }
body.is-stuck .brand-name { color: var(--ink); }
body.is-stuck .brand-name em { color: var(--accent); }
body.is-stuck .brand-place,
body.is-stuck .masthead-meta { color: var(--ink-muted); }
body.is-stuck .nav { color: var(--ink-soft); }
body.is-stuck .nav a:hover { color: var(--ink); }
body.is-stuck .masthead-rule { opacity: 0; }

/* ==========================================================================
   HERO — full-bleed DARK cinematic photo opener (this is the WOW moment)
   --------------------------------------------------------------------------
   The split variant in the V2 doc now renders a full-bleed dark hero (the
   renderer sets --hero-bg). Oversized display headline in cream over a warm
   gradient scrim + a radial accent glow; slow Ken-Burns on the photo.
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
  min-height: clamp(640px, 96vh, 1040px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: clamp(150px, 22vh, 280px);
  padding-bottom: clamp(56px, 8vw, 120px);
  overflow: hidden;
}
/* Ken-Burns photo layer (named heroKenBurns — a test fingerprint). */
.hero::after {
  content: "";
  position: absolute;
  inset: -6%;
  z-index: -2;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  filter: saturate(var(--grade-saturate)) contrast(var(--grade-contrast))
    brightness(0.62) var(--grade-warm);
  transform-origin: 52% 42%;
  animation: heroKenBurns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.6%, -2.2%, 0); }
}
/* Warm cinematic scrim + a copper radial glow bottom-left where the type sits. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 12% 108%, color-mix(in srgb, var(--accent-bold) 42%, transparent), transparent 56%),
    linear-gradient(7deg,
      color-mix(in srgb, var(--ink) 94%, transparent) 0%,
      color-mix(in srgb, var(--ink) 72%, transparent) 38%,
      color-mix(in srgb, var(--ink) 34%, transparent) 70%,
      color-mix(in srgb, var(--ink) 52%, transparent) 100%);
}
/* No-photo degrade: a rich warm gradient instead of a flat band. */
.hero:not(.hero-photo)::after { background: none; animation: none; }
.hero:not(.hero-photo)::before {
  background:
    radial-gradient(110% 80% at 90% -10%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 60%),
    radial-gradient(120% 90% at 8% 110%, color-mix(in srgb, var(--accent-bold) 28%, transparent), transparent 55%),
    linear-gradient(160deg, var(--ink-2), var(--ink));
}

.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(16px, 2.4vw, 40px);
  row-gap: clamp(22px, 2.8vw, 40px);
  align-items: end;
  width: 100%;
}
.hero-eyebrow {
  grid-column: 1 / -1;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 82%, transparent);
}
.hero-eyebrow-rule {
  display: inline-block;
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-bold), var(--accent-warm));
  border-radius: 2px;
}
/* THE display headline — oversized, dominant, tight leading. */
.hero-title {
  grid-column: 1 / span 11;
  font-family: var(--display);
  font-weight: 360;
  font-variation-settings: "SOFT" 40, "opsz" 144, "WONK" 1;
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}
.hero-title em {
  font-style: italic;
  font-weight: 380;
  color: var(--accent-warm);
}
.hero-body {
  grid-column: 1 / span 6;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-self: start;
  margin-top: 6px;
}
.hero-lede {
  font-family: var(--display);
  font-weight: 380;
  font-variation-settings: "opsz" 28;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.46;
  color: color-mix(in srgb, var(--paper) 92%, transparent);
  margin: 0;
  text-wrap: pretty;
}
.dropcap {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 4.2em;
  line-height: 0.78;
  float: left;
  padding: 0.08em 0.2em 0 0;
  color: var(--accent-warm);
}
.dropcap-dark { color: var(--ink); }
.hero-aside { display: none; } /* full-bleed hero needs no framed aside */

/* ---------- HERO PARALLAX LAYERS + FILM GRAIN + SCROLL CUE ----------
   Two drifting layers over the graded photo give the opener real depth: a fine
   film-grain sheet (foreground, slow drift) so the stock reads like one
   intentional, slightly analog shoot, and a copper aura (midground) that floats
   against scroll. The JS sets transform on [data-parallax]; CSS only positions
   + paints them. */
.hero-grain {
  position: absolute;
  inset: -8%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(circle at 17% 23%, rgba(255,255,255,0.05) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 71% 67%, rgba(0,0,0,0.06) 0 1px, transparent 1px 4px),
    repeating-radial-gradient(circle at 43% 89%, rgba(255,255,255,0.04) 0 1px, transparent 1px 3px);
  background-size: 220px 220px, 300px 300px, 180px 180px;
}
.hero-aura {
  position: absolute;
  z-index: -1;
  left: -6%;
  bottom: -14%;
  width: clamp(380px, 52vw, 760px);
  height: clamp(380px, 52vw, 760px);
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    color-mix(in srgb, var(--accent-bold) 56%, transparent),
    color-mix(in srgb, var(--accent) 22%, transparent) 42%, transparent 70%);
  filter: blur(18px);
  opacity: 0.85;
}
.hero-scrollcue {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3vw, 40px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scrollcue-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, transparent, var(--accent-warm));
  position: relative;
  overflow: hidden;
}
.hero-scrollcue-line::after {
  content: "";
  position: absolute; left: 0; right: 0; top: -50%;
  height: 50%;
  background: var(--paper);
  animation: scrollCue 2.4s cubic-bezier(.7,0,.3,1) infinite;
}
.hero-scrollcue-label {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 56%, transparent);
}
@keyframes scrollCue {
  0% { top: -50%; }
  60%, 100% { top: 100%; }
}
.magnet { display: inline-flex; transition: transform 360ms cubic-bezier(.2,.9,.2,1); }

/* Page-wide top scroll-progress bar (JS scales it 0..1). Peluquería-only —
   other packs leave the empty .scroll-progress div unstyled (0 height). */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 90;
  background: color-mix(in srgb, var(--ink) 30%, transparent);
  pointer-events: none;
}
.scroll-progress-bar {
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(to right, var(--accent), var(--accent-bold), var(--accent-warm));
  box-shadow: 0 0 14px color-mix(in srgb, var(--accent-bold) 70%, transparent);
}

/* ==========================================================================
   SIGNATURE SCROLL-STAGE — the pinned "wow": a full-bleed graded photo band
   that holds in place while an oversized line lights word-by-word, SCRUBBED to
   scroll (JS toggles .lit on .ss-word against the section's scroll-through).
   The section is tall (300vh) with a sticky inner viewport so the scrub has
   room; under reduced-motion / headless it shows fully lit.
   ========================================================================== */
.scrollstage {
  position: relative;
  height: 300vh;
  background: var(--ink);
}
.scrollstage-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.scrollstage-sticky::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--stage-bg);
  background-size: cover;
  background-position: center 42%;
  filter: saturate(var(--grade-saturate)) contrast(var(--grade-contrast))
    brightness(0.4) var(--grade-warm);
  transform: scale(1.06);
}
.scrollstage-sticky::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 70% at 14% 50%, color-mix(in srgb, var(--accent-bold) 30%, transparent), transparent 60%),
    linear-gradient(90deg, color-mix(in srgb, var(--ink) 88%, transparent), color-mix(in srgb, var(--ink) 40%, transparent) 70%);
}
.scrollstage-grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.4; mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(circle at 30% 40%, rgba(255,255,255,0.05) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 70% 70%, rgba(0,0,0,0.06) 0 1px, transparent 1px 4px);
  background-size: 240px 240px, 300px 300px;
}
.scrollstage-inner { max-width: 1240px; }
.scrollstage-kicker {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-warm); margin: 0 0 clamp(28px, 3vw, 44px);
}
.scrollstage-kicker-rule {
  width: 54px; height: 2px; border-radius: 2px;
  background: linear-gradient(to right, var(--accent-bold), var(--accent-warm));
}
.scrollstage-line {
  font-family: var(--display);
  font-weight: 380;
  font-variation-settings: "SOFT" 50, "opsz" 144;
  font-size: clamp(2.6rem, 6.4vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--paper);
  max-width: 22ch;
  text-wrap: balance;
}
.scrollstage .ss-word { transition: color 160ms linear; }
.scrollstage .ss-word[data-accent="1"].lit-accent { font-style: italic; }

/* ---------- HERO ACTIONS ---------- */
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
.btn-primary {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  background: var(--accent-bold);
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 18px 40px -18px color-mix(in srgb, var(--accent-bold) 80%, transparent);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
/* Sheen sweep on hover. */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%,
    color-mix(in srgb, #fff 38%, transparent) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 620ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary .btn-icon {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  transition: transform 280ms;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 54px -20px color-mix(in srgb, var(--accent-bold) 90%, transparent);
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover .btn-icon { transform: translateX(5px); }
.btn-primary:focus-visible { outline: 2px solid var(--accent-warm); outline-offset: 4px; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: color-mix(in srgb, var(--paper) 86%, transparent);
  padding-bottom: 4px;
}
.btn-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0; right: 0;
  height: 1.5px;
  background: var(--accent-warm);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.btn-link:hover::after { transform: scaleX(1); }
.btn-link-label { font-family: inherit; }

/* ---------- HERO CREDENTIAL CHIP ---------- */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 11px 18px;
  background: color-mix(in srgb, #fff 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--paper) 26%, transparent);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  width: fit-content;
}
.hero-rating-meta {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 86%, transparent);
}

/* ==========================================================================
   AMBIENCE STRIP — full-bleed photo band beneath the hero (parallax-ready)
   ========================================================================== */
.strip-ambience {
  position: relative;
  margin: 0;
  background: var(--ink);
}
.strip-figure {
  margin: 0;
  overflow: hidden;
  /* clip-path reveal handled by .reveal; the parallax inner transform is JS. */
}
.strip-figure img {
  width: 100%;
  height: clamp(420px, 64vw, 880px);
  object-fit: cover;
  filter: saturate(var(--grade-saturate)) contrast(var(--grade-contrast))
    brightness(var(--grade-bright)) var(--grade-warm);
  transform: scale(1.12);
  will-change: transform;
}
.strip-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.9fr);
  gap: clamp(28px, 5vw, 88px);
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--ink);
  color: var(--paper);
}
.cap-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 60%, transparent);
  margin: 0;
}
.bullet { width: 7px; height: 7px; background: var(--accent-bold); border-radius: 50%; display: inline-block; }
.cap-text {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.42;
  color: var(--paper);
  max-width: 56ch;
}
.cap-text em { font-style: italic; color: var(--accent-warm); }

/* ==========================================================================
   SECTION SCAFFOLDING + LIGHT↔DARK RHYTHM
   ========================================================================== */
.section {
  position: relative;
  padding-top: var(--pad-y);
  padding-bottom: var(--pad-y);
}
.section-head {
  display: grid;
  grid-template-columns: clamp(56px, 6vw, 92px) 1fr;
  column-gap: clamp(20px, 3vw, 56px);
  row-gap: 18px;
  align-items: baseline;
  margin-bottom: clamp(40px, 5vw, 72px);
  max-width: 1180px;
}
.section-num {
  font-family: var(--display);
  font-size: 18px;
  color: var(--accent-bold);
  margin: 0;
  line-height: 1;
  font-weight: 400;
  grid-column: 1;
  grid-row: 1 / span 2;
}
.section-num em { font-style: italic; font-size: 30px; }
.section-title {
  grid-column: 2;
  font-family: var(--display);
  font-weight: 360;
  font-variation-settings: "SOFT" 40, "opsz" 144;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.026em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em { font-style: italic; font-weight: 380; color: var(--accent); }
.section-title-small {
  grid-column: 2;
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.0;
  letter-spacing: -0.014em;
  margin: 0;
  color: var(--ink);
}
.section-kicker {
  grid-column: 2;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.42;
  color: var(--ink-muted);
  margin: 0;
  max-width: 52ch;
}

/* ---- DARK SECTION SKIN (applied to services here for the rhythm) ---------
   The first content section (services) lands on ink so the page goes
   hero(dark) → ambience(dark) → services(dark) → gallery(light) → … keeping a
   bold dark opening run, then a luminous light middle, then ink booking/foot. */
.section-services {
  background: var(--ink);
  color: var(--paper);
}
.section-services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(80% 60% at 88% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%);
}
.section-services .wrap { position: relative; }
.section-services .section-num { color: var(--accent-warm); }
.section-services .section-title { color: var(--paper); }
.section-services .section-title em { color: var(--accent-warm); }

/* ==========================================================================
   SERVICES — oversized typographic table (on ink)
   ========================================================================== */
.services { border-top: 1px solid color-mix(in srgb, var(--paper) 22%, transparent); }
.service {
  display: grid;
  grid-template-columns: clamp(44px, 4vw, 72px) minmax(0, 5fr) minmax(0, 1.5fr);
  column-gap: clamp(24px, 3.4vw, 64px);
  align-items: baseline;
  padding: clamp(30px, 3.4vw, 50px) clamp(8px, 1.4vw, 20px);
  border-bottom: 1px solid color-mix(in srgb, var(--paper) 14%, transparent);
  position: relative;
  transition: background 320ms ease, padding-left 320ms ease;
}
.service::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent-bold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.service:hover {
  background: color-mix(in srgb, #fff 5%, transparent);
  padding-left: clamp(18px, 2vw, 32px);
}
.service:hover::after { transform: scaleY(1); }
.service-idx {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--accent-warm);
  margin: 0;
  line-height: 1;
  align-self: start;
  padding-top: 8px;
}
.service-name {
  font-family: var(--display);
  font-weight: 360;
  font-variation-settings: "opsz" 96;
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--paper);
}
.service-desc {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.62;
  color: color-mix(in srgb, var(--paper) 80%, transparent);
  max-width: 56ch;
}
.service-meta { text-align: right; align-self: start; padding-top: 12px; }
.service-price {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 32px);
  color: var(--accent-warm);
  margin: 0 0 4px;
  font-variant-numeric: tabular-nums;
}
.service-duration {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 56%, transparent);
  margin: 0;
}

/* ==========================================================================
   MANIFESTO — full-bleed dark photo band (used by the ambience/quote moment)
   ========================================================================== */
.section-manifesto {
  background: color-mix(in srgb, var(--accent) 7%, var(--paper-deep));
}
.section-manifesto-photo {
  position: relative;
  isolation: isolate;
  background-image: var(--manifesto-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--paper);
}
.section-manifesto-photo::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 80% at 8% 100%, color-mix(in srgb, var(--accent-bold) 30%, transparent), transparent 55%),
    linear-gradient(105deg,
      color-mix(in srgb, var(--ink) 92%, transparent) 0%,
      color-mix(in srgb, var(--ink) 74%, transparent) 48%,
      color-mix(in srgb, var(--ink) 50%, transparent) 100%);
}
.section-manifesto-photo .section-num em,
.section-manifesto-photo .section-title-small { color: var(--paper); }
.section-manifesto-photo .manifesto-lead { color: var(--paper); }
.section-manifesto-photo .manifesto-lead em { color: var(--accent-warm); }
.section-manifesto-photo .dropcap-dark { color: var(--accent-warm); }
.manifesto-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: start;
}
.manifesto-meta { padding-top: 4px; }
.manifesto-body { min-width: 0; }
.manifesto-lead {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 44px);
  line-height: 1.24;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.manifesto-lead em { font-style: italic; color: var(--accent); }
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 56px);
  border-top: 1px solid color-mix(in srgb, var(--paper) 20%, transparent);
  padding-top: 36px;
  margin-top: 40px;
}
.stat-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 360;
  font-size: clamp(48px, 5vw, 80px);
  color: var(--accent-bold);
  line-height: 0.86;
  margin: 0 0 12px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

/* ==========================================================================
   GALLERY — IMMERSIVE edge-to-edge asymmetric mosaic on ink, per-tile parallax
   --------------------------------------------------------------------------
   Not contained thumbnails: tiles bleed to the page edges in an asymmetric
   12-col composition; each photo drifts on scroll behind a clipping frame, with
   an editorial numbered caption + a gradient scrim. A dark band so the page
   reads hero(dark)→services(dark)→GALLERY(dark)→stage(dark)… as one cinematic
   run before the luminous team/faq middle. The mosaic is full-bleed (escapes
   .wrap) — the head stays contained.
   ========================================================================== */
.section-gallery {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.section-gallery::before {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 60% at 88% 6%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 58%),
    radial-gradient(70% 70% at 4% 100%, color-mix(in srgb, var(--accent-bold) 16%, transparent), transparent 55%),
    linear-gradient(168deg, var(--ink-2), var(--ink));
}
.gallery-head {
  display: grid;
  grid-template-columns: clamp(56px, 6vw, 92px) 1fr;
  column-gap: clamp(20px, 3vw, 56px);
  row-gap: 14px;
  align-items: baseline;
  margin-bottom: clamp(40px, 5vw, 72px);
  max-width: 1180px;
}
.gallery-head .section-num { color: var(--accent-warm); grid-column: 1; grid-row: 1 / span 2; }
.gallery-title { grid-column: 2; color: var(--paper); }
.gallery-title em { color: var(--accent-warm); }
.gallery-sub {
  grid-column: 2; margin: 0;
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.5vw, 23px); line-height: 1.42;
  color: color-mix(in srgb, var(--paper) 64%, transparent); max-width: 48ch;
}
/* The mosaic itself spans the full viewport width with a thin gutter. A fixed
   12-col × 5-row composition tuned for the peluquería's FOUR photo tags
   (process / interior / product / team) so there is never a dead hole — a large
   focal hero tile, two stacked detail tiles, and a wide closing band. */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(5, clamp(120px, 12.5vw, 210px));
  gap: clamp(10px, 1vw, 18px);
  padding: 0 clamp(10px, 1vw, 18px);
  width: 100%;
}
.gtile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.85);
}
.gtile-frame { position: absolute; inset: 0; overflow: hidden; }
.gtile-frame img {
  position: absolute;
  inset: -14%;            /* bleed so the parallax drift never shows an edge */
  width: 128%; height: 128%;
  object-fit: cover; display: block;
  filter: saturate(var(--grade-saturate)) contrast(var(--grade-contrast))
    brightness(var(--grade-bright)) var(--grade-warm);
  will-change: transform;
  transition: filter 600ms ease;
}
/* Cohesive copper duotone wash — a single warm cast over EVERY tile so a cold
   source frame (e.g. a glove shot) reads as part of the same warm shoot. */
.gtile-frame::after {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(165deg,
    color-mix(in srgb, var(--accent-warm) 22%, transparent),
    color-mix(in srgb, var(--accent-bold) 16%, transparent));
  mix-blend-mode: soft-light;
  opacity: 0.7;
}
.gtile::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top,
    color-mix(in srgb, var(--ink) 78%, transparent), transparent 46%);
  opacity: 0.9;
  transition: opacity 460ms ease;
}
.gtile:hover::after { opacity: 0.62; }
.gtile:hover .gtile-frame img { filter: saturate(1.16) contrast(1.08) brightness(1.02) var(--grade-warm); }
.gtile-ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 14%, var(--ink-2));
  color: var(--accent-warm); font-family: var(--display); font-style: italic; font-size: 18px;
}
.gtile-cap {
  position: absolute; left: clamp(16px, 1.4vw, 26px); bottom: clamp(14px, 1.2vw, 22px);
  z-index: 1;
  display: flex; align-items: baseline; gap: 12px;
}
.gtile-idx {
  font-family: var(--display); font-style: italic; font-size: clamp(16px, 1.3vw, 22px);
  color: var(--accent-warm); line-height: 1; font-variant-numeric: tabular-nums;
}
.gtile-tag {
  font-family: var(--body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 88%, transparent);
}
/* Asymmetric placement tuned for FOUR tiles — a tall focal hero (1), one tall
   portrait to its right (3), a shorter detail above it (2), and a wide
   cinematic band beneath the hero (4) — filling the full 12×5 grid with NO dead
   hole. A fifth tag, if present, splits the bottom-left band. */
.gtile-1 { grid-column: 1 / span 7;  grid-row: 1 / span 3; }
.gtile-2 { grid-column: 8 / span 5;  grid-row: 1 / span 2; }
.gtile-3 { grid-column: 8 / span 5;  grid-row: 3 / span 3; }
.gtile-4 { grid-column: 1 / span 7;  grid-row: 4 / span 2; }
/* Five-tag fallback: tighten the wide band + give the 5th tile a corner. */
.gtile-5 { grid-column: 1 / span 7;  grid-row: 4 / span 2; }
.gallery-mosaic:has(.gtile-5) .gtile-4 { grid-column: 1 / span 4; }
.gallery-mosaic:has(.gtile-5) .gtile-5 { grid-column: 5 / span 3; }

/* ==========================================================================
   CINEMA BAND — full-bleed parallax photo interstitial with one oversized word
   --------------------------------------------------------------------------
   Separates the dark services table from the immersive gallery (and gives the
   page a deliberate photographic beat instead of two dark type-bands abutting).
   The photo drifts on scroll (JS [data-parallax]); a single display word rides
   over a copper-graded scrim. Reduced-motion freezes the drift.
   ========================================================================== */
.band-cinema {
  position: relative;
  isolation: isolate;
  height: clamp(280px, 38vw, 560px);
  overflow: hidden;
  background: var(--ink);
  display: grid;
  place-items: center;
}
.band-cinema-photo {
  position: absolute; inset: -12%;
  z-index: -2;
  background-image: var(--band-bg);
  background-size: cover;
  background-position: center 45%;
  filter: saturate(var(--grade-saturate)) contrast(var(--grade-contrast))
    brightness(0.46) var(--grade-warm);
  transform: scale(1.12);
  will-change: transform;
}
.band-cinema-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(165deg,
    color-mix(in srgb, var(--accent-warm) 20%, transparent),
    color-mix(in srgb, var(--accent-bold) 14%, transparent));
  mix-blend-mode: soft-light;
}
.band-cinema::after {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(70% 90% at 50% 120%, color-mix(in srgb, var(--accent-bold) 34%, transparent), transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--ink) 60%, transparent), transparent 40%, color-mix(in srgb, var(--ink) 70%, transparent));
}
.band-cinema-word {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 340;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(4rem, 16vw, 16rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: color-mix(in srgb, var(--paper) 94%, transparent);
  text-shadow: 0 12px 70px rgba(0, 0, 0, 0.55);
  user-select: none;
}

/* ==========================================================================
   SOCIAL PROOF / REVIEWS — italic display quotes on INK (dark rhythm break)
   --------------------------------------------------------------------------
   A dark band here breaks the light gallery→team→faq run so the lower half
   alternates instead of flattening into one long cream column (operator).
   ========================================================================== */
.section-reviews {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.section-reviews::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 12% 8%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 55%),
    radial-gradient(70% 80% at 92% 100%, color-mix(in srgb, var(--accent-bold) 22%, transparent), transparent 55%),
    linear-gradient(165deg, var(--ink-2), var(--ink));
}
.section-reviews .section-num { color: var(--accent-warm); }
.section-reviews .section-title { color: var(--paper); }
.section-reviews .section-title em { color: var(--accent-warm); }
.section-proof {
  padding-top: clamp(56px, 7vw, 104px);
  padding-bottom: clamp(56px, 7vw, 104px);
}
.proof-wrap { max-width: 1180px; }
.proof-eyebrow { font-family: var(--display); font-size: 14px; color: var(--accent-bold); margin: 0 0 32px; }
.proof-eyebrow em { font-style: italic; font-size: 20px; margin-right: 12px; }
.proof-line {
  font-family: var(--display);
  font-weight: 360;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.proof-rating { font-style: italic; font-weight: 380; color: var(--accent-bold); font-variant-numeric: tabular-nums; }
.proof-fract { font-style: italic; color: var(--ink-muted); font-size: 0.6em; vertical-align: 0.18em; }
.proof-context { display: inline; color: var(--ink-soft); }
.proof-context em { font-style: italic; color: var(--accent); }
.proof-context strong { font-weight: 400; font-style: italic; color: var(--ink); }

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.4vw, 38px);
}
.review-card {
  margin: 0;
  position: relative;
  padding: clamp(34px, 3.2vw, 52px) clamp(28px, 3vw, 44px) clamp(28px, 3vw, 40px);
  background: color-mix(in srgb, #fff 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--paper) 16%, transparent);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 36px 70px -50px rgba(0, 0, 0, 0.7);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms ease,
    border-color 360ms, background 360ms;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: clamp(4px, 0.6vw, 10px); left: clamp(20px, 2vw, 32px);
  font-family: var(--display);
  font-style: italic;
  font-size: 100px;
  line-height: 1;
  color: color-mix(in srgb, var(--accent-bold) 50%, transparent);
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-8px);
  background: color-mix(in srgb, #fff 10%, transparent);
  border-color: color-mix(in srgb, var(--accent-warm) 50%, transparent);
  box-shadow: 0 50px 90px -50px rgba(0, 0, 0, 0.8);
}
.review-quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.5;
  color: var(--paper);
  text-wrap: pretty;
  position: relative;
}
.review-author {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

/* ==========================================================================
   PROCESS / FEATURE (light card row)
   ========================================================================== */
.section-process { background: var(--paper); border-top: 1px solid var(--rule); }
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 72px);
  border-top: 1px solid var(--rule);
  padding-top: clamp(40px, 5vw, 72px);
}
.process-step { position: relative; transition: transform 280ms ease; }
.process-idx {
  font-family: var(--display);
  font-style: italic;
  font-weight: 360;
  font-size: clamp(48px, 5vw, 76px);
  color: var(--accent-bold);
  line-height: 0.86;
  margin: 0 0 18px;
  font-variant-numeric: tabular-nums;
}
.process-title {
  font-family: var(--display);
  font-weight: 360;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 12px;
}
.process-blurb {
  font-family: var(--body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0;
  max-width: 36ch;
}

/* ==========================================================================
   PRICING / TARIFAS
   ========================================================================== */
.section-tarifas { background: color-mix(in srgb, var(--accent) 6%, var(--paper-deep)); border-top: 1px solid var(--rule); }
.tarifas { border-top: 1px solid var(--ink); max-width: 940px; }
.tarifa-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: 18px;
  padding: clamp(18px, 2.2vw, 28px) 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 240ms ease;
}
.tarifa-row:hover { padding-left: 12px; }
.tarifa-name { font-family: var(--display); font-weight: 400; font-size: clamp(20px, 1.8vw, 28px); color: var(--ink); }
.tarifa-dur { font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-left: 10px; }
.tarifa-price { margin: 0; font-family: var(--display); font-style: italic; font-size: clamp(20px, 1.8vw, 28px); color: var(--accent); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ==========================================================================
   TEAM — large editorial COPPER-FOIL monogram plates (a deliberate feature)
   --------------------------------------------------------------------------
   No more flat brown rectangles reading as a missing photo. Each member is a
   TALL plate: an oversized italic monogram set in brushed copper-foil with a
   raking sheen + an engraved hairline + foil corners, the name in display, the
   role + credentials in refined caps that slide up on hover. It reads as a
   crafted brand mark, not a placeholder.
   ========================================================================== */
.section-team { background: var(--paper); border-top: 1px solid var(--rule); }
.team-plates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 3.4vw, 56px);
  margin-top: clamp(40px, 4.5vw, 68px);
}
.team-plate { margin: 0; position: relative; }
.plate {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
  box-shadow: 0 40px 80px -50px rgba(23, 18, 14, 0.55),
    inset 0 1px 0 color-mix(in srgb, #fff 14%, transparent);
  transition: transform 520ms cubic-bezier(.2,.7,.2,1), box-shadow 520ms ease;
}
.team-plate:hover .plate {
  transform: translateY(-8px) rotate(-0.6deg);
  box-shadow: 0 60px 110px -50px rgba(23, 18, 14, 0.6),
    inset 0 1px 0 color-mix(in srgb, #fff 18%, transparent);
}
/* Brushed copper-foil field. */
.plate-foil {
  position: absolute; inset: 0; z-index: -2;
  background:
    repeating-linear-gradient(108deg,
      color-mix(in srgb, var(--accent-warm) 38%, var(--ink-2)) 0 2px,
      color-mix(in srgb, var(--accent) 30%, var(--ink)) 2px 5px),
    radial-gradient(120% 90% at 22% 8%, color-mix(in srgb, var(--accent-warm) 60%, transparent), transparent 58%),
    radial-gradient(120% 120% at 100% 100%, color-mix(in srgb, var(--accent-bold) 46%, transparent), transparent 60%),
    linear-gradient(150deg, color-mix(in srgb, var(--accent) 34%, var(--ink-2)), var(--ink));
  background-blend-mode: overlay, screen, screen, normal;
}
/* Alternate plates mirror the foil + shift the glow so a pair reads as two
   crafted plates, not a copy-paste. */
.team-plate:nth-child(even) .plate-foil {
  background:
    repeating-linear-gradient(72deg,
      color-mix(in srgb, var(--accent-warm) 36%, var(--ink-2)) 0 2px,
      color-mix(in srgb, var(--accent) 28%, var(--ink)) 2px 5px),
    radial-gradient(120% 90% at 80% 6%, color-mix(in srgb, var(--accent-warm) 56%, transparent), transparent 58%),
    radial-gradient(120% 120% at 0% 100%, color-mix(in srgb, var(--accent-bold) 46%, transparent), transparent 60%),
    linear-gradient(210deg, color-mix(in srgb, var(--accent) 32%, var(--ink-2)), var(--ink));
  background-blend-mode: overlay, screen, screen, normal;
}
.team-plate:nth-child(even) .plate-mono {
  color: color-mix(in srgb, #fff 80%, var(--accent-warm));
}
.team-plate:nth-child(even):hover .plate { transform: translateY(-8px) rotate(0.6deg); }

/* A raking sheen band that sweeps on hover (the "foil catches the light"). */
.plate-sheen {
  position: absolute; inset: -40% -20%; z-index: -1;
  background: linear-gradient(104deg, transparent 38%,
    color-mix(in srgb, #fff 34%, transparent) 50%, transparent 62%);
  transform: translateX(-30%) rotate(0deg);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
  mix-blend-mode: soft-light;
}
.team-plate:hover .plate-sheen { transform: translateX(40%); }
.plate-mono {
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(120px, 16vw, 220px);
  line-height: 1;
  color: color-mix(in srgb, #fff 86%, var(--accent-warm));
  text-shadow: 0 2px 0 color-mix(in srgb, var(--accent-bold) 60%, transparent),
    0 18px 50px rgba(0, 0, 0, 0.45);
  display: grid; place-items: center; height: 100%;
}
/* Engraved foil corner ticks. */
.plate-corner { position: absolute; width: 26px; height: 26px; opacity: 0.6; }
.plate-corner-tl { top: 16px; left: 16px; border-top: 1.5px solid color-mix(in srgb, #fff 60%, transparent); border-left: 1.5px solid color-mix(in srgb, #fff 60%, transparent); }
.plate-corner-br { bottom: 16px; right: 16px; border-bottom: 1.5px solid color-mix(in srgb, #fff 60%, transparent); border-right: 1.5px solid color-mix(in srgb, #fff 60%, transparent); }
.plate-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(var(--grade-saturate)) var(--grade-warm); transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.team-plate:hover .plate-photo img { transform: scale(1.05); }
.team-caption { margin: 22px 4px 6px; }
.team-name { font-family: var(--display); font-size: clamp(24px, 1.9vw, 30px); letter-spacing: -0.01em; margin: 0; color: var(--ink); }
.team-role { font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 10px 0 0; line-height: 1.4; }
.team-cred { font-family: var(--display); font-style: italic; font-size: clamp(15px, 1.1vw, 18px); color: var(--ink-muted); margin: 8px 0 0; line-height: 1.4; max-width: 34ch; }

/* ==========================================================================
   FAQ — editorial TWO-COLUMN accordion (sticky title aside + animated rows)
   ========================================================================== */
.section-faq {
  position: relative;
  background: color-mix(in srgb, var(--accent) 5%, var(--paper-deep));
}
/* Luminous seam at the dark→light transition (reviews ends on ink). */
.section-faq::after {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(320px, 64%); height: 2px; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--accent-bold), transparent);
  opacity: 0.85;
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.45fr);
  gap: clamp(36px, 6vw, 110px);
  align-items: start;
}
.faq-aside { position: sticky; top: clamp(96px, 12vh, 140px); }
.faq-aside .section-num { color: var(--accent-bold); font-size: 18px; margin: 0 0 18px; }
.faq-aside .section-num em { font-style: italic; font-size: 30px; }
.faq-title { font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.0; letter-spacing: -0.026em; margin: 0; }
.faq-aside-note { font-family: var(--display); font-style: italic; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.45; color: var(--ink-muted); margin: 22px 0 0; max-width: 30ch; }
.faq-list { margin: 0; padding: 0; border-top: 1px solid var(--ink); min-width: 0; }
.faq-item { border-bottom: 1px solid var(--rule); transition: background 260ms ease, padding 260ms ease; }
.faq-item[open], .faq-item:hover { background: var(--paper-soft); }
.faq-item[open] { padding-left: clamp(8px, 1vw, 16px); }
.faq-question {
  list-style: none; cursor: pointer;
  display: grid;
  grid-template-columns: clamp(36px, 3vw, 52px) minmax(0, 1fr) 32px;
  align-items: baseline;
  column-gap: clamp(16px, 1.6vw, 28px);
  min-height: 48px;
  padding: clamp(20px, 2vw, 30px) 0;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-q-idx {
  font-family: var(--display); font-style: italic;
  font-size: clamp(16px, 1.3vw, 22px); color: var(--accent-bold);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.faq-q-text {
  font-family: var(--display); font-weight: 360;
  font-variation-settings: "opsz" 96;
  font-size: clamp(20px, 2vw, 30px); line-height: 1.18;
  letter-spacing: -0.012em; color: var(--ink); text-wrap: balance;
}
.faq-question::after {
  content: "+"; font-family: var(--display); font-style: italic;
  font-size: 30px; color: var(--accent-bold);
  text-align: right; line-height: 1; transition: transform 300ms ease;
}
.faq-item[open] .faq-question::after { content: "\2212"; transform: rotate(180deg); }
.faq-question:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.faq-answer { padding: 0 0 clamp(24px, 3vw, 36px); padding-left: calc(clamp(36px, 3vw, 52px) + clamp(16px, 1.6vw, 28px)); padding-right: clamp(20px, 2vw, 36px); animation: faqFadeIn 320ms ease both; }
.faq-answer p { margin: 0; max-width: 64ch; font-family: var(--body); font-size: clamp(15px, 1.05vw, 17px); line-height: 1.7; color: var(--ink-soft); }
@keyframes faqFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   BOOKING — the bold near-black close with a copper glow
   ========================================================================== */
.section-booking {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
  padding-top: clamp(96px, 12vw, 180px);
  padding-bottom: clamp(96px, 12vw, 180px);
  overflow: hidden;
}
.section-booking::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 90% at 88% 110%, color-mix(in srgb, var(--accent-bold) 48%, transparent), transparent 55%),
    radial-gradient(60% 80% at 4% -10%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 55%),
    linear-gradient(160deg, var(--ink-2), var(--ink));
}
.booking-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
.booking-head { min-width: 0; }
.section-num-inv { color: var(--accent-warm); margin-bottom: 24px; }
.section-num-inv em { font-size: 30px; }
.booking-headline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 360;
  font-variation-settings: "SOFT" 60, "opsz" 144;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--paper);
}
.booking-headline .acc { color: var(--accent-bold); }
.booking-body { display: flex; flex-direction: column; gap: 32px; max-width: 42ch; padding-bottom: 16px; }
.booking-copy { font-family: var(--display); font-size: clamp(18px, 1.5vw, 23px); line-height: 1.45; color: color-mix(in srgb, var(--paper) 78%, transparent); margin: 0; }
.booking-copy em { font-style: italic; color: var(--accent-warm); }
.booking-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.btn-on-ink { background: var(--paper); color: var(--ink); box-shadow: 0 18px 40px -22px rgba(0,0,0,0.6); }
.btn-on-ink::before { background: linear-gradient(110deg, transparent 20%, color-mix(in srgb, var(--accent-bold) 40%, transparent) 50%, transparent 80%); }
.btn-on-ink:hover { color: var(--ink); }
.btn-link-on-ink { color: color-mix(in srgb, var(--paper) 80%, transparent); }
.btn-link-on-ink::after { background: var(--accent-warm); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.section-contact { background: color-mix(in srgb, var(--accent) 6%, var(--paper-deep)); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 5vw, 80px); }
.contact-block { min-width: 0; }
.contact-label { font-family: var(--body); font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted); margin: 0 0 22px; }
.contact-prim { font-family: var(--display); font-size: clamp(20px, 1.7vw, 26px); font-weight: 400; color: var(--ink); line-height: 1.3; margin: 0 0 6px; }
.contact-block p { font-family: var(--display); font-size: clamp(18px, 1.4vw, 22px); margin: 0 0 8px; }
.contact-link { border-bottom: 1px solid var(--accent); padding-bottom: 2px; transition: border-color 180ms, color 180ms; color: var(--ink); }
.contact-link:hover { border-bottom-color: var(--ink); color: var(--accent-bold); }
.hours { display: grid; gap: 8px; }
.hours li { display: grid; grid-template-columns: 6.5em minmax(0, 1fr); column-gap: 16px; font-family: var(--body); font-size: 14px; color: var(--ink-soft); align-items: baseline; }
.hours-day { font-family: var(--body); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; }
.hours-time { font-variant-numeric: tabular-nums; text-align: right; }

/* ==========================================================================
   COLOPHON (footer)
   ========================================================================== */
.colophon { background: var(--ink); color: var(--paper); padding: clamp(72px, 9vw, 128px) 0 32px; }
.colophon-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.colophon-mark .brand-name { font-size: 40px; color: var(--paper); line-height: 1; }
.colophon-mark .brand-name em { color: var(--accent-warm); }
.colophon-place { font-family: var(--display); font-style: italic; font-size: 17px; color: color-mix(in srgb, var(--paper) 60%, transparent); margin: 14px 0 0; }
.colophon-meta { text-align: right; }
.colophon-line { font-family: var(--display); font-style: italic; font-size: 14px; color: color-mix(in srgb, var(--paper) 60%, transparent); margin: 0 0 6px; }
.colophon-fine { grid-column: 1 / -1; font-family: var(--body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--paper) 40%, transparent); margin: 56px 0 0; padding-top: 24px; border-top: 1px solid color-mix(in srgb, var(--paper) 12%, transparent); }
.colophon-credit { grid-column: 1 / -1; font-family: var(--body); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: color-mix(in srgb, var(--paper) 32%, transparent); margin: 14px 0 0; }

/* ==========================================================================
   GENERIC SECTIONS reused by other module types (announcement/compare/etc.)
   kept light + restrained so any document still renders cleanly.
   ========================================================================== */
.announce-strip { background: var(--ink); color: var(--paper); }
.announce-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; flex-wrap: wrap; }
.announce-text { font-family: var(--body); font-size: 14px; margin: 0; letter-spacing: 0.02em; }
.announce-link { font-family: var(--body); font-size: 13px; font-weight: 600; color: var(--accent-warm); }
.section-custom .custom-layer { border-top: 1px solid var(--rule); padding: clamp(24px, 3vw, 44px) 0; }
.custom-layer-name { font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; }
.custom-layer-body p { font-family: var(--display); font-size: clamp(18px, 1.6vw, 24px); line-height: 1.5; color: var(--ink); margin: 0; max-width: 60ch; }

/* ==========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================== */
.cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  grid-auto-flow: column; grid-auto-columns: 1fr; gap: 1px;
  background: color-mix(in srgb, var(--ink) 12%, transparent);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -10px 28px -18px rgba(23, 18, 14, 0.45);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.cta-bar-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 56px; padding: 14px 12px; font-family: var(--body); font-size: 15px; font-weight: 600; color: var(--paper); background: var(--ink); }
.cta-bar-wa, .cta-bar-book { background: var(--accent-deep); }
.cta-bar-btn:active { background: var(--accent-bold); }

/* ==========================================================================
   MOTION HOOKS (the JS-set reveal classes live in render_v2.py's _MOTION_HEAD,
   which already ships the .reveal cascade + heroRise + reduced-motion guard).
   These selectors only ADD the image clip-path reveal + parallax target hooks.
   ========================================================================== */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 1px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .strip-figure img,
  .gallery .g img { transform: none !important; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  :root { --cta-bar-h: 56px; }
  body { padding-bottom: calc(var(--cta-bar-h) + env(safe-area-inset-bottom, 0px)); }
  .cta-bar { display: grid; }

  .masthead-row { grid-template-columns: auto auto; gap: 16px; }
  .nav { display: none; }
  .masthead-meta { display: none; }

  .hero { min-height: 88vh; padding-top: clamp(120px, 24vh, 200px); }
  .hero-title { grid-column: 1 / -1; font-size: clamp(2.6rem, 11vw, 4.4rem); }
  .hero-body { grid-column: 1 / -1; }

  .strip-caption { grid-template-columns: 1fr; gap: 14px; }
  .strip-figure img { height: clamp(300px, 72vw, 520px); }

  .section-head { grid-template-columns: 44px 1fr; column-gap: 16px; }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }

  .service { grid-template-columns: 36px 1fr; }
  .service-meta { grid-column: 2; text-align: left; padding-top: 14px; display: flex; gap: 24px; align-items: baseline; }

  .manifesto-wrap { grid-template-columns: 1fr; gap: 28px; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 24px; }

  .gallery { grid-template-columns: repeat(6, 1fr); }
  .g-1, .g-4 { grid-column: span 6; aspect-ratio: 4 / 3; margin-top: 0; }
  .g-2, .g-3 { grid-column: span 3; aspect-ratio: 3 / 4; grid-row: auto; }

  /* Immersive mosaic → a simpler 6-col, auto-row stack on mobile (no holes). */
  .gallery-head { grid-template-columns: 44px 1fr; column-gap: 16px; }
  .gallery-mosaic { grid-template-columns: repeat(6, 1fr); grid-template-rows: none; grid-auto-rows: clamp(150px, 40vw, 280px); }
  .gtile-1 { grid-column: 1 / span 6; grid-row: span 2; }
  .gtile-2 { grid-column: 1 / span 3; grid-row: span 1; }
  .gtile-3 { grid-column: 4 / span 3; grid-row: span 1; }
  .gtile-4 { grid-column: 1 / span 6; grid-row: span 1; }
  .gtile-5 { grid-column: 1 / span 6; grid-row: span 1; }
  .gallery-mosaic:has(.gtile-5) .gtile-4 { grid-column: 1 / span 3; }
  .gallery-mosaic:has(.gtile-5) .gtile-5 { grid-column: 4 / span 3; }

  /* Signature stage: shorter scroll-through (still scrubs) + tighter type. */
  .scrollstage { height: 220vh; }
  .scrollstage-line { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .band-cinema-word { font-size: clamp(3rem, 20vw, 6rem); }

  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-aside { position: static; }
  .faq-question { grid-template-columns: clamp(28px, 8vw, 40px) minmax(0, 1fr) 28px; }
  .faq-answer { padding-left: 0; }

  .proof-line { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .process { grid-template-columns: 1fr; gap: 32px; }
  .reviews { grid-template-columns: 1fr; }
  .team, .team-plates { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .plate-mono { font-size: clamp(80px, 22vw, 130px); }

  .booking-wrap { grid-template-columns: 1fr; }
  .booking-headline { font-size: clamp(2.6rem, 12vw, 4rem); }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .colophon-wrap { grid-template-columns: 1fr; gap: 24px; }
  .colophon-meta { text-align: left; }
}

@media (max-width: 480px) {
  .hero-eyebrow { flex-wrap: wrap; }
}
