/* ============================================================
   Gastronomía — "Editorial Pantry" archetype
   ------------------------------------------------------------
   References: Hart Bageri (information density, type as hero),
   Noma (one-idea-per-viewport restraint), Da Maria (italic
   Didone confidence), Bub & Grandma's (warm voice).
   Two typefaces. Six colours. No gradients. No buttons that
   look like SaaS buttons. No 3-card "our values" trio.
   ============================================================ */

/* ---------- Fonts (self-hosted, no CDN) ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("fonts/Fraunces-Regular.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("fonts/Fraunces-LatinExt.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+1E00-1E9F, U+2020, U+20A0-20AB, U+2113, U+2C60-2C7F;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("fonts/Fraunces-Italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("fonts/Fraunces-Italic-LatinExt.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+1E00-1E9F, U+2020, U+20A0-20AB, U+2113, U+2C60-2C7F;
}
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/InterTight-Variable.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212;
}
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/InterTight-LatinExt.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+1E00-1E9F, U+2020, U+20A0-20AB, U+2113, U+2C60-2C7F;
}

/* ---------- Tokens ---------- */
:root {
  --paper:   #F5EFE3;
  --paper-2: #EFE7D6;      /* slightly deeper paper for alt strips */
  --wheat:   #E8DCC4;
  --ink:     #1B1916;
  --ink-2:   #3a342d;       /* softer ink for body */
  --muted:   #7d7468;
  --rule:    #c9bda6;
  --oxblood: #7A2A20;
  --brass:   #B58A4A;
  --moss:    #5C6B45;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;

  --pad-x: clamp(22px, 4.5vw, 72px);
  --pad-y: clamp(96px, 11vw, 168px);
  --container: 1240px;
  --rule-thick: 1px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "kern", "liga", "calt", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* subtle paper grain — barely there, kills the flat AI canvas feel */
  background-image:
    radial-gradient(rgba(27, 25, 22, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(27, 25, 22, 0.015) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.skip {
  position: absolute; left: -9999px; top: 8px; padding: 8px 14px;
  background: var(--ink); color: var(--paper); border-radius: 4px;
  font-family: var(--sans); font-size: 14px;
}
.skip:focus { left: 8px; }

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

/* ---------- Header (broadsheet masthead) ---------- */
.masthead {
  border-bottom: var(--rule-thick) solid var(--ink);
  padding: 14px 0;
  background: var(--paper);
}
.masthead-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 24px;
}
.masthead-date {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.012em;
  line-height: 1;
  text-align: center;
  color: var(--ink);
}
.wordmark em { font-style: italic; color: var(--oxblood); }
.masthead-nav {
  display: flex;
  gap: 22px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  align-items: baseline;
  white-space: nowrap;
}
.masthead-nav a { transition: color 120ms ease; }
.masthead-nav a:hover { color: var(--oxblood); }
.masthead-nav .lang {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.masthead-rule {
  border: none;
  border-top: 3px double var(--ink);
  margin: 0;
}

/* ---------- Editorial CTA primitives ---------- */
/* Underlined oxblood link — the default CTA shape */
.ed-link {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--oxblood);
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 2px;
  letter-spacing: 0.01em;
  transition: color 120ms ease, border-color 120ms ease;
}
.ed-link:hover { color: var(--ink); border-bottom-color: var(--ink); }
.ed-link em { font-family: var(--serif); font-style: italic; }

/* Booking CTA — the one exception. Ink on paper inverted. */
.ed-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  transition: background 160ms ease, color 160ms ease;
}
.ed-cta:hover { background: var(--oxblood); color: var(--paper); }
.ed-cta::after {
  content: "→";
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  transform: translateY(-1px);
}

/* ---------- Hero — type-led, asymmetric 5/7 split ---------- */
.hero {
  padding: clamp(80px, 10vw, 144px) 0 clamp(72px, 9vw, 128px);
  border-bottom: var(--rule-thick) solid var(--rule);
  position: relative;
  overflow: hidden;
}

/* ---------- HERO PHOTO BACKGROUND + KEN-BURNS (ported from peluqueria, ADR 086) ----------
   When the build step supplies an appetizing hero photo (``--hero-bg`` set
   inline — client facade/interior, else generic food-detail stock), the hero
   gets a full-bleed background. A dedicated ``::after`` layer carries a
   CONTINUOUS, ALWAYS-ON Ken-Burns motion (slow scale 1.0→1.08 + a gentle pan)
   visible the instant the page loads — no JS, no scroll detection, runs on
   iOS-Safari. It sits BELOW the dark gradient ``::before`` overlay so the
   light headline stays legible while the photo breathes. ``transform`` is
   GPU-composited. ``prefers-reduced-motion: reduce`` freezes it (block at the
   foot of this file). */
.hero-photo {
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(96px, 11vw, 168px);
  padding-bottom: clamp(80px, 10vw, 144px);
  border-bottom: var(--rule-thick) solid var(--ink);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: 50% 40%;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.08) translate3d(-1.4%, -1.6%, 0); }
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Warm dark overlay, heavier at the bottom where the headline + lede + CTA
     sit, lighter at the top — keeps the photo readable while the light copy
     stays high-contrast. */
  background:
    linear-gradient(
      to top,
      rgba(20, 14, 11, 0.90) 0%,
      rgba(20, 14, 11, 0.66) 46%,
      rgba(20, 14, 11, 0.38) 100%
    );
}
.hero-photo .hero-wrap { position: relative; z-index: 1; align-items: end; }
.hero-photo .hero-eyebrow { color: rgba(245, 239, 227, 0.78); }
.hero-photo .hero-eyebrow::before { background: var(--brass); }
.hero-photo .hero-title { color: var(--paper); }
.hero-photo .hero-title em { color: var(--brass); }
.hero-photo .hero-aside {
  border-left-color: rgba(245, 239, 227, 0.24);
}
.hero-photo .hero-lede { color: rgba(245, 239, 227, 0.92); }
.hero-photo .hero-lede::first-line { color: var(--brass); }
.hero-photo .hero-secondary { color: rgba(245, 239, 227, 0.65); }
.hero-photo .hero-secondary .ed-link { color: var(--brass); border-bottom-color: var(--brass); }
.hero-photo .ed-cta { background: var(--paper); color: var(--ink); }
.hero-photo .ed-cta:hover { background: var(--brass); color: var(--ink); }
.hero-photo .hero-social-proof {
  color: rgba(245, 239, 227, 0.82);
  border-top-color: rgba(245, 239, 227, 0.28);
}
.hero-wrap {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.hero-headline { min-width: 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 36px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--oxblood);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.024em;
  margin: 0;
  color: var(--ink);
  /* Drop-cap on the first letter, broadsheet style */
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--oxblood); }
.hero-aside {
  padding-bottom: 8px;
  border-left: 1px solid var(--rule);
  padding-left: clamp(20px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Schema 0.6 social-proof badge. Pulled from
   business_dossier.reviews_summary; omitted entirely when None. Sits
   below the CTA row inside ``.hero-aside`` so it reads as a quiet
   trust signal, not a banner. */
.hero-social-proof {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted, var(--ink));
  margin: 0;
  padding-top: 4px;
  border-top: 1px dashed var(--rule);
}
/* Google Maps Platform ToS §3.2.4 attribution — appears inline next to
   the rating when source=Google. Lowercased + dimmed so it visually
   recedes against the main proof text. */
.hero-social-proof-attribution {
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  opacity: 0.75;
  margin-left: 4px;
}
.hero-lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.42;
  color: var(--ink-2);
  margin: 0;
  max-width: 32ch;
}
.hero-lede::first-line { font-style: italic; color: var(--oxblood); }
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.hero-secondary {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.01em;
}

/* ---------- Section primitives ---------- */
.section {
  padding: var(--pad-y) 0;
  border-bottom: var(--rule-thick) solid var(--rule);
}
.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--oxblood);
  margin: 0 0 14px;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.section-num::before { content: "№ "; font-style: normal; color: var(--brass); }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  /* Section titles deliberately SMALLER than the hero (clamp 44→92px) so the
     hierarchy reads (operator review 2026-05-31). */
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.014em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--oxblood); }
.section-kicker {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-2);
  margin: 0;
  max-width: 38ch;
  line-height: 1.42;
}

/* ---------- Section: Especialidades (signature dishes — DESCRIPTIVE only) ----------
   The single home for dish descriptions; prices live in Carta below. No
   price/description duplication (mirrors peluqueria's services/tarifas split). */
.section-especialidades .section-header,
.section-carta .section-header {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 4vw, 72px);
  margin-bottom: clamp(48px, 6vw, 80px);
  align-items: end;
}
.especialidades-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
}
.especialidad {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(28px, 3.4vw, 44px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.especialidad-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  margin: 0;
}
.especialidad-body { display: grid; grid-template-columns: 1fr; row-gap: 10px; }
.especialidad-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.especialidad-description {
  margin: 0;
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
}

/* ---------- Section: Carta (the SINGLE price surface, scannable menu) ---------- */
.carta-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
}
.carta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(18px, 2.2vw, 28px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.carta-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.9vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.carta-cadence {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-left: 10px;
  white-space: nowrap;
}
.carta-price {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--oxblood);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: right;
}

/* ---------- Pull-quote (manifesto block, replaces "Our values") ---------- */
.section-manifesto {
  background: var(--wheat);
  border-bottom: var(--rule-thick) solid var(--rule);
}
.manifesto-wrap {
  display: grid;
  grid-template-columns: 1fr 11fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.manifesto-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 9vw, 132px);
  line-height: 0.78;
  color: var(--brass);
  margin: 0;
  user-select: none;
}
.manifesto-quote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.014em;
  color: var(--ink);
  max-width: 24ch;
  text-wrap: balance;
}
.manifesto-quote em { font-style: italic; color: var(--oxblood); }
.manifesto-attribution {
  margin: 28px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Ambience — full-bleed photo strip ---------- */
.section-ambience {
  padding: 0;
  border-bottom: var(--rule-thick) solid var(--rule);
  background: var(--paper);
}
.ambience-figure {
  margin: 0;
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-height: clamp(380px, 48vw, 620px);
  border-top: var(--rule-thick) solid var(--rule);
}
.ambience-image {
  position: relative;
  background: var(--wheat);
  overflow: hidden;
}
.ambience-image img,
.ambience-image .ph {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ambience-image .ph {
  background: linear-gradient(135deg, var(--wheat) 0%, var(--paper-2) 100%) no-repeat;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  color: rgba(27, 25, 22, 0.35);
  font-size: clamp(20px, 2vw, 30px);
  padding: 20px;
  text-align: center;
}
.ambience-caption {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.ambience-caption-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.55);
  margin: 0;
  display: inline-flex; align-items: center; gap: 14px;
}
.ambience-caption-eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: var(--brass);
}
.ambience-caption-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0;
  max-width: 28ch;
  text-wrap: balance;
}
.ambience-caption-text em { font-style: italic; color: var(--brass); }
.ambience-credit {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.4);
  margin: 0;
}

/* ---------- Full-bleed ambience band (appetite break) ----------
   A warm full-bleed photo (generic food/dish-detail stock preferred, client
   interior/facade fallback) with a dark gradient + one editorial line, to
   break the rhythm between text blocks (mirrors peluqueria's interstitial
   band). ``background-attachment: fixed`` avoided (breaks on iOS Safari). */
.band-ambience {
  position: relative;
  isolation: isolate;
  background-image: var(--band-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: clamp(300px, 40vw, 520px);
  display: grid;
  align-items: end;
  padding: clamp(56px, 8vw, 112px) 0;
  border-bottom: var(--rule-thick) solid var(--ink);
}
.band-ambience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to top,
      rgba(20, 14, 11, 0.86) 0%,
      rgba(20, 14, 11, 0.52) 56%,
      rgba(20, 14, 11, 0.28) 100%
    );
}
.band-ambience-wrap { position: relative; z-index: 1; }
.band-ambience-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.62);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.band-ambience-eyebrow .bullet {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brass);
}
.band-ambience-line {
  margin: 0;
  max-width: 30ch;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.016em;
  color: var(--paper);
  text-wrap: balance;
}

/* ---------- Reseñas (Google-style review cards, real quotes only) ---------- */
.section-reviews .section-header {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 4vw, 72px);
  margin-bottom: clamp(40px, 5vw, 72px);
  align-items: end;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 2.4vw, 36px);
}
.review-card {
  margin: 0;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--brass);
}
.review-stars-empty { color: var(--rule); }
.review-quote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.006em;
}
.review-author {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Galería (asymmetric 4-up index) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
  margin-top: clamp(40px, 5vw, 72px);
}
.gallery-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper-2);
}
.gallery-figure .ph,
.gallery-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: linear-gradient(135deg, var(--wheat) 0%, var(--paper-2) 100%);
  display: block;
}
.gallery-figure .ph {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  color: rgba(27, 25, 22, 0.32);
  font-size: 15px;
  text-align: center;
  padding: 12px;
}
.gallery-figure figcaption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 4px 8px;
}
.gallery-figure figcaption .tag { color: var(--oxblood); }
/* asymmetric placement: ph1 large, ph2 portrait, ph3 wide, ph4 small, ph5 portrait, ph6 wide */
.gallery-figure:nth-child(1) { grid-column: span 7; }
.gallery-figure:nth-child(1) .ph,
.gallery-figure:nth-child(1) img { aspect-ratio: 5 / 4; }
.gallery-figure:nth-child(2) { grid-column: span 5; }
.gallery-figure:nth-child(2) .ph,
.gallery-figure:nth-child(2) img { aspect-ratio: 4 / 5; }
.gallery-figure:nth-child(3) { grid-column: span 4; }
.gallery-figure:nth-child(3) .ph,
.gallery-figure:nth-child(3) img { aspect-ratio: 4 / 5; }
.gallery-figure:nth-child(4) { grid-column: span 4; }
.gallery-figure:nth-child(4) .ph,
.gallery-figure:nth-child(4) img { aspect-ratio: 4 / 5; }
.gallery-figure:nth-child(5) { grid-column: span 4; }
.gallery-figure:nth-child(5) .ph,
.gallery-figure:nth-child(5) img { aspect-ratio: 4 / 5; }
.gallery-figure:nth-child(6) { grid-column: span 8; }
.gallery-figure:nth-child(6) .ph,
.gallery-figure:nth-child(6) img { aspect-ratio: 16 / 9; }

/* ---------- Testimonios (broadsheet pull-quotes column) ---------- */
.section-testimonios .section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 36ch;
}
.testimonial-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
}
.testimonial-list li {
  padding: clamp(36px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: clamp(28px, 5vw, 96px);
  align-items: start;
}
.testimonial-quote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.testimonial-quote::before {
  content: "“";
  font-style: italic;
  color: var(--brass);
  margin-right: 2px;
  display: inline;
}
.testimonial-quote::after {
  content: "”";
  font-style: italic;
  color: var(--brass);
}
.testimonial-meta {
  align-self: end;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.testimonial-author {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  color: var(--ink);
  text-transform: none;
}

/* ---------- FAQ (broadsheet Q&A index — accordion) ----------
   2026-05-30 (known-bugs.md): markup migrated to <details>/<summary>
   for native disclose UX. Counter increments on each .faq-item so the
   Q. 01 / Q. 02 numbering stays. Content + FAQPage JSON-LD intact. */
.faq-list {
  margin: 0;
  padding: 0;
  counter-reset: faq;
  border-top: 1px solid var(--ink);
  margin-top: clamp(40px, 5vw, 72px);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  counter-increment: faq;
  padding: 0;
  transition: background 220ms ease;
}
.faq-item[open] { background: rgba(0, 0, 0, 0.015); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(32px, 3.8vw, 48px) 0;
  display: grid;
  grid-template-columns: 72px 1fr 28px;
  column-gap: clamp(24px, 3vw, 56px);
  row-gap: 0;
  align-items: baseline;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q. " counter(faq, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  align-self: baseline;
}
.faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--brass);
  text-align: right;
  line-height: 1;
  transition: transform 280ms ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 6px;
}
.faq-answer {
  padding: 0 0 clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: 72px 1fr 28px;
  column-gap: clamp(24px, 3vw, 56px);
  animation: faqFadeIn 320ms ease both;
}
.faq-answer p {
  grid-column: 2;
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.62;
  max-width: 60ch;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Hours + contact (typeset like a journal index) ---------- */
.section-visit {
  background: var(--paper-2);
}
.visit-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.visit-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.visit-address {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.36;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
}
.visit-address em { font-style: italic; color: var(--oxblood); }
.visit-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.visit-channels li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: baseline;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-2);
  border-top: 1px solid var(--rule);
  padding: 10px 0 4px;
}
.visit-channels li:last-child { border-bottom: 1px solid var(--rule); padding-bottom: 10px; }
.visit-channels .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.visit-channels a { color: var(--ink); }
.visit-channels a:hover { color: var(--oxblood); }

/* Compact grouped hours (shared ``hours_compact`` filter): one <li> per run of
   consecutive same-hours days. Day label + windows on ONE line, no repeats. */
.visit-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  font-variant-numeric: tabular-nums;
  border-top: 1px solid var(--ink);
}
.visit-hours li {
  display: grid;
  grid-template-columns: minmax(96px, auto) 1fr;
  gap: clamp(16px, 2vw, 36px);
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.visit-hours-day {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.visit-hours-time {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink);
  letter-spacing: 0;
}
.visit-hours-text {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  max-width: 30ch;
}
.visit-reserva { margin-top: 8px; }

/* ---------- Closing CTA strip ---------- */
.section-closing {
  background: var(--ink);
  color: var(--paper);
  border-bottom: none;
  padding: clamp(96px, 11vw, 168px) 0;
}
.closing-wrap {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.closing-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--paper);
  text-wrap: balance;
}
.closing-title em { font-style: italic; color: var(--brass); }
.closing-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: clamp(20px, 2vw, 36px);
  border-left: 1px solid rgba(245, 239, 227, 0.18);
}
.closing-lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.42;
  color: rgba(245, 239, 227, 0.78);
  margin: 0;
  max-width: 28ch;
}
.closing-cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.closing-cta {
  background: var(--paper);
  color: var(--ink);
}
.closing-cta:hover { background: var(--brass); color: var(--ink); }
.closing-secondary {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(245, 239, 227, 0.6);
  margin: 0;
}
.closing-secondary a {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 1px;
}

/* ---------- Footer (typeset like a colophon) ---------- */
.colophon {
  background: var(--paper);
  color: var(--ink-2);
  padding: clamp(56px, 7vw, 88px) 0 32px;
  border-top: 3px double var(--ink);
}
.colophon-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.colophon-wordmark {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 14px;
}
.colophon-wordmark em { font-style: italic; color: var(--oxblood); }
.colophon-tag {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  max-width: 36ch;
}
.colophon-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.colophon ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.colophon ul a {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
}
.colophon ul a:hover { color: var(--oxblood); }
.colophon-fine {
  grid-column: 1 / -1;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  margin: 32px 0 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-family: var(--sans);
}

/* ---------- Sticky mobile CTA bar (ported from peluqueria) ----------
   Fixed bottom call/WhatsApp bar. Hidden on desktop; revealed at the
   responsive breakpoint where --cta-bar-h reserves the body's bottom padding
   so the colophon is never covered. */
.cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1px;
  background: rgba(27, 25, 22, 0.12);
  border-top: 1px solid var(--ink);
  box-shadow: 0 -10px 28px -18px rgba(27, 25, 22, 0.45);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.cta-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--paper);
  background: var(--ink);
  transition: background 160ms;
}
.cta-bar-call { background: var(--ink); }
.cta-bar-wa { background: var(--oxblood); }
.cta-bar-book { background: var(--oxblood); }
.cta-bar-btn:active { background: var(--brass); }
.cta-bar-icon { font-size: 17px; line-height: 1; }
.cta-bar-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60vw;
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* Freeze the always-on hero Ken-Burns + neutralise reveal transitions when the
   visitor prefers reduced motion. */
@media (prefers-reduced-motion: reduce) {
  .hero-photo::after { animation: none !important; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  /* Reveal the sticky CTA bar + reserve its height at the page bottom. */
  :root { --cta-bar-h: 56px; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
  .cta-bar { display: grid; }
  .masthead-wrap { grid-template-columns: 1fr; text-align: center; gap: 10px; }
  .masthead-nav { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .hero-wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-aside { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 32px; }
  .hero-lede { max-width: none; }
  .section-especialidades .section-header,
  .section-carta .section-header,
  .section-reviews .section-header { grid-template-columns: 1fr; gap: 24px; }
  .especialidad { grid-template-columns: 40px 1fr; }
  .manifesto-wrap { grid-template-columns: 1fr; }
  .manifesto-mark { font-size: 64px; line-height: 1; margin-bottom: 8px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-figure:nth-child(n) { grid-column: span 1; }
  .gallery-figure:nth-child(n) .ph,
  .gallery-figure:nth-child(n) img { aspect-ratio: 4 / 5; }
  .testimonial-list li { grid-template-columns: 1fr; gap: 16px; }
  .faq-item summary,
  .faq-answer { grid-template-columns: 56px 1fr 28px; }
  .visit-grid { grid-template-columns: 1fr; }
  .closing-wrap { grid-template-columns: 1fr; gap: 48px; }
  .closing-aside { border-left: none; border-top: 1px solid rgba(245, 239, 227, 0.18); padding-left: 0; padding-top: 32px; }
  .colophon-wrap { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(40px, 11vw, 56px); }
  .section-title { font-size: clamp(28px, 8vw, 40px); }
  .closing-title { font-size: clamp(40px, 11vw, 56px); }
  .faq-item summary,
  .faq-answer { grid-template-columns: 44px 1fr 24px; column-gap: 16px; }
  .especialidad { grid-template-columns: 1fr; }
  .especialidad-index { font-size: 18px; }
  .carta-row { grid-template-columns: 1fr auto; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
