/* =========================================================================
   LA'MAR · Restaurante y Cevichería — Sistema visual
   Paleta: azul abismo + turquesa de marca + dorado
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Color */
  --abismo:        #04151E;
  --abismo-90:     rgba(4, 21, 30, 0.96);
  --abismo-70:     rgba(4, 21, 30, 0.70);
  --marea:         #0A2733;
  --marea-alta:    #103544;
  --linea:         rgba(111, 227, 232, 0.16);
  --linea-fuerte:  rgba(111, 227, 232, 0.32);

  --turquesa:      #17C7CE;
  --turquesa-claro:#6FE3E8;
  --turquesa-glow: rgba(23, 199, 206, 0.28);

  --dorado:        #D9B26A;
  --dorado-claro:  #EFD9A8;

  --espuma:        #EAF4F5;
  --espuma-suave:  #B8CDD3;
  --espuma-mute:   #8CA6AE;

  --arena:         #F1E3CC;
  --coral:         #E4572E;

  /* Tipografía */
  --display: 'Playfair Display', 'Georgia', serif;
  --texto:   'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --script:  'Pacifico', 'Playfair Display', cursive;

  /* Espaciado — escala espaciosa (marketing, no dashboard) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  --radio:      14px;
  --radio-sm:   10px;
  --radio-full: 999px;

  --sombra:      0 18px 50px -18px rgba(0, 0, 0, 0.75);
  --sombra-alta: 0 34px 80px -26px rgba(0, 0, 0, 0.9);

  --nav-h: 76px;
  --ancho:  1240px;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--abismo);
  color: var(--espuma);
  font-family: var(--texto);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

/* Los <dd> del navegador traen margin-left: 40px. En un flex eso desborda
   la columna del grid y arrastra al párrafo vecino. */
dl, dd, dt, figure { margin: 0; }

:focus-visible {
  outline: 2px solid var(--turquesa-claro);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--turquesa); color: var(--abismo); }

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

.skip-link {
  position: absolute; top: 8px; left: 8px;
  transform: translateY(-200%);
  background: var(--turquesa); color: var(--abismo);
  padding: 12px 20px; border-radius: var(--radio-sm);
  font-weight: 700; z-index: 200;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* Grano sutil sobre toda la página — le quita el plano digital */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 90;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 3. Utilidades ---------- */
.wrap {
  width: 100%;
  max-width: var(--ancho);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.eyebrow {
  font-family: var(--script);
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  color: var(--turquesa);
  line-height: 1;
  margin-bottom: var(--space-2);
  display: block;
}

.kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dorado);
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--dorado);
  opacity: 0.7;
  flex: none;
}

.section {
  padding-block: clamp(var(--space-5), 10vw, var(--space-6));
  position: relative;
}

.section-head { max-width: 60ch; margin-bottom: var(--space-4); }
.section-head h2 { font-size: clamp(2rem, 5.2vw, 3.4rem); margin-block: var(--space-2) var(--space-2); }
.section-head p { color: var(--espuma-suave); font-size: clamp(1rem, 1.8vw, 1.12rem); }

.lead { color: var(--espuma-suave); font-size: clamp(1.02rem, 2vw, 1.18rem); }

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radio-full);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--turquesa);
  color: var(--abismo);
  box-shadow: 0 12px 34px -12px var(--turquesa-glow);
}
.btn--primary:hover { background: var(--turquesa-claro); box-shadow: 0 18px 44px -12px var(--turquesa-glow); }

.btn--ghost {
  background: transparent;
  border-color: var(--linea-fuerte);
  color: var(--espuma);
}
.btn--ghost:hover { border-color: var(--turquesa); background: rgba(23, 199, 206, 0.08); }

.btn--gold { background: var(--dorado); color: #2A1E06; }
.btn--gold:hover { background: var(--dorado-claro); }

.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }

.icon { width: 20px; height: 20px; flex: none; stroke-width: 1.6; }

/* ---------- 4. Barra de anuncio + navegación ---------- */
.topbar {
  background: linear-gradient(90deg, var(--marea), var(--marea-alta), var(--marea));
  border-bottom: 1px solid var(--linea);
  font-size: 0.8rem;
  color: var(--espuma-suave);
  position: relative;
  z-index: 60;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; min-height: 40px; flex-wrap: wrap;
  text-align: center;
}
.topbar__dot { color: var(--turquesa); }
.topbar b { color: var(--espuma); font-weight: 600; }

.nav {
  position: sticky; top: 0; z-index: 70;
  background: transparent;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: var(--abismo-90);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--linea);
  box-shadow: 0 10px 40px -22px #000;
}

.nav__inner {
  display: flex; align-items: center; gap: var(--space-3);
  min-height: var(--nav-h);
}

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px var(--linea-fuerte), 0 8px 24px -10px rgba(0,0,0,.8);
  flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display);
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 0.56rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--espuma-mute);
  margin-top: 4px;
}

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 10px 14px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--espuma-suave);
  border-radius: var(--radio-sm);
  position: relative;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: var(--turquesa);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--espuma); }
.nav__link:hover::after, .nav__link[aria-current="true"]::after { transform: scaleX(1); }
.nav__link[aria-current="true"] { color: var(--espuma); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 48px; padding: 0 20px;
  background: rgba(23, 199, 206, 0.1);
  border: 1px solid var(--linea-fuerte);
  border-radius: var(--radio-full);
  font-weight: 600; font-size: 0.9rem;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.cart-btn:hover { background: rgba(23, 199, 206, 0.2); border-color: var(--turquesa); transform: translateY(-2px); }

.cart-btn__count {
  min-width: 22px; height: 22px; padding: 0 6px;
  display: grid; place-items: center;
  background: var(--turquesa); color: var(--abismo);
  border-radius: var(--radio-full);
  font-size: 0.72rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cart-btn.is-empty .cart-btn__count { background: var(--marea-alta); color: var(--espuma-mute); }
.cart-btn.bump { animation: bump 0.45s var(--ease); }
@keyframes bump {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.09); }
  100% { transform: scale(1); }
}

.nav__toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--linea-fuerte);
  border-radius: var(--radio-sm);
}

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  min-height: min(94svh, 900px);
  display: flex; align-items: center;
  padding-block: var(--space-5);
  overflow: hidden;
  isolation: isolate;
}

/* Capa 0 — fondo. Si más adelante pones la imagen de Canva,
   basta con darle background-image a .hero__bg. */
.hero__bg {
  position: absolute; inset: -8%;
  z-index: -4;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(23,199,206,0.20), transparent 58%),
    radial-gradient(90% 70% at 12% 88%, rgba(217,178,106,0.12), transparent 60%),
    linear-gradient(168deg, #072230 0%, var(--abismo) 46%, #030F16 100%);
  background-size: cover;
  background-position: center;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.08) translate3d(-1.2%, -1.6%, 0); }
}

/* Capa 1 — cáusticas de agua */
.hero__caustics {
  position: absolute; inset: -20%;
  z-index: -3;
  opacity: 0.5;
  mix-blend-mode: screen;
  background:
    radial-gradient(closest-side, rgba(111,227,232,0.16), transparent 70%) 12% 24% / 46% 42% no-repeat,
    radial-gradient(closest-side, rgba(23,199,206,0.14), transparent 70%) 82% 66% / 52% 48% no-repeat,
    radial-gradient(closest-side, rgba(217,178,106,0.10), transparent 70%) 52% 12% / 40% 38% no-repeat;
  filter: blur(24px);
  animation: caustics 18s ease-in-out infinite alternate;
}
@keyframes caustics {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2%, -2.4%, 0) scale(1.06); }
  100% { transform: translate3d(-2.2%, 2%, 0) scale(1.02); }
}

/* Capa 2 — velo inferior para asegurar contraste del texto */
.hero__veil {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, rgba(4,21,30,0.35) 0%, rgba(4,21,30,0.15) 40%, var(--abismo) 96%);
}

/* Capa 3 — burbujas */
.hero__bubbles { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bubble {
  position: absolute; bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.5), rgba(111,227,232,0.06) 60%, transparent 72%);
  border: 1px solid rgba(255,255,255,0.10);
  animation: rise linear infinite;
  will-change: transform, opacity;
}
@keyframes rise {
  0%   { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
  12%  { opacity: 0.75; }
  100% { transform: translate3d(28px, -105vh, 0) scale(1.1); opacity: 0; }
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(var(--space-4), 6vw, var(--space-6));
  align-items: center;
  width: 100%;
}
/* Sin esto, un hijo ancho estira la pista del grid más allá del contenedor. */
.hero__grid > *, .story__grid > *, .visit__grid > *,
.footer__grid > *, .menu-list > *, .feat-grid > * { min-width: 0; }

.hero__title {
  font-size: clamp(3.2rem, 11vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin-block: 6px var(--space-3);
}
.hero__title .thin {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 0.42em;
  letter-spacing: 0.01em;
  color: var(--espuma-suave);
  margin-top: 14px;
}
.hero__title .glow {
  background: linear-gradient(96deg, var(--espuma) 12%, var(--turquesa-claro) 52%, var(--dorado-claro) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__copy { max-width: 46ch; margin-bottom: var(--space-4); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: var(--space-4); }

.hero__stats {
  display: flex; flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
  padding-top: var(--space-3);
  border-top: 1px solid var(--linea);
}
.stat__num {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  color: var(--dorado);
  line-height: 1;
}
.stat__label {
  font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--espuma-mute);
  margin-top: 6px;
}

/* Collage flotante del hero */
.hero__art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  min-height: 380px;
}
.float {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sombra-alta);
  border: 1px solid rgba(255,255,255,0.10);
  animation: bob 7s ease-in-out infinite;
  will-change: transform;
}
.float img { width: 100%; height: 100%; object-fit: cover; }
.float::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(23,199,206,0.16), transparent 46%, rgba(4,21,30,0.42));
}
.float--a { width: 62%; aspect-ratio: 4/5; top: 2%;  right: 2%;  z-index: 3; }
.float--b { width: 46%; aspect-ratio: 1/1; bottom: 6%; left: 0;  z-index: 4; animation-delay: -2.4s; border-radius: 50%; }
.float--c { width: 42%; aspect-ratio: 4/5; bottom: 0; right: 14%; z-index: 2; animation-delay: -4.6s; }

@keyframes bob {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(0, -14px, 0) rotate(-0.8deg); }
}

/* Disco del logo sobre el collage */
.hero__seal {
  position: absolute;
  width: 108px; height: 108px;
  top: 46%; left: 44%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  z-index: 6;
  box-shadow: 0 0 0 8px rgba(4,21,30,0.55), 0 22px 50px -18px #000;
  animation: seal 6s ease-in-out infinite;
}
/* El sello respira; girarlo pondría el pelícano de cabeza. */
@keyframes seal {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.05); }
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--espuma-mute);
  z-index: 4;
}
.scroll-cue__line {
  width: 1px; height: 46px;
  background: linear-gradient(var(--turquesa), transparent);
  animation: cue 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ---------- 6. Marquee ---------- */
.marquee {
  border-block: 1px solid var(--linea);
  background: linear-gradient(90deg, var(--marea), rgba(16,53,68,0.4));
  overflow: hidden;
  padding-block: 20px;
}
.marquee__track {
  display: flex; gap: 42px; width: max-content;
  animation: slide 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex; align-items: center; gap: 42px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-style: italic;
  color: var(--espuma-suave);
  white-space: nowrap;
}
.marquee__item span { color: var(--turquesa); font-style: normal; font-size: 0.7em; }
@keyframes slide { to { transform: translate3d(-50%, 0, 0); } }

/* ---------- 7. Historia ---------- */
.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(var(--space-4), 6vw, var(--space-6));
  align-items: center;
}
.story__media { position: relative; }
.story__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--linea);
  box-shadow: var(--sombra-alta);
}
.story__badge {
  position: absolute; bottom: -26px; right: -18px;
  background: var(--marea-alta);
  border: 1px solid var(--linea-fuerte);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--sombra);
  max-width: 230px;
}
.story__badge strong { display: block; font-family: var(--display); font-size: 1.5rem; color: var(--dorado); }
.story__badge span { font-size: 0.8rem; color: var(--espuma-suave); }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-3); }
.pill {
  padding: 9px 18px;
  border: 1px solid var(--linea);
  border-radius: var(--radio-full);
  font-size: 0.84rem;
  color: var(--espuma-suave);
  background: rgba(16,53,68,0.5);
}

/* ---------- 8. Destacados ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(240px, 30%, 320px), 1fr));
  gap: var(--space-3);
}
.feat {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--marea);
  border: 1px solid var(--linea);
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  isolation: isolate;
}
.feat:hover { transform: translateY(-8px); border-color: var(--linea-fuerte); box-shadow: var(--sombra-alta); }
.feat__img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
  filter: saturate(1.06) contrast(1.04);
}
.feat:hover .feat__img { transform: scale(1.07); }
.feat::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(4,21,30,0.1) 0%, rgba(4,21,30,0.72) 52%, rgba(4,21,30,0.96) 100%);
}
.feat__body { padding: var(--space-3); }
.feat__name { font-size: 1.45rem; margin-bottom: 6px; }
.feat__desc { font-size: 0.9rem; color: var(--espuma-suave); margin-bottom: 14px; }
.feat__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.feat__price { font-family: var(--display); font-size: 1.3rem; color: var(--dorado); }

.tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 6px 14px;
  background: var(--turquesa); color: var(--abismo);
  border-radius: var(--radio-full);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.tag--gold { background: var(--dorado); color: #2A1E06; }

/* Botón redondo de añadir */
.add-btn {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--turquesa); color: var(--abismo);
  border: none;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.add-btn:hover { background: var(--turquesa-claro); transform: scale(1.08) rotate(90deg); }
.add-btn:active { transform: scale(0.94); }

/* ---------- 9. Carta ---------- */
.menu-tabs {
  display: flex; gap: 8px;
  overflow-x: auto;
  padding-block: 4px 14px;
  margin-bottom: var(--space-4);
  scrollbar-width: thin;
  scrollbar-color: var(--linea-fuerte) transparent;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { height: 4px; }
.menu-tabs::-webkit-scrollbar-thumb { background: var(--linea-fuerte); border-radius: 4px; }

.menu-tab {
  flex: none;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--linea);
  border-radius: var(--radio-full);
  background: transparent;
  color: var(--espuma-suave);
  font-size: 0.88rem; font-weight: 500;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}
.menu-tab:hover { border-color: var(--linea-fuerte); color: var(--espuma); }
.menu-tab[aria-selected="true"] {
  background: var(--turquesa); color: var(--abismo);
  border-color: var(--turquesa); font-weight: 600;
}

.menu-panel[hidden] { display: none; }
.menu-panel__head { margin-bottom: var(--space-4); }
.menu-panel__head h3 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-block: 10px 8px; }
.menu-panel__head p { color: var(--espuma-suave); max-width: 60ch; }

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr));
  gap: 4px;
}

.dish {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-2);
  padding: 18px;
  border-radius: var(--radio);
  border: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.dish:hover { background: rgba(16,53,68,0.5); border-color: var(--linea); }

.dish__thumb {
  width: 68px; height: 68px; flex: none;
  border-radius: 14px; object-fit: cover;
  border: 1px solid var(--linea);
}
.dish__thumb--ph {
  width: 68px; height: 68px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--marea-alta), var(--marea));
  border: 1px solid var(--linea);
  color: var(--turquesa);
  opacity: 0.8;
}
.dish__main { min-width: 0; }
.dish__title { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dish__name { font-family: var(--display); font-size: 1.14rem; font-weight: 600; }
.dish__desc { font-size: 0.86rem; color: var(--espuma-mute); margin-top: 3px; }
.dish__opts { font-size: 0.76rem; color: var(--turquesa); margin-top: 6px; }
.dish__side { display: flex; align-items: center; gap: 14px; flex: none; }
.dish__price {
  font-family: var(--display);
  font-size: 1.16rem; color: var(--dorado);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.dish__price small { display: block; font-size: 0.62rem; color: var(--espuma-mute); font-family: var(--texto); letter-spacing: 0.1em; text-transform: uppercase; }

.chip {
  padding: 3px 10px;
  border-radius: var(--radio-full);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(217,178,106,0.16);
  color: var(--dorado-claro);
  border: 1px solid rgba(217,178,106,0.3);
  white-space: nowrap;
}

.note {
  display: flex; align-items: flex-start; gap: 14px;
  margin-top: var(--space-4);
  padding: 20px 24px;
  background: rgba(16,53,68,0.55);
  border: 1px solid var(--linea);
  border-left: 3px solid var(--dorado);
  border-radius: var(--radio);
  font-size: 0.88rem;
  color: var(--espuma-suave);
}
.note svg { color: var(--dorado); flex: none; margin-top: 2px; }

/* ---------- 10. Menú especial de la semana ---------- */
.week {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-2);
}
.day {
  position: relative;
  padding: var(--space-3);
  border-radius: 18px;
  background: linear-gradient(165deg, var(--marea-alta), var(--marea));
  border: 1px solid var(--linea);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.day:hover { transform: translateY(-6px); border-color: var(--linea-fuerte); }
.day__name {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--espuma-mute); margin-bottom: 10px;
}
.day__dish { font-family: var(--display); font-size: 1.22rem; margin-bottom: 8px; }
.day__desc { font-size: 0.82rem; color: var(--espuma-mute); }

.day.is-today {
  border-color: var(--turquesa);
  background: linear-gradient(165deg, rgba(23,199,206,0.16), var(--marea));
  box-shadow: 0 0 0 1px var(--turquesa), 0 20px 50px -22px var(--turquesa-glow);
}
.day.is-today .day__name { color: var(--turquesa); }
.day__today {
  position: absolute; top: -11px; left: var(--space-3);
  padding: 4px 12px;
  background: var(--turquesa); color: var(--abismo);
  border-radius: var(--radio-full);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}

.week-price {
  display: inline-flex; align-items: baseline; gap: 10px;
  margin-top: var(--space-4);
  padding: 16px 28px;
  border: 1px dashed var(--linea-fuerte);
  border-radius: var(--radio);
}
.week-price strong { font-family: var(--display); font-size: 2rem; color: var(--dorado); }
.week-price span { font-size: 0.84rem; color: var(--espuma-mute); }

/* ---------- 11. Visita / contacto ---------- */
.visit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(var(--space-4), 5vw, var(--space-5));
}
.info-list { display: grid; gap: 4px; margin-top: var(--space-3); }
.info {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px;
  border-radius: var(--radio);
  border: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.info:hover { background: rgba(16,53,68,0.5); border-color: var(--linea); }
.info__ico {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(23,199,206,0.12);
  color: var(--turquesa);
  border: 1px solid var(--linea);
}
.info__label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--espuma-mute); }
.info__value { font-size: 1.02rem; margin-top: 4px; }
/* El teléfono y la dirección se tocan con el dedo: bloque con altura cómoda. */
.info__value a { display: inline-block; padding-block: 12px; }
.info__value a:hover { color: var(--turquesa); }

.status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  border-radius: var(--radio-full);
  font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--linea-fuerte);
}
.status__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--espuma-mute); }
.status.is-open { color: #7FE7A8; border-color: rgba(127,231,168,0.4); background: rgba(127,231,168,0.08); }
.status.is-open .status__dot { background: #7FE7A8; box-shadow: 0 0 0 4px rgba(127,231,168,0.18); animation: pulse 2.4s ease-in-out infinite; }
.status.is-closed { color: var(--espuma-suave); background: rgba(16,53,68,0.6); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(127,231,168,0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(127,231,168,0); }
}

.map-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--linea);
  min-height: 420px;
  background:
    radial-gradient(90% 70% at 30% 20%, rgba(23,199,206,0.18), transparent 60%),
    linear-gradient(160deg, var(--marea-alta), var(--abismo));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-3);
}
.map-card__lines {
  position: absolute; inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(var(--linea) 1px, transparent 1px),
    linear-gradient(90deg, var(--linea) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
}
.map-card__pin {
  position: absolute; top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--turquesa);
  box-shadow: 0 0 0 8px rgba(23,199,206,0.18), 0 0 0 20px rgba(23,199,206,0.08);
  animation: pinPulse 2.6s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(23,199,206,0.18), 0 0 0 20px rgba(23,199,206,0.06); }
  50%      { box-shadow: 0 0 0 14px rgba(23,199,206,0.12), 0 0 0 34px rgba(23,199,206,0); }
}
.map-card__body { position: relative; }

/* ---------- 12. Footer ---------- */
.footer {
  border-top: 1px solid var(--linea);
  background: linear-gradient(180deg, var(--abismo), #020B10);
  padding-block: var(--space-5) var(--space-3);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.footer h4 {
  font-family: var(--texto);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--espuma-mute); font-weight: 600;
  margin-bottom: var(--space-2);
}
.footer__links { display: grid; }
.footer__links a, .footer__links span {
  display: flex;
  align-items: center;
  min-height: 44px; /* objetivo táctil cómodo, no solo el alto del texto */
  font-size: 0.92rem;
  color: var(--espuma-suave);
  transition: color 0.2s var(--ease);
}
.footer__links span { color: var(--espuma-mute); }
.footer__links a:hover { color: var(--turquesa); }

.social { display: flex; gap: 10px; margin-top: var(--space-2); }
.social a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--linea);
  color: var(--espuma-suave);
  transition: all 0.25s var(--ease);
}
.social a:hover { border-color: var(--turquesa); color: var(--turquesa); transform: translateY(-3px); }

.footer__base {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid var(--linea);
  font-size: 0.8rem; color: var(--espuma-mute);
}

/* ---------- 13. Carrito ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(2, 10, 15, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 110;
  width: min(460px, 100vw);
  background: var(--marea);
  border-left: 1px solid var(--linea);
  display: flex; flex-direction: column;
  transform: translateX(101%);
  transition: transform 0.45s var(--ease-out);
  box-shadow: -30px 0 80px -30px #000;
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex; align-items: center; gap: 14px;
  padding: 22px var(--space-3);
  border-bottom: 1px solid var(--linea);
  flex: none;
}
.drawer__head h2 { font-size: 1.4rem; margin-right: auto; }

.icon-btn {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--linea);
  color: var(--espuma-suave);
  transition: all 0.25s var(--ease);
}
.icon-btn:hover { border-color: var(--turquesa); color: var(--turquesa); background: rgba(23,199,206,0.08); }

.drawer__body {
  flex: 1; overflow-y: auto;
  padding: var(--space-2) var(--space-3);
  overscroll-behavior: contain;
}

.drawer__foot {
  flex: none;
  padding: var(--space-3);
  border-top: 1px solid var(--linea);
  background: var(--marea-alta);
  padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
}

.line { display: flex; justify-content: space-between; gap: 12px; font-size: 0.9rem; margin-bottom: 10px; color: var(--espuma-suave); }
.line--total {
  font-size: 1.15rem; color: var(--espuma);
  padding-top: 14px; margin-top: 4px;
  border-top: 1px solid var(--linea);
  font-weight: 600;
}
.line--total b { font-family: var(--display); font-size: 1.5rem; color: var(--dorado); }

.ci {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--linea);
  animation: slideIn 0.35s var(--ease-out);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.ci__img { width: 60px; height: 60px; border-radius: 12px; object-fit: cover; border: 1px solid var(--linea); }
.ci__img--ph { width: 60px; height: 60px; border-radius: 12px; display: grid; place-items: center; background: var(--marea-alta); color: var(--turquesa); border: 1px solid var(--linea); }
.ci__name { font-family: var(--display); font-size: 1rem; font-weight: 600; }
.ci__meta { font-size: 0.76rem; color: var(--turquesa); margin-top: 3px; line-height: 1.45; }
.ci__price { font-size: 0.86rem; color: var(--dorado); margin-top: 6px; font-variant-numeric: tabular-nums; }
.ci__side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 10px; }

.qty {
  display: flex; align-items: center; gap: 2px;
  border: 1px solid var(--linea);
  border-radius: var(--radio-full);
  overflow: hidden;
}
.qty button {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: transparent; border: none;
  color: var(--espuma-suave);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.qty button:hover { background: rgba(23,199,206,0.14); color: var(--turquesa); }
.qty output { min-width: 26px; text-align: center; font-size: 0.9rem; font-weight: 600; font-variant-numeric: tabular-nums; }

.empty { text-align: center; padding: var(--space-5) var(--space-2); color: var(--espuma-mute); }
.empty svg { color: var(--linea-fuerte); margin-bottom: var(--space-2); }
.empty h3 { font-size: 1.2rem; color: var(--espuma-suave); margin-bottom: 8px; }
.empty p { font-size: 0.88rem; }

/* ---------- 14. Modales (opciones + checkout) ---------- */
.modal {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center;
  padding: var(--space-2);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  position: relative;
  width: min(540px, 100%);
  max-height: min(88svh, 760px);
  display: flex; flex-direction: column;
  background: var(--marea);
  border: 1px solid var(--linea-fuerte);
  border-radius: 22px;
  box-shadow: var(--sombra-alta);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s var(--ease-out);
  overflow: hidden;
}
.modal.is-open .modal__box { transform: translateY(0) scale(1); }
.modal__head { padding: var(--space-3); border-bottom: 1px solid var(--linea); display: flex; align-items: flex-start; gap: 14px; flex: none; }
.modal__head h2 { font-size: 1.4rem; margin-right: auto; }
.modal__head p { font-size: 0.85rem; color: var(--espuma-mute); margin-top: 4px; }
.modal__body { padding: var(--space-3); overflow-y: auto; flex: 1; overscroll-behavior: contain; }
.modal__foot { padding: var(--space-3); border-top: 1px solid var(--linea); background: var(--marea-alta); flex: none; padding-bottom: max(var(--space-3), env(safe-area-inset-bottom)); }

.fieldset { border: none; padding: 0; margin: 0 0 var(--space-3); }
.fieldset legend {
  padding: 0; margin-bottom: 12px;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--espuma-mute); font-weight: 600;
}
.fieldset legend .req { color: var(--turquesa); letter-spacing: 0; text-transform: none; font-size: 0.9em; }

.choices { display: grid; gap: 8px; }
.choice {
  display: flex; align-items: center; gap: 14px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  background: rgba(16,53,68,0.35);
}
.choice:hover { border-color: var(--linea-fuerte); background: rgba(16,53,68,0.7); }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice__box {
  width: 22px; height: 22px; flex: none;
  border: 1.5px solid var(--linea-fuerte);
  border-radius: 6px;
  display: grid; place-items: center;
  transition: all 0.2s var(--ease);
}
.choice--radio .choice__box { border-radius: 50%; }
.choice__box svg { opacity: 0; transform: scale(0.5); transition: all 0.2s var(--ease); }
.choice__label { flex: 1; font-size: 0.94rem; }
.choice__price { font-size: 0.9rem; color: var(--dorado); font-variant-numeric: tabular-nums; }
.choice:has(input:checked) { border-color: var(--turquesa); background: rgba(23,199,206,0.1); }
.choice:has(input:checked) .choice__box { background: var(--turquesa); border-color: var(--turquesa); color: var(--abismo); }
.choice:has(input:checked) .choice__box svg { opacity: 1; transform: scale(1); }
.choice:has(input:focus-visible) { outline: 2px solid var(--turquesa-claro); outline-offset: 2px; }
.choice.is-blocked { opacity: 0.4; cursor: not-allowed; }

.field { margin-bottom: var(--space-2); }
.field label {
  display: block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--espuma-suave);
  margin-bottom: 8px;
}
.field label .req { color: var(--turquesa); }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  background: rgba(4,21,30,0.6);
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  color: var(--espuma);
  font-family: var(--texto);
  font-size: 1rem; /* 16px evita el zoom automático en iOS */
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.field textarea { min-height: 92px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--espuma-mute); opacity: 0.7; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--turquesa);
  background: rgba(4,21,30,0.9);
}
.field .help { font-size: 0.76rem; color: var(--espuma-mute); margin-top: 6px; }
.field.has-error input, .field.has-error textarea { border-color: var(--coral); }
.field .error {
  display: none;
  font-size: 0.78rem; color: #FF9270;
  margin-top: 6px;
  align-items: center; gap: 6px;
}
.field.has-error .error { display: flex; }

.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.seg .choice { justify-content: center; text-align: center; }

/* ---------- 15. Botón flotante + barra móvil ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 80;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25D366; color: #06301A;
  box-shadow: 0 14px 36px -10px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.09); }
.wa-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ring 2.6s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.65); opacity: 0; }
}

.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 85;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: var(--marea-alta);
  border-top: 1px solid var(--linea-fuerte);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 -20px 50px -24px #000;
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar__info { flex: 1; min-width: 0; }
.mobile-bar__count { font-size: 0.74rem; color: var(--espuma-mute); letter-spacing: 0.1em; text-transform: uppercase; }
.mobile-bar__total { font-family: var(--display); font-size: 1.3rem; color: var(--dorado); }

/* ---------- 16. Toast ---------- */
.toast-zone {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 130;
  display: grid; gap: 10px;
  width: min(420px, calc(100vw - 32px));
  pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 20px;
  background: var(--marea-alta);
  border: 1px solid var(--turquesa);
  border-radius: var(--radio);
  box-shadow: var(--sombra-alta);
  font-size: 0.9rem;
  animation: toastIn 0.4s var(--ease-out);
}
.toast svg { color: var(--turquesa); flex: none; }
.toast.is-out { animation: toastOut 0.3s var(--ease) forwards; }
@keyframes toastIn  { from { opacity: 0; transform: translateY(20px) scale(0.96); } }
@keyframes toastOut { to   { opacity: 0; transform: translateY(12px) scale(0.97); } }

/* ---------- 17. Revelado al hacer scroll ---------- */
/* El estado oculto solo existe si el JS está vivo: sin él, o si el observador
   nunca dispara, el contenido se ve igual. */
.reveal { transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.js .reveal:not(.is-in) { opacity: 0; transform: translateY(28px); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }

/* ---------- 18. Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .hero__art { max-width: 520px; margin-inline: auto; width: 100%; }
  .story__grid, .visit__grid { grid-template-columns: 1fr; }
  .story__media { order: -1; max-width: 460px; }
  .story__badge { right: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 84vw);
    z-index: 115;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    padding: var(--space-4) var(--space-3);
    background: var(--marea);
    border-left: 1px solid var(--linea);
    transform: translateX(101%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -30px 0 80px -30px #000;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { font-size: 1.2rem; font-family: var(--display); padding: 16px 12px; }
  .nav__link::after { display: none; }
  .nav__toggle { display: inline-flex; order: 3; }
  .cart-btn span:not(.cart-btn__count) { display: none; }
  .cart-btn { padding: 0 16px; }
  .topbar__inner { font-size: 0.74rem; gap: 12px; }
  .mobile-bar { display: flex; }
  .wa-float { bottom: max(96px, calc(env(safe-area-inset-bottom) + 90px)); width: 54px; height: 54px; }
  .toast-zone { bottom: 100px; }
  .hero { min-height: auto; padding-block: var(--space-4) var(--space-5); }
  .hero__seal { width: 84px; height: 84px; }
  .scroll-cue { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-3); }
  /* La barra fija del pedido no debe tapar el final de la página. */
  .footer { padding-bottom: calc(var(--space-3) + 92px); }
  .drawer { width: 100vw; }
}

@media (max-width: 560px) {
  .dish { grid-template-columns: 1fr auto; gap: 12px; padding: 16px 12px; }
  .dish__thumb, .dish__thumb--ph { display: none; }
  .dish__side { flex-direction: column; align-items: flex-end; gap: 10px; }
  .feat { min-height: 320px; }
  .story__badge { position: static; margin-top: 16px; max-width: none; }
  .seg { grid-template-columns: 1fr; }
  .week-price { width: 100%; justify-content: center; }

  /* En pantalla angosta el nombre del plato necesita el ancho completo:
     los controles bajan a su propia fila. */
  .ci { grid-template-columns: 56px 1fr; row-gap: 10px; }
  .ci__img, .ci__img--ph { width: 56px; height: 56px; }
  .ci__side {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .drawer__body { padding-inline: var(--space-2); }
}

/* ---------- 19. Accesibilidad: menos movimiento ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bubbles, .hero__caustics { display: none; }
  .marquee__track { animation: none; }
}

/* ---------- 20. Impresión ---------- */
@media print {
  .nav, .topbar, .wa-float, .mobile-bar, .drawer, .overlay, .modal, .hero__bubbles, .add-btn { display: none !important; }
  body { background: #fff; color: #000; }
}
