/* =========================================================
   CEVICHERIA RICOTTA · Estilos
   Paleta: azul petróleo + dorado (logo) + crema + acento coral
   ========================================================= */

:root {
  --teal-900: #0E3B47;
  --teal-800: #144B5A;
  --teal-700: #1B5C6E;
  --teal-600: #226F84;
  --gold-500: #D4A933;
  --gold-400: #E5BE52;
  --cream-100: #F7F1E3;
  --cream-50:  #FBF7EC;
  --coral:     #E5694A;
  --ink:       #0B2027;
  --muted:     #6B7B82;
  --line:      rgba(255,255,255,0.08);

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;

  --shadow-1: 0 10px 30px rgba(11,32,39,0.10);
  --shadow-2: 0 20px 60px rgba(11,32,39,0.18);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Outfit', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Optical sizing automatica de Fraunces (titulares grandes con mas curvas, body con menos) */
.section__title, .hero__title, .dish__title, .promo__title, .promo__price, .nav__brand-text strong, .footer__brand strong, .story__stats strong {
  font-variation-settings: 'opsz' 96, 'SOFT' 50, 'WONK' 0;
  font-weight: 500;
}
.dish__prices strong { font-variation-settings: 'opsz' 24; }

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ====== BANDA MANTA ANDINA (decorativa) ====== */
.manta-band {
  width: 100%;
  height: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='32' viewBox='0 0 80 32' preserveAspectRatio='xMidYMid slice'><rect width='80' height='32' fill='%230E3B47'/><rect x='0' y='0' width='2' height='32' fill='%23D4A933'/><rect x='2' y='0' width='1' height='32' fill='%23B53B3F'/><rect x='77' y='0' width='1' height='32' fill='%23B53B3F'/><rect x='78' y='0' width='2' height='32' fill='%23D4A933'/><polygon points='40,3 48,16 40,29 32,16' fill='%23D4A933'/><polygon points='40,8 44,16 40,24 36,16' fill='%23B53B3F'/><polygon points='40,12 41.5,16 40,20 38.5,16' fill='%23F7F1E3'/><polygon points='12,16 18,8 24,16 18,24' fill='%23226F84'/><polygon points='56,16 62,8 68,16 62,24' fill='%23226F84'/><circle cx='18' cy='16' r='1.5' fill='%23F7F1E3'/><circle cx='62' cy='16' r='1.5' fill='%23F7F1E3'/><rect x='6' y='2' width='2' height='2' fill='%23D4A933'/><rect x='6' y='28' width='2' height='2' fill='%23D4A933'/><rect x='72' y='2' width='2' height='2' fill='%23D4A933'/><rect x='72' y='28' width='2' height='2' fill='%23D4A933'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 32px;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(212,169,51,0.5),
    inset 0 -1px 0 rgba(212,169,51,0.5);
}
.manta-band--top    { margin-bottom: 0; }
.manta-band--bottom { margin-top: 0; }

/* Variante mas pequeña / sutil */
.manta-band--thin { height: 22px; background-size: auto 22px; }

/* ====== UTILIDADES ====== */
.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--teal-900);
  letter-spacing: -0.01em;
}
.section__title em {
  font-style: italic;
  color: var(--gold-500);
}
.section__lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--teal-900);
  box-shadow: 0 10px 25px rgba(212,169,51,0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(212,169,51,0.45); }
.btn--ghost {
  background: transparent;
  color: var(--cream-100);
  border: 1.5px solid rgba(247,241,227,0.4);
}
.btn--ghost:hover { background: rgba(247,241,227,0.08); border-color: var(--cream-100); }

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 2.5rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding .25s ease, background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  padding: 0.65rem 2.5rem;
  background: rgba(14,59,71,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream-100);
}
.nav__logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 46px;
  background: var(--teal-800);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35), 0 0 0 2px rgba(212,169,51,0.35);
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-text strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--cream-100);
}
.nav__brand-text em {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.nav__menu {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__menu a {
  color: rgba(247,241,227,0.85);
  position: relative;
  padding: 0.4rem 0;
  transition: color .2s ease;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold-500);
  transition: width .25s ease;
}
.nav__menu a:hover { color: var(--gold-400); }
.nav__menu a:hover::after { width: 100%; }
.nav__cta {
  background: var(--gold-500);
  color: var(--teal-900);
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform .2s ease, background .2s ease;
}
.nav__cta:hover { background: var(--gold-400); transform: translateY(-2px); }
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--cream-100);
  transition: transform .25s ease, opacity .25s ease;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(34,111,132,0.55), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(212,169,51,0.18), transparent 60%),
    linear-gradient(180deg, var(--teal-900) 0%, var(--teal-800) 100%);
  color: var(--cream-100);
}
.hero__video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--teal-900);
}
.hero__video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 177.78vh;  /* 16:9 ratio garantizado */
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__video-iframe.is-ready { opacity: 1; }
@media (min-aspect-ratio: 16/9) {
  .hero__video-iframe { width: 100vw; height: 56.25vw; }
}
@media (max-aspect-ratio: 16/9) {
  .hero__video-iframe { width: 177.78vh; height: 100vh; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(14,59,71,0.72) 0%, rgba(14,59,71,0.5) 50%, rgba(20,75,90,0.78) 100%),
    radial-gradient(ellipse at bottom, rgba(14,59,71,0.55), transparent 70%);
  pointer-events: none;
}
.hero__waves   { z-index: 2; }
.hero__content { position: relative; z-index: 3; }
.hero__showcase { z-index: 3; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.06) 1px, transparent 2px),
    radial-gradient(circle at 78% 64%, rgba(255,255,255,0.04) 1px, transparent 2px),
    radial-gradient(circle at 42% 82%, rgba(255,255,255,0.05) 1px, transparent 2px);
  background-size: 320px 320px, 240px 240px, 380px 380px;
  pointer-events: none;
}
.hero__waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
  line-height: 0;
  height: 200px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to top, #000 70%, transparent 100%);
          mask-image: linear-gradient(to top, #000 70%, transparent 100%);
}
.hero__wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  display: block;
}
.hero__wave--back  { height: 200px; animation: waveMove 26s linear infinite; }
.hero__wave--mid   { height: 170px; animation: waveMove 18s linear infinite reverse; }
.hero__wave--front { height: 130px; animation: waveMove 13s linear infinite; }

@keyframes waveMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bubbles span {
  position: absolute;
  bottom: -10px;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(212,242,250,0.15) 60%, transparent 70%);
  border: 1px solid rgba(255,255,255,0.2);
  opacity: 0;
  animation: bubbleRise var(--d) ease-in infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes bubbleRise {
  0%   { transform: translateY(0) scale(0.6); opacity: 0; }
  15%  { opacity: 0.5; }
  100% { transform: translateY(-180px) translateX(-6px) scale(1); opacity: 0; }
}

.hero__content { position: relative; z-index: 2; max-width: 640px; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(212,169,51,0.4);
  border-radius: 999px;
}
.hero__title {
  font-family: 'Playfair Display', 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.7rem, 6.5vw, 5.2rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
  font-variation-settings: normal;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-400);
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0.05em;
  width: 100%; height: 0.08em;
  background: var(--gold-500);
  opacity: 0.5;
  border-radius: 2px;
}
.hero__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(247,241,227,0.82);
  max-width: 56ch;
  margin: 0 0 2rem;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.9rem;
  color: rgba(247,241,227,0.7);
}
.hero__badges span {
  color: var(--gold-400);
  font-size: 1rem;
  margin-right: 0.5rem;
}

/* HERO SHOWCASE (foto destacada con chips flotantes) */
.hero__showcase {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  perspective: 1200px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}
.hero__showcase-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(212,169,51,0.28) 0%, transparent 65%);
  filter: blur(50px);
  z-index: -1;
}
.hero__showcase-card {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(212,169,51,0.25);
  transform: rotate(-2deg);
  animation: floatCard 7s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: box-shadow .4s ease;
}
.hero__showcase.is-tilting .hero__showcase-card {
  animation: none;
  transform: rotate(-2deg) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.15s ease-out;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.55),
    0 0 0 1px rgba(212,169,51,0.4);
}
.hero__showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .8s ease;
}
.hero__showcase-card:hover img { transform: scale(1.08); }
.hero__showcase-card::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  pointer-events: none;
}
@keyframes floatCard {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(-2deg) translateY(-12px); }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* Chips flotantes (marketing) */
.hero__chip {
  position: absolute;
  background: rgba(255,255,255,0.96);
  color: var(--teal-900);
  border-radius: 16px;
  padding: 0.7rem 1rem;
  box-shadow:
    0 24px 50px rgba(0,0,0,0.35),
    0 8px 16px rgba(0,0,0,0.2),
    0 0 0 1px rgba(212,169,51,0.25),
    inset 0 1px 0 rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateZ(40px);
  transform-style: preserve-3d;
}
.hero__chip--fresh,
.hero__chip--open,
.hero__chip--clients {
  top: -14px;
  left: -22px;
  animation: chipFloat1 6s ease-in-out infinite;
}
.hero__chip--clients strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold-500);
  margin-right: 0.15rem;
  letter-spacing: -0.01em;
}
.hero__chip-icon {
  color: var(--coral);
  font-size: 1.1rem;
  line-height: 1;
  animation: heartBeat 1.6s ease-in-out infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25%      { transform: scale(1.18); }
  50%      { transform: scale(1); }
  75%      { transform: scale(1.1); }
}
.hero__chip--rating {
  top: 38%;
  right: -28px;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.65rem 0.95rem;
  gap: 0.1rem;
  animation: chipFloat2 7s ease-in-out infinite;
}
.hero__chip--rating strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold-500);
  line-height: 1;
}
.hero__chip--rating em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__chip--price {
  bottom: 6%;
  left: -32px;
  background: var(--gold-500);
  color: var(--teal-900);
  flex-direction: column;
  align-items: flex-start;
  padding: 0.7rem 1.1rem;
  gap: 0.1rem;
  animation: chipFloat1 8s ease-in-out infinite reverse;
}
.hero__chip--price span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.8;
}
.hero__chip--price strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
}
.hero__chip-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.25);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes chipFloat1 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes chipFloat2 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37,211,102,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

/* ====== PEZ NADANDO EN HERO ====== */
.hero__fish {
  position: absolute;
  bottom: 18%;
  left: -100px;
  width: 80px;
  height: 30px;
  z-index: 4;
  pointer-events: none;
  opacity: 0.85;
  filter: drop-shadow(0 4px 10px rgba(212,169,51,0.45));
  animation: fishSwim 22s linear infinite;
}
@keyframes fishSwim {
  0%   { transform: translateX(0) translateY(0); }
  25%  { transform: translateX(30vw) translateY(-15px); }
  50%  { transform: translateX(60vw) translateY(0); }
  75%  { transform: translateX(85vw) translateY(20px); }
  100% { transform: translateX(115vw) translateY(0); }
}
@media (max-width: 640px) {
  .hero__fish { display: none; }
}

/* ====== HERO SCROLL INDICATOR ====== */
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(247,241,227,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .25s ease;
}
.hero__scroll:hover { color: var(--gold-400); }
.hero__scroll-text { font-weight: 600; }
.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, var(--gold-500));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -42px;
  left: 0;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, var(--cream-100));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(0); }
  100% { transform: translateY(84px); }
}

/* ====== TICKER ====== */
.ticker {
  background: var(--teal-900);
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,169,51,0.2);
  border-bottom: 1px solid rgba(212,169,51,0.2);
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ====== OLITAS DIBUJADAS (separadores artesanales) ====== */
.wave-divider {
  display: block;
  width: 100%;
  height: 50px;
  pointer-events: none;
}
.wave-divider--top { background: var(--cream-50); }
.wave-divider--cream-on-teal { background: var(--teal-900); }
.wave-divider--teal-on-cream { background: var(--cream-50); }

/* ====== HISTORIA ====== */
.story {
  padding: 6rem 2.5rem;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}

.story__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.story__deco--lime {
  width: 56px;
  height: 56px;
  top: 12%;
  right: 6%;
  animation: floatDeco1 8s ease-in-out infinite;
  opacity: 0.85;
}
.story__deco--leaf {
  width: 100px;
  height: 50px;
  bottom: 10%;
  left: 4%;
  animation: floatDeco2 10s ease-in-out infinite;
  opacity: 0.85;
  transform: rotate(-12deg);
}
.story__deco--lime-slice {
  width: 70px;
  height: 70px;
  bottom: 18%;
  right: 8%;
  animation: floatDeco1 9s ease-in-out infinite reverse;
  opacity: 0.85;
  transform: rotate(20deg);
}
.story__grid { position: relative; z-index: 1; }
@media (max-width: 640px) {
  .story__deco--lime { width: 40px; height: 40px; right: 3%; top: 8%; }
  .story__deco--leaf { width: 70px; height: 35px; left: 2%; bottom: 5%; }
}
.story__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story__copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2c4248;
  margin: 0 0 1rem;
}
.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14,59,71,0.1);
}
.story__stats div { display: flex; flex-direction: column; }
.story__stats strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--teal-900);
  line-height: 1;
}
.story__stats span {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.story__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.story__photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  z-index: 2;
}
.story__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.story__photo-frame:hover img { transform: scale(1.05); }
/* Marco dorado decorativo desplazado tipo editorial */
.story__photo-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  pointer-events: none;
}
.story__ring {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-500);
  border-radius: 22px;
  z-index: 1;
  opacity: 0.85;
}
.story__photo::before {
  content: '✦';
  position: absolute;
  bottom: -22px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: var(--gold-500);
  color: var(--teal-900);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(212,169,51,0.4);
}

/* ====== MENU ====== */
.menu {
  padding: 6rem 2.5rem;
  background: linear-gradient(180deg, var(--cream-50), var(--cream-100));
  position: relative;
  overflow: hidden;
}

/* Decoraciones flotantes (limones + cilantro) */
.menu__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.menu__deco--lime { width: 70px; height: 70px; }
.menu__deco--1 { top: 4rem; left: 3%; animation: floatDeco1 7s ease-in-out infinite; opacity: 0.85; }
.menu__deco--2 {
  bottom: 3rem; right: 4%;
  width: 50px; height: 50px;
  animation: floatDeco2 9s ease-in-out infinite;
  opacity: 0.7;
  transform: rotate(20deg);
}
.menu__deco--leaf {
  top: 30%;
  right: 2%;
  width: 110px;
  height: 55px;
  animation: floatDeco1 11s ease-in-out infinite reverse;
  opacity: 0.85;
}
.menu__deco--palta {
  width: 70px;
  height: 80px;
  top: 25%;
  left: 2%;
  animation: floatDeco2 10s ease-in-out infinite;
  opacity: 0.85;
  transform: rotate(-15deg);
}
.menu__deco--pimenton {
  width: 50px;
  height: 70px;
  bottom: 18%;
  left: 5%;
  animation: floatDeco1 9s ease-in-out infinite reverse;
  opacity: 0.8;
  transform: rotate(12deg);
}
@keyframes floatDeco1 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-12px) rotate(8deg); }
}
@keyframes floatDeco2 {
  0%,100% { transform: translateY(0) rotate(20deg); }
  50%     { transform: translateY(-10px) rotate(28deg); }
}
.menu__head, .menu__grid { position: relative; z-index: 1; }
@media (max-width: 640px) {
  .menu__deco--1 { width: 50px; height: 50px; left: 2%; }
  .menu__deco--2 { width: 38px; height: 38px; right: 2%; }
  .menu__deco--leaf { width: 80px; height: 40px; right: 1%; }
  .menu__deco--palta { width: 50px; height: 56px; left: 1%; }
  .menu__deco--pimenton { width: 38px; height: 52px; left: 2%; }
  .story__deco--lime-slice { width: 50px; height: 50px; right: 4%; bottom: 12%; }
}
.menu__head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.menu__head .section__lead { margin: 0 auto; }
.menu__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  perspective: 1600px;
}

.dish {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14,59,71,0.06);
  transition: transform .45s cubic-bezier(0.4,0,0.2,1), box-shadow .4s ease;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
}
.dish:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(-2deg);
  box-shadow:
    0 30px 60px rgba(11,32,39,0.18),
    0 12px 24px rgba(212,169,51,0.15);
}
.dish::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}
.dish__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.dish__title {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--teal-900);
  margin: 0 0 0.75rem;
  font-weight: 600;
  line-height: 1.1;
}
.dish__desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  flex: 1;
}
.dish__prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(14,59,71,0.08);
  padding-top: 1rem;
  gap: 0.5rem;
}
.dish__prices div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.dish__prices span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.dish__prices strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--teal-900);
  font-weight: 600;
}

.dish--featured {
  background: linear-gradient(150deg, #fff, #fbf6e6);
  border-color: rgba(212,169,51,0.3);
  box-shadow: 0 12px 30px rgba(212,169,51,0.12);
}
.dish--featured::before { height: 6px; }

/* Sello tipo stamp artesanal */
.dish__stamp {
  position: absolute;
  top: 1.25rem;
  right: -0.6rem;
  background: var(--coral);
  color: var(--cream-100);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transform: rotate(6deg);
  box-shadow: 0 6px 14px rgba(229,105,74,0.35);
  z-index: 2;
  text-align: center;
  max-width: 145px;
}
.dish__stamp::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px dashed rgba(255,255,255,0.55);
  border-radius: 2px;
  pointer-events: none;
}
@media (max-width: 640px) {
  .dish__stamp { top: 1rem; right: -0.4rem; font-size: 0.68rem; padding: 0.4rem 0.75rem; max-width: 130px; }
}

.dish--premium {
  background: linear-gradient(160deg, var(--teal-900), var(--teal-700));
  color: var(--cream-100);
}
.dish--premium .dish__tag { color: var(--gold-400); }
.dish--premium .dish__title { color: var(--cream-100); }
.dish--premium .dish__desc { color: rgba(247,241,227,0.75); }
.dish--premium .dish__prices { border-color: rgba(247,241,227,0.15); }
.dish--premium .dish__prices span { color: rgba(247,241,227,0.6); }
.dish--premium .dish__prices strong { color: var(--gold-400); }

.dish--cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--teal-900);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.dish--cta::before { display: none; }
.dish--cta .dish__title { color: var(--teal-900); margin-bottom: 1rem; }
.dish--cta .dish__desc { color: rgba(14,59,71,0.85); margin-bottom: 1.5rem; }
.dish--cta .btn {
  background: var(--teal-900);
  color: var(--cream-100);
  align-self: flex-start;
}
.dish--cta .btn:hover { background: var(--teal-800); }

/* ====== SUSHI ====== */
.sushi {
  padding: 7rem 2.5rem;
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--teal-900);
}
/* Foto de fondo del sushi */
.sushi::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('assets/gallery-5.jpg') center / cover no-repeat;
  filter: blur(6px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.55;
  z-index: -2;
}
/* Overlay teal con grano + acento dorado */
.sushi::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(212,169,51,0.22), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(34,111,132,0.6), transparent 55%),
    linear-gradient(180deg, rgba(11,32,39,0.92) 0%, rgba(14,59,71,0.85) 50%, rgba(11,32,39,0.95) 100%);
  z-index: -1;
}

/* Patron japones decorativo (olas seigaiha) en gold sutil */
.sushi__pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'><g fill='none' stroke='%23D4A933' stroke-width='1.2'><path d='M0 40 a20 20 0 0 1 40 0'/><path d='M40 40 a20 20 0 0 1 40 0'/><path d='M-20 20 a20 20 0 0 1 40 0'/><path d='M20 20 a20 20 0 0 1 40 0'/><path d='M60 20 a20 20 0 0 1 40 0'/></g></svg>");
  background-size: 80px 40px;
}

/* Palillos decorativos cruzados */
.sushi__chopsticks {
  position: absolute;
  top: 8%;
  right: -60px;
  width: 320px;
  height: 320px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  transform: rotate(15deg);
}
.sushi__chopsticks::before,
.sushi__chopsticks::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 20%, var(--gold-400) 50%, var(--gold-500) 80%, transparent);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.sushi__chopsticks::before { transform: translateY(-14px) rotate(-8deg); }
.sushi__chopsticks::after  { transform: translateY(14px) rotate(8deg); }
/* Kanji japones 鮮 (fresco) flotando en blanco */
.sushi__hanko {
  position: absolute;
  top: 3rem;
  right: 6%;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
  animation: hankoFloat 5s ease-in-out infinite;
}
.sushi__hanko span {
  font-family: 'Yu Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--cream-100);
  line-height: 1;
  opacity: 0.55;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
}
@keyframes hankoFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-10px) rotate(-2deg); }
}

/* Petalos de sakura cayendo */
.sushi__sakura {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.sushi__sakura--1 {
  width: 38px; height: 38px;
  top: 18%; left: 8%;
  animation: sakuraFloat 12s ease-in-out infinite;
}
.sushi__sakura--2 {
  width: 28px; height: 28px;
  top: 60%; left: 20%;
  animation: sakuraFloat 14s ease-in-out infinite reverse;
}
.sushi__sakura--3 {
  width: 32px; height: 32px;
  bottom: 20%; right: 12%;
  animation: sakuraFloat 16s ease-in-out infinite;
}
@keyframes sakuraFloat {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(15px, -10px) rotate(60deg); }
  50%  { transform: translate(-8px, -25px) rotate(150deg); }
  75%  { transform: translate(20px, -15px) rotate(240deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* Grulla de origami dorada */
.sushi__crane {
  position: absolute;
  bottom: 4rem;
  left: 4%;
  width: 130px;
  height: 80px;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(212,169,51,0.25));
  animation: craneFloat 8s ease-in-out infinite;
}
@keyframes craneFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}

@media (max-width: 640px) {
  .sushi__hanko { top: 2rem; right: 5%; }
  .sushi__hanko span { font-size: 3rem; }
  .sushi__sakura--1 { width: 28px; height: 28px; }
  .sushi__sakura--2 { width: 22px; height: 22px; }
  .sushi__sakura--3 { width: 24px; height: 24px; }
  .sushi__crane { width: 80px; height: 50px; bottom: 2rem; left: 2%; }
}

.sushi__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}
.sushi__head .section__title { color: var(--cream-100); }
.sushi__head .section__title em { color: var(--gold-400); }
.sushi__head .section__lead { color: rgba(247,241,227,0.7); margin: 0 auto; }
.sushi__head .section__eyebrow { color: var(--gold-400); }

.sushi__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  perspective: 1600px;
}

.promo {
  background: rgba(247,241,227,0.04);
  border: 1px solid rgba(212,169,51,0.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .45s cubic-bezier(0.4,0,0.2,1), border-color .3s ease, box-shadow .4s ease;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  will-change: transform;
}
.promo:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(-2deg);
  border-color: var(--gold-500);
  box-shadow: 0 28px 50px rgba(0,0,0,0.35), 0 0 30px rgba(212,169,51,0.15);
}
.promo__price {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.promo__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  color: var(--cream-100);
  font-weight: 500;
}
.promo__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  border-top: 1px solid rgba(212,169,51,0.15);
}
.promo__list li {
  padding: 0.7rem 0 0.7rem 1.5rem;
  font-size: 0.92rem;
  color: rgba(247,241,227,0.78);
  border-bottom: 1px solid rgba(212,169,51,0.08);
  position: relative;
  line-height: 1.5;
}
.promo__list li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 0.7rem;
  color: var(--gold-500);
  font-size: 0.7rem;
}
.promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-400);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 0.2rem;
  transition: color .2s ease, gap .2s ease;
}
.promo__cta:hover { color: var(--cream-100); gap: 0.9rem; }
.promo__cta::after { content: '→'; }

.promo--featured {
  background: linear-gradient(160deg, rgba(212,169,51,0.18), rgba(212,169,51,0.05));
  border-color: var(--gold-500);
  transform: scale(1.04);
}
.promo--featured:hover { transform: scale(1.04) translateY(-6px); }
.promo__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--teal-900);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

/* ====== GALERIA ====== */
.gallery { padding: 6rem 2.5rem; background: var(--cream-50); }
.gallery__head {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.gallery__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  perspective: 1800px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s cubic-bezier(0.4,0,0.2,1), box-shadow .4s ease;
  margin: 0;
  background: var(--teal-800);
  transform-style: preserve-3d;
  will-change: transform;
}
.gallery__item:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-3deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(11,32,39,0.25);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1.2rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream-100);
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  letter-spacing: 0.02em;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,32,39,0.75));
  z-index: 1;
  pointer-events: none;
}
.gallery__item--1 { grid-column: span 2; grid-row: span 2; }
.gallery__item--4 { grid-column: span 2; }

/* ====== CONTACTO ====== */
.contact {
  padding: 6rem 2.5rem;
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
  position: relative;
  overflow: hidden;
}
.contact__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.contact__deco--lime {
  width: 60px;
  height: 60px;
  top: 8%;
  right: 5%;
  animation: floatDeco1 9s ease-in-out infinite;
  opacity: 0.8;
  transform: rotate(15deg);
}
.contact__grid { position: relative; z-index: 1; }
@media (max-width: 640px) {
  .contact__deco--lime { width: 42px; height: 42px; right: 3%; top: 5%; }
}
.contact__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: stretch;
}
.contact__info { display: flex; flex-direction: column; }
.contact__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1.25rem;
}
.contact__list li {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(14,59,71,0.06);
}
.contact__list strong {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.3rem;
}
.contact__list a, .contact__list span {
  color: var(--teal-900);
  font-weight: 500;
  font-size: 1.02rem;
}
.contact__list a:hover { color: var(--gold-500); }
.contact__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.contact__ctas .btn--ghost {
  color: var(--teal-900);
  border-color: rgba(14,59,71,0.3);
}
.contact__ctas .btn--ghost:hover { background: var(--teal-900); color: var(--cream-100); }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  min-height: 480px;
  border: 4px solid #fff;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; }

/* ====== FOOTER ====== */
.footer {
  background: var(--teal-900);
  color: rgba(247,241,227,0.7);
  padding: 2rem 2.5rem 1.25rem;
  border-top: 4px solid var(--gold-500);
}
.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem 2rem;
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--cream-100);
}
.footer__brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}
.footer__brand em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.footer__nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer__nav a:hover { color: var(--gold-400); }
.footer__copy {
  text-align: right;
  font-size: 0.82rem;
  margin: 0;
}
.footer__credit {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.5rem auto 0;
  padding: 0.5rem 1.5rem 0;
  border-top: 1px solid rgba(212,169,51,0.18);
  color: rgba(247,241,227,0.5);
  max-width: 360px;
  width: max-content;
}
.footer__credit a {
  color: var(--gold-400);
  font-weight: 600;
  transition: color .2s ease;
}
.footer__credit a:hover { color: var(--cream-100); }

/* ====== WHATSAPP FLOTANTE ====== */
.wsp {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem 0.85rem 1rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(37,211,102,0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wsp:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(37,211,102,0.5); }
.wsp svg { width: 24px; height: 24px; }

/* ====== RESPONSIVE ====== */

/* Fix iOS Safari 100vh issue */
.hero { min-height: 100vh; min-height: 100dvh; }

/* TABLET / phone grande */
@media (max-width: 980px) {
  .nav { padding: 1rem 1.25rem; }
  .nav.scrolled { padding: 0.65rem 1.25rem; }
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(14,59,71,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .hero { grid-template-columns: 1fr; padding: 6rem 1.25rem 2.5rem; text-align: center; }
  .hero__content { max-width: 100%; margin: 0 auto; }
  .hero__ctas, .hero__badges { justify-content: center; }
  .hero__showcase { max-width: 340px; margin-top: 2rem; }
  .hero__chip--fresh,
  .hero__chip--open,
  .hero__chip--clients { top: -10px; left: 10px; }
  .hero__chip--rating { right: 10px; top: 40%; }
  .hero__chip--price  { left: 10px; bottom: 5%; }

  .story__grid { grid-template-columns: 1fr; gap: 3rem; }
  .story__photo { max-width: 380px; margin: 0 auto; }

  .menu, .sushi, .gallery, .contact, .story { padding: 4rem 1.25rem; }
  .menu__grid, .sushi__grid { grid-template-columns: 1fr; }
  .promo--featured { transform: none; }
  .promo--featured:hover { transform: translateY(-6px); }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--1, .gallery__item--4 { grid-column: span 2; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 320px; }
  .contact__map iframe { min-height: 320px; }

  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__brand, .footer__nav { justify-content: center; }
  .footer__copy { text-align: center; }

  .wsp span { display: none; }
  .wsp { padding: 0.85rem; }

  /* Sushi: ocultar chopsticks decorativos en mobile (causaban overflow) */
  .sushi__chopsticks { display: none; }
  .sushi::before { filter: blur(4px) saturate(1.1); opacity: 0.4; }
}

/* PHONE (estándar) */
@media (max-width: 640px) {
  .hero { padding: 5rem 1rem 5rem; gap: 1.5rem; }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3rem); line-height: 1.05; margin-bottom: 1rem; }
  .hero__lead { font-size: 0.95rem; line-height: 1.55; margin-bottom: 1.25rem; }
  .hero__eyebrow { font-size: 0.65rem; padding: 0.3rem 0.75rem; margin-bottom: 0.85rem; letter-spacing: 0.18em; }
  .hero__ctas { gap: 0.55rem; flex-direction: column; align-items: stretch; margin-bottom: 1.5rem; }
  .hero__ctas .btn { width: 100%; padding: 0.85rem 1.4rem; font-size: 0.9rem; }
  .hero__badges { gap: 0.5rem 1rem; font-size: 0.78rem; flex-direction: column; align-items: center; }
  .hero__badges li { line-height: 1.3; }

  /* Showcase mas compacto y chips DENTRO del area visible */
  .hero__showcase { max-width: 260px; margin-top: 1rem; }
  .hero__chip { font-size: 0.72rem; padding: 0.5rem 0.7rem; gap: 0.35rem; border-radius: 12px; }
  .hero__chip--clients,
  .hero__chip--fresh,
  .hero__chip--open { top: -8px; left: 6px; }
  .hero__chip--rating { right: 6px; top: 38%; padding: 0.5rem 0.75rem; }
  .hero__chip--rating strong { font-size: 1rem; }
  .hero__chip--rating em { font-size: 0.58rem; letter-spacing: 0.08em; }
  .hero__chip--price { left: 6px; bottom: 6%; padding: 0.5rem 0.85rem; }
  .hero__chip--price span { font-size: 0.6rem; }
  .hero__chip--price strong { font-size: 1.05rem; }
  .hero__chip--clients strong { font-size: 0.95rem; }

  .section__title { font-size: clamp(1.7rem, 7vw, 2.3rem); line-height: 1.1; }
  .section__lead, .section__eyebrow { font-size: 0.9rem; }
  .section__eyebrow { font-size: 0.7rem; }

  .story { padding: 3rem 1.25rem; }
  .story__grid { gap: 2rem; }
  .story__photo { max-width: 260px; }
  .story__photo::before { width: 42px; height: 42px; font-size: 1rem; bottom: -16px; right: 8px; }
  .story__copy p { font-size: 0.95rem; }
  .story__stats { margin-top: 2rem; padding-top: 1.5rem; }
  .story__stats strong { font-size: 1.85rem; }
  .story__stats span { font-size: 0.72rem; }

  .menu, .sushi, .gallery, .contact { padding: 3.5rem 1.25rem; }
  .menu__head, .sushi__head, .gallery__head { margin-bottom: 2rem; }

  .dish { padding: 1.5rem; }
  .dish__title { font-size: 1.45rem; }
  .dish__desc { font-size: 0.92rem; }

  .promo { padding: 2rem 1.5rem; }
  .promo__price { font-size: 2.2rem; }
  .promo__title { font-size: 1.3rem; margin-bottom: 1.25rem; }
  .promo__list li { font-size: 0.88rem; padding: 0.55rem 0 0.55rem 1.3rem; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 0.65rem;
  }
  .gallery__item figcaption { font-size: 1rem; bottom: 0.7rem; left: 0.85rem; }

  .contact__list li { padding: 0.85rem 1rem; }
  .contact__list a, .contact__list span { font-size: 0.95rem; }
  .contact__ctas { flex-direction: column; }
  .contact__ctas .btn { width: 100%; }

  .footer { padding: 1.5rem 1rem 1rem; }
  .footer__brand strong { font-size: 1.05rem; }
  .footer__brand em { font-size: 0.65rem; }
  .footer__nav { flex-wrap: wrap; gap: 1rem; justify-content: center; font-size: 0.85rem; }
  .footer__credit { font-size: 0.65rem; padding: 0.45rem 1rem 0; max-width: 280px; }

  .ticker { font-size: 1rem; padding: 0.85rem 0; }

  /* Touch targets minimo 44px */
  .nav__menu a { padding: 0.75rem 0; }
  .promo__cta { padding: 0.5rem 0; }

  /* Scroll indicator del hero solo en pantallas grandes */
  .hero__scroll { display: none; }

  /* Reducir intensidad 3D en mobile (touch no tiene hover, evita lag) */
  .dish:hover, .promo:hover, .gallery__item:hover {
    transform: translateY(-4px);
  }
  .dish, .promo, .gallery__item {
    transform-style: flat;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .menu__grid, .sushi__grid, .gallery__grid { perspective: none; }

  /* Chips del hero menos translateZ en mobile (perspective puede causar issues) */
  .hero__chip { transform: none; }
  .hero__showcase { perspective: none; }

  /* Decoraciones SVG - reducir cantidad/visibilidad para no saturar */
  .menu__deco--leaf { display: none; }
  .menu__deco--2 { display: none; }
  .menu__deco--palta { width: 44px; height: 50px; top: 30%; }
  .menu__deco--pimenton { width: 32px; height: 44px; bottom: 22%; }
  .story__deco--leaf { display: none; }
  .story__deco--lime-slice { width: 44px; height: 44px; }
  .sushi__crane { display: none; }
  .sushi__sakura--3 { display: none; }
  .sushi__hanko { top: 1.5rem; }
  .sushi__hanko span { font-size: 2.5rem; }
  .hero__fish { display: none; }

  /* Olitas mas chicas en mobile */
  .wave-divider { height: 30px; }

  /* Stamp del plato featured ajustado */
  .dish__stamp {
    top: 0.85rem;
    right: -0.3rem;
    font-size: 0.66rem;
    padding: 0.35rem 0.7rem;
    max-width: 120px;
    line-height: 1.1;
    transform: rotate(5deg);
  }

  /* WhatsApp flotante mas pequeño y separado */
  .wsp {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem;
  }
  .wsp svg { width: 22px; height: 22px; }
}

/* PHONE chico (iPhone SE / Android pequeños) */
@media (max-width: 380px) {
  /* Esconder decoraciones extra para no saturar */
  .menu__deco--palta, .menu__deco--pimenton,
  .story__deco--lime-slice, .sushi__sakura--3,
  .sushi__crane { display: none; }
  .sushi__hanko span { font-size: 2.4rem; }

  .hero { padding: 5rem 0.85rem 1.5rem; }
  .hero__title { font-size: clamp(1.7rem, 8.5vw, 2.4rem); }
  .hero__showcase { max-width: 240px; }
  .hero__chip--rating { right: 0; }
  .hero__chip--price { left: 0; }
  .menu, .sushi, .gallery, .contact, .story { padding: 2.5rem 0.85rem; }
  .dish, .promo { padding: 1.25rem; }
  .gallery__grid { grid-auto-rows: 120px; gap: 0.5rem; }
  .story__stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .story__stats div:last-child { grid-column: span 2; }
  .dish__prices { grid-template-columns: 1fr; gap: 0.6rem; }
  .dish__prices div { flex-direction: row; justify-content: space-between; }
  .dish__prices span { margin: 0; }
}

/* Reduce motion para usuarios que lo prefieran (iOS y Android tienen toggle) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker__track, .hero__showcase-card, .hero__chip { animation: none !important; }
}
