@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500;1,9..144,600;1,9..144,700&family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap");

/* ==========================================================================
   Sazón Criollo — Catering criollo · Lima
   Palette: bg #0E1116 · surface #171B22 · ink #EDF0F3 · accent #FFB302 · accent-2 #00A6A6
   Display: Fraunces (serif, italic accent) · Sub-head: Space Grotesk · Body: Inter · Mono: JetBrains Mono
   ========================================================================== */

:root {
  --bg: #0E1116;
  --surface: #171B22;
  --surface-2: #1F242D;
  --surface-3: #262C37;
  --ink: #EDF0F3;
  --ink-soft: #AEB6C2;
  --ink-mute: #7C8493;
  --accent: #FFB302;
  --accent-warm: #ff8a1e;
  --accent-2: #00A6A6;
  --accent-2-soft: rgba(0, 166, 166, 0.14);
  --accent-soft: rgba(255, 179, 2, 0.14);
  --line: rgba(237, 240, 243, 0.10);
  --line-strong: rgba(237, 240, 243, 0.20);
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.85);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 74px;
  --max: 1320px;
  --pad: clamp(16px, 4vw, 56px);
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Consolas", ui-monospace, monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient background texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(720px 480px at 82% -8%, rgba(255, 179, 2, 0.10), transparent 60%),
    radial-gradient(680px 520px at 8% 8%, rgba(0, 166, 166, 0.09), transparent 62%);
  pointer-events: none;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h2 em, h1 em { font-style: italic; font-weight: 500; color: var(--accent); }
p { margin: 0 0 1rem; }

a { color: inherit; text-decoration: none; transition: color .2s var(--ease-2); }
img { max-width: 100%; height: auto; display: block; }

.mono { font-family: var(--font-mono); letter-spacing: -0.01em; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section { padding: clamp(56px, 8vw, 108px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #101216;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  z-index: 4000;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
  line-height: 1;
}
.chip--picante { background: rgba(255, 179, 2, 0.16); color: var(--accent); }
.chip--fresco { background: var(--accent-2-soft); color: var(--accent-2); }
.chip svg { width: 12px; height: 12px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1095;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(14, 17, 22, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease-2), height .24s var(--ease-2),
              border-color .24s var(--ease-2), box-shadow .24s var(--ease-2);
}
.site-header.is-scrolled {
  background: rgba(14, 17, 22, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.6);
  height: 64px;
}
/* Transparent header floating over the cinematic hero (homepage only) */
body.has-hero .site-header:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
body.has-hero .site-header:not(.is-scrolled)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(9, 11, 15, 0.66), transparent);
  pointer-events: none;
}
.header-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
}
.brand__mark {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), #ff8a00);
  color: #14110a;
}
.brand__mark svg { width: 20px; height: 20px; }
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .nav-desktop a {
    position: relative;
    font-size: .92rem;
    color: var(--ink-soft);
    padding: 6px 0;
  }
  .nav-desktop a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width .24s var(--ease-2);
  }
  .nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
  .nav-desktop a:not(.nav-cta):hover::after,
  .nav-desktop a.is-active:not(.nav-cta)::after { width: 100%; }
  .nav-desktop a.is-active:not(.nav-cta) { color: var(--ink); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease-2),
              color .2s var(--ease-2), box-shadow .2s var(--ease-2), border-color .2s var(--ease-2);
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--accent); color: #14110a; }
.btn-primary:hover, .btn-primary:focus-visible {
  background: #ffc233;
  color: #14110a;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(255, 179, 2, 0.6);
}
/* Drawer CTA mirrors the primary button but is intentionally NOT `.btn-primary`
   so the off-canvas (mobile-only) copy never becomes the first primary CTA an
   automated hover/actionability check picks up on desktop, where it is hidden. */
.btn-drawer-cta { background: var(--accent); color: #14110a; }
.btn-drawer-cta:hover, .btn-drawer-cta:focus-visible {
  background: #ffc233;
  color: #14110a;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(255, 179, 2, 0.6);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}
.nav-cta { padding: 10px 18px; }
/* Higher specificity than `.nav-desktop a` so the pill keeps its horizontal
   padding — otherwise `.nav-desktop a { padding: 6px 0 }` wins and clips the text. */
.nav-desktop .nav-cta {
  background: var(--accent);
  color: #14110a;
  border-radius: 999px;
  padding: 10px 20px;
  transition: background .2s var(--ease-2), transform .2s var(--ease), box-shadow .2s var(--ease-2);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: #ffc233;
  color: #14110a;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -14px rgba(255, 179, 2, 0.6);
}

/* Hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease-2);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

/* Drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1090;
  background: #12151b;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .32s var(--ease), visibility .32s var(--ease);
  overscroll-behavior: contain;
  padding: calc(var(--header-h) + 20px) 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); visibility: visible; pointer-events: auto; }
/* On desktop the drawer is fully removed from layout & tab order (nav-desktop takes over) */
@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none !important; }
}
.drawer a {
  font-family: var(--font-head);
  font-size: 1.24rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .btn { margin-top: 20px; }
/* Drawer CTA keeps its dark-on-accent contrast — beat `.drawer a` (0,1,1) with
   explicit specificity so the pill text never falls back to the faint link colour. */
.drawer a.btn-drawer-cta,
.drawer a.btn-drawer-cta:hover,
.drawer a.btn-drawer-cta.is-active {
  color: #14110a;
  border-bottom: 1px solid transparent;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1085;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease-2), visibility .24s;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }
body.has-hero main { padding-top: 0; }

/* ==========================================================================
   HERO — cinematic full-bleed photo
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
  padding: calc(var(--header-h) + clamp(48px, 12vh, 120px)) 0 clamp(48px, 9vh, 96px);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: clip;
}
.hero-photo {
  position: absolute;
  inset: -6% -3% -3%;
  width: 106%;
  height: 109%;
  object-fit: cover;
  object-position: 50% 42%;
  will-change: transform;
  transform: scale(1.06);
  animation: kenburns 26s var(--ease) infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.14) translate(-1.5%, -2%); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,11,15,0.82) 0%, rgba(9,11,15,0.30) 26%, rgba(9,11,15,0.34) 55%, rgba(9,11,15,0.86) 100%),
    radial-gradient(120% 90% at 18% 90%, rgba(9,11,15,0.72), transparent 60%),
    radial-gradient(90% 70% at 88% 10%, rgba(255,138,30,0.18), transparent 55%);
}
.hero-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .9;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.eyebrow--onphoto { color: #ffd98a; }
.eyebrow--onphoto::before { background: #ffd98a; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw + 1.4rem, 6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-title .hero-em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  background: linear-gradient(92deg, #ffd15a 0%, #ffb302 45%, #ff8a1e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: #e7ebf1;
  max-width: 46ch;
  margin: 0 0 30px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.btn-ghost--onphoto {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-ghost--onphoto:hover, .btn-ghost--onphoto:focus-visible {
  background: rgba(255,255,255,0.14);
  border-color: var(--accent);
  color: #fff;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0;
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  color: #e7ebf1;
  list-style: none;
}
.trust-strip svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }

/* Scroll cue */
.hero-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
}
.hero-cue span {
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--accent);
  animation: cueDrop 1.7s var(--ease) infinite;
}
@keyframes cueDrop {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}
@media (max-width: 820px) { .hero-cue { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; transform: scale(1.02); }
  .hero-cue span { animation: none; }
}

/* Dish art gradients (no external images) */
.dish-art { display: block; width: 100%; height: 100%; }

/* ==========================================================================
   STATS BAND — live ticker
   ========================================================================== */
.stats-band { padding: clamp(28px, 5vw, 48px) 0 0; }
.ticker-band {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px) clamp(18px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  box-shadow: var(--shadow);
}
@media (min-width: 760px) {
  .ticker-band { grid-template-columns: auto 1px 1fr; align-items: center; gap: 34px; }
}
.ticker-main { display: flex; align-items: baseline; gap: 14px; }
.ticker-num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.ticker-label { color: var(--ink-soft); font-size: .9rem; max-width: 22ch; }
.ticker-div { background: var(--line); align-self: stretch; min-height: 60px; }
.ticker-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ticker-stats .st b {
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  color: var(--ink);
  display: block;
  font-variant-numeric: tabular-nums;
}
.ticker-stats .st span { font-size: .72rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; }

/* ==========================================================================
   GALERÍA — real-photo marquee
   ========================================================================== */
.gallery-sec { padding-bottom: clamp(48px, 7vw, 88px); overflow: clip; }
.marquee {
  position: relative;
  overflow: hidden;
  margin-top: clamp(24px, 4vw, 40px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.g-tile {
  position: relative;
  flex: 0 0 auto;
  width: clamp(240px, 34vw, 420px);
  aspect-ratio: 3 / 2;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.g-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.g-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9,11,15,.55));
}
.g-tile:hover img { transform: scale(1.06); }
.g-cap {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .marquee-track { animation: none; }
}

/* ==========================================================================
   TILT + GLARE (JS-driven, premium hover)
   ========================================================================== */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease-2);
}
[data-tilt].is-tilting { transition: box-shadow .3s var(--ease), border-color .3s var(--ease-2); }
.card-glare {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  border-radius: inherit;
  background: radial-gradient(240px circle at var(--gx, 50%) var(--gy, 0%), rgba(255,214,120,0.28), transparent 60%);
  transition: opacity .3s var(--ease-2);
}
[data-tilt].is-tilting .card-glare { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  [data-tilt] { transform: none !important; }
  .card-glare { display: none; }
}

/* ==========================================================================
   VITRINA — catalog grid (dish cards)
   ========================================================================== */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.dish-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease-2), box-shadow .3s var(--ease);
}
.dish-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-2);
  box-shadow: 0 26px 50px -28px rgba(0, 166, 166, 0.5);
}
.dish-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.dish-thumb .dish-art { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.dish-card:hover .dish-thumb .dish-art { transform: scale(1.07); }
/* Cinematic plating light — warm spotlight from above + grounding vignette below,
   layered over the gradient art so each dish reads like a lit plate, not a flat box. */
.dish-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(130% 82% at 50% -8%, rgba(255,241,214,0.42), rgba(255,241,214,0) 58%),
    radial-gradient(120% 120% at 50% 128%, rgba(9,11,15,0.62), rgba(9,11,15,0) 56%),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 34%);
  transition: opacity .4s var(--ease-2);
}
/* Plate ring — a fine porcelain rim that catches the spotlight */
.dish-thumb::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 62%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow:
    0 0 0 9px rgba(255,255,255,0.04),
    inset 0 8px 26px rgba(0,0,0,0.28),
    inset 0 -6px 20px rgba(255,240,210,0.12);
  transition: transform .5s var(--ease), border-color .4s var(--ease-2);
}
.dish-card:hover .dish-thumb::after { transform: translate(-50%, -50%) scale(1.06); border-color: rgba(255,214,120,0.42); }
.dish-thumb .chip { position: absolute; top: 12px; left: 12px; z-index: 3; }
.dish-thumb .dish-glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  color: #fff;
}
.dish-thumb .dish-glyph svg {
  width: 58px; height: 58px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.45)) drop-shadow(0 0 14px rgba(255,220,150,.35));
  transition: transform .5s var(--ease);
}
.dish-card:hover .dish-thumb .dish-glyph svg { transform: translateY(-2px) scale(1.06); }
.dish-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.dish-body h3 { font-size: 1.08rem; margin-bottom: 4px; }
.dish-body p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 14px; }
.dish-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dish-price { font-family: var(--font-mono); font-size: .92rem; color: var(--accent); font-weight: 700; }
.dish-price small { color: var(--ink-mute); font-weight: 400; }

/* Spice level bars (SVG-ish, CSS bars) */
.spice {
  display: flex;
  align-items: center;
  gap: 4px;
}
.spice span {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
}
.spice svg { width: 46px; height: 14px; }
.spice-bar-bg { fill: rgba(255, 179, 2, 0.15); }
.spice-bar-on { fill: var(--accent); }

/* ==========================================================================
   FORMATOS
   ========================================================================== */
.formatos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 22px);
}
@media (min-width: 760px) {
  .formatos-grid { grid-template-columns: repeat(3, 1fr); }
}
.formato-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease-2), box-shadow .3s var(--ease);
}
.formato-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-2);
  box-shadow: var(--shadow);
}
.formato-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--accent-2-soft);
  color: var(--accent-2);
  margin-bottom: 20px;
}
.formato-icon svg { width: 26px; height: 26px; }
.formato-card h3 { margin-bottom: 8px; }
.formato-card p { color: var(--ink-soft); font-size: .92rem; }
.formato-price {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.formato-price small { display: block; font-size: .72rem; color: var(--ink-mute); font-weight: 400; margin-top: 4px; }

/* ==========================================================================
   ARMAR — elige por # de invitados
   ========================================================================== */
.armar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.armar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
@media (min-width: 900px) {
  .armar-grid { grid-template-columns: 1fr 1fr; }
}
.guests-picker {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
}
.guests-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.guests-tab {
  font-family: var(--font-mono);
  font-size: .82rem;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s var(--ease-2);
}
.guests-tab:hover { border-color: var(--accent-2); color: var(--ink); }
.guests-tab.is-active { background: var(--accent); color: #14110a; border-color: var(--accent); }
.guests-out h3 { color: var(--accent-2); font-size: 1.02rem; margin-bottom: 6px; }
.guests-out .rec { font-family: var(--font-head); font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 10px; }
.guests-out p { color: var(--ink-soft); font-size: .92rem; }
.guests-out .est {
  margin-top: 18px;
  font-family: var(--font-mono);
  color: var(--ink);
  font-size: .9rem;
}
.guests-out .est b { color: var(--accent); }
.armar-note {
  margin-top: 18px;
  font-size: .78rem;
  color: var(--ink-mute);
}
.armar-side h2 { margin-bottom: 16px; }
.armar-side ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.armar-side li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.armar-side li .n {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: #14110a;
  background: var(--accent);
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 700;
}
.armar-side li b { display: block; font-family: var(--font-head); }
.armar-side li span { color: var(--ink-soft); font-size: .9rem; }
.armar-side li p { margin: 2px 0 0; }

/* ==========================================================================
   MENUS — pricing packages
   ========================================================================== */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 26px);
}
@media (min-width: 820px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}
.menu-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease-2), box-shadow .3s var(--ease);
}
.menu-card:hover { transform: translateY(-6px); border-color: var(--accent-2); box-shadow: var(--shadow); }
.menu-card.is-featured { border-color: rgba(255, 179, 2, 0.4); }
.menu-flag {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent);
  color: #14110a;
  font-family: var(--font-mono);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.menu-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.menu-card .menu-desc { color: var(--ink-soft); font-size: .88rem; min-height: 42px; }
.menu-price {
  font-family: var(--font-mono);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--accent);
  margin: 16px 0 4px;
}
.menu-price small { font-size: .8rem; color: var(--ink-mute); font-weight: 400; }
.menu-min { font-size: .78rem; color: var(--ink-mute); font-family: var(--font-mono); margin-bottom: 20px; }
.menu-list { list-style: none; padding: 0; margin: 0 0 12px; display: grid; gap: 10px; }
.menu-list li { display: grid; grid-template-columns: auto 1fr; gap: 10px; font-size: .88rem; color: var(--ink-soft); }
.menu-list li svg { width: 16px; height: 16px; margin-top: 3px; }
.menu-list li.inc svg { color: var(--accent-2); }
.menu-list li.exc { color: var(--ink-mute); }
.menu-list li.exc svg { color: var(--ink-mute); }
.menu-card .btn { margin-top: auto; }
.menu-deliver { font-size: .78rem; color: var(--ink-mute); margin: 14px 0 18px; padding-top: 12px; border-top: 1px solid var(--line); }
.price-disclaimer {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: .74rem;
  color: var(--ink-mute);
  text-align: center;
}

/* ==========================================================================
   OPINIONES — testimonials
   ========================================================================== */
.opiniones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 22px);
}
@media (min-width: 760px) {
  .opiniones-grid { grid-template-columns: repeat(3, 1fr); }
}
.opinion {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease-2);
}
.opinion:hover { transform: translateY(-4px); border-color: var(--accent-2); }
.opinion .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; font-size: .9rem; }
.opinion blockquote { margin: 0 0 18px; font-size: .96rem; color: var(--ink); line-height: 1.6; }
.opinion .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.opinion .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: #14110a;
  flex-shrink: 0;
}
.opinion .who b { display: block; font-family: var(--font-head); font-size: .92rem; }
.opinion .who span { font-size: .76rem; color: var(--ink-mute); font-family: var(--font-mono); }

/* ==========================================================================
   COTIZA — form
   ========================================================================== */
.cotiza { background: var(--surface); border-top: 1px solid var(--line); }
.cotiza-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 940px) {
  .cotiza-grid { grid-template-columns: 1fr 1.1fr; }
}
.cotiza-info h2 { margin-bottom: 14px; }
.cotiza-info > p { color: var(--ink-soft); margin-bottom: 26px; max-width: 40ch; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: transform .22s var(--ease-2), border-color .22s var(--ease-2);
}
.contact-list li:hover { transform: translateX(4px); border-color: var(--accent-2); }
.contact-list .ci {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-2-soft);
  color: var(--accent-2);
}
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-size: .78rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); font-weight: 400; }
.contact-list a, .contact-list span.v { color: var(--ink); font-weight: 500; word-break: break-word; overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--accent); }

/* Form */
.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .82rem; color: var(--ink-soft); font-weight: 500; }
.field label .req { color: var(--accent); }
.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .94rem;
  padding: 12px 14px;
  transition: border-color .2s var(--ease-2), box-shadow .2s var(--ease-2);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px var(--accent-2-soft);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237C8493' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: .82rem;
  color: var(--ink-soft);
  margin-top: 4px;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-consent a { color: var(--accent); text-decoration: underline; }
.form-card .btn { margin-top: 20px; width: 100%; }
@media (min-width: 560px) { .form-card .btn { width: auto; } }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* CTA panel (replaces in-page forms outside the contact page) */
.cta-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}
.cta-panel h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0; }
.cta-panel p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.cta-panel .hero-actions { margin: 8px 0 0; }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; }
.breadcrumb { font-family: var(--font-mono); font-size: .76rem; color: var(--ink-mute); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--accent); }

/* Prose (legal / docs) */
.prose { max-width: 780px; }
.prose h2 { margin-top: 44px; font-size: 1.5rem; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose strong { color: var(--ink); }

/* Tables */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .9rem; }
table th { font-family: var(--font-head); color: var(--ink); background: var(--surface-2); }
table td { color: var(--ink-soft); }

/* ==========================================================================
   NOSOTROS — team / process / faq
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 26px);
}
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease-2);
}
.team-card:hover { transform: translateY(-5px); border-color: var(--accent-2); }
.team-photo {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  position: relative;
}
.team-photo .initials {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(20, 17, 10, 0.85);
}
.team-body { padding: 20px 22px 24px; }
.team-body h3 { margin-bottom: 2px; }
.team-body .role { font-family: var(--font-mono); font-size: .78rem; color: var(--accent-2); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.team-body p { font-size: .88rem; color: var(--ink-soft); }

.timeline { display: grid; gap: 4px; max-width: 820px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.step .step-n {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  width: 48px; height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: grid; place-items: center;
}
.step h3 { margin-bottom: 4px; font-size: 1.14rem; }
.step .when { font-family: var(--font-mono); font-size: .74rem; color: var(--accent-2); margin-bottom: 8px; display: block; }
.step p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* FAQ */
.faq { max-width: 820px; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px clamp(18px, 3vw, 26px);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 7px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: transform .3s var(--ease-2), background .2s var(--ease-2), color .2s var(--ease-2);
  color: var(--accent);
}
.faq-item[open] summary .ic { transform: rotate(45deg); background: var(--accent); color: #14110a; }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 22px; }
.faq-item .answer p { color: var(--ink-soft); font-size: .92rem; margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* Contact channel cards */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}
.channel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .28s var(--ease), border-color .28s var(--ease-2), box-shadow .28s var(--ease);
}
.channel:hover { transform: translateY(-4px); border-color: var(--accent-2); box-shadow: var(--shadow); }
.channel .ci {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-2-soft);
  color: var(--accent-2);
  margin-bottom: 16px;
}
.channel .ci svg { width: 22px; height: 22px; }
.channel b { display: block; font-family: var(--font-head); font-size: 1.02rem; margin-bottom: 4px; }
.channel a, .channel .v { display: block; color: var(--ink); font-weight: 500; word-break: break-word; overflow-wrap: anywhere; }
.channel a:hover { color: var(--accent); }
.channel small { display: block; color: var(--ink-mute); font-size: .78rem; margin-top: 6px; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.hours-grid .day {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: var(--surface);
}
.hours-grid .day b { font-family: var(--font-head); font-size: .9rem; display: block; }
.hours-grid .day span { font-family: var(--font-mono); font-size: .82rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-grid .day.is-closed span { color: var(--ink-mute); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0A0D11;
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-brand p { color: var(--ink-soft); font-size: .9rem; max-width: 34ch; margin-top: 16px; }
.footer-col h4 { font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--ink-soft); font-size: .9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: var(--ink-soft); font-size: .88rem; margin: 0 0 8px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { margin: 0; font-size: .8rem; color: var(--ink-mute); }
.footer-bottom .biz { font-family: var(--font-mono); font-size: .74rem; }
.footer-bottom nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom nav a { font-size: .8rem; color: var(--ink-mute); }
.footer-bottom nav a:hover { color: var(--accent); }

/* Notes / activity block */
.notes-list { display: grid; gap: 12px; max-width: 640px; }
.note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.note time { font-family: var(--font-mono); font-size: .74rem; color: var(--accent-2); white-space: nowrap; }
.note p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  z-index: 9999;
  background: #12151b;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.8);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s var(--ease-2);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 620px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h3 { font-size: 1.05rem; margin-bottom: 8px; }
.cookie-banner p { font-size: .84rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cookie-actions .btn { width: 100%; min-height: 44px; padding: 12px 16px; font-size: .88rem; }
.cookie-actions .btn.wide { grid-column: 1 / -1; }
/* "Rechazar" must be as easy to choose as "Aceptar": give it a solid, equal-weight
   surface instead of a faint transparent ghost. */
.cookie-actions .btn-ghost[data-consent="reject"] {
  background: var(--surface-3);
  border-color: var(--line-strong);
  color: var(--ink);
}
.cookie-actions .btn-ghost[data-consent="reject"]:hover,
.cookie-actions .btn-ghost[data-consent="reject"]:focus-visible {
  background: var(--surface-2);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}
.cookie-btn-settings { background: transparent; color: var(--ink-soft); border: 1px solid var(--line-strong); }
.cookie-btn-settings:hover { background: var(--surface-2); color: var(--ink); }

/* Cookie modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
}
.cookie-modal.is-open { display: grid; }
.cookie-modal-inner {
  background: #12151b;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 28px;
  max-height: 88vh;
  overflow-y: auto;
}
.cookie-modal-inner h3 { margin-bottom: 8px; }
.cookie-modal-inner > p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 20px; }
.toggle-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.toggle-row b { font-size: .94rem; font-family: var(--font-head); }
.toggle-row p { font-size: .8rem; color: var(--ink-mute); margin: 2px 0 0; }
.toggle-row input { width: 18px; height: 18px; accent-color: var(--accent); }
.cookie-modal-inner .btn { margin-top: 20px; width: 100%; }

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Thematic ambient: rising steam on hero mark */
@keyframes steam {
  0% { transform: translateY(2px) scaleX(1); opacity: .35; }
  50% { transform: translateY(-3px) scaleX(1.12); opacity: .7; }
  100% { transform: translateY(2px) scaleX(1); opacity: .35; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.brand__mark svg { animation: floatY 6s var(--ease) infinite; }
@media (prefers-reduced-motion: reduce) { .brand__mark svg { animation: none; } }

/* ---- Thematic micro-interactions (criollo warmth) ---- */
/* Primary CTAs get a layered warm glow on hover — a kitchen-fire cue, not a flat drop shadow */
.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: 0 14px 30px -12px rgba(255, 179, 2, 0.62),
              0 0 22px -6px rgba(255, 138, 0, 0.45);
}
/* Dish glyphs breathe gently on card hover, like rising steam over a hot plate */
.dish-card:hover .dish-glyph svg { animation: steam 2.6s var(--ease) infinite; }
.formato-card:hover .formato-icon,
.channel:hover .ci {
  box-shadow: 0 0 0 4px rgba(0, 166, 166, 0.12);
  transition: box-shadow .3s var(--ease-2);
}
@media (prefers-reduced-motion: reduce) {
  .dish-card:hover .dish-glyph svg { animation: none; }
}

/* utility */
.center { text-align: center; }
.mt-lg { margin-top: clamp(32px, 5vw, 56px); }
.lead { font-size: 1.1rem; color: var(--ink-soft); }
.text-accent { color: var(--accent); }

/* 404 */
.error-wrap { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.error-wrap .code { font-family: var(--font-mono); font-size: clamp(4rem, 14vw, 9rem); font-weight: 700; color: var(--accent); line-height: 1; }
.error-wrap p { color: var(--ink-soft); max-width: 46ch; margin: 12px auto 26px; }

/* thank you */
.thanks-wrap { min-height: 66vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.thanks-wrap .check {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--accent-2-soft);
  color: var(--accent-2);
  display: grid; place-items: center;
  margin: 0 auto 26px;
}
.thanks-wrap .check svg { width: 40px; height: 40px; }
.thanks-wrap p { color: var(--ink-soft); max-width: 46ch; margin: 12px auto 26px; }

/* responsive tweaks */
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .formato-icon { width: 46px; height: 46px; }
  .contact-list li { padding: 12px; }
  /* Short single-message pages centre their content vertically; on mobile the
     fixed cookie banner would overlap the CTA buttons. Top-align, tighten the
     hero block and reserve scroll room so the actions always clear the banner. */
  .error-wrap, .thanks-wrap {
    min-height: auto;
    align-content: start;
    padding: 24px 0 clamp(220px, 42vh, 300px);
  }
  .error-wrap h1, .thanks-wrap h1 { font-size: clamp(1.8rem, 8.4vw, 2.4rem); }
  .error-wrap .code { font-size: clamp(3.2rem, 13vw, 5rem); }
  .error-wrap p, .thanks-wrap p { margin: 10px auto 20px; }
  .thanks-wrap .check { width: 60px; height: 60px; margin-bottom: 16px; }
  .thanks-wrap .check svg { width: 30px; height: 30px; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--accent-2),var(--accent));z-index:9998;transition:width 80ms linear;pointer-events:none;box-shadow:0 0 12px -2px rgba(255,179,2,.6)}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ==========================================================================
   AWARD POLISH — cinematic grain, editorial rhythm, warm micro-motion
   (decorative only; disabled under prefers-reduced-motion where it moves)
   ========================================================================== */

/* --- Fine film grain over the whole viewport (award-cinema signature) --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* --- Hero: hand-drawn gold underline sweeping under the italic accent --- */
.hero-em { position: relative; }
.hero-em::after {
  content: "";
  position: absolute;
  left: 0.02em; right: 0.06em;
  bottom: -0.06em;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, #ffd15a 12%, #ff8a1e 88%, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: heroEmDraw 1s var(--ease) 0.7s forwards;
}
@keyframes heroEmDraw { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-em::after { animation: none; transform: scaleX(1); }
}

/* --- Eyebrow: add a soft warm glow to the leading rule --- */
.eyebrow::before { box-shadow: 0 0 10px -1px var(--accent); }

/* --- Section heads: gradient underline accent under the display heading --- */
.section-head h2 { position: relative; }
.section-head h2::after {
  content: "";
  display: block;
  width: 64px; height: 3px;
  margin-top: 18px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: left;
}

/* --- Stats band: warm hairline crown + inner glow --- */
.ticker-band {
  position: relative;
  overflow: hidden;
}
.ticker-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent-2) 70%, transparent);
  opacity: .8;
}
.ticker-num { text-shadow: 0 0 26px rgba(255,179,2,0.28); }

/* --- Cards: a warm accent hairline that draws in on hover (formato / menu) --- */
.formato-card { overflow: hidden; }
.formato-card::before, .menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: transform .45s var(--ease);
}
.formato-card::before { left: 0; width: 100%; }
/* menu-card must NOT clip its "Más pedido" flag (top:-12px), so the bar is inset
   inside the corner radius instead of relying on overflow:hidden. */
.menu-card::before { left: 14px; right: 14px; border-radius: 0 0 3px 3px; }
.formato-card:hover::before, .menu-card:hover::before,
.menu-card.is-featured::before { transform: scaleX(1); }
.menu-card.is-featured::before { background: linear-gradient(90deg, var(--accent), var(--accent-warm)); }

/* Formato image: gentle zoom on card hover, warm ring on the icon */
.formato-card figure img { transition: transform .6s var(--ease); }
.formato-card:hover figure img { transform: scale(1.05); }

/* --- Inner page-hero: cohesive cinematic warmth (nosotros / contacto / legal) --- */
.page-hero { position: relative; overflow: clip; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(70% 130% at 88% -30%, rgba(255,179,2,0.14), transparent 60%),
    radial-gradient(60% 120% at 2% 0%, rgba(0,166,166,0.11), transparent 62%);
}
.page-hero h1 { position: relative; }

/* --- Team & guests picker: subtle spotlight so gradient photos feel plated too --- */
.team-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% -10%, rgba(255,241,214,0.30), transparent 58%),
              radial-gradient(120% 120% at 50% 130%, rgba(9,11,15,0.5), transparent 55%);
  pointer-events: none;
}
.team-photo .initials { position: relative; z-index: 1; text-shadow: 0 3px 14px rgba(0,0,0,.3); }

/* --- Guests picker output: soft accent frame that shifts with the active tab --- */
.guests-out {
  position: relative;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(0,166,166,0.08), transparent 55%),
    var(--surface);
  overflow: hidden;
}
.guests-out::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

/* --- Opinion cards: oversized quote mark for editorial texture --- */
.opinion { position: relative; overflow: hidden; }
.opinion::before {
  content: "\201C";
  position: absolute;
  top: -0.28em; right: 0.12em;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.09;
  pointer-events: none;
}

/* --- Gallery tiles: warm bloom on hover --- */
.g-tile { transition: border-color .4s var(--ease-2), box-shadow .4s var(--ease); }
.g-tile:hover { border-color: rgba(255,214,120,.4); box-shadow: 0 24px 50px -28px rgba(255,138,30,.5); }

/* --- Buttons: sheen sweep on primary CTA hover --- */
.btn-primary, .btn-drawer-cta { position: relative; overflow: hidden; }
.btn-primary::after, .btn-drawer-cta::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: left .6s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::after, .btn-drawer-cta:hover::after { left: 130%; }
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after, .btn-drawer-cta::after { display: none; }
}

/* Keep the grain from ever washing out fine text on very small screens */
@media (max-width: 480px) { body::after { opacity: 0.04; } }


/* --- dish tiles: real food photo behind gradient/glyph --- */
.dish-thumb{ position:relative; overflow:hidden; }
.dish-thumb .dish-photo{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.dish-thumb .dish-art{ display:none !important; }
.dish-thumb .dish-glyph{ display:none; }
.dish-card:hover .dish-thumb .dish-photo{ transform:scale(1.05); }
.dish-thumb .dish-photo{ transition:transform 500ms cubic-bezier(.2,.7,.2,1); }
