@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ink: #0b0a08;
  --bone: #f5eedd;
  --paper: #d9cfba;
  --gold: #d19a3f;
  --red: #b43a28;
  --red-brand: #c8442d;
  --white: #fffdf7;
  --muted: #6a6358;
  --line: rgba(11, 10, 8, 0.2);
  --line-light: rgba(255, 253, 247, 0.22);
  --header-h: 84px;
  --pad: clamp(1rem, 3vw, 3rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-physical: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 7%, rgba(209, 154, 63, 0.09), transparent 23rem),
    var(--bone);
  font-family: "Archivo", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    repeating-radial-gradient(circle at 17% 31%, rgba(11, 10, 8, 0.11) 0 0.4px, transparent 0.7px 3px),
    repeating-radial-gradient(circle at 83% 63%, rgba(255, 253, 247, 0.18) 0 0.5px, transparent 0.8px 4px);
  background-size: 6px 7px, 7px 6px;
  mix-blend-mode: multiply;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--bone); background: var(--red); }

img, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { color: inherit; }

[hidden] { display: none !important; }

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.shell {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--red);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 101;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.ink-canvas {
  position: fixed;
  z-index: 81;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.56;
}

.page-curtain {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--bone);
  background: var(--ink);
  pointer-events: none;
  animation: curtain-open 1.1s var(--ease-out) 140ms forwards;
}

.page-curtain::before,
.page-curtain::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(245, 238, 221, 0.15);
}

.page-curtain::before { left: 33.333%; }
.page-curtain::after { right: 33.333%; }
.page-curtain img { width: 5.5rem; filter: sepia(1) saturate(0.6); }

@keyframes curtain-open {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); visibility: hidden; }
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms var(--ease-out), transform 900ms var(--ease-out);
}

.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.no-js [data-reveal] { opacity: 1; transform: none; }

.kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 clamp(1.25rem, 2vw, 2rem);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
}

.kicker-light { color: var(--paper); }

h1, h2, h3, p { margin-top: 0; }

h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.15vw, 6.25rem);
  font-weight: 820;
  line-height: 0.85;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

h2 em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-transform: none;
}

.section { padding-block: clamp(4.25rem, 7vw, 6.75rem); }
.section-dark { color: var(--white); background: var(--ink); }

.button {
  --button-bg: transparent;
  --button-fg: currentColor;
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2.2rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid currentColor;
  color: var(--button-fg);
  background: var(--button-bg);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 300ms ease, background 300ms ease, transform 400ms var(--ease-out);
}

.button:focus-visible { color: var(--button-bg); background: var(--button-fg); }
.button:active { transform: scale(0.98); }
.button-small { min-height: 2.8rem; padding: 0.65rem 0.85rem; gap: 1.35rem; font-size: 0.65rem; }
.button-ink { --button-bg: var(--ink); --button-fg: var(--bone); border-color: var(--ink); }
.button-bone { --button-bg: var(--bone); --button-fg: var(--ink); border-color: var(--bone); }

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span { transition: transform 280ms var(--ease-out); }
/* Tap target >=44px sin alterar el ritmo visual: el padding crece el area de toque
   y el margen negativo devuelve el espacio al layout. */
.text-link { padding-block: 0.55rem; margin-block: -0.55rem; }
.text-link:focus-visible span { transform: translate(0.2rem, -0.2rem); }
.text-link-light { color: var(--white); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 450ms var(--ease-out);
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(245, 238, 221, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}

.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; width: clamp(8.2rem, 12vw, 11rem); flex: 0 0 auto; min-height: 2.75rem; align-items: center; }
.brand img { width: 100%; max-height: 3.6rem; object-fit: contain; }

.desktop-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.8rem); }
.desktop-nav a {
  position: relative;
  padding-block: 0.4rem;
  font-size: 0.69rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-out);
}

.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.language-link { display: inline-grid; min-width: 2.75rem; min-height: 2.75rem; place-items: center; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; }

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin-block: 0.32rem;
  background: currentColor;
  transition: transform 300ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(0.32rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-0.32rem) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: -1;
  inset: var(--header-h) 0 0;
  min-height: calc(100dvh - var(--header-h));
  padding: clamp(2rem, 8vw, 5rem) var(--pad);
  color: var(--bone);
  background: var(--ink);
  overflow-y: auto;
}

.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(2.3rem, 11vw, 5rem);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.mobile-menu nav a span { color: var(--gold); font-size: 0.68rem; letter-spacing: 0.1em; }
.mobile-menu-meta { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; color: var(--paper); font-size: 0.8rem; }

/* Hero */
.hero {
  --hero-top: clamp(1rem, 2vw, 2rem);
  --hero-bottom: clamp(1.25rem, 2vw, 2rem);
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + var(--hero-top)) 0 var(--hero-bottom);
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 66.666%;
  width: 1px;
  background: var(--line);
}

.hero::after {
  content: "25 YEARS / FOUR STYLES / ONE HAND";
  position: absolute;
  z-index: 0;
  top: 11rem;
  right: -4.6rem;
  color: rgba(11, 10, 8, 0.4);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  transform: rotate(90deg);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 1rem;
  min-height: calc(100svh - var(--header-h) - var(--hero-top) - var(--hero-bottom));
}

.hero-copy { position: relative; z-index: 3; grid-column: 1 / 10; grid-row: 1; min-width: 0; }
.hero-kicker { justify-content: space-between; width: min(48rem, 68%); }
.hero-kicker::before { display: none; }

.hero-title {
  margin: 0;
  font-size: clamp(3.65rem, 6.65vw, 6.9rem);
  font-weight: 840;
  line-height: 0.76;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.title-line { display: block; overflow: hidden; }
.title-line > span {
  display: block;
  transform: translateY(115%);
  animation: title-in 1.05s var(--ease-out) forwards;
}

.title-line:nth-child(1) > span { animation-delay: 0.55s; }
.title-line:nth-child(2) > span { animation-delay: 0.66s; }
.title-line:nth-child(3) > span { animation-delay: 0.77s; }

@keyframes title-in { to { transform: translateY(0); } }

.title-line-serif {
  padding: 0.05em 0 0.08em;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: -0.055em;
  text-transform: none;
}

.title-line-indent { padding-left: clamp(1.5rem, 7.5vw, 7.5rem); }

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 22rem);
  gap: 1rem;
  width: 45%;
  margin-top: clamp(1.25rem, 2.2vw, 2rem);
}

.hero-intro p { margin-bottom: 0.25rem; font-size: clamp(0.95rem, 1.15vw, 1.17rem); line-height: 1.55; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }

.hero-award {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  max-width: 100%;
  margin-top: clamp(1.1rem, 2vw, 1.75rem);
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.award-year { font-family: "Cormorant Garamond", Georgia, serif; color: var(--red); font-size: 2.4rem; font-style: italic; line-height: 1; }
.hero-award p { margin: 0; font-size: 0.67rem; line-height: 1.45; letter-spacing: 0.06em; text-transform: uppercase; }

.hero-media {
  position: relative;
  z-index: 2;
  grid-column: 8 / 13;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  width: min(100%, 23.5rem);
  margin: clamp(0.5rem, 1.25vw, 1rem) 0 0;
  padding: 0.75rem;
  border: 1px solid rgba(11, 10, 8, 0.3);
  background: rgba(245, 238, 221, 0.62);
  transform: rotate(2deg);
  transform-style: preserve-3d;
  transition: transform 500ms var(--ease-out);
}

.media-frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #201713; }
.media-frame video { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.video-wash { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(11, 10, 8, 0.58)); pointer-events: none; }

.video-toggle {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  bottom: 0.8rem;
  display: inline-flex;
  min-width: 5.5rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 253, 247, 0.62);
  color: var(--white);
  background: rgba(11, 10, 8, 0.52);
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.media-seal {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 253, 247, 0.66);
  border-radius: 50%;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 0.9;
  text-align: center;
  transform: rotate(-10deg);
}

.hero-media figcaption { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0.1rem 0; font-size: 0.56rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.registration-mark { position: absolute; z-index: 3; width: 1rem; height: 1rem; pointer-events: none; }
.registration-mark::before, .registration-mark::after { content: ""; position: absolute; background: var(--red-brand); }
.registration-mark::before { top: 50%; left: 0; width: 100%; height: 1px; }
.registration-mark::after { top: 0; left: 50%; width: 1px; height: 100%; }
.reg-tl { top: -0.5rem; left: -0.5rem; }
.reg-br { right: -0.5rem; bottom: -0.5rem; }

.hero-note {
  z-index: 4;
  grid-column: 7 / 10;
  grid-row: 2;
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-top: 1rem;
  margin-bottom: 1rem;
  border-top: 1px solid var(--line);
}

.hero-note p { margin: 0; max-width: 17rem; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.1rem; font-style: italic; line-height: 1.25; }
.note-index { color: var(--red); font-size: 0.62rem; font-weight: 700; }

.scroll-cue {
  position: absolute;
  right: calc(var(--pad) + 5.75rem);
  bottom: 1.25rem;
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 1rem;
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue span:last-child { animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 50% { transform: translateY(0.35rem); } }

/* Proof */
.proof-strip { border-block: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof-grid > div { display: flex; min-width: 0; align-items: baseline; gap: 0.75rem; padding: 1.3rem clamp(0.75rem, 2vw, 2rem); border-right: 1px solid var(--line); }
.proof-grid > div:first-child { padding-left: 0; }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { font-family: "Cormorant Garamond", Georgia, serif; color: var(--red); font-size: clamp(1.5rem, 2.5vw, 2.8rem); font-style: italic; line-height: 1; white-space: nowrap; }
.proof-grid span { font-size: 0.61rem; font-weight: 720; letter-spacing: 0.08em; text-transform: uppercase; }

/* Shared section headers */
.section-head { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(17rem, 0.7fr); gap: clamp(2rem, 4vw, 5rem); align-items: end; }
.section-intro { margin: 0 0 0.65rem; max-width: 30rem; font-size: clamp(1rem, 1.25vw, 1.22rem); }
.section-intro p:last-child { margin-bottom: 0; }
.archive-note { color: var(--muted); font-size: 0.7rem; letter-spacing: 0.04em; }

/* Work archive */
.filters { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: clamp(2rem, 3.5vw, 3.5rem); }
.filter {
  min-height: 2.85rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease;
}
.filter span { margin-left: 0.55rem; color: var(--muted); font-size: 0.52rem; }
.filter.is-active { color: var(--bone); background: var(--ink); border-color: var(--ink); }
.filter.is-active span { color: var(--paper); }
/* En /work/ la fila de estilos son enlaces al archivo completo, no filtros: el ancla
   necesita el mismo bloque y una señal de que lleva a otra página. */
a.filter { display: inline-flex; align-items: center; color: inherit; text-decoration: none; }
a.filter::after { content: "→"; margin-left: 0.6rem; color: var(--red); font-size: 0.7rem; transition: transform 250ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  a.filter:hover { color: var(--bone); background: var(--ink); border-color: var(--ink); }
  a.filter:hover span { color: var(--paper); }
  a.filter:hover::after { transform: translateX(0.2rem); }
}

.work-showcase {
  position: relative;
  width: min(100%, 76rem);
  min-width: 0;
  margin-top: 1.25rem;
}

/* ARCHIVE RHYTHM ENGINE
   The archive is a catalogue, not a contact sheet: no two screens should read alike.
   One flat DOM keeps filtering and the lightbox intact; variety comes from per-piece
   placement classes over a 6-column dense grid, so hiding pieces never leaves holes.
   Placement is orientation-aware in the generator — a landscape piece never lands in
   a portrait slot, so nothing is cropped to death. */
.gallery.gallery-rhythm {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: row dense;
  align-items: start;
}
.gallery-rhythm .p-quiet { grid-column: span 2; }
.gallery-rhythm .p-wide { grid-column: span 3; }
.gallery-rhythm .p-tall { grid-column: span 2; }
.gallery-rhythm .p-hero { grid-column: span 3; }
.gallery-rhythm .p-band { grid-column: span 6; }

.gallery-rhythm .p-quiet .gallery-image { aspect-ratio: 4 / 5; }
.gallery-rhythm .p-wide .gallery-image { aspect-ratio: 3 / 2; }
.gallery-rhythm .p-tall .gallery-image { aspect-ratio: 4 / 6.4; }
/* The two statement sizes keep the real frame of the photograph — the work is never
   cropped to fit the layout; the layout is cut to fit the work. The height cap keeps
   a plate reading like a plate instead of a billboard. */
.gallery-rhythm .p-hero .gallery-image,
.gallery-rhythm .p-band .gallery-image { aspect-ratio: var(--piece-ratio, 4 / 5); }
.gallery-rhythm .p-hero .gallery-image { max-height: 44rem; }
.gallery-rhythm .p-band .gallery-image { max-height: 34rem; }
.gallery-rhythm .p-hero .gallery-image img,
.gallery-rhythm .p-band .gallery-image img { object-fit: contain; background: var(--paper); }

/* Staggered baseline: the grid stops reading as a spreadsheet. Margin, not transform,
   so the reveal animation keeps its own transform. */
@media (min-width: 900px) {
  .gallery-rhythm .p-drop { margin-top: clamp(1rem, 2vw, 2rem); }
  .gallery-rhythm .p-hero .gallery-caption,
  .gallery-rhythm .p-band .gallery-caption { padding-top: 0.9rem; }
}

/* Films are the spreads that break the stills: vertical footage keeps its own frame
   beside an editorial block, and the side alternates so two films never read alike. */
.gallery-card.film-spread {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 19rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-block: clamp(1rem, 2vw, 2rem);
  padding-block: clamp(1.5rem, 3vw, 3rem);
  border-block: 1px solid var(--line);
  text-align: left;
}
.gallery-card.film-spread.is-flipped { grid-template-columns: minmax(0, 1fr) minmax(0, 19rem); }
.gallery-card.film-spread.is-flipped .film-spread-media { order: 2; }
/* Vertical footage keeps its own frame: no forced ratio, no letterbox bars. */
.film-spread .film-spread-media.gallery-image {
  position: relative;
  width: 100%;
  aspect-ratio: auto;
  border: 1px solid var(--line);
  background: #090806;
  overflow: hidden;
}
.film-spread .film-spread-media video { display: block; width: 100%; height: auto; object-fit: contain; }
.film-spread-copy { display: grid; gap: 0.85rem; max-width: 34ch; }
.film-spread-copy > span { color: var(--red); font-size: 0.56rem; font-weight: 780; letter-spacing: 0.1em; text-transform: uppercase; }
.film-spread-copy strong { font-size: clamp(1.5rem, 3.2vw, 2.6rem); line-height: 1.05; letter-spacing: -0.01em; }
.film-spread-copy p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
.film-spread-copy small { color: var(--muted); font-size: 0.53rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* Chapter pager: reads as a page marker in a catalogue, not as web pagination. */
.archive-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.archive-pager-index { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.archive-pager-index a {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  transition: color 220ms var(--ease-out), background-color 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.archive-pager-index a[aria-current="page"] { color: var(--bone); background: var(--ink); border-color: var(--ink); }
.archive-pager .pager-void { width: 1px; }
@media (hover: hover) and (pointer: fine) {
  .archive-pager-index a:hover { color: var(--ink); border-color: var(--ink); }
}
@media (max-width: 620px) {
  .archive-pager { flex-wrap: wrap; justify-content: center; }
  .archive-pager-index { order: -1; width: 100%; justify-content: center; }
}

/* Archive numbers are read down the page against each other, so they need to line up. */
.gallery-caption small,
.film-spread-copy small,
.archive-era b,
.work-count,
.page-hero-facts b { font-variant-numeric: tabular-nums; }

/* Era divider: pure type, zero weight, and it lets the eye rest between runs. */
.archive-era {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: clamp(0.85rem, 2vw, 1.75rem);
  margin-block: clamp(1.25rem, 3vw, 2.75rem);
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.archive-era span { color: var(--red); font-size: 0.56rem; font-weight: 780; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.archive-era b { color: rgba(11, 10, 8, 0.14); font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-weight: 400; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 0.85; }
.archive-era i { flex: 1; height: 1px; background: var(--line); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: clamp(1.25rem, 2.5vw, 2.75rem) clamp(0.75rem, 1.5vw, 1.5rem);
  margin-top: 0;
}

.gallery-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}

.gallery-card-wide { grid-column: span 2; }
.gallery-image { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper); }
.gallery-card-wide .gallery-image { aspect-ratio: 8 / 5; }
.gallery-card-tall .gallery-image { aspect-ratio: 4 / 5; }
.gallery-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.91) contrast(1.03); transition: transform 900ms var(--ease-out), filter 500ms ease; }
.gallery-image video { display: block; width: 100%; height: 100%; object-fit: contain; background: #090806; }
.gallery-card-video { cursor: pointer; }
.gallery-card:focus-visible .gallery-image img { transform: scale(1.035); filter: saturate(1.06) contrast(1.04); }

.motion-badge {
  position: absolute;
  z-index: 3;
  right: 0.8rem;
  bottom: 0.8rem;
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 253, 247, 0.32);
  color: var(--bone);
  background: rgba(11, 10, 8, 0.82);
  font-size: 0.54rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.motion-badge i { color: var(--gold); font-style: normal; }
.gallery-card-video.is-video-paused .motion-badge i { font-size: 0; }
.gallery-card-video.is-video-paused .motion-badge i::after { content: "▶"; font-size: 0.62rem; }

/* preload="none" buffering: the request is alive, keep the control honest while it loads. */
@keyframes film-loading-pulse { 50% { opacity: 0.42; } }
.gallery-card.is-film-loading .motion-badge,
.ambient-film.is-film-loading .ambient-toggle { animation: film-loading-pulse 1.1s ease-in-out infinite; }
.gallery-card.is-film-loading .motion-badge i { font-size: 0; }
.gallery-card.is-film-loading .motion-badge i::after { content: "…"; font-size: 0.62rem; letter-spacing: 0.14em; }
.ambient-film.is-film-tappable { cursor: pointer; }

.gallery-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(11, 10, 8, 0.42));
  opacity: 0;
  transition: opacity 400ms ease;
}
.gallery-card:focus-visible .gallery-image::after { opacity: 1; }

.inspect {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.55rem 0.7rem;
  color: var(--ink);
  background: var(--bone);
  font-size: 0.56rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 300ms ease, transform 400ms var(--ease-out);
}
.gallery-card:focus-visible .inspect { opacity: 1; transform: translateY(0); }

.gallery-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.12rem 1rem;
  align-items: baseline;
  padding-top: 0.75rem;
}
.gallery-caption > span { grid-column: 1; color: var(--red); font-size: 0.56rem; font-weight: 780; letter-spacing: 0.1em; text-transform: uppercase; }
.gallery-caption strong { grid-column: 1; font-size: 0.95rem; }
.gallery-caption small { grid-column: 2; grid-row: 1 / 3; color: var(--muted); font-size: 0.53rem; letter-spacing: 0.08em; text-transform: uppercase; }
.gallery-card[hidden] { display: none; }

.work-index,
.work-hint { display: none; }

.work-showcase.is-showcase-ready .gallery {
  position: relative;
  display: block;
  height: clamp(25rem, 56svh, 34rem);
  border: 1px solid rgba(11, 10, 8, 0.32);
  background:
    radial-gradient(circle at 18% 22%, rgba(209, 154, 63, 0.13), transparent 25rem),
    #15120f;
  box-shadow: 0.7rem 0.8rem 0 rgba(11, 10, 8, 0.07);
  overflow: clip;
  isolation: isolate;
  touch-action: pan-y;
}

.work-showcase.is-showcase-ready .gallery::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0.85rem;
  left: 0.85rem;
  width: 1rem;
  height: 1rem;
  background:
    linear-gradient(var(--red-brand), var(--red-brand)) center / 100% 1px no-repeat,
    linear-gradient(var(--red-brand), var(--red-brand)) center / 1px 100% no-repeat;
  pointer-events: none;
}

.js .work-showcase.is-showcase-ready .gallery-card[data-reveal] {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(15rem, 0.58fr);
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: none;
  transition: none;
}

.js .work-showcase.is-showcase-ready .gallery-card[data-reveal].is-current,
.js .work-showcase.is-showcase-ready .gallery-card[data-reveal].is-leaving {
  visibility: visible;
  will-change: transform, opacity;
}

.js .work-showcase.is-showcase-ready .gallery-card[data-reveal].is-leaving { z-index: 1; }

/* Ghost archive numeral fills the empty top of the caption panel. */
@media (min-width: 1100px) {
  .work-showcase.is-showcase-ready .gallery-card[data-archive-ref]::before {
    content: attr(data-archive-ref);
    position: absolute;
    z-index: 1;
    right: 1.6rem;
    top: 3.2rem;
    color: rgba(209, 154, 63, 0.22);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-size: clamp(4.5rem, 7vw, 7.5rem);
    line-height: 1;
    letter-spacing: 0.03em;
    pointer-events: none;
  }
}

.js .work-showcase.is-showcase-ready .gallery-card[data-reveal].is-current {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.work-showcase.is-showcase-ready .gallery-image,
.work-showcase.is-showcase-ready .gallery-card-wide .gallery-image,
.work-showcase.is-showcase-ready .gallery-card-tall .gallery-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.04), transparent 42%),
    var(--ink);
}

.work-showcase.is-showcase-ready .gallery-image img {
  object-fit: contain;
  object-position: center;
  filter: saturate(0.98) contrast(1.025);
  transition: transform 500ms var(--ease-out), filter 260ms ease;
}

.work-showcase.is-showcase-ready .gallery-film video { object-fit: contain; }

.work-showcase.is-showcase-ready .gallery-card:focus-visible .gallery-image img {
  transform: scale(1.018);
  filter: saturate(1.06) contrast(1.035);
}

.work-showcase.is-showcase-ready .gallery-caption {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0;
  padding: clamp(1.5rem, 3.2vw, 3rem);
  border-left: 1px solid var(--line-light);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.035), transparent 38%),
    #12100e;
}

.work-showcase.is-showcase-ready .gallery-caption::before {
  content: "Selected / 25+ years";
  position: absolute;
  top: clamp(1.5rem, 3.2vw, 3rem);
  left: clamp(1.5rem, 3.2vw, 3rem);
  color: rgba(255, 253, 247, 0.48);
  font-size: 0.5rem;
  font-weight: 730;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

html[lang="es"] .work-showcase.is-showcase-ready .gallery-caption::before { content: "Selección / 25+ años"; }

.work-showcase.is-showcase-ready .gallery-caption > span:not(.gallery-description) {
  grid-column: auto;
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-size: 0.62rem;
}

.work-showcase.is-showcase-ready .gallery-caption strong {
  grid-column: auto;
  max-width: 100%;
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
  font-weight: 780;
  line-height: 0.93;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.work-showcase.is-showcase-ready .gallery-card-video .gallery-caption strong {
  font-size: clamp(1.55rem, 2.15vw, 1.9rem);
  overflow-wrap: anywhere;
}

.work-showcase.is-showcase-ready .gallery-caption small {
  position: absolute;
  top: clamp(1.5rem, 3.2vw, 3rem);
  right: clamp(1.5rem, 3.2vw, 3rem);
  grid-column: auto;
  grid-row: auto;
  color: var(--gold);
}

.work-showcase.is-showcase-ready .gallery-description {
  display: -webkit-box;
  /* La caption es una grid: sin esto la descripcion crea una columna implicita y
     desborda el viewport en pantallas estrechas. */
  grid-column: 1 / -1;
  /* En movil la caption es flex: sin width y min-width la caja line-clamp toma el
     ancho de contenido maximo y desborda el viewport. */
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
  max-width: 31rem;
  margin-top: 1.15rem;
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.78rem;
  font-weight: 420;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.work-showcase.is-showcase-ready .gallery-card.is-current .inspect {
  opacity: 1;
  transform: translateY(0);
}

.work-controls {
  display: grid;
  grid-template-columns: auto minmax(9rem, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0 0.85rem;
  border-bottom: 1px solid var(--line);
}

.work-arrow {
  display: inline-flex;
  min-width: 7.4rem;
  min-height: 3rem;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, transform 160ms var(--ease-out);
}

.work-arrow-next { justify-content: flex-end; }
.work-arrow:active { transform: scale(0.97); }

.work-position { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 0.9rem; }
.work-count { flex: 0 0 auto; color: var(--red); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.15rem; font-style: italic; line-height: 1; }
.work-progress { display: block; width: min(14vw, 8.5rem); height: 1px; background: var(--line); overflow: hidden; }
.work-progress i { display: block; width: 100%; height: 100%; background: var(--red); transform: scaleX(0.0833); transform-origin: left; transition: transform 250ms var(--ease-out); }

.work-showcase.is-showcase-ready .work-index {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem 0 0.2rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  overscroll-behavior-inline: contain;
}

.work-index button {
  display: grid;
  width: 2.8rem;
  min-width: 2.8rem;
  min-height: 2.8rem;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 0.58rem;
  font-weight: 760;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out);
}

.work-index button.is-index-current { color: var(--bone); background: var(--ink); border-color: var(--ink); }
.work-index button:active { transform: scale(0.96); }

.work-showcase.is-showcase-ready .work-hint {
  display: block;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.025em;
}

/* Short films stay inside the editorial rhythm instead of becoming pasted-in reels. */
.film-bridge {
  position: relative;
  padding: clamp(2.75rem, 5vw, 5rem) 0 clamp(1rem, 2.5vw, 2.5rem);
  overflow: clip;
}
.film-bridge::before { content: ""; position: absolute; inset: 0; opacity: 0.1; background: repeating-linear-gradient(90deg, transparent 0 calc(25% - 1px), var(--paper) calc(25% - 1px) 25%); pointer-events: none; }
.film-bridge-grid { position: relative; display: grid; grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1.58fr); gap: clamp(1.75rem, 4vw, 4.5rem); align-items: center; padding-top: 1.25rem; border-top: 1px solid var(--line-light); }
.film-bridge-copy { align-self: stretch; display: flex; min-width: 0; flex-direction: column; justify-content: center; }
.film-bridge-copy > span, .process-film-copy > span { color: var(--gold); font-size: 0.55rem; font-weight: 760; letter-spacing: 0.11em; text-transform: uppercase; }
.film-bridge-copy p { max-width: 9ch; margin: 1.2rem 0 1.5rem; color: var(--bone); font-size: clamp(1.8rem, 3vw, 3.3rem); font-weight: 780; line-height: 0.9; letter-spacing: -0.055em; text-transform: uppercase; }
.film-bridge-copy small { color: rgba(245, 238, 221, 0.58); font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; }
.ambient-film { position: relative; min-width: 0; margin: 0; border: 1px solid var(--line-light); background: #070605; overflow: hidden; isolation: isolate; }
.ambient-film-wide { aspect-ratio: 16 / 7; }
.ambient-film-vertical { width: min(100%, 15rem); aspect-ratio: 9 / 16; justify-self: end; }
.ambient-film video { display: block; width: 100%; height: 100%; object-fit: cover; }
.ambient-film-vertical video { object-fit: contain; }
.film-vignette { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(11, 10, 8, 0.28), transparent 18%, transparent 82%, rgba(11, 10, 8, 0.28)), linear-gradient(0deg, rgba(11, 10, 8, 0.5), transparent 35%); pointer-events: none; }
.ambient-toggle { position: absolute; z-index: 3; left: 0.75rem; bottom: 2.35rem; display: inline-flex; min-height: 2.75rem; align-items: center; gap: 0.5rem; padding: 0.55rem 0.75rem; border: 1px solid rgba(255, 253, 247, 0.35); color: var(--bone); background: rgba(11, 10, 8, 0.78); font-size: 0.55rem; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; backdrop-filter: blur(8px); }
.ambient-toggle span { color: var(--gold); }
.ambient-toggle b { font: inherit; }
.ambient-film figcaption { position: absolute; z-index: 2; inset: auto 0 0; display: flex; min-height: 1.8rem; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.45rem 0.75rem; color: rgba(255, 253, 247, 0.68); background: rgba(11, 10, 8, 0.82); font-size: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; }

.process-film { display: grid; grid-template-columns: minmax(0, 1fr) minmax(11rem, 15rem); gap: clamp(2rem, 5vw, 5rem); align-items: center; width: min(100%, 64rem); margin-top: clamp(3rem, 5vw, 5rem); padding-block: clamp(1.75rem, 3vw, 3rem); border-block: 1px solid var(--line); }
.process-film-copy { min-width: 0; }
.process-film-copy strong { display: block; max-width: 13ch; margin: 1rem 0; font-size: clamp(1.8rem, 3.2vw, 3.5rem); line-height: 0.93; letter-spacing: -0.055em; text-transform: uppercase; }
.process-film-copy p { max-width: 38rem; margin: 0; color: var(--muted); }

/* Story */
.story { position: relative; overflow: clip; padding-block: clamp(4.25rem, 7vw, 6.75rem); }
.story::before { content: ""; position: absolute; inset: 0; opacity: 0.12; background: repeating-linear-gradient(90deg, transparent 0 calc(25% - 1px), var(--paper) calc(25% - 1px) 25%); pointer-events: none; }
.story-grid { position: relative; display: grid; grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.45fr); gap: clamp(2.5rem, 5vw, 6rem); align-items: center; }
.story-media { position: relative; width: 100%; max-width: 26rem; justify-self: center; padding: 0.75rem; border: 1px solid var(--line-light); transform: rotate(-2deg); }
.story-media picture { display: block; aspect-ratio: 4 / 5; overflow: hidden; }
.story-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) sepia(0.1) contrast(1.07); }
.portrait-label { display: block; padding: 0.75rem 0.25rem 0.1rem; color: var(--paper); font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; }
.portrait-number { position: absolute; right: -1.6rem; bottom: 2.5rem; color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(4rem, 8vw, 8rem); font-style: italic; line-height: 1; }
.story-copy { min-width: 0; }
.story-copy h2 { max-width: 11ch; font-size: clamp(2.6rem, 4.8vw, 5.5rem); }
.story-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); margin: clamp(2rem, 3.5vw, 3.5rem) 0 1.75rem; color: var(--paper); }
.story-columns p { margin: 0; }
.story-copy blockquote { margin: 1.75rem 0; padding: 1.15rem 0 1.15rem clamp(1.25rem, 3vw, 3rem); border-block: 1px solid var(--line-light); }
.story-copy blockquote p { max-width: 25ch; margin: 0; font-family: "Cormorant Garamond", Georgia, serif; color: var(--gold); font-size: clamp(1.6rem, 2.5vw, 2.8rem); font-style: italic; line-height: 1; }

/* Awards */
.awards { border-bottom: 1px solid var(--line); }
.awards-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(2.5rem, 5vw, 6rem); }
.award-sticky { align-self: start; }
.award-sticky h2 { max-width: 8ch; }
.award-medallion {
  display: grid;
  width: clamp(10rem, 15vw, 13rem);
  aspect-ratio: 1;
  place-content: center;
  margin: clamp(2rem, 3.5vw, 3.5rem) auto 0;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  text-align: center;
  transform: rotate(-7deg);
}
.award-medallion::before { content: ""; position: absolute; inset: 0.55rem; border: 1px dashed currentColor; border-radius: 50%; }
.award-medallion span { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(3.5rem, 6vw, 5.8rem); font-style: italic; line-height: 0.72; }
.award-medallion small { margin-top: 0.9rem; font-size: 0.52rem; font-weight: 760; line-height: 1.45; letter-spacing: 0.12em; text-transform: uppercase; }
.award-list { margin: 0; padding: 0; list-style: none; counter-reset: award; }
.award-list li { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(1rem, 2.2vw, 2.25rem); align-items: start; padding: clamp(1.25rem, 2.2vw, 2.25rem) 0; border-top: 1px solid var(--line); }
.award-list li:last-child { border-bottom: 1px solid var(--line); }
.award-list time { color: var(--red); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.8rem, 3vw, 3.2rem); font-style: italic; line-height: 1; }
.award-list div { display: grid; gap: 0.35rem; }
.award-list strong { font-size: clamp(1rem, 1.6vw, 1.45rem); line-height: 1.2; }
.award-list div span { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; }
.list-index { color: var(--muted); font-size: 0.55rem; letter-spacing: 0.1em; }
.award-source { margin-top: 2.5rem; color: var(--muted); font-size: 0.67rem; }

/* Process */
.process { background: var(--paper); }
.process-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(2.5rem, 4vw, 4rem); padding-top: 0; padding-bottom: 0; list-style: none; counter-reset: steps; }
.process-list li { position: relative; min-width: 0; padding: 1.5rem clamp(1rem, 2.4vw, 2.5rem) 0; border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.process-list li:first-child { padding-left: 0; border-left: 0; }
.step-number { color: var(--red); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; }
.step-mark { position: absolute; top: -0.45rem; left: -0.45rem; width: 0.85rem; height: 0.85rem; border: 1px solid var(--red); border-radius: 50%; background: var(--paper); }
.process-list li:first-child .step-mark { left: 0; }
.process-list h3 { margin: clamp(1.5rem, 2.5vw, 2.5rem) 0 0.8rem; font-size: clamp(1.2rem, 1.7vw, 1.65rem); line-height: 1; letter-spacing: -0.04em; text-transform: uppercase; }
.process-list p { margin: 0; color: #4b453d; font-size: 0.86rem; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(2.5rem, 5vw, 6rem); }
.faq-grid h2 { max-width: 11ch; font-size: clamp(2.7rem, 4.9vw, 5.8rem); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; align-items: center; min-height: 4.5rem; padding: 0.85rem 0; font-weight: 700; line-height: 1.25; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 2rem; height: 2rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 1.15rem; font-weight: 400; transition: transform 350ms var(--ease-out), color 250ms ease, background 250ms ease; }
.faq-list details[open] summary span { color: var(--bone); background: var(--ink); transform: rotate(45deg); }
.faq-list details p { max-width: 44rem; margin: -0.25rem 3.5rem 1.75rem 0; color: var(--muted); }

/* Booking */
.booking { position: relative; padding-block: clamp(4.25rem, 7vw, 6.75rem); overflow: clip; }
.booking::before { content: ""; position: absolute; top: -12rem; left: 45%; width: 33rem; aspect-ratio: 1; border: 1px solid rgba(209, 154, 63, 0.26); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(209, 154, 63, 0.02), 0 0 0 10rem rgba(209, 154, 63, 0.015); pointer-events: none; }
.booking-grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(25rem, 1.18fr); gap: clamp(2.5rem, 5vw, 6rem); }
.booking-copy h2 { max-width: 8.5ch; }
.booking-copy > p:not(.kicker) { max-width: 27rem; margin: 1.75rem 0; color: var(--paper); }
.direct-contact { display: grid; gap: 0.65rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); }
.direct-contact span { color: var(--paper); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }
.direct-contact a { display: flex; width: max-content; max-width: 100%; min-height: 2.75rem; align-items: center; border-bottom: 1px solid var(--line-light); font-size: 0.84rem; overflow-wrap: anywhere; }
.booking-form { min-width: 0; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.field { display: grid; gap: 0.5rem; margin-bottom: 1.3rem; }
.field > span { color: var(--paper); font-size: 0.58rem; font-weight: 730; letter-spacing: 0.1em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.46);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  outline: 0;
  transition: border-color 250ms ease;
}
.field textarea { min-height: 6.25rem; resize: vertical; }
.field select { color-scheme: dark; cursor: pointer; }
.field select option { color: var(--ink); background: var(--bone); }
.field select option:disabled { color: #675f55; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 253, 247, 0.42); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #f07862; }
.consent { display: flex; align-items: flex-start; gap: 0.75rem; margin: 0.5rem 0 1.5rem; color: var(--paper); font-size: 0.72rem; }
.consent input { flex: 0 0 auto; width: 1rem; height: 1rem; margin-top: 0.15rem; accent-color: var(--gold); }
.booking-form .button { min-width: 15rem; cursor: pointer; }
.form-note { margin: 1rem 0 0; color: rgba(255, 253, 247, 0.55); font-size: 0.62rem; }
.honeypot { display: none !important; }

/* Visit */
.visit { border-bottom: 1px solid var(--line); }
.visit-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(13rem, 0.55fr) minmax(13rem, 0.45fr); gap: clamp(2rem, 6vw, 7rem); align-items: end; }
.visit-grid h2 { max-width: 10ch; }
.visit address, .hours { display: grid; gap: 1.2rem; font-style: normal; }
.visit address > span, .hours > span { color: var(--red); font-size: 0.58rem; font-weight: 760; letter-spacing: 0.1em; text-transform: uppercase; }
.visit address strong, .hours strong { font-size: clamp(1rem, 1.4vw, 1.3rem); line-height: 1.35; }
.hours small { color: var(--muted); font-size: 0.64rem; }
.map-line { display: grid; grid-template-columns: auto minmax(1rem, 1fr) auto minmax(1rem, 1fr) auto; gap: 1rem; align-items: center; margin-top: clamp(2.5rem, 4.5vw, 4.5rem); color: var(--muted); font-size: 0.58rem; letter-spacing: 0.1em; }
.map-line i { display: block; height: 1px; background: var(--line); }
.map-line b { color: var(--red); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1rem; font-style: italic; font-weight: 500; }

/* Footer */
.site-footer { padding: clamp(3.25rem, 5.5vw, 5.5rem) 0 6rem; color: var(--white); background: var(--ink); }
.footer-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding-bottom: clamp(2.25rem, 4vw, 4rem); border-bottom: 1px solid var(--line-light); }
.footer-top img { width: min(42vw, 28rem); }
.footer-top p { margin: 0; font-size: clamp(1.7rem, 3.4vw, 4rem); font-weight: 750; line-height: 0.95; letter-spacing: -0.055em; text-transform: uppercase; }
.footer-top em { font-family: "Cormorant Garamond", Georgia, serif; color: var(--gold); font-weight: 500; text-transform: none; }
.footer-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; padding-block: 2.25rem; }
.footer-links > div { display: grid; align-content: start; gap: 0.6rem; }
.footer-links span { margin-bottom: 0.35rem; color: var(--gold); font-size: 0.57rem; letter-spacing: 0.11em; text-transform: uppercase; }
.footer-links a { display: flex; width: max-content; max-width: 100%; min-height: 2rem; align-items: center; color: var(--paper); font-size: 0.78rem; border-bottom: 1px solid transparent; }
.footer-links a:focus-visible { border-color: currentColor; }
.footer-base { display: flex; justify-content: space-between; gap: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line-light); color: rgba(255, 253, 247, 0.55); font-size: 0.57rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-base a { display: flex; min-height: 2rem; align-items: center; }
.footer-base > *, .footer-links a, .studio-credit { min-width: 0; overflow-wrap: anywhere; }
.studio-credit { padding-left: 0.85rem; border-left: 1px solid rgba(209, 154, 63, 0.68); color: rgba(255, 253, 247, 0.76); font-size: 0.66rem; line-height: 1.45; letter-spacing: 0.045em; text-align: left; text-transform: none; }
.studio-credit a { display: inline-flex; margin-left: 0.35rem; border-bottom: 1px solid rgba(209, 154, 63, 0.38); color: var(--gold); font-size: 0.68rem; font-weight: 780; letter-spacing: 0.055em; text-transform: uppercase; transition: border-color 180ms ease, transform 180ms var(--ease-out); }

/* Persistent WhatsApp archive plate */
.whatsapp-cta {
  position: fixed;
  z-index: 94;
  right: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(1rem, 2vw, 1.75rem);
  width: min(12.8rem, calc(100vw - 2rem));
  border: 1px solid rgba(11, 10, 8, 0.72);
  color: var(--ink);
  background: rgba(245, 238, 221, 0.92);
  box-shadow: 0.55rem 0.6rem 0 rgba(11, 10, 8, 0.12);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(12px);
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 180ms var(--ease-out);
}

.whatsapp-flow {
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red-brand);
  transform: scaleY(0);
  transform-origin: top;
}

.whatsapp-plate {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 4.4rem;
  gap: 0.7rem;
  align-items: center;
  padding: 0.65rem 0.7rem 0.65rem 0.85rem;
  transition: transform 240ms var(--ease-out);
}

.whatsapp-cta.is-compact { right: 0.45rem; width: 4rem; box-shadow: 0.3rem 0.35rem 0 rgba(11, 10, 8, 0.12); }
.whatsapp-cta.is-compact .whatsapp-plate { grid-template-columns: 1fr; min-height: 3.9rem; place-items: center; padding: 0.45rem; }
.whatsapp-cta.is-compact .whatsapp-copy,
.whatsapp-cta.is-compact .whatsapp-arrow { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; pointer-events: none; }
.whatsapp-cta.is-compact .whatsapp-mark { width: 2.55rem; height: 2.55rem; }

.whatsapp-mark {
  position: relative;
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border-radius: 50%;
  color: var(--bone);
  background: var(--ink);
  transition: color 240ms ease, background 240ms ease;
}

.whatsapp-mark svg { width: 1.45rem; height: 1.45rem; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-mark i { position: absolute; top: 0.18rem; right: 0.12rem; width: 0.45rem; height: 0.45rem; border: 2px solid var(--bone); border-radius: 50%; background: var(--gold); }
.whatsapp-mark::after { content: ""; position: absolute; inset: -0.25rem; border: 1px solid rgba(180, 58, 40, 0.52); border-radius: 50%; animation: whatsapp-breathe 2.8s var(--ease-out) infinite; }

@keyframes whatsapp-breathe {
  0%, 28%, 100% { opacity: 0; transform: scale(0.9); }
  48% { opacity: 0.72; }
  76% { opacity: 0; transform: scale(1.2); }
}

.whatsapp-copy { display: grid; min-width: 0; gap: 0.12rem; }
.whatsapp-copy small { color: var(--muted); font-size: 0.47rem; font-weight: 720; line-height: 1.15; letter-spacing: 0.08em; text-transform: uppercase; transition: color 240ms ease; }
.whatsapp-copy strong { font-size: 0.8rem; line-height: 1; letter-spacing: 0.06em; text-transform: uppercase; }
.whatsapp-arrow { align-self: start; color: var(--red); font-size: 0.85rem; transition: transform 180ms var(--ease-out); }
.whatsapp-cta.is-on-dark { border-color: rgba(255, 253, 247, 0.48); color: var(--bone); background: rgba(11, 10, 8, 0.9); box-shadow: 0.55rem 0.6rem 0 rgba(209, 154, 63, 0.13); }
.whatsapp-cta.is-on-dark .whatsapp-mark { color: var(--ink); background: var(--gold); }
.whatsapp-cta.is-on-dark .whatsapp-mark i { border-color: var(--ink); background: var(--red-brand); }
.whatsapp-cta.is-on-dark .whatsapp-copy small { color: rgba(245, 238, 221, 0.64); }
.whatsapp-cta.is-on-dark .whatsapp-arrow { color: var(--gold); }
.whatsapp-cta.is-on-dark .whatsapp-flow { background: var(--gold); }
.whatsapp-cta:active { transform: scale(0.98); }

.mobile-booking { display: none; }

/* Lightbox */
.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--white);
  background: rgba(11, 10, 8, 0.96);
}
.lightbox::backdrop { background: rgba(11, 10, 8, 0.88); }
.lightbox[open] { animation: lightbox-in 350ms ease both; }
@keyframes lightbox-in { from { opacity: 0; } }
.lightbox-shell { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; width: 100%; height: 100%; padding: clamp(1rem, 3vw, 2.5rem); }
.lightbox-close { justify-self: end; min-height: 2.75rem; padding: 0.5rem 0; border: 0; color: var(--white); background: transparent; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.lightbox-media { display: grid; min-height: 0; place-items: center; padding: 1rem 0; overflow: hidden; }
.lightbox-media img { width: auto; max-width: 100%; height: auto; max-height: 72vh; object-fit: contain; }
.lightbox-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line-light); padding-top: 1rem; }
.lightbox-footer p { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; color: var(--gold); font-size: clamp(1.25rem, 2vw, 2rem); font-style: italic; }
.lightbox-footer > div { display: flex; align-items: center; gap: 1rem; }
.lightbox-footer button { min-height: 2.75rem; border: 0; color: var(--white); background: transparent; font-size: 0.64rem; cursor: pointer; }
.lightbox-footer span { color: var(--paper); font-size: 0.58rem; letter-spacing: 0.1em; }

/* Responsive */
@media (max-width: 1100px) {
  :root { --header-h: 76px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-copy { grid-column: 1 / 11; }
  .hero-title { font-size: clamp(3.45rem, 7.3vw, 5.8rem); }
  .hero-media { grid-column: 8 / 13; }
  .hero-media { width: min(100%, 21.5rem); }
  .hero-note { grid-column: 6 / 9; }
  .hero-intro { width: 52%; }
  .work-showcase:not(.is-showcase-ready) .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-showcase:not(.is-showcase-ready) .gallery-card-wide { grid-column: span 1; }
  .work-showcase:not(.is-showcase-ready) .gallery-card-wide .gallery-image { aspect-ratio: 4 / 5; }
  .work-showcase:not(.is-showcase-ready) .gallery-card-tall .gallery-image { aspect-ratio: 4 / 5; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.25rem 0; }
  .process-list li:nth-child(3) { padding-left: 0; border-left: 0; }
  .process-list li:nth-child(3) .step-mark { left: 0; }
  .visit-grid { grid-template-columns: minmax(0, 1fr) repeat(2, minmax(12rem, 0.45fr)); }
  .whatsapp-cta { width: 11.8rem; }
}

@media (min-width: 821px) {
  html[lang="es"] .award-sticky h2 { max-width: 9ch; }
  html[lang="es"] .faq-grid h2 { font-size: clamp(2.65rem, 4.7vw, 5.5rem); }
}

@media (min-width: 821px) and (max-height: 820px) {
  .hero-title { font-size: clamp(3.25rem, 6.05vw, 5.6rem); }
  .hero-intro { margin-top: 1rem; }
  .hero-award { margin-top: 0.9rem; }
  .hero-media { width: min(100%, 22rem); margin-top: 0.35rem; }
  .hero-note { padding-top: 0.75rem; }
  .hero-note p { font-size: 1rem; }
}

@media (max-width: 820px) {
  .header-actions .button-small { display: none; }
  .hero { min-height: auto; padding-bottom: 4rem; }
  .hero::before { left: 50%; }
  .hero-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-template-rows: auto; min-height: auto; }
  .hero-copy { grid-column: 1 / 7; grid-row: 1; }
  .hero-kicker { width: 100%; }
  .hero-title { font-size: clamp(3.2rem, 10vw, 5.4rem); line-height: 0.79; }
  .title-line-indent { padding-left: clamp(1.5rem, 8vw, 4.5rem); }
  .hero-intro { width: min(100%, 28rem); }
  .hero-media { grid-column: 2 / 7; grid-row: 2; justify-self: end; width: min(72vw, 22rem); margin-top: 2.5rem; }
  .hero-note { grid-column: 1 / 5; grid-row: 3; margin-top: 2rem; margin-bottom: 0; }
  .scroll-cue { display: none; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-grid > div:nth-child(3) { padding-left: 0; }
  .section-head, .faq-grid, .awards-grid, .booking-grid { grid-template-columns: 1fr; }
  .section-intro { margin-top: 0; }
  .work-showcase.is-showcase-ready .gallery { height: clamp(31rem, 78svh, 40rem); }
  .js .work-showcase.is-showcase-ready .gallery-card[data-reveal] { grid-template-columns: minmax(0, 1fr); grid-template-rows: minmax(0, 1fr) auto; }
  .work-showcase.is-showcase-ready .gallery-caption { min-height: 10.5rem; padding: 1.5rem; border-top: 1px solid var(--line-light); border-left: 0; }
  .work-showcase.is-showcase-ready .gallery-caption::before { top: 1.5rem; left: 1.5rem; }
  .work-showcase.is-showcase-ready .gallery-caption small { top: 1.5rem; right: 1.5rem; }
  .work-showcase.is-showcase-ready .gallery-description { max-width: 38rem; -webkit-line-clamp: 3; }
  .film-bridge-grid { grid-template-columns: minmax(10rem, 0.48fr) minmax(0, 1.52fr); gap: 2rem; }
  .ambient-film-wide { aspect-ratio: 16 / 8.5; }
  .story-grid { grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); gap: 3rem; }
  .story-columns { grid-template-columns: 1fr; gap: 1.25rem; }
  .award-sticky h2, .faq-grid h2, .booking-copy h2 { max-width: 10ch; }
  .award-medallion { margin-inline: 0; }
  .booking-grid { gap: 4rem; }
  .visit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visit-grid > div:first-child { grid-column: 1 / -1; }
  .footer-base { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .whatsapp-cta { right: 1rem; bottom: 1rem; width: 11.5rem; }
}

@media (max-width: 620px) {
  :root { --header-h: 68px; --pad: 1rem; }
  body { padding-bottom: calc(3.65rem + env(safe-area-inset-bottom)); }
  .brand { width: 7.5rem; }
  .header-actions { gap: 0.7rem; }
  .menu-toggle { width: 2.75rem; height: 2.75rem; }
  .mobile-menu-meta { flex-direction: column; gap: 0.75rem; }
  h2 { font-size: clamp(2.3rem, 10.8vw, 3.9rem); line-height: 0.88; }
  .section { padding-block: 4rem; }
  .hero { padding-top: calc(var(--header-h) + 1.8rem); padding-bottom: 3.5rem; }
  .hero::after { display: none; }
  .hero-grid { display: block; }
  .hero-kicker { gap: 1rem; }
  .hero-title { font-size: clamp(2.75rem, 11.8vw, 4.4rem); line-height: 0.81; }
  .title-line-serif { font-size: 0.86em; }
  .title-line-indent { padding-left: 0; }
  .hero-intro { margin-top: 1.5rem; }
  .hero-ctas { align-items: stretch; }
  .hero-ctas .button { width: 100%; }
  .hero-ctas .text-link { width: max-content; }
  .hero-award { margin-top: 1.8rem; }
  .hero-media { width: min(calc(100% - 1rem), 20rem); margin: 2.5rem 0 0 auto; transform: rotate(1.5deg); }
  .hero-note { width: 86%; margin-top: 1.75rem; }
  .proof-grid strong { font-size: 1.75rem; }
  .proof-grid > div { display: grid; gap: 0.35rem; padding-block: 1.1rem; }
  .section-head { gap: 2rem; }
  .filters { flex-wrap: nowrap; padding-bottom: 0.3rem; overflow-x: auto; scrollbar-width: thin; overscroll-behavior-inline: contain; }
  .filter { min-width: max-content; flex: 0 0 auto; text-align: left; }
  .work-showcase:not(.is-showcase-ready) .gallery { grid-template-columns: 1fr; gap: 2rem; }
  .work-showcase:not(.is-showcase-ready) .gallery-image,
  .work-showcase:not(.is-showcase-ready) .gallery-card-wide .gallery-image,
  .work-showcase:not(.is-showcase-ready) .gallery-card-tall .gallery-image { aspect-ratio: 4 / 5; }
  .work-showcase.is-showcase-ready .gallery { height: clamp(27rem, 136vw, 33rem); box-shadow: 0.4rem 0.45rem 0 rgba(11, 10, 8, 0.07); }
  .work-showcase.is-showcase-ready .gallery-caption { min-height: 9.7rem; padding: 1rem; }
  .work-showcase.is-showcase-ready .gallery-caption::before { top: 1rem; left: 1rem; }
  .work-showcase.is-showcase-ready .gallery-caption small { top: 1rem; right: 1rem; }
  .work-showcase.is-showcase-ready .gallery-caption strong { font-size: clamp(1.45rem, 7vw, 2rem); }
  .work-showcase.is-showcase-ready .gallery-description { margin-top: 0.75rem; font-size: 0.7rem; -webkit-line-clamp: 3; }
  .work-controls { grid-template-columns: auto minmax(0, 1fr) auto; gap: 0.5rem; }
  .work-arrow { min-width: 4.75rem; font-size: 0.56rem; }
  .work-position { gap: 0.5rem; }
  .work-progress { width: min(18vw, 5rem); }
  .inspect { opacity: 1; transform: none; }
  .motion-badge { right: 0.6rem; bottom: 0.6rem; min-height: 2.5rem; padding: 0.45rem 0.6rem; }
  .film-bridge { padding-top: 3rem; }
  .film-bridge-grid, .process-film { grid-template-columns: 1fr; }
  .film-bridge-grid { gap: 1.5rem; }
  .film-bridge-copy p { max-width: 12ch; margin-block: 0.85rem 1rem; font-size: clamp(1.9rem, 10vw, 2.8rem); }
  .ambient-film-wide { aspect-ratio: 16 / 9; }
  .process-film { gap: 1.75rem; margin-top: 3rem; }
  .process-film-copy strong { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .ambient-film-vertical { width: min(100%, 13rem); justify-self: center; }
  .story, .booking { padding-block: 4rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media { width: 84%; }
  .portrait-number { right: -1.25rem; }
  .story-copy h2, .award-sticky h2, .faq-grid h2, .booking-copy h2, .visit-grid h2 { max-width: none; }
  .story-copy h2 { font-size: clamp(2.3rem, 10.8vw, 3.9rem); }
  .faq-grid h2 { font-size: clamp(2.3rem, 10.8vw, 3.9rem); }
  .story-columns { margin-block: 2rem; }
  .award-list li { grid-template-columns: 4.2rem minmax(0, 1fr); gap: 1rem; }
  .list-index { display: none; }
  .process-list { grid-template-columns: 1fr; gap: 0; }
  .process-list li, .process-list li:nth-child(3) { padding: 1.25rem 0 3rem 1.5rem; border-top: 0; border-left: 1px solid var(--ink); }
  .process-list li:last-child { padding-bottom: 0; }
  .process-list li .step-mark, .process-list li:first-child .step-mark, .process-list li:nth-child(3) .step-mark { top: 0.1rem; left: -0.45rem; }
  .process-list h3 { margin: 1.5rem 0 0.75rem; }
  .faq-grid { gap: 2.5rem; }
  .faq-list summary { min-height: 4.35rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .booking-form .button { width: 100%; min-width: 0; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-grid > div:first-child { grid-column: auto; }
  .visit address, .hours { padding-top: 1.5rem; border-top: 1px solid var(--line); }
  .map-line { gap: 0.5rem; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-top img { width: min(75vw, 19rem); }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-base { display: flex; align-items: flex-start; flex-direction: column; }
  .studio-credit { max-width: 31rem; }
  .site-footer { padding-bottom: 1.5rem; }
  .whatsapp-cta { display: none; }
  .mobile-booking {
    position: fixed;
    z-index: 95;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(3.65rem + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--paper);
    color: var(--bone);
    background: var(--ink);
    overflow: hidden;
  }
  .mobile-booking::before { content: ""; position: absolute; z-index: 2; inset: 0 auto auto 0; width: 50%; height: 2px; background: var(--gold); animation: mobile-booking-flow 4s var(--ease-out) infinite; }
  @keyframes mobile-booking-flow { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(100%); } }
  .mobile-booking a { display: grid; min-width: 0; place-items: center; padding: 0.75rem 0.5rem; font-size: 0.66rem; font-weight: 760; letter-spacing: 0.08em; text-align: center; text-transform: uppercase; }
  .mobile-booking a + a { border-left: 1px solid var(--line-light); color: var(--ink); background: var(--gold); }
  .lightbox-shell { padding: 0.75rem; }
  .lightbox-media img { max-height: 68vh; }
  .lightbox-footer { align-items: flex-start; flex-direction: column; }
  .lightbox-footer > div { width: 100%; justify-content: space-between; }
}

@media (max-width: 380px) {
  /* Ultra-estrecho: la caption pasa a una columna y el numero de archivo baja a su
     propia linea; el nowrap de la categoria ya no puede convivir con dos columnas. */
  .gallery-caption { grid-template-columns: 1fr; row-gap: 0.15rem; }
  .gallery-caption small { grid-column: 1; grid-row: auto; }
}

@media (max-width: 340px) {
  :root { --pad: 0.75rem; }
  h2 { font-size: clamp(2.25rem, 13vw, 2.75rem); }
  .brand { width: 6.65rem; }
  .header-inner { gap: 0.75rem; }
  .header-actions { gap: 0.5rem; }
  .language-link { font-size: 0.62rem; }
  .menu-toggle { width: 2.75rem; height: 2.75rem; }
  .hero { padding-top: calc(var(--header-h) + 1.8rem); }
  .hero-kicker { font-size: 0.56rem; letter-spacing: 0.09em; }
  .hero-title { font-size: clamp(2.3rem, 14vw, 2.9rem); letter-spacing: -0.075em; }
  .title-line-indent { padding-left: 0; }
  .hero-intro p { font-size: 0.9rem; }
  .hero-award { align-items: flex-start; }
  .award-year { font-size: 2rem; }
  .hero-media { width: calc(100% - 0.65rem); padding: 0.5rem; }
  .media-seal { width: 4rem; font-size: 0.85rem; }
  .hero-media figcaption { font-size: 0.49rem; }
  .hero-note { width: 94%; }
  .proof-grid span { font-size: 0.54rem; }
  .filter { padding-inline: 0.55rem; font-size: 0.57rem; letter-spacing: 0.045em; }
  .filter span { margin-left: 0.25rem; }
  .work-showcase.is-showcase-ready .gallery { height: 27rem; }
  .work-showcase.is-showcase-ready .gallery-caption { min-height: 8.5rem; }
  .work-showcase.is-showcase-ready .gallery-description { display: none; }
  .work-arrow { width: 2.75rem; min-width: 2.75rem; justify-content: center; }
  .work-arrow span:not([aria-hidden="true"]) { display: none; }
  .work-position { gap: 0.35rem; }
  .work-progress { width: 3.8rem; }
  .work-hint { font-size: 0.56rem; }
  .process-film { gap: 1.25rem; margin-top: 2.5rem; padding-block: 1.25rem; }
  .process-film-copy strong { margin-block: 0.75rem; font-size: 1.7rem; }
  .process-film-copy p { font-size: 0.78rem; }
  .ambient-film-vertical { width: min(100%, 10rem); }
  .story-media { width: 91%; }
  .story-copy h2, .award-sticky h2, .faq-grid h2, .booking-copy h2, .visit-grid h2 { max-width: none; }
  .story-copy h2 { font-size: clamp(2.25rem, 13vw, 2.75rem); }
  .faq-grid h2 { font-size: clamp(2.25rem, 13vw, 2.75rem); }
  .award-list li { grid-template-columns: 3.6rem minmax(0, 1fr); }
  .award-list time { font-size: 1.55rem; }
  .faq-list summary { font-size: 0.88rem; }
  .faq-list details p { margin-right: 0; font-size: 0.84rem; }
  .map-line b { font-size: 0.82rem; }
  .footer-links { gap: 2rem 1rem; }
  .field input, .field select, .field textarea { min-width: 0; }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover { color: var(--button-bg); background: var(--button-fg); }
  .text-link:hover span { transform: translate(0.2rem, -0.2rem); }
  .filter:hover { color: var(--bone); background: var(--ink); border-color: var(--ink); }
  .gallery-card:hover .gallery-image img { transform: scale(1.035); filter: saturate(1.06) contrast(1.04); }
  .gallery-card:hover .gallery-image::after { opacity: 1; }
  .gallery-card:hover .inspect { opacity: 1; transform: translateY(0); }
  .work-showcase.is-showcase-ready .gallery-card:hover .gallery-image img { transform: scale(1.018); filter: saturate(1.06) contrast(1.035); }
  .work-arrow:hover { color: var(--red); transform: translateX(-0.15rem); }
  .work-arrow-next:hover { transform: translateX(0.15rem); }
  .work-index button:hover { color: var(--ink); border-color: var(--ink); }
  .footer-links a:hover { border-color: currentColor; }
  .studio-credit a:hover { border-color: var(--gold); transform: translateY(-1px); }
  .whatsapp-cta:hover { transform: translateY(-0.2rem); box-shadow: 0.7rem 0.8rem 0 rgba(11, 10, 8, 0.16); }
  .whatsapp-cta:hover .whatsapp-arrow { transform: translate(0.12rem, -0.12rem); }
  .ambient-toggle:hover { color: var(--ink); background: var(--gold); }
}

@media (hover: none) {
  .gallery-image::after { display: none; }
  .inspect { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .page-curtain { display: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .title-line > span { transform: none; }
  .ink-canvas { display: none; }
  .whatsapp-mark::after, .mobile-booking::before { animation: none; }
}

@media (forced-colors: active) {
  .button, .filter, .menu-toggle, .video-toggle, .ambient-toggle, .whatsapp-cta { border: 1px solid ButtonText; }
  .page-curtain, .ink-canvas, body::before { display: none; }
}

/* ==========================================================================
   Multi-page system · DYMON JIMENEZ · 2026-07-26
   The archive expands into chapters. Same line, deeper record.
   ========================================================================== */

/* Typographic master brand. DYMON JIMENEZ is the name; the studio follows. */
.brand-word { display: grid; width: auto; gap: 0.18rem; align-content: center; }
.brand-word strong {
  font-size: clamp(0.98rem, 1.35vw, 1.22rem);
  font-weight: 860;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-word strong em { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; letter-spacing: -0.02em; }
.brand-word small {
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 760;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.site-header-dark .brand-word small { color: var(--paper); }

.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav a[aria-current="page"] { color: var(--red); }
.mobile-menu nav a[aria-current="page"] { color: var(--gold); }

/* Dark header variant for pages that open on ink. */
.site-header-dark { color: var(--bone); }
.site-header-dark.is-scrolled,
.site-header-dark.menu-active { background: rgba(11, 10, 8, 0.92); border-color: var(--line-light); }
.site-header-dark .menu-toggle { border-color: var(--bone); }
.site-header-dark .button-small { border-color: currentColor; }

/* Interior page hero: each page is a chapter of the same archive. */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(2.75rem, 6vw, 5.5rem)) 0 clamp(2.5rem, 4.5vw, 4rem);
  overflow: clip;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 66.666%;
  width: 1px;
  background: var(--line);
}
.page-hero-dark { color: var(--white); background: var(--ink); }
.page-hero-dark::before { background: var(--line-light); }
.crumbs { display: flex; flex-wrap: wrap; gap: 0.6rem 0.75rem; margin: 0 0 clamp(1.5rem, 3vw, 2.5rem); font-size: 0.62rem; font-weight: 740; letter-spacing: 0.12em; text-transform: uppercase; }
.crumbs ol { display: contents; margin: 0; padding: 0; list-style: none; }
.crumbs li { display: flex; align-items: center; gap: 0.75rem; }
.crumbs li + li::before { content: "/"; color: var(--muted); font-weight: 400; }
.crumbs a { display: inline-flex; min-height: 1.5rem; align-items: center; padding-block: 0.25rem; color: var(--muted); transition: color 200ms ease; }
.crumbs a:hover, .crumbs a:focus-visible { color: currentColor; }
.crumbs [aria-current="page"] { color: var(--red); }
.page-hero-dark .crumbs a { color: var(--paper); }
.page-hero-dark .crumbs [aria-current="page"] { color: var(--gold); }
.page-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.9rem, 6.4vw, 7.25rem);
  font-weight: 840;
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}
.page-hero h1 em { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; letter-spacing: -0.045em; text-transform: none; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.62fr) minmax(16rem, 0.68fr); gap: clamp(2rem, 4.5vw, 5.5rem); align-items: end; }
.page-hero-side { display: grid; gap: 1.1rem; margin-bottom: 0.65rem; }
.page-hero-side p { margin: 0; max-width: 26rem; font-size: clamp(0.98rem, 1.2vw, 1.18rem); line-height: 1.55; }
.page-hero-side .text-link { width: max-content; }
.page-hero-facts { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin: 0; padding: 0.85rem 0 0; border-top: 1px solid var(--line); list-style: none; font-size: 0.62rem; font-weight: 740; letter-spacing: 0.1em; text-transform: uppercase; }
.page-hero-dark .page-hero-facts { border-color: var(--line-light); color: var(--paper); }
.page-hero-facts b { color: var(--red); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.05rem; font-style: italic; font-weight: 500; letter-spacing: 0; }
.page-hero-dark .page-hero-facts b { color: var(--gold); }

/* Hero identity: the name is the headline; the claim stays as proof. */
.hero-title-name { font-size: clamp(4rem, 8.9vw, 9.2rem); line-height: 0.8; }
.hero-title-name .title-line-serif { font-size: 0.74em; }
.hero-claim {
  margin: clamp(1rem, 1.8vw, 1.5rem) 0 0;
  font-size: clamp(0.8rem, 1.05vw, 1rem);
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-claim em { font-family: "Cormorant Garamond", Georgia, serif; color: var(--red); font-size: 1.2em; font-weight: 500; letter-spacing: 0; }

/* Deep routes out of the home viewer into the archive chapters. */
.work-deep { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; margin-top: clamp(1.5rem, 2.6vw, 2.25rem); padding-top: 1.1rem; border-top: 1px solid var(--line); }
.work-deep a { font-size: 0.62rem; }
.work-deep .work-deep-all { color: var(--red); }

/* Four visual languages: an index of the signature, not four product cards. */
.langs-list { margin: clamp(2.5rem, 4.5vw, 4.5rem) 0 0; padding-block: 0; list-style: none; }
.langs-list li { position: relative; border-top: 1px solid var(--line); }
.langs-list li:last-child { border-bottom: 1px solid var(--line); }
.langs-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1.35fr) minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 3vw, 3.5rem);
  align-items: center;
  padding: clamp(1.4rem, 2.6vw, 2.4rem) 0;
}
.langs-num { color: var(--red); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.6rem, 2.6vw, 2.7rem); font-style: italic; line-height: 1; }
.langs-name { display: grid; gap: 0.55rem; min-width: 0; }
.langs-name strong { font-size: clamp(1.9rem, 4vw, 4.1rem); font-weight: 810; line-height: 0.88; letter-spacing: -0.06em; text-transform: uppercase; transition: color 250ms ease; }
.langs-name span { color: var(--muted); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.02rem, 1.35vw, 1.3rem); font-style: italic; line-height: 1.3; }
.langs-plate { position: relative; width: min(100%, 15.5rem); justify-self: end; padding: 0.45rem; border: 1px solid var(--line); background: rgba(245, 238, 221, 0.6); transform: rotate(1.6deg); transition: transform 450ms var(--ease-out), border-color 250ms ease; }
.langs-list li:nth-child(even) .langs-plate { transform: rotate(-1.4deg); }
.langs-plate img { aspect-ratio: 5 / 3.4; width: 100%; object-fit: cover; filter: saturate(0.94) contrast(1.03); transition: filter 300ms ease; }
.langs-plate::after { content: attr(data-ref); position: absolute; right: 0.45rem; bottom: -1.15rem; color: var(--muted); font-size: 0.5rem; font-weight: 740; letter-spacing: 0.12em; text-transform: uppercase; }
.langs-arrow { display: grid; width: 3rem; height: 3rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 0.95rem; transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 350ms var(--ease-out); }
.langs-link:focus-visible { outline-offset: -3px; }
.langs-link:hover .langs-name strong, .langs-link:focus-visible .langs-name strong { color: var(--red); }
.langs-link:hover .langs-plate, .langs-link:focus-visible .langs-plate { transform: rotate(0deg); border-color: var(--ink); }
.langs-link:hover .langs-plate img { filter: saturate(1.05) contrast(1.04); }
.langs-link:hover .langs-arrow, .langs-link:focus-visible .langs-arrow { color: var(--bone); background: var(--ink); border-color: var(--ink); transform: translate(0.2rem, -0.2rem); }

/* Philosophy: beliefs set in type, not marketing claims. */
.philosophy { position: relative; overflow: clip; }
.philosophy::before { content: ""; position: absolute; inset: 0; opacity: 0.1; background: repeating-linear-gradient(90deg, transparent 0 calc(33.333% - 1px), var(--paper) calc(33.333% - 1px) 33.333%); pointer-events: none; }
.philosophy-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(15rem, 0.6fr); gap: clamp(2.5rem, 5vw, 6rem); align-items: end; }
.creed { margin: clamp(2.25rem, 4vw, 4rem) 0 0; padding: 0; list-style: none; }
.creed li { padding: clamp(0.85rem, 1.6vw, 1.4rem) 0; border-top: 1px solid var(--line-light); font-size: clamp(1.9rem, 4.4vw, 4.6rem); font-weight: 810; line-height: 0.9; letter-spacing: -0.06em; text-transform: uppercase; }
.creed li em { font-family: "Cormorant Garamond", Georgia, serif; color: var(--gold); font-weight: 500; letter-spacing: -0.04em; text-transform: none; }
.creed li:last-child { border-bottom: 1px solid var(--line-light); }
.philosophy-aside { display: grid; gap: 1.25rem; margin-bottom: 0.85rem; color: var(--paper); }
.philosophy-aside p { margin: 0; font-size: 0.92rem; line-height: 1.6; }
.philosophy-aside .note-index { color: var(--gold); }

/* Studio band: the studio serves the name, in one compact strip. */
.studio-band { border-block: 1px solid var(--line); }
.studio-band-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) auto; gap: clamp(2rem, 4.5vw, 5rem); align-items: center; padding-block: clamp(2.25rem, 4vw, 4rem); }
.studio-band h2 { font-size: clamp(2.3rem, 4vw, 4.6rem); }
.studio-band address { display: grid; gap: 0.9rem; margin: 0; font-style: normal; }
.studio-band address > span { color: var(--red); font-size: 0.58rem; font-weight: 760; letter-spacing: 0.1em; text-transform: uppercase; }
.studio-band address strong { font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.4; }
.studio-band address small { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* Studio information ledger. */
.session-band { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(1.75rem, 4vw, 4.5rem); align-items: center; margin-top: clamp(2.5rem, 4.5vw, 4rem); }
.session-copy { display: grid; gap: 1.1rem; align-content: center; }
.session-line { max-width: 20ch; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.45rem, 2.6vw, 2.3rem); font-style: italic; line-height: 1.18; }
.session-figure { position: relative; width: min(100%, 19rem); margin: 0; padding: 0.7rem 0.7rem 0.35rem; border: 1px solid var(--line); transform: rotate(1.1deg); justify-self: end; }
.session-figure img { display: block; width: 100%; height: auto; filter: saturate(0.94) contrast(1.03); }
.session-figure figcaption { padding: 0.7rem 0.25rem 0.35rem; color: var(--muted); font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* Chapter approach variants: one composition per visual language.
   traditional = manifiesto centrado; neo-oriental = columnas invertidas;
   black-grey = titular a todo el ancho con inicial fantasma; color = split original. */
.approach-traditional .philosophy-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.approach-traditional .philosophy-aside { max-width: 58ch; margin-top: 1rem; }
.approach-traditional .kicker { justify-content: center; }

.approach-neo-oriental .philosophy-grid { direction: rtl; }
.approach-neo-oriental .philosophy-grid > * { direction: ltr; }

.approach-black-grey .philosophy-grid { grid-template-columns: 1fr; position: relative; isolation: isolate; }
.approach-black-grey .philosophy-aside { columns: 2; column-gap: clamp(1.5rem, 4vw, 3.5rem); max-width: none; }
.approach-black-grey .philosophy-aside p { break-inside: avoid; }
.approach-black-grey .philosophy-grid::after {
  content: "B/G";
  position: absolute; z-index: -1; right: -0.5rem; top: -1.5rem;
  color: rgba(245, 238, 221, 0.05);
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic;
  font-size: clamp(6rem, 14vw, 13rem); line-height: 1; pointer-events: none;
}
@media (max-width: 820px) {
  .approach-black-grey .philosophy-aside { columns: 1; }
  .approach-traditional .philosophy-aside { margin-top: 0.5rem; }
}

/* Evidence row on /recognition/: three plates, each rotated a hair differently so
   they read as photographs laid on the ledger, not a card grid. */
.evidence-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2.75rem); align-items: start; }
.evidence-row .session-figure { width: 100%; justify-self: stretch; }
.evidence-row .session-figure:nth-child(1) { transform: rotate(-0.9deg); }
.evidence-row .session-figure:nth-child(2) { transform: rotate(0.6deg); margin-top: clamp(0.75rem, 2vw, 2rem); }
.evidence-row .session-figure:nth-child(3) { transform: rotate(1.1deg); }
@media (max-width: 820px) {
  .evidence-row { grid-template-columns: 1fr; }
  .evidence-row .session-figure { width: min(100%, 24rem); justify-self: center; margin-top: 0; }
}

.studio-info { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-block: 1px solid var(--line); }
.studio-info > div { display: grid; align-content: start; gap: 1rem; padding: clamp(1.5rem, 2.6vw, 2.25rem) clamp(1rem, 2vw, 2rem); border-right: 1px solid var(--line); }
.studio-info > div:first-child { padding-left: 0; }
.studio-info > div:last-child { border-right: 0; }
.studio-info span { color: var(--red); font-size: 0.58rem; font-weight: 760; letter-spacing: 0.1em; text-transform: uppercase; }
.studio-info strong { font-size: clamp(0.95rem, 1.25vw, 1.15rem); line-height: 1.4; }
.studio-info small { color: var(--muted); font-size: 0.64rem; }
.studio-info a { overflow-wrap: anywhere; display: inline-block; padding-block: 0.4rem; margin-block: -0.4rem; }
.studio-info .text-link { width: max-content; }

/* Journal ledger: thought filed like work. */
.journal-list { margin: clamp(2.25rem, 4vw, 4rem) 0 0; padding-block: 0; list-style: none; }
.journal-list li { border-top: 1px solid var(--line); }
.journal-list li:last-child { border-bottom: 1px solid var(--line); }
.journal-row { display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto; gap: clamp(1rem, 2.6vw, 3rem); align-items: baseline; padding: clamp(1.15rem, 2.2vw, 1.9rem) 0; }
.journal-ref { color: var(--muted); font-size: 0.58rem; font-weight: 760; letter-spacing: 0.12em; text-transform: uppercase; }
.journal-row strong { font-size: clamp(1.15rem, 2vw, 1.9rem); font-weight: 790; line-height: 1.05; letter-spacing: -0.04em; text-transform: uppercase; transition: color 250ms ease; }
.journal-cat { color: var(--red); font-size: 0.58rem; font-weight: 780; letter-spacing: 0.12em; text-transform: uppercase; }
.journal-go { font-size: 0.9rem; transition: transform 300ms var(--ease-out); }
.journal-row:hover strong, .journal-row:focus-visible strong { color: var(--red); }
.journal-row:hover .journal-go, .journal-row:focus-visible .journal-go { transform: translate(0.25rem, -0.25rem); }
.section-dark .journal-list li, .section-dark .journal-list li:last-child { border-color: var(--line-light); }
.section-dark .journal-cat { color: var(--gold); }
.section-dark .journal-row:hover strong { color: var(--gold); }

/* Chronology: the registration line runs through the years. */
.timeline { position: relative; margin: clamp(2.5rem, 4.5vw, 4.5rem) 0 0; padding-block: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 0.4rem; bottom: 0.4rem; left: calc(var(--pad) + 0.42rem); width: 1px; background: var(--line); }
.section-dark .timeline::before { background: var(--line-light); }
.timeline li { position: relative; display: grid; grid-template-columns: minmax(5.5rem, auto) minmax(0, 1fr); gap: clamp(1.25rem, 3vw, 3rem); padding: 0 0 clamp(2rem, 3.5vw, 3.25rem) clamp(1.9rem, 3.5vw, 3rem); }
.timeline li::before { content: ""; position: absolute; top: 0.42rem; left: 0; width: 0.85rem; height: 0.85rem; border: 1px solid var(--red); border-radius: 50%; background: var(--bone); }
.section-dark .timeline li::before { background: var(--ink); border-color: var(--gold); }
.timeline li:last-child { padding-bottom: 0.25rem; }
.timeline time, .timeline .timeline-era { color: var(--red); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.55rem, 2.6vw, 2.6rem); font-style: italic; line-height: 1; }
.section-dark .timeline time, .section-dark .timeline .timeline-era { color: var(--gold); }
.timeline-body { display: grid; gap: 0.45rem; }
.timeline-body strong { font-size: clamp(1.05rem, 1.65vw, 1.5rem); line-height: 1.15; letter-spacing: -0.02em; text-transform: uppercase; }
.timeline-body p { margin: 0; max-width: 38rem; color: var(--muted); font-size: 0.9rem; }
.section-dark .timeline-body p { color: var(--paper); }

/* Recognition ledger: eras group the record; evidence stays labeled. */
.ledger-era { display: flex; align-items: baseline; gap: 1.25rem; margin: clamp(2.75rem, 4.5vw, 4.5rem) 0 0; }
.ledger-era:first-of-type { margin-top: clamp(2rem, 3.5vw, 3rem); }
.ledger-era h2 { font-size: clamp(1.9rem, 3.4vw, 3.6rem); }
.ledger-era span { color: var(--muted); font-size: 0.62rem; font-weight: 740; letter-spacing: 0.11em; text-transform: uppercase; }
.award-list .award-note { color: var(--gold); font-size: 0.56rem; font-weight: 760; letter-spacing: 0.1em; text-transform: uppercase; }
.press-list { display: grid; gap: 0; margin: clamp(2rem, 3.5vw, 3rem) 0 0; padding-block: 0; list-style: none; }
.press-list li { border-top: 1px solid var(--line); }
.press-list li:last-child { border-bottom: 1px solid var(--line); }
.press-list a { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 1.5rem; align-items: baseline; padding: clamp(1.1rem, 2vw, 1.75rem) 0; }
.press-list strong { font-size: clamp(1rem, 1.5vw, 1.35rem); line-height: 1.25; transition: color 250ms ease; }
.press-list span { color: var(--muted); font-size: 0.6rem; font-weight: 740; letter-spacing: 0.1em; text-transform: uppercase; }
.press-list a:hover strong, .press-list a:focus-visible strong { color: var(--red); }

/* Journal entries: essays filed in the archive, not blog cards. */
.journal-entry { padding-block: clamp(3.25rem, 5.5vw, 5.5rem); border-top: 1px solid var(--line); }
.journal-entry:first-of-type { border-top: 0; padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.journal-entry-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem 2rem; align-items: baseline; margin-bottom: clamp(1.5rem, 2.6vw, 2.25rem); }
.journal-entry h2 { max-width: 16ch; font-size: clamp(2.1rem, 4.2vw, 4.6rem); }
.journal-entry-meta { display: grid; gap: 0.3rem; justify-items: end; color: var(--muted); font-size: 0.58rem; font-weight: 740; letter-spacing: 0.11em; text-transform: uppercase; text-align: right; }
.journal-entry-meta b { color: var(--red); }
.journal-entry-body { display: grid; grid-template-columns: minmax(0, 42rem); gap: 1.1rem; }
.journal-entry-body p { margin: 0; font-size: clamp(0.95rem, 1.15vw, 1.08rem); line-height: 1.7; }
.journal-entry-body blockquote { margin: 0.75rem 0; padding: 0.9rem 0 0.9rem clamp(1.25rem, 2.5vw, 2rem); border-left: 1px solid var(--gold); }
.journal-entry-body blockquote p { font-family: "Cormorant Garamond", Georgia, serif; color: var(--red); font-size: clamp(1.3rem, 1.9vw, 1.8rem); font-style: italic; line-height: 1.25; }
.journal-entry-foot { margin-top: 1.5rem; color: var(--muted); font-size: 0.66rem; }

/* Closing CTA band shared by chapter pages. */
.cta-band { color: var(--white); background: var(--ink); }
.cta-band-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) auto; gap: clamp(2rem, 4.5vw, 5rem); align-items: center; padding-block: clamp(3.25rem, 6vw, 6rem); }
.cta-band h2 { max-width: 12ch; }
.cta-band p { margin: 1.25rem 0 0; max-width: 26rem; color: var(--paper); }
.cta-band .button { justify-self: end; }

/* Statement: a single editorial voice moment on chapter pages. */
.statement { padding-block: clamp(3.5rem, 6vw, 6rem); }
.statement p { margin: 0 auto; max-width: 21ch; font-family: "Cormorant Garamond", Georgia, serif; color: var(--ink); font-size: clamp(1.7rem, 3.4vw, 3.4rem); font-style: italic; line-height: 1.15; text-align: center; }
.statement small { display: block; margin-top: 1.5rem; color: var(--muted); font-size: 0.6rem; font-weight: 740; letter-spacing: 0.14em; text-align: center; text-transform: uppercase; }
.section-dark .statement p, .statement-dark p { color: var(--bone); }

/* Footer identity: the person above everything. */
.footer-brand { display: grid; gap: 0.55rem; }
.footer-brand strong { font-size: clamp(2.1rem, 4.6vw, 4.6rem); font-weight: 850; line-height: 0.84; letter-spacing: -0.065em; text-transform: uppercase; }
.footer-brand strong em { display: block; font-family: "Cormorant Garamond", Georgia, serif; color: var(--gold); font-weight: 500; letter-spacing: -0.035em; text-transform: uppercase; }
.footer-brand span { color: var(--paper); font-size: 0.62rem; font-weight: 740; letter-spacing: 0.16em; text-transform: uppercase; }

/* Static archive grid pages: same plates, resting layout. */
.archive-count { color: var(--muted); font-size: 0.66rem; letter-spacing: 0.06em; }
.gallery-static { margin-top: clamp(1.75rem, 3vw, 2.75rem); }

@media (max-width: 1100px) {
  .brand-word strong { font-size: 1rem; }
}

@media (max-width: 820px) {
  .page-hero-grid, .philosophy-grid { grid-template-columns: 1fr; }
  .page-hero-side { margin-bottom: 0; }
  .langs-link { grid-template-columns: auto minmax(0, 1fr) auto; }
  .langs-plate { display: none; }
  .studio-band-grid { grid-template-columns: 1fr 1fr; }
  .studio-band-grid > :first-child { grid-column: 1 / -1; }
  .studio-info { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .studio-info > div:nth-child(2) { border-right: 0; }
  .studio-info > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .studio-info > div:nth-child(3) { padding-left: 0; }
  .session-band { grid-template-columns: 1fr; align-items: start; }
  .session-figure { justify-self: start; width: min(100%, 22rem); }
  /* Rhythm engine on tablets: four columns, the two statement sizes take the full row. */
  .gallery.gallery-rhythm { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gallery-rhythm .p-quiet,
  .gallery-rhythm .p-tall { grid-column: span 2; }
  .gallery-rhythm .p-wide,
  .gallery-rhythm .p-hero,
  .gallery-rhythm .p-band { grid-column: 1 / -1; }
  .cta-band-grid { grid-template-columns: 1fr; }
  .cta-band .button { justify-self: start; }
  .journal-entry-head { grid-template-columns: 1fr; }
  .journal-entry-meta { justify-items: start; text-align: left; }
}

@media (max-width: 620px) {
  .brand-word small { display: none; }
  .brand-word strong { font-size: 0.92rem; }
  .page-hero h1 { font-size: clamp(2.5rem, 11.5vw, 4rem); }
  /* Archive grids: two columns so each record stays legible; the whole card is the tap target. */
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-card-wide { grid-column: 1 / -1; }
  .inspect { display: none; }
  .gallery-caption > span { white-space: nowrap; }
  /* Rhythm engine on phones: two columns, statements go full width, baseline flattens. */
  .gallery.gallery-rhythm { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-rhythm .p-quiet,
  .gallery-rhythm .p-tall { grid-column: span 1; }
  .gallery-rhythm .p-wide,
  .gallery-rhythm .p-hero,
  .gallery-rhythm .p-band { grid-column: 1 / -1; }
  .gallery-rhythm .p-drop { margin-top: 0; }
  .gallery-card.film-spread,
  .gallery-card.film-spread.is-flipped { grid-template-columns: 1fr; }
  .gallery-card.film-spread.is-flipped .film-spread-media { order: 0; }
  .film-spread .film-spread-media.gallery-image { width: min(100%, 14rem); }
  .archive-era b { font-size: clamp(2rem, 11vw, 3rem); }
  .langs-link { gap: 1rem; }
  .langs-name strong { font-size: clamp(1.6rem, 7.6vw, 2.4rem); }
  .langs-arrow { width: 2.75rem; height: 2.75rem; }
  .creed li { font-size: clamp(1.55rem, 8vw, 2.6rem); }
  .studio-band-grid { grid-template-columns: 1fr; }
  .journal-row { grid-template-columns: auto minmax(0, 1fr) auto; }
  .journal-cat { display: none; }
  .studio-info { grid-template-columns: 1fr; }
  .studio-info > div { padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .studio-info > div:last-child { border-bottom: 0; }
  .timeline li { grid-template-columns: 1fr; gap: 0.5rem; }
  .press-list a { grid-template-columns: minmax(0, 1fr) auto; }
  .press-list a > span:first-of-type { display: none; }
  .footer-brand strong { font-size: clamp(1.9rem, 9.5vw, 2.9rem); }
}

@media (max-width: 340px) {
  .brand-word strong { font-size: 0.8rem; }
  .page-hero h1 { font-size: clamp(2.1rem, 13vw, 2.6rem); }
}

@media (prefers-reduced-motion: reduce) {
  .langs-plate, .langs-arrow, .journal-go { transition: none; }
}
