/* ============================================================
   KUMSAKI · Sushi & cocina japonesa
   Sistema de diseño basado en el Manual de Identidad "Tasogare"
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Paleta primaria (Tasogare) */
  --navy: #141B4D;
  --navy-900: #0e1436;
  --navy-800: #1c2664;
  --navy-700: #2a3684;
  --ink: #101820;
  --pink: #EF4A81;
  --pink-600: #dd3a70;
  --pink-300: #f9a8c9;
  --pink-100: #fde4ee;
  --slate: #5B6770;
  --slate-300: #aeb6bd;
  --white: #ffffff;

  /* Superficies */
  --paper: #fbf8f5;
  --cream: #f4eee6;
  --line: rgba(20, 27, 77, .12);

  /* Tipografía */
  --font-display: "Quicksand", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, sans-serif;

  /* Métrica */
  --wrap: 1200px;
  --radius: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shadow-sm: 0 8px 24px -14px rgba(20, 27, 77, .28);
  --shadow: 0 26px 60px -28px rgba(20, 27, 77, .40);
  --shadow-pink: 0 26px 60px -22px rgba(239, 74, 129, .5);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; letter-spacing: -.02em; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--pink);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--pink); border-radius: 2px; }
.eyebrow.center::after { content: ""; width: 26px; height: 2px; background: var(--pink); border-radius: 2px; }
.eyebrow.on-dark { color: var(--pink-300); }
.eyebrow.on-dark::before, .eyebrow.on-dark.center::after { background: var(--pink-300); }

.h-title { font-size: clamp(2rem, 5vw, 3.4rem); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--slate); max-width: 60ch; }
.on-dark .lead, .lead.on-dark { color: rgba(255, 255, 255, .78); }

.brand-pink { color: var(--pink); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--pink); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: var(--radius-pill);
  background: var(--bg); color: var(--fg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform; line-height: 1;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-pink); }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--navy { --bg: var(--navy); --fg: #fff; }
.btn--navy:hover { box-shadow: var(--shadow); }
.btn--ghost {
  --bg: transparent; --fg: var(--navy);
  border: 2px solid var(--line); padding: 13px 26px;
}
.btn--ghost:hover { --fg: var(--navy); border-color: var(--navy); box-shadow: none; }
.btn--ghost-light {
  --bg: rgba(255,255,255,.06); --fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, .32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}
.btn--ghost-light:hover { --bg: rgba(255,255,255,.14); box-shadow: none; }
.btn--wa { --bg: #1FA855; --fg: #ffffff; }
.btn--wa:hover { box-shadow: 0 24px 50px -22px rgba(37, 211, 102, .7); }

/* ---------- Wave (seigaiha) texture ---------- */
.seigaiha::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: url("assets/seigaiha-claro.svg");
  background-size: 150px auto; opacity: .10; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}
.seigaiha-navy::before {
  background-image: url("assets/seigaiha-navy.svg"); opacity: .06;
}
.seigaiha > * { position: relative; z-index: 1; }

/* ---------- Sakura petals ---------- */
.petals { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.petal {
  position: absolute; top: -6%; width: 16px; height: 16px; opacity: .0;
  background: var(--pink-300);
  border-radius: 78% 22% 74% 26% / 66% 34% 66% 34%;
  animation: fall linear infinite;
}
.petal.p2 { background: var(--pink); width: 12px; height: 12px; }
.petal.p3 { background: #fff; opacity: 0; }
@keyframes fall {
  0%   { transform: translate3d(0,0,0) rotate(0deg); opacity: 0; }
  10%  { opacity: .55; }
  90%  { opacity: .5; }
  100% { transform: translate3d(40px, 115vh, 0) rotate(320deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .petal { display: none; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header .wrap { display: flex; align-items: center; gap: 20px; width: 100%; }
.site-header.scrolled {
  background: rgba(16, 20, 54, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .6);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { height: 40px; width: auto; }
.brand .brand-word { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.35rem; letter-spacing: -.02em; }
.brand .brand-word b { color: var(--pink); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: rgba(255, 255, 255, .84);
  padding: 10px 15px; border-radius: var(--radius-pill); transition: color .2s, background .2s;
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255, 255, 255, .10); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 12px 22px; }
.btn-menu-header { box-shadow: 0 14px 30px -14px rgba(239, 74, 129, .8); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 14px; position: relative; background: rgba(255,255,255,.1); }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2.4px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(28px, 6vw, 70px));
  padding-bottom: clamp(48px, 8vw, 96px);
}
.hero::after { /* glow bloom */
  content: ""; position: absolute; right: -12%; top: 18%; width: 620px; height: 620px; z-index: 0;
  background: radial-gradient(circle, rgba(239, 74, 129, .34), transparent 62%); filter: blur(8px);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.4rem); line-height: .98; letter-spacing: -.03em; color: #fff;
}
.hero h1 .thin { display: block; font-weight: 500; color: rgba(255,255,255,.9); }
.hero .lead { margin: 22px 0 32px; color: rgba(255, 255, 255, .8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 22px 34px; margin-top: 34px; }
.hero-fact { display: flex; align-items: center; gap: 12px; }
.hero-fact svg { width: 22px; height: 22px; color: var(--pink-300); flex: none; }
.hero-fact b { font-family: var(--font-display); display: block; font-size: 1rem; color: #fff; line-height: 1.2; }
.hero-fact span { font-size: .84rem; color: rgba(255, 255, 255, .62); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; z-index: 2; border-radius: 40% 40% 42% 42% / 46% 46% 40% 40%;
  overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow);
  border: 6px solid rgba(255,255,255,.9); rotate: 2deg;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-ring {
  position: absolute; inset: -18px; z-index: 1; border: 2px dashed rgba(249, 168, 201, .5);
  border-radius: 44% 44% 46% 46% / 50% 50% 44% 44%; animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-ring { animation: none; } }
.hero-mia {
  position: absolute; z-index: 3; bottom: -6%; left: -14%; width: 46%; max-width: 240px;
  filter: drop-shadow(0 22px 26px rgba(0,0,0,.35));
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .hero-mia { animation: none; } }
.hero-badge {
  position: absolute; z-index: 4; top: 6%; right: -6%;
  background: #fff; color: var(--navy); border-radius: 18px; padding: 12px 16px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; font-weight: 800;
  font-family: var(--font-display);
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.22); }
.hero-badge small { display: block; font-weight: 600; color: var(--slate); font-size: .72rem; font-family: var(--font-body); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--pink); color: #fff; overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  padding: 0 26px; display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; letter-spacing: .01em;
}
.marquee-track span::after { content: ""; width: 16px; height: 16px; background: url("assets/isotipo-kumsaki-blanco.png") center/contain no-repeat; opacity: .85; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin: 16px 0 0; }

/* ============================================================
   NOSOTROS (zigzag)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4;
}
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.split-media .frame.tall { aspect-ratio: 4/5; }
.media-tag {
  position: absolute; bottom: 20px; left: 20px; background: rgba(16,20,54,.85); color: #fff;
  backdrop-filter: blur(6px); border-radius: 14px; padding: 12px 18px; font-family: var(--font-display);
  font-weight: 700; box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,.1);
}
.media-tag span { display: block; font-family: var(--font-body); font-weight: 600; color: var(--pink-300); font-size: .78rem; }

.value-list { display: grid; gap: 14px; margin-top: 30px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-item .ico {
  flex: none; width: 46px; height: 46px; border-radius: 14px; background: var(--pink-100); color: var(--pink-600);
  display: grid; place-items: center;
}
.value-item .ico svg { width: 24px; height: 24px; }
.value-item h3 { font-size: 1.1rem; margin-bottom: 3px; }
.value-item p { margin: 0; color: var(--slate); font-size: .98rem; }

/* Stats row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; border-top: 1px solid var(--line); padding-top: 28px; }
.stat b { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); display: block; letter-spacing: -.02em; }
.stat span { color: var(--slate); font-size: .9rem; }

/* ============================================================
   HISTORIA (dark)
   ============================================================ */
.historia { background: var(--navy); color: #fff; overflow: hidden; }
.historia .lead, .historia .section-head p { color: rgba(255, 255, 255, .82); }
.historia .frame { border: 6px solid rgba(255,255,255,.08); }
.timeline { display: grid; gap: 8px; margin-top: 6px; }
.tl-item { position: relative; padding: 18px 0 18px 34px; border-left: 2px solid rgba(255,255,255,.16); }
.tl-item:last-child { border-color: transparent; }
.tl-item::before { content: ""; position: absolute; left: -8px; top: 22px; width: 14px; height: 14px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(239,74,129,.22); }
.tl-item h3 { font-size: 1.15rem; color: #fff; }
.tl-item p { margin: 6px 0 0; color: rgba(255,255,255,.72); font-size: .98rem; }
.tl-item .yr { font-family: var(--font-display); color: var(--pink-300); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }

/* ============================================================
   ESPECIALIDADES (bento zigzag)
   ============================================================ */
.dishes { display: grid; gap: clamp(20px, 3vw, 32px); }
.dish {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dish-media { position: relative; overflow: hidden; min-height: 260px; }
.dish-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dish:hover .dish-media img { transform: scale(1.06); }
.dish-body { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; }
.dish-body .tag { font-family: var(--font-display); font-weight: 700; color: var(--pink); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.dish-body h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 8px 0 10px; }
.dish-body p { margin: 0 0 18px; color: var(--slate); }
.dish-price { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.25rem; display: inline-flex; align-items: baseline; gap: 6px; }
.dish-price small { color: var(--slate); font-weight: 600; font-size: .8rem; }
/* Feature (first) larger */
.dish.feature { grid-template-columns: 1.25fr 1fr; }
.dish.reverse .dish-media { order: 2; }

/* ============================================================
   DOMICILIO (delivery)
   ============================================================ */
.delivery { background: linear-gradient(160deg, var(--cream), #fff); position: relative; overflow: hidden; }
.delivery-card {
  position: relative; z-index: 2; background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  overflow: hidden; display: grid; grid-template-columns: 1.15fr .85fr; box-shadow: var(--shadow);
}
.delivery-card .dc-body { padding: clamp(30px, 4vw, 56px); }
.delivery-card h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; }
.delivery-card p { color: rgba(255,255,255,.78); }
.dc-times { display: grid; gap: 12px; margin: 26px 0 30px; }
.dc-time { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; }
.dc-time svg { width: 24px; height: 24px; color: var(--pink-300); flex: none; }
.dc-time b { font-family: var(--font-display); display: block; }
.dc-time span { font-size: .86rem; color: rgba(255,255,255,.66); }
.dc-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.dc-media { position: relative; background: radial-gradient(120% 90% at 60% 20%, var(--navy-700), var(--navy) 70%); overflow: hidden; }
.dc-media::before { content: ""; position: absolute; inset: 0; background: url("assets/seigaiha-claro.svg") center/130px; opacity: .1; }
.dc-media img.mia { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 74%; max-width: 260px; filter: drop-shadow(0 16px 20px rgba(0,0,0,.3)); }

/* ============================================================
   UBICACIÓN
   ============================================================ */
.location-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(26px, 4vw, 48px); align-items: stretch; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 42px); box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-of-type { border-bottom: 0; }
.info-row .ico { flex: none; width: 46px; height: 46px; border-radius: 14px; background: var(--navy); color: #fff; display: grid; place-items: center; }
.info-row .ico svg { width: 22px; height: 22px; }
.info-row h3 { font-size: 1.05rem; margin-bottom: 2px; }
.info-row p { margin: 0; color: var(--slate); font-size: .98rem; }
.info-row a { color: var(--navy); font-weight: 700; }
.info-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); min-height: 380px; position: relative; }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.15) contrast(1.02); }

/* ============================================================
   CTA final
   ============================================================ */
.cta-band { background: var(--pink); color: #fff; text-align: center; overflow: hidden; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 16px auto 30px; }
.cta-band .btn--navy { box-shadow: 0 20px 40px -18px rgba(0,0,0,.5); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); position: relative; overflow: hidden; padding-top: clamp(54px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo img { height: 52px; width: auto; }
.footer-logo .fw { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.7rem; letter-spacing: -.02em; line-height: 1; }
.footer-logo .fw b { color: var(--pink); }
.footer-brand p { max-width: 34ch; font-size: .96rem; }
.social { display: flex; gap: 12px; margin-top: 22px; }
.social a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.social a:hover { background: var(--pink); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }
.footer-col h4 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 16px; font-family: var(--font-display); }
.footer-col a, .footer-col li { display: block; padding: 6px 0; font-size: .96rem; transition: color .2s; }
.footer-col a:hover { color: var(--pink-300); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--pink-300); flex: none; margin-top: 4px; }
.footer-bottom { margin-top: clamp(40px, 6vw, 64px); border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .84rem; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 120;
  width: 62px; height: 62px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 16px 36px -12px rgba(37, 211, 102, .7);
  transition: transform .3s var(--ease); animation: wa-pulse 2.6s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 34px; height: 34px; }
.wa-float .wa-tip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  padding: 9px 15px; border-radius: 12px; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s; box-shadow: var(--shadow-sm);
}
.wa-float .wa-tip::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--navy); }
.wa-float:hover .wa-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes wa-pulse { 0% { box-shadow: 0 16px 36px -12px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 16px 36px -12px rgba(37,211,102,.7), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 16px 36px -12px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   MENU PAGE
   ============================================================ */
.page-hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden; text-align: center;
  padding-top: calc(var(--header-h) + clamp(40px, 7vw, 78px)); padding-bottom: clamp(44px, 7vw, 78px);
}
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); color: #fff; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 56ch; margin: 18px auto 0; }
.page-hero .crumb { color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: 20px; font-family: var(--font-display); font-weight: 600; }
.page-hero .crumb a:hover { color: var(--pink-300); }
.page-hero .iso-top { width: 60px; margin: 0 auto 22px; opacity: .95; }

/* Category chips (sticky) */
.menu-nav { position: sticky; top: var(--header-h); z-index: 60; background: rgba(251, 248, 245, .9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.menu-nav .wrap { display: flex; gap: 8px; overflow-x: auto; padding-block: 12px; scrollbar-width: none; }
.menu-nav .wrap::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: none; font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--slate);
  padding: 9px 16px; border-radius: var(--radius-pill); border: 1px solid var(--line); transition: all .2s; white-space: nowrap;
}
.menu-nav a:hover { color: var(--navy); border-color: var(--navy); }
.menu-nav a.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Menu section */
.menu-cat { padding-block: clamp(44px, 6vw, 72px); scroll-margin-top: calc(var(--header-h) + 70px); }
.menu-cat + .menu-cat { border-top: 1px solid var(--line); }
.cat-head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.cat-head img { width: 34px; height: auto; flex: none; }
.cat-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--navy); }
.cat-sub { color: var(--slate); margin: 0 0 30px; max-width: 62ch; }
.cat-sub.with-iso { padding-left: 50px; }

.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 48px; }
.menu-items.one-col { grid-template-columns: 1fr; }
.mi { padding: 16px 0; border-bottom: 1px dashed var(--line); }
.mi-top { display: flex; align-items: baseline; gap: 10px; }
.mi-name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.08rem; letter-spacing: -.01em; }
.mi-lead { flex: 1; border-bottom: 2px dotted var(--slate-300); transform: translateY(-4px); min-width: 18px; }
.mi-price { font-family: var(--font-display); font-weight: 700; color: var(--pink); font-size: 1.05rem; white-space: nowrap; }
.mi-desc { margin: 5px 0 0; color: var(--slate); font-size: .95rem; }
.mi-tags { margin-top: 6px; display: flex; gap: 6px; flex-wrap: wrap; }
.chip { font-size: .72rem; font-weight: 700; font-family: var(--font-display); color: var(--pink-600); background: var(--pink-100); padding: 3px 10px; border-radius: var(--radius-pill); }
.chip.navy { color: #fff; background: var(--navy); }
.chip.veg { color: #15803d; background: #dcfce7; }

/* price list variant (simple rows, no desc) */
.price-rows { display: grid; gap: 2px; }
.price-rows .mi { padding: 11px 0; }

/* subcategory heading inside a category */
.subcat { font-family: var(--font-display); font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; margin: 26px 0 10px; grid-column: 1 / -1; }
.subcat:first-child { margin-top: 0; }

/* callout note */
.note {
  display: flex; gap: 16px; align-items: flex-start; background: var(--navy); color: #fff;
  border-radius: var(--radius); padding: 22px 26px; margin-top: 36px; box-shadow: var(--shadow-sm);
}
.note svg { width: 26px; height: 26px; color: var(--pink-300); flex: none; margin-top: 2px; }
.note b { font-family: var(--font-display); }
.note p { margin: 4px 0 0; color: rgba(255,255,255,.8); font-size: .96rem; }

/* Conócenos band */
.conocenos { background: linear-gradient(160deg, var(--navy), var(--navy-800)); color: #fff; text-align: center; position: relative; overflow: hidden; }
.conocenos .mia { width: 150px; margin: 0 auto 20px; filter: drop-shadow(0 14px 18px rgba(0,0,0,.3)); }
.conocenos h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); color: #fff; }
.conocenos p { color: rgba(255,255,255,.8); max-width: 54ch; margin: 16px auto 30px; }

/* Original menu gallery */
.menu-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.menu-gallery a { display: block; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: #fff; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.menu-gallery a:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.menu-gallery img { width: 100%; aspect-ratio: 1100/1430; object-fit: cover; object-position: top; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .menu-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  :root { --header-h: 66px; }
  .nav, .header-cta .btn--ghost-light { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn-menu-header { padding: 11px 18px; font-size: .94rem; }

  /* mobile drawer */
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(14, 20, 54, .98); backdrop-filter: blur(14px); padding: 18px clamp(20px,5vw,40px) 26px;
    transform: translateY(-120%); transition: transform .4s var(--ease); box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  body.nav-open .nav { display: flex; transform: translateY(0); }
  .nav a { padding: 14px 16px; font-size: 1.05rem; }
  .nav .btn { margin-top: 8px; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .hero-facts { justify-content: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 20px auto 0; order: -1; }
  .hero-mia { width: 38%; left: -6%; }
  .hero::after { top: 4%; right: -30%; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .stats { margin-top: 30px; }

  .dish, .dish.feature { grid-template-columns: 1fr; }
  .dish.reverse .dish-media { order: 0; }
  .dish-media { min-height: 220px; aspect-ratio: 16/10; }

  .delivery-card { grid-template-columns: 1fr; }
  .dc-media { min-height: 300px; order: -1; }
  .dc-media img.mia { width: 46%; }

  .location-grid { grid-template-columns: 1fr; }

  .menu-items { grid-template-columns: 1fr; gap: 0 0; }
  .menu-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .brand .brand-word { display: none; }
  .site-header .wrap { gap: 10px; }
  .header-cta { gap: 8px; }
  .header-cta .btn-menu-header { padding: 10px 16px; }
  .hero-actions .btn, .cta-actions .btn, .dc-actions .btn, .info-actions .btn, .nav .btn { width: 100%; }
  .hero-badge { right: 2%; top: 2%; padding: 9px 12px; font-size: .9rem; }
  .hero-mia { width: 40%; left: -4%; bottom: -3%; }
  .stats { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .stat { display: flex; align-items: baseline; gap: 12px; }
  .stat b { display: inline; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .menu-gallery { grid-template-columns: 1fr; }
  .cat-sub.with-iso { padding-left: 0; }
}
