/* ==========================================================================
   EL GÜIRO — style.css (BEM, tokens en :root)
   Tabla de contenidos
   1. Tokens
   2. Base / reset
   3. Skip-link
   4. Nav (.nav)
   5. Hero (.hero)
   6. Botones (.btn)
   7. Cinta de marca (.strip)
   8. Nosotros (.intro)
   9. Tarjetas CTA (.cards / .card)
   10. Menú (.sazon / .dish)
   11. Galería (.gallery)
   12. Modal menú completo (.menu-modal / .mcat / .mitem)
   13. Footer (.footer)
   14. Responsive
   ========================================================================== */

/* 1. Tokens ------------------------------------------------------------ */
@font-face {
  font-family: "Gelosa Cara";
  src: url("assets/fonts/gelosa-cara.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --azul: rgb(3, 110, 143);          /* primario */
  --azul-claro: rgb(63, 148, 167);   /* acento */
  --crema: rgb(247, 242, 231);       /* fondo / texto sobre azul */
  --blanco: rgb(255, 255, 255);

  --surface: var(--crema);
  --text-clear: var(--azul);
  --text-inverse: var(--crema);
  --line: var(--azul);

  --font-sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Gelosa Cara", "Poppins", -apple-system, "Segoe UI", Arial, sans-serif;

  --radius: 6px;
  --pad-x: 80px;
  --maxw: 1281px;
}

/* 2. Base / reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--surface);
  color: var(--text-clear);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--azul); text-decoration: none; }
a:hover { color: var(--azul-claro); }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--azul-claro); outline-offset: 2px; }

/* 3. Skip-link ----------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 16px;
  background: var(--crema);
  color: var(--azul);
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* 4. Nav ------------------------------------------------------------------ */
.nav {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1224px, calc(100% - 2 * 108px));
  z-index: 3;
  border-radius: var(--radius);
  background: var(--crema);
  box-shadow: inset 0 0 0 1px var(--azul);
  padding: 5px 4.5px;
}
.nav--static {
  position: static;
  transform: none;
  margin: 32px auto 0;
}

.nav__frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px var(--azul);
  padding: 4px 24px 4px 41px;
  min-height: 75px;
}
.nav__brand { display: block; flex-shrink: 0; }
.nav__brand img { width: 53px; height: 66px; }
.nav__menu {
  display: flex;
  gap: 49px;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.nav__link {
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1.19;
  color: var(--azul);
  text-decoration: none;
  padding: 12px 0; /* táctil ≥44px */
}
.nav__link:hover { color: var(--azul-claro); }
.nav__cta {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 133px;
  min-height: 44px;
  padding: 10px;
  border-radius: 2px;
  background: var(--azul);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--blanco);
  text-decoration: none;
}
.nav__cta:hover { background: var(--azul-claro); color: var(--blanco); }
.nav__toggle { display: none; }

/* 5. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 708px;
  overflow: hidden;
  background-color: var(--azul);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}
.hero__watermark {
  position: absolute;
  right: -35px;
  top: 112px;
  width: 314px;
  height: 504px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 911px;
  margin: 0 auto;
  padding: 196px var(--pad-x) 90px;
  text-align: center;
}
.hero__emblem { width: 47px; height: 76px; margin-bottom: 19px; }
.hero__title {
  margin: 0 0 21px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(32px, 6.2vw, 71.6px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--crema);
}
.hero__sub {
  margin: 0 0 40px;
  max-width: 737px;
  font-size: 18px;
  line-height: 1.19;
  letter-spacing: -0.02em;
  color: var(--blanco);
}
.hero__actions { display: flex; gap: 17px; }

/* 6. Botones ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 153px;
  min-height: 44px;
  padding: 11.5px;
  font-family: var(--font-display);
  font-size: 16.1px;
  letter-spacing: 0.1em;
  line-height: 1.19;
  text-decoration: none;
  color: var(--blanco);
}
.btn--solid {
  background: var(--azul);
  box-shadow: 0 0 0 1.15px var(--azul);
}
.btn--solid:hover { background: var(--azul-claro); box-shadow: 0 0 0 1.15px var(--azul-claro); color: var(--blanco); }
.btn--ghost { box-shadow: 0 0 0 1.15px var(--blanco); }
.btn--ghost:hover { background: color-mix(in oklch, var(--blanco) 15%, transparent); color: var(--blanco); }
.btn--light {
  background: var(--blanco);
  color: var(--azul);
  box-shadow: 0 0 0 1.15px var(--azul);
}
.btn--light:hover { background: var(--crema); color: var(--azul); }
.btn--outline {
  color: var(--azul);
  box-shadow: 0 0 0 1.15px var(--azul);
}
.btn--outline:hover { background: color-mix(in oklch, var(--azul) 10%, transparent); color: var(--azul); }

/* 7. Cinta de marca ------------------------------------------------------- */
.strip { padding: 40px var(--pad-x) 0; }
.strip__frame {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--azul);
  padding: 9.85px 0;
  display: flex;
  align-items: center;
  min-height: 78.7px;
}
.strip__viewport {
  width: 100%;
  overflow: hidden;
  display: flex;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 7%, #000 41%, transparent 47.5%, transparent 52.5%, #000 59%, #000 93%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0, #000 7%, #000 41%, transparent 47.5%, transparent 52.5%, #000 59%, #000 93%, transparent 100%);
}
.strip__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 48px;
}
.strip__row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: strip-marquee 30s linear infinite;
}
.strip__row .strip__mark { margin-right: 42px; }
@keyframes strip-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.strip__mark, .footer__mark {
  width: 107.5px;
  height: 25px;
  flex-shrink: 0;
  background-color: var(--azul);
  -webkit-mask: url("assets/img/logo-el-guiro-wordmark.png") 50% 87.931% / 101.435% 546.154% no-repeat;
  mask: url("assets/img/logo-el-guiro-wordmark.png") 50% 87.931% / 101.435% 546.154% no-repeat;
}

/* 8. Nosotros --------------------------------------------------------------- */
.intro { padding: 76px var(--pad-x) 0; }
.intro__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px 40px;
  align-items: start;
}
.intro__title { grid-row: 1; grid-column: 1; }
.intro__col { display: flex; flex-direction: column; grid-row: 2; }
.intro__col:nth-of-type(1) { grid-column: 1; }
.intro__col:nth-of-type(2) { grid-column: 2; }
.intro__grid .intro__title {
  margin: 0 0 20px;
  max-width: 622px;
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--azul);
}
.intro__rule { display: block; border-top: 1px solid var(--azul-claro); margin-bottom: 24px; }
.intro__col p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.19;
  letter-spacing: -0.02em;
  color: var(--azul);
}
.intro__col p:last-child { margin-bottom: 0; }

/* 9. Tarjetas CTA -------------------------------------------------------------- */
.cards {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 76px var(--pad-x) 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 37px;
  box-sizing: content-box;
}
.card {
  border-radius: 9.78px;
  box-shadow: inset 0 0 0 0.815px var(--azul);
  padding: 16.3px;
}
.card__inner {
  position: relative;
  border-radius: 7.34px;
  overflow: hidden;
  background: var(--azul);
  aspect-ratio: 589 / 281;
}
.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__btn {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  min-width: 125px;
  min-height: 44px;
  font-size: 13.1px;
}
.cards__psalm {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--azul);
}

/* 10. Menú ------------------------------------------------------------------------ */
.sazon { background: var(--azul); padding: 88px var(--pad-x); }
.sazon__inner { max-width: 1240px; margin: 0 auto; }
.sazon__head { display: flex; align-items: center; gap: 40px; }
.sazon__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 40.7px);
  line-height: 0.94;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blanco);
  white-space: nowrap;
}
.sazon__accent { color: rgb(240, 166, 76); }
.sazon__rule { flex: 1 1 auto; border-top: 1px dashed var(--blanco); }
.sazon__lead {
  margin: 26px 0 0;
  font-size: 17.4px;
  line-height: 1.19;
  letter-spacing: -0.02em;
  text-align: justify;
  color: var(--blanco);
}
.sazon__grid {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19.7px 39.5px;
}
.dish { display: flex; align-items: center; gap: 16px; }
.dish__img {
  width: 124px;
  height: 86px;
  object-fit: cover;
  flex-shrink: 0;
}
.dish__info { display: flex; flex-direction: column; gap: 4.7px; min-width: 0; }
.dish__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20.5px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--crema);
}
.dish__desc {
  margin: 0;
  font-size: 12.2px;
  line-height: 1.19;
  letter-spacing: -0.02em;
  color: var(--crema);
}
.dish__price {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgb(240, 166, 76);
}
.sazon__cta-row { margin: 49px 0 0; display: flex; justify-content: center; }

/* 11. Galería ---------------------------------------------------------------------- */
.gallery { padding: 94px var(--pad-x); }
.gallery__head {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.gallery__title {
  margin: 0;
  max-width: 408px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.94;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--azul);
}
/* Marquee de galería (home) */
.gallery__viewport {
  margin: 52px calc(-1 * var(--pad-x)) 0;
  overflow: hidden;
  display: flex;
}
.gallery__row {
  display: flex;
  flex-shrink: 0;
  animation: strip-marquee 45s linear infinite;
}
.gallery__viewport:hover .gallery__row { animation-play-state: running; }
.gallery__row .gallery__item {
  width: 336px;
  height: 394px;
  object-fit: cover;
  margin-right: 27px;
  margin-bottom: 0;
}
/* Masonry (galeria.html): grid full-bleed bajo el nav flotante */
.gallery--full { padding: 0; }
.gallery--full .gallery__masonry {
  max-width: none;
  margin: 0;
  columns: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.gallery--full .gallery__item {
  border-radius: 0;
  margin-bottom: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.gallery__masonry {
  max-width: var(--maxw);
  margin: 52px auto 0;
  columns: 4 260px;
  column-gap: 20px;
}
.gallery__item {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 20px;
  break-inside: avoid;
  background: rgb(146, 146, 146);
}
/* Animación de carga: solo si JS confirma capacidad (body.anim-ready) */
body.anim-ready .gallery__masonry .gallery__item { opacity: 0; transform: translateY(14px) scale(0.985); }
body.anim-ready .gallery__masonry .gallery__item.is-loaded {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* 12. Modal menú completo -------------------------------------------------------- */
.menu-modal {
  width: min(860px, calc(100% - 32px));
  max-height: min(84vh, 900px);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--azul);
  color: var(--crema);
}
.menu-modal::backdrop { background: color-mix(in oklch, var(--azul) 55%, black 45%); opacity: 0.75; }
.menu-modal__head {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 40px 20px;
  background: var(--azul);
  border-bottom: 1px dashed var(--crema);
}
.menu-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blanco);
}
.menu-modal__close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: none;
  box-shadow: inset 0 0 0 1.16px var(--crema);
  color: var(--crema);
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-modal__close:hover { background: color-mix(in oklch, var(--crema) 15%, transparent); }
.menu-modal__body {
  padding: 12px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.mcat__title {
  margin: 28px 0 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(240, 166, 76);
}
.mcat__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mitem__row { display: flex; align-items: baseline; gap: 12px; }
.mitem__name {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--blanco);
}
.mitem__qty { font-weight: 400; font-size: 13px; color: var(--crema); }
.mitem__dots { flex: 1 1 auto; border-bottom: 1px dotted color-mix(in oklch, var(--crema) 55%, transparent); min-width: 24px; }
.mitem__price { font-size: 15px; letter-spacing: 0.04em; color: var(--crema); white-space: nowrap; }
.mitem__desc {
  margin: 6px 0 0;
  max-width: 62ch;
  font-size: 13.5px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: color-mix(in oklch, var(--crema) 85%, transparent);
}

/* 13.5 Legal (privacidad.html) --------------------------------------------------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px var(--pad-x) 96px;
}
.legal__title {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--azul);
}
.legal__updated {
  margin: 0 0 40px;
  font-size: 13px;
  color: color-mix(in oklch, var(--azul) 70%, var(--crema));
}
.legal__section { margin-bottom: 36px; }
.legal__section h2 {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--azul);
}
.legal__section p, .legal__section li {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  max-width: 68ch;
  color: var(--azul);
}
.legal__section ul { margin: 0 0 12px; padding-left: 22px; }
.controller-card {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.controller-card th, .controller-card td {
  border: 1px solid var(--azul-claro);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  color: var(--azul);
}
.controller-card th { width: 38%; font-weight: 600; background: color-mix(in oklch, var(--azul) 7%, var(--crema)); }
.legal__address { font-style: normal; }

/* 12b. Delivery / Contacto (.delivery) -------------------------------------------- */
.delivery { padding: 90px var(--pad-x); background: var(--azul); color: var(--blanco); }
.delivery a { color: var(--blanco); }
.delivery a.delivery__wa { color: var(--azul); }
.delivery a.delivery__wa:hover { color: var(--azul); }
.delivery a:hover { color: rgb(240, 166, 76); }
.delivery__inner { max-width: 1240px; margin: 0 auto; }
.delivery__head { display: flex; align-items: center; gap: 40px; }
.delivery__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 40.7px);
  line-height: 0.94;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blanco);
  white-space: nowrap;
}
.delivery__rule { flex: 1 1 auto; border-top: 1px dashed var(--blanco); }
.delivery__lead { margin: 26px 0 0; font-size: 17.4px; line-height: 1.55; max-width: 62ch; }
.delivery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  margin-top: 48px;
}
.delivery__subtitle {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.delivery__steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.delivery__step {
  position: relative;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid color-mix(in oklch, var(--blanco) 30%, transparent);
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--blanco) 8%, transparent);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.delivery__step:hover {
  transform: translateY(-4px);
  border-color: var(--blanco);
}
.delivery__num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  color: rgb(240, 166, 76);
  letter-spacing: 0.04em;
  transition: transform 0.35s ease;
}
.delivery__step:hover .delivery__num { transform: scale(1.12) rotate(-4deg); }
.delivery__step-body { min-width: 0; }
.delivery__step-title {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.delivery__step-text { margin: 0; line-height: 1.55; font-size: 15px; }
.delivery__policies {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--blanco) 10%, transparent);
  border: 1px solid color-mix(in oklch, var(--blanco) 25%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.delivery__policies .delivery__subtitle { margin-bottom: 12px; }
.delivery__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.delivery__pol { display: flex; align-items: baseline; gap: 10px; font-size: 14px; line-height: 1.45; }
.delivery__pol-icon { flex: 0 0 auto; transform: translateY(2px); color: rgb(240, 166, 76); }
.delivery__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.delivery__wa { display: inline-flex; align-items: center; gap: 10px; }
.delivery__ext-note { margin: 10px 0 0; font-size: 12px; opacity: 0.75; }
.delivery__billing { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 36px; padding-top: 28px; border-top: 1px dashed var(--blanco); }
.delivery__billing .delivery__subtitle { flex: 1 1 100%; }
.delivery__billing .delivery__note { flex: 1 1 0; min-width: 220px; margin: 0; }
.delivery__bill-btn { margin-top: 0; flex: 0 0 auto; }
.delivery__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 60%;
  border-radius: var(--radius);
  background: var(--blanco);
  border: 4px solid var(--blanco);
  margin-bottom: 28px;
}
.delivery__contact {
  font-style: normal;
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--blanco) 10%, transparent);
  border: 1px solid color-mix(in oklch, var(--blanco) 25%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.delivery__contact .delivery__subtitle { margin-bottom: 4px; }
.delivery__row { display: flex; flex-wrap: wrap; gap: 12px 32px; }
.delivery__item { margin: 0; line-height: 1.4; font-size: 14px; }
.delivery__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(240, 166, 76);
  margin-bottom: 2px;
}
.delivery__note { margin: 0; line-height: 1.55; }

/* 13. Footer --------------------------------------------------------------------------- */
.footer { background: var(--azul); color: var(--blanco); border-top: 1px solid var(--crema); }
.footer a { color: var(--blanco); }
.footer a:hover { color: var(--crema); }
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad-x) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  box-sizing: content-box;
}
.footer__logo { width: 105px; height: 131px; flex-shrink: 0; }
.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 93px;
  align-items: center;
}
.footer__link {
  font-size: 16px;
  letter-spacing: -0.02em;
  text-decoration: none;
  padding: 12px 0;
}
.footer__social { display: flex; gap: 14px; }
.footer__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--crema) 22%, var(--azul));
  color: var(--crema);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.footer__icon svg { width: 14px; height: 14px; }
.footer__icon:hover { background: color-mix(in oklch, var(--azul-claro) 80%, white); color: var(--blanco); }
.footer__legal {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--pad-x) 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-sizing: content-box;
}
.footer__legal-link, .footer__copy {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blanco);
}
.footer__band {
  border-top: 0.985px solid var(--crema);
  padding: 19px 0;
  overflow: hidden;
}
.footer__band-row {
  display: flex;
  align-items: center;
  width: max-content;
  animation: strip-marquee 30s linear infinite;
}
.footer__band-row .footer__mark { margin-right: 42px; }
.footer__band .footer__mark { background-color: var(--crema); }

/* Reveal global (textos y cards): solo se oculta bajo body.anim-ready */
body.anim-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
body.anim-ready .card[data-reveal] { transform: translateY(34px) scale(0.97); transition-duration: 1.1s; }
/* Delivery: acentos propios */
body.anim-ready .delivery__step[data-reveal] { transform: translateY(34px); }
body.anim-ready .delivery__img[data-reveal] { transform: translateY(40px) scale(0.96); transition-duration: 1.1s; }
body.anim-ready [data-reveal].is-in { opacity: 1; transform: none; filter: none; }

/* 14. Responsive ----------------------------------------------------------------- */
@media (max-width: 960px) {
  :root { --pad-x: 24px; }
  /* Nav: logo centrado, hamburguesa a la derecha (como el ejemplo) */
  .nav { width: calc(100% - 32px); top: 16px; }
  .nav--static { margin-top: 16px; }
  .nav__frame {
    padding: 8px 16px;
    flex-wrap: wrap;
    min-height: 64px;
    position: relative;
    justify-content: center;
  }
  .nav__brand { margin: 0 auto; }
  .nav__brand img { width: 43px; height: 54px; }
  .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: none;
    border: 0;
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    order: 2;
  }
  .nav__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--azul);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav__menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    order: 4;
    padding: 8px 0 12px;
    text-align: center;
  }
  .nav__menu.is-open { display: flex; }
  .nav__link { display: block; padding: 12px 0; font-size: 14px; }
  .nav__cta { display: none; order: 5; }
  .nav__menu.is-open ~ .nav__cta, .nav__menu.is-open + .nav__cta { display: inline-flex; margin: 0 auto 12px; }
  /* Hero */
  .hero { min-height: 620px; }
  .hero__content { padding: 150px var(--pad-x) 70px; }
  .hero__watermark { display: none; }
  .hero__emblem { width: 40px; height: 65px; }
  .hero__title { font-size: clamp(24px, 6.6vw, 34px); white-space: normal; text-wrap: balance; }
  .hero__sub { font-size: 14px; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; width: 100%; }
  .hero__actions .btn { min-width: 130px; min-height: 44px; padding: 10px; font-size: 13px; }
  /* Cinta */
  .strip { padding-top: 24px; }
  .strip__frame { min-height: 60px; }
  .strip__logo { width: 28px; height: 45px; }
  .strip__mark, .footer__mark { width: 80px; height: 19px; }
  /* Secciones */
  .intro { padding-top: 48px; }
  .intro__grid, .cards { grid-template-columns: minmax(0, 1fr); }
  .intro__title, .intro__col, .intro__col:nth-of-type(1), .intro__col:nth-of-type(2) { grid-row: auto; grid-column: auto; }
  .intro__title { font-size: clamp(26px, 6.8vw, 34px); }
  .intro__col p { font-size: 14.5px; }
  .cards { padding: 48px var(--pad-x); gap: 20px; }
  .card__inner { aspect-ratio: 4 / 3; }
  .sazon { padding: 56px var(--pad-x); }
  .sazon__head { gap: 16px; }
  .sazon__title { font-size: clamp(21px, 5.6vw, 26px); white-space: normal; }
  .sazon__lead { text-align: left; font-size: 14px; }
  .sazon__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .delivery { padding: 56px var(--pad-x); }
  .delivery__head { gap: 16px; }
  .delivery__title { font-size: clamp(21px, 5.6vw, 26px); white-space: normal; }
  .delivery__lead { font-size: 14px; }
  .delivery__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; margin-top: 32px; }
  .dish__img { width: 96px; height: 66px; }
  .dish__name { font-size: 15.5px; }
  .dish__desc { font-size: 11.5px; }
  .dish__price { font-size: 12.5px; }
  .sazon__cta-row { margin-top: 36px; }
  /* Galería */
  .gallery { padding: 56px var(--pad-x); }
  .gallery__head { flex-wrap: wrap; gap: 16px; }
  .gallery__title { font-size: clamp(23px, 6vw, 30px); }
  .gallery__viewport { margin-top: 32px; }
  .gallery__row .gallery__item { width: 220px; height: 260px; margin-right: 14px; }
  .gallery--full { padding: 0; }
  .gallery--full .gallery__masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 0; }
  .gallery--full .gallery__item { margin-bottom: 0; }
  .gallery__masonry { columns: 2 140px; column-gap: 12px; margin-top: 32px; }
  .gallery__masonry .gallery__item { margin-bottom: 12px; }
  /* Footer (como el ejemplo: logo, links, legales, copy centrados) */
  .footer__top { flex-direction: column; padding-top: 40px; gap: 28px; text-align: center; }
  .footer__logo { width: 84px; height: 105px; }
  .footer__menu { gap: 4px 32px; flex-wrap: wrap; justify-content: center; }
  .footer__link { font-size: 14px; }
  .footer__social { display: none; }
  .footer__legal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 40px;
    text-align: center;
    padding-top: 24px;
  }
  .footer__legal-link { font-size: 12px; }
  .footer__copy { order: 3; flex-basis: 100%; font-size: 12px; line-height: 1.45; text-wrap: pretty; }
  .footer__band-row { animation-duration: 22s; }
  /* Modal */
  .menu-modal__head { padding: 20px 20px 14px; }
  .menu-modal__body { padding: 8px 20px 32px; }
  .mitem__row { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .strip__row, .gallery__row, .footer__band-row { animation: none !important; }
}

@media print {
  body { background: #fff; color: #000; }
  .nav, .hero__actions, .skip-link, .footer__social, .footer__band { display: none !important; }
  .legal, .legal__section p, .legal__section li, .legal__section h2, .legal__title, .controller-card th, .controller-card td { color: #000; }
  .controller-card th, .controller-card td { border-color: #000; }
}
