/* =============================================================
   NOCEDAL — styles.css
   Archetype: Editorial Dark Warm (adaptado) — bosque nocturno + latón
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Paleta obligatoria del brief */
  --fondo: #14201A;       /* verde bosque — fondo dominante */
  --superficie: #1E2C23;  /* follaje hondo — tarjetas/superficies */
  --texto: #ECE4D2;       /* hueso — texto principal, nunca blanco puro */
  --logo-arena: #E6D3A3;  /* arena luz — logo teñido, iluminado */
  --acento-1: #C6A052;    /* latón cálido — CTA, remates, "luz de fuego" */
  --acento-2: #9CAE7B;    /* salvia clara — detalles de huerto */

  /* ALTERNATIVA CAFÉ (comentada) — probar más adelante sin rehacer nada
  --fondo: #1C1611;
  --superficie: #241C15;
  --texto: #ECE4D2;
  --logo-arena: #E6D3A3;
  --acento-1: #C6A052;
  --acento-2: #6E7A52;
  */

  --texto-mute: rgba(236, 228, 210, 0.68);
  --texto-dim: rgba(236, 228, 210, 0.42);
  --linea: rgba(236, 228, 210, 0.14);
  --sombra: rgba(6, 10, 7, 0.55);

  --serif: "Cinzel", "Times New Roman", serif;
  --evocativa: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --container: 1180px;
}

@property --resplandor-x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}
@property --resplandor-y {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--texto);
  background: var(--fondo);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  text-wrap: balance;
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-weight: 500;
}
::selection { background: var(--acento-1); color: var(--fondo); }

:focus-visible {
  outline: 2px solid var(--acento-1);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--logo-arena); color: var(--fondo);
  border-radius: 6px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--acento-1); font-weight: 600;
}
.eyebrow::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--acento-1);
  box-shadow: 0 0 8px 2px rgba(198, 160, 82, 0.65);
}
em, .em { font-family: var(--evocativa); font-style: italic; color: var(--logo-arena); font-weight: 500; }
.section-kicker { margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 1.1rem; }
.section-lede {
  font-family: var(--evocativa); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--texto-mute); max-width: 46ch; line-height: 1.5;
}
.section-copy { max-width: 62ch; color: var(--texto-mute); font-size: 1.02rem; }
.section-copy + .section-copy { margin-top: 1rem; }

/* =============================================================
   4. Typography — arch dividers
   ============================================================= */
.arch-divider {
  width: 100%; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: var(--acento-1);
  opacity: .55;
}
.arch-divider svg { width: min(100%, 640px); height: 100%; }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Nav --- */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background-color .5s var(--ease-out), box-shadow .5s var(--ease-out), backdrop-filter .5s var(--ease-out);
}
.nav-inner {
  width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav.is-scrolled {
  background: rgba(20, 32, 26, 0.86);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--linea), 0 18px 36px -22px rgba(0,0,0,.55);
}
.nav-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); letter-spacing: .16em; font-size: .95rem; text-transform: uppercase; color: var(--logo-arena); }
.nav-brand img { width: 34px; height: 36px; object-fit: contain; }
.nav-links { display: none; align-items: center; gap: 1.9rem; }
.nav-link {
  position: relative; padding: .3rem 0; font-size: .82rem; letter-spacing: .06em;
  color: var(--texto-mute);
  transition: color .35s var(--ease-out);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--acento-1); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--texto); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-inner .nav-cta {
  display: none;
}
.nav-burger {
  display: inline-flex; flex-direction: column; gap: 5px; padding: .5rem; z-index: 110;
}
.nav-burger span { width: 22px; height: 1px; background: var(--texto); transition: transform .35s var(--ease-out), opacity .35s var(--ease-out); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 95;
  background: var(--fondo); color: var(--texto);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-list { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.nav-mobile-list a { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .04em; }

/* --- Buttons --- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem; border-radius: 999px;
  font-size: .84rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), color .35s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(160deg, var(--acento-1), #a9813c);
  color: #1a1408;
  box-shadow: 0 10px 26px -10px rgba(198, 160, 82, .55), 0 2px 0 rgba(255,255,255,.08) inset;
}
.btn-primary::before {
  content: ""; position: absolute; inset: -40%; z-index: -1;
  background: radial-gradient(circle, rgba(255, 226, 170, .9), transparent 60%);
  opacity: 0; transition: opacity .45s var(--ease-out);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(198, 160, 82, .75), 0 2px 0 rgba(255,255,255,.12) inset; }
.btn-primary:hover::before { opacity: .55; }
.btn-ghost {
  background: transparent; color: var(--texto);
  border: 1px solid var(--linea);
}
.btn-ghost:hover { border-color: var(--acento-1); color: var(--logo-arena); box-shadow: 0 0 24px -8px rgba(198,160,82,.55); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --- Cards --- */
.card {
  background: var(--superficie);
  border: 1px solid var(--linea);
  border-radius: 14px;
}

/* --- Footer --- */
.footer {
  padding-block: 4rem 2.4rem;
  border-top: 1px solid var(--linea);
  background: linear-gradient(180deg, var(--fondo), #0f1712);
}
.footer-grid {
  display: grid; gap: 2.4rem;
}
.footer-emblem { width: 96px; opacity: .92; }
.footer-cols { display: grid; gap: 1.8rem; }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--acento-1); margin-bottom: .8rem; font-weight: 700; }
.footer-col a, .footer-col p { color: var(--texto-mute); font-size: .92rem; line-height: 1.8; }
.footer-col a:hover { color: var(--logo-arena); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--linea);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .78rem; color: var(--texto-dim);
}

/* --- Firma de autor (discreta) --- */
.footer-signature {
  display: flex; justify-content: center;
  margin-top: 1.6rem;
}
.footer-signature img {
  width: 72px; height: auto;
  opacity: .2;
  transition: opacity .4s var(--ease-out);
}
.footer-signature img:hover {
  opacity: .6;
}

/* =============================================================
   6. Sections
   ============================================================= */

section { position: relative; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
  transform: scale(1.06);
  filter: brightness(1.22) saturate(1.08) contrast(1.02);
}
.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(9, 14, 11, .1) 0%,
    rgba(9, 14, 11, .05) 20%,
    rgba(9, 14, 11, .28) 46%,
    rgba(8, 13, 10, .68) 74%,
    rgba(8, 13, 10, .86) 100%);
}
.hero-inner {
  position: relative; z-index: 3;
  padding: 7rem 1.5rem 4rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
  max-width: 720px;
}
.hero-emblem { position: relative; width: min(58vw, 210px); }
.hero-emblem-glow {
  position: absolute; inset: -45%; z-index: -1;
  background: radial-gradient(closest-side, rgba(230, 211, 163, .5), transparent 72%);
  filter: blur(26px);
  animation: resplandorBreathe 7s ease-in-out infinite;
}
.hero-emblem img {
  width: 100%;
  filter: drop-shadow(0 0 24px rgba(230, 211, 163, .4));
}
.hero-tag {
  font-family: var(--evocativa); font-style: italic; font-weight: 500;
  font-size: clamp(1.35rem, 3.4vw, 2.1rem);
  color: var(--texto);
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
  max-width: 20ch;
}
.hero-sub { color: var(--texto-mute); font-size: .98rem; max-width: 40ch; }
.hero-scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 1px; height: 40px; background: linear-gradient(180deg, transparent, var(--acento-1), transparent);
  opacity: .6;
}
.hero-scroll-cue::after {
  content: ""; position: absolute; left: -2px; top: 0; width: 5px; height: 5px; border-radius: 50%;
  background: var(--acento-1);
  animation: cueDrop 2.6s var(--ease-soft) infinite;
}

@keyframes resplandorBreathe {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.08); }
}
@keyframes cueDrop {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 34px; opacity: 0; }
}

/* --- La casa --- */
.casa { position: relative; overflow: hidden; padding-block: 6rem 7rem; background: var(--fondo); }
.casa-bg { position: absolute; inset: 0; z-index: 0; }
.casa-bg video, .casa-bg img { width: 100%; height: 100%; object-fit: cover; }
.casa-tint {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 15, 12, .87), rgba(10, 15, 12, .82));
}
.casa-bg-caption {
  position: absolute; right: 1.5rem; bottom: 1.2rem; z-index: 2;
  font-family: var(--evocativa); font-style: italic; font-size: .85rem;
  color: var(--logo-arena); text-shadow: 0 2px 10px rgba(0,0,0,.7);
  opacity: .8;
}
.casa-grid { position: relative; z-index: 2; display: grid; gap: 3rem; align-items: center; }
.casa-media { display: grid; gap: 1rem; }
.casa-photo { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 24px 50px -24px rgba(0,0,0,.6); }
.casa-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-soft); }
.casa-photo:hover img { transform: scale(1.06); }
.casa-photo--wide { aspect-ratio: 16/10; grid-column: 1 / -1; }

/* --- Los platos --- */
.platos { position: relative; overflow: hidden; padding-block: 6rem 7rem; background: linear-gradient(180deg, var(--fondo), var(--superficie) 140%); }
.platos-bg { position: absolute; inset: 0; z-index: 0; opacity: .3; }
.platos-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15) brightness(.7) sepia(.2); }
.platos-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--fondo) 0%, rgba(20,32,26,.45) 45%, var(--superficie) 100%);
}
.platos > .container { position: relative; z-index: 1; }
.platos-header { max-width: 52ch; margin-bottom: 3rem; }
.platos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.plato-card {
  position: relative; overflow: hidden; border-radius: 12px; aspect-ratio: 4/5;
  isolation: isolate;
}
.plato-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-soft), filter .6s var(--ease-out); }
.plato-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 15, 12, .75) 100%);
  opacity: 0; transition: opacity .5s var(--ease-out);
}
.plato-card:hover img { transform: scale(1.1); filter: saturate(1.12) brightness(1.05); }
.plato-card:hover::after { opacity: 1; }
.plato-card .plato-num {
  position: absolute; left: .9rem; bottom: .8rem; z-index: 2;
  font-family: var(--serif); font-size: .78rem; letter-spacing: .16em; color: var(--logo-arena);
  opacity: 0; transform: translateY(6px); transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}
.plato-card:hover .plato-num { opacity: 1; transform: translateY(0); }

/* --- Luciano --- */
.luciano { padding-block: 6rem 7rem; }
.luciano-grid { display: grid; gap: 3rem; align-items: center; }
.luciano-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 24px 50px -24px rgba(0,0,0,.6); }
.luciano-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-soft); }
.luciano-photo:hover img { transform: scale(1.06); }
.luciano-name { font-family: var(--serif); font-size: 1.1rem; letter-spacing: .1em; color: var(--acento-1); margin-top: 1.4rem; text-transform: uppercase; }
.luciano-role { color: var(--texto-dim); font-size: .85rem; margin-top: .2rem; }

/* --- El origen --- */
.origen { padding-block: 6rem 7rem; background: var(--superficie); }
.origen-grid { display: grid; gap: 3rem; align-items: center; }
.origen-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 5/4; }
.origen-photo img { width: 100%; height: 100%; object-fit: cover; }
.origen-pillars { display: grid; gap: 1.2rem; margin-top: 1.8rem; }
.origen-pillar { display: flex; gap: .9rem; align-items: flex-start; }
.origen-pillar .num { font-family: var(--serif); color: var(--acento-1); font-size: 1rem; opacity: .8; }
.origen-pillar p { color: var(--texto-mute); font-size: .95rem; }

/* --- La carta --- */
.carta { padding-block: 6rem 7rem; background: var(--fondo); }
.carta-head { text-align: center; margin-bottom: 3rem; }
.carta-note {
  margin: 1.4rem auto 0; max-width: 44ch;
  font-family: var(--evocativa); font-style: italic; color: var(--logo-arena); font-size: 1.05rem;
}
.menu-grid { display: grid; gap: 2.6rem; }
.menu-cat-title {
  font-family: var(--serif); font-size: 1.3rem; letter-spacing: .06em;
  color: var(--acento-1); text-transform: uppercase; margin-bottom: 1.2rem;
  padding-bottom: .7rem; border-bottom: 1px solid var(--linea);
}
.menu-item { display: flex; justify-content: space-between; gap: 1rem; padding-block: .85rem; border-bottom: 1px dashed var(--linea); }
.menu-item:last-child { border-bottom: 0; }
.menu-item-name { font-weight: 600; font-size: 1.02rem; }
.menu-item-detail { color: var(--texto-dim); font-size: .86rem; margin-top: .25rem; font-style: italic; font-family: var(--evocativa); }
.menu-item-price { font-family: var(--serif); color: var(--logo-arena); white-space: nowrap; font-size: 1.02rem; }
.carta-actions { margin-top: 3rem; display: flex; justify-content: center; }
.carta-footnote { margin-top: 1.4rem; text-align: center; font-size: .78rem; color: var(--texto-dim); }

.carta-subhead { text-align: center; margin: 4rem 0 3rem; }
.carta-subhead-title {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--logo-arena); text-transform: uppercase; letter-spacing: .06em;
}
.menu-subgroup {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--acento-2); font-weight: 700; margin: 1.2rem 0 .2rem;
}
.menu-subgroup:first-of-type { margin-top: 0; }

/* Sin JS, el contenido queda visible (accesible); JS agrega .is-collapsed al iniciar */
.menu-more.is-collapsed {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease-soft), opacity .45s var(--ease-out);
}
.menu-more.is-collapsed.is-open {
  max-height: 1400px;
  opacity: 1;
}
.menu-toggle {
  margin-top: 1.2rem;
  padding: .6rem 1.4rem;
  font-size: .74rem;
}

/* --- Ubicación --- */
.ubicacion { padding-block: 6rem 7rem; background: var(--superficie); }
.ubicacion-grid { display: grid; gap: 2.4rem; }
.ubicacion-map { border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--linea); filter: saturate(0.35) sepia(0.25) brightness(0.92); }
.ubicacion-map iframe { width: 100%; height: 100%; border: 0; }
.ubicacion-info { display: flex; flex-direction: column; gap: 1.4rem; }
.ubicacion-info p { color: var(--texto-mute); }

/* --- Cierre / reserva --- */
.cierre {
  position: relative; padding-block: 8rem 6rem; overflow: hidden;
  text-align: center;
}
.cierre-bg { position: absolute; inset: 0; z-index: 0; }
.cierre-bg img { width: 100%; height: 100%; object-fit: cover; }
.cierre-tint {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,15,12,.92) 0%, rgba(15,22,17,.62) 40%, rgba(10,15,12,.92) 100%);
}
.cierre-inner { position: relative; z-index: 2; max-width: 640px; margin-inline: auto; }
.cierre .section-lede { margin-inline: auto; }
.cierre .btn-row { justify-content: center; margin-top: 2rem; }
.cierre-schedule {
  margin-top: 3.4rem; padding-top: 2.2rem; border-top: 1px solid var(--linea);
  display: grid; gap: .7rem;
}
.cierre-schedule-row { display: flex; justify-content: space-between; max-width: 320px; margin-inline: auto; width: 100%; font-size: .92rem; color: var(--texto-mute); }
.cierre-schedule-row span:last-child { color: var(--texto); font-weight: 600; }
.cierre-schedule-note { font-size: .8rem; color: var(--texto-dim); margin-top: .6rem; font-style: italic; font-family: var(--evocativa); }

/* =============================================================
   7. Effects
   ============================================================= */

[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; } /* defensivo — nunca invisible */

.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

.has-halo { position: relative; isolation: isolate; }
.has-halo::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(198, 160, 82, .35), transparent 62%);
  opacity: 0; transition: opacity .35s;
}
.has-halo:hover::before { opacity: 1; }

.ambient-zoom { animation: ambientZoom 30s ease-in-out infinite; }
@keyframes ambientZoom {
  0%, 100% { transform: scale(1.06) translate3d(0,0,0); }
  50% { transform: scale(1.13) translate3d(-1%, -1%, 0); }
}

/* =============================================================
   8. Responsive (mobile-first)
   ============================================================= */

.desktop-only-media { display: none; }
.mobile-only-media { display: block; }

@media (min-width: 540px) {
  .platos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 2fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .cierre-schedule-row { max-width: 380px; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .nav-inner .nav-cta { display: inline-flex; }

  .desktop-only-media { display: block; }
  .mobile-only-media { display: none; }

  .casa-grid { grid-template-columns: 1.1fr 1fr; }
  .casa-media { grid-template-columns: 1fr 1fr; }
  .casa-photo--wide { grid-column: span 2; }
  .platos-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .luciano-grid { grid-template-columns: .9fr 1.1fr; }
  .luciano-grid.is-reverse { direction: rtl; }
  .luciano-grid.is-reverse > * { direction: ltr; }
  .origen-grid { grid-template-columns: 1.1fr .9fr; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .ubicacion-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .hero-emblem { width: 190px; }
}

/* =============================================================
   9. Reduced-motion — solo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { transform: none; }
  .ambient-zoom { animation: none; }
  .hero-scroll-cue::after { animation: none; }
  .casa-bg video { display: none; }
  .casa-bg img { display: block; }
  /* NO se desactivan: tilt, hover, fades, resplandor breathing, reveals */
}
