/* =============================================
   BRUNCH & BURGERS — Menú Digital Premium
   Big Shoulders Display (display) · DM Sans (body) · Playfair (accent)
   Navy #0d0f1a · Orange #E8703A · Cream #F5E4C3
============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0d0f1a;
  --navy-2:      #161828;
  --navy-3:      #1e2138;
  --orange:      #E8703A;
  --orange-d:    #c95a28;
  --cream:       #F5E4C3;
  --cream-2:     #ede0b4;
  --cream-3:     #e5d49e;
  --white:       #fdfaf4;
  --text-dark:   #1a1208;
  --text-mid:    #4a3e28;
  --text-light:  #8a7a5a;
  --r:           12px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

/* =============================================
   BACKGROUND MASCOTS (parallax)
============================================= */
.bg-mascots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  max-width: 100vw;
}

.bg-mascot {
  position: absolute;
  opacity: 0.13;
  transition: transform 0.1s linear, opacity 0.6s ease;
  will-change: transform;
}

.bg-mascot img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: multiply;
}

/* Pancake grande — izquierda superior */
.bg-p1 { width: 480px; left: -80px;  top: 6vh;  opacity: 0.13; }
/* Burger grande — derecha centro: empieza DENTRO de pantalla */
.bg-b1 { width: 440px; right: -60px; top: 32vh; opacity: 0.13; }
/* Pancake mediano — derecha superior */
.bg-p2 { width: 220px; right: 10vw; top: 4vh;  opacity: 0.09; transform: rotate(13deg); }
/* Burger mediano — izquierda centro */
.bg-b2 { width: 210px; left: 5vw;   top: 58vh; opacity: 0.09; transform: rotate(-10deg); }
/* Pancake pequeño — derecha bajo */
.bg-p3 { width: 160px; right: 4vw;  top: 76vh; opacity: 0.07; transform: rotate(19deg); }
/* Burger pequeño — izquierda bajo */
.bg-b3 { width: 150px; left: 3vw;   top: 86vh; opacity: 0.07; transform: rotate(-16deg); }

/* ── Mascotas NARANJA (contorno brillante) en secciones oscuras ── */
.section-mascot {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.section-mascot img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  /*
    invert → líneas negras se vuelven blancas (el relleno negro desaparece con screen)
    sepia + hue + saturate → tinte naranja cálido, sin oversaturar
    drop-shadow suave → solo una sombra difusa, no neón
    mix-blend-mode: screen → integra limpiamente sobre fondo oscuro
  */
  filter:
    invert(1)
    sepia(1) saturate(5) hue-rotate(328deg) brightness(1.15)
    drop-shadow(0 0 6px rgba(232,112,58,0.45));
  mix-blend-mode: screen;
}

/* ── Animación float para mascotas en fondo oscuro ── */
@keyframes floatA {
  0%,100% { transform: translateY(0px)   rotate(-8deg);  }
  50%      { transform: translateY(-14px) rotate(-5deg);  }
}
@keyframes floatB {
  0%,100% { transform: translateY(0px)   rotate(10deg);  }
  50%      { transform: translateY(-18px) rotate(13deg);  }
}
@keyframes floatC {
  0%,100% { transform: translateY(0px)   rotate(5deg);   }
  50%      { transform: translateY(-10px) rotate(2deg);   }
}
@keyframes floatD {
  0%,100% { transform: translateY(0px)   rotate(-12deg); }
  50%      { transform: translateY(-12px) rotate(-9deg);  }
}

/* Burgers section — 4 mascotas */
.sm-bl { width: 300px; left:  -50px; bottom: -20px; opacity: 0.40; animation: floatA 5.0s ease-in-out infinite; }
.sm-br { width: 270px; right: -40px; top:    10px;  opacity: 0.40; animation: floatB 5.8s ease-in-out infinite; }
.sm-bc { width: 180px; left:  12vw;  top:    30px;  opacity: 0.25; animation: floatC 6.5s ease-in-out infinite 0.8s; }
.sm-bd { width: 160px; right: 12vw;  bottom: 20px;  opacity: 0.25; animation: floatD 7.2s ease-in-out infinite 1.2s; }

/* Reviews section — 3 mascotas */
.sm-rl { width: 280px; left:  -50px; top: 50%;    transform: translateY(-50%); opacity: 0.35; animation: floatA 6.0s ease-in-out infinite; }
.sm-rr { width: 250px; right: -40px; bottom: 20px; opacity: 0.35; animation: floatB 5.4s ease-in-out infinite 0.5s; }
.sm-rb { width: 160px; right: 10vw;  top:    20px; opacity: 0.22; animation: floatC 7.0s ease-in-out infinite 1.0s; }

/* =============================================
   NAV
============================================= */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 200;
  padding: 0 24px;
  height: 60px;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), border-bottom var(--transition);
}

.top-nav.scrolled {
  background: rgba(13, 15, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 112, 58, 0.15);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.nav-amp { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }

@media (max-width: 600px) { .nav-links { display: none; } }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-toggle:hover { border-color: var(--orange); color: var(--orange); }
.lang-current { color: var(--orange); }
.lang-sep { opacity: 0.4; }

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232,112,58,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 20%, rgba(232,112,58,0.06) 0%, transparent 60%);
}

/* Retro halftone dots pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,112,58,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 0.88;
  margin-bottom: 28px;
}

.hero-line-1,
.hero-line-2 {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(4.5rem, 18vw, 10rem);
  letter-spacing: 0.02em;
  color: var(--navy);
  display: block;
  /* Relleno navy + contorno blanco grueso + sombra sutil — fiel a la marca */
  -webkit-text-stroke: 5px var(--white);
  paint-order: stroke fill;
  text-shadow:
    4px 4px 0 rgba(0,0,0,0.18),
    0 0 40px rgba(255,255,255,0.04);
}

.hero-line-1 { color: var(--navy); }
.hero-line-2 { color: var(--navy); }

.hero-amp {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(2.2rem, 7vw, 5rem);
  color: var(--orange);
  display: block;
  line-height: 1.2;
  -webkit-text-stroke: 3px var(--white);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.15);
}

.hero-sub {
  font-size: clamp(14px, 3vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.hero-cta:hover { background: var(--orange-d); transform: translateY(-2px); }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  z-index: 2;
}
.hero-scroll-hint svg { color: rgba(255,255,255,0.2); }

.scroll-dot {
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(6px); opacity: 0.3; }
}

/* =============================================
   CATEGORY PILLS (sticky)
============================================= */
.sticky-pills {
  position: sticky;
  top: 60px;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid rgba(232,112,58,0.25);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.pills-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  padding: 10px 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pills-inner::-webkit-scrollbar { display: none; }

.pill {
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.pill:hover { border-color: var(--orange); color: var(--orange); }
.pill.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* =============================================
   MENU MAIN wrapper
============================================= */
.menu-main { position: relative; z-index: 1; }

/* =============================================
   SECTION HEADER
============================================= */
.menu-section {
  padding: 64px 20px 48px;
  position: relative;
  overflow: hidden;
}
.menu-section.hidden { display: none; }

/* Sección dulce: más espacio para que las cards no se vean cortadas */
#dulce {
  padding-top: 72px;
  padding-bottom: 72px;
}

.menu-section--dark {
  background: var(--navy-2);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 8px;
}

.label-line {
  flex: 1;
  height: 1px;
  background: rgba(26,18,8,0.15);
}
.label-line--light { background: rgba(255,255,255,0.1); }

.label-text {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 0.06em;
  color: var(--navy);
  white-space: nowrap;
}
.label-text--orange { color: var(--orange); }
.label-text--light { color: var(--white); }

.section-desc {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.menu-section--dark .section-desc { color: rgba(255,255,255,0.35); }

/* =============================================
   ITEMS LIST (row style — brunch & burgers)
============================================= */
.items-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,18,8,0.07);
  position: relative;
  transition: background var(--transition);
}

.item:last-child { border-bottom: none; }

.item--featured {
  padding: 22px 0;
  border-bottom: 1px solid rgba(26,18,8,0.07);
  background: none;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

/* Dark section items */
.item--dark {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
}
.item--dark .item-desc { color: rgba(255,255,255,0.45); }
.item--dark .item-index { color: rgba(255,255,255,0.15); }
.item--dark.item--featured {
  background: rgba(232,112,58,0.07);
  border-color: rgba(232,112,58,0.2);
}

/* Item sub-elements */
.item-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 52px;
  flex-shrink: 0;
}

.item-index {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: rgba(26,18,8,0.12);
  line-height: 1;
}

/* Tag rediseñado: sin caja, integrado en el flujo del texto */
.item-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 3px 0 7px;
  padding-left: 9px;
  border-left: 2px solid var(--orange);
  line-height: 1.3;
}

.item-tag--spicy {
  color: #b83224;
  border-left-color: #b83224;
}

.item-tag--special {
  color: var(--navy);
  border-left-color: var(--navy);
}

/* En fondo oscuro: el acento va en el article completo, no en el tag */
.item--dark .item-tag {
  color: var(--orange);
  border-left: none;
  padding-left: 0;
}

.item--dark .item-tag--special {
  color: rgba(255,255,255,0.5);
}

/* Item featured en fondo oscuro: sin borde lateral, solo el tag de texto */
.item--dark.item--featured {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

.item-body {
  flex: 1;
  min-width: 0;
}

.item-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  color: inherit;
}

.item-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.55;
}

.item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
  min-width: 80px;
}

.item-price {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--orange);
}

.item-combo {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.item--dark .item-combo { color: rgba(255,255,255,0.3); }

/* =============================================
   DULCE GRID (card style)
============================================= */
.items-list--grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.item--card {
  padding: 28px 26px 26px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid rgba(26,18,8,0.06);
  box-shadow: 0 2px 12px rgba(26,18,8,0.04);
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.item--card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,18,8,0.1);
}
.item--card .item-name { font-size: 0.95rem; }
.item--card .item-price {
  margin-top: auto;
  padding-top: 12px;
}

.card-num {
  font-family: 'Alfa Slab One', serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(26,18,8,0.1);
  display: block;
}

.item--local {
  border-color: rgba(232,112,58,0.25);
  background: linear-gradient(135deg, var(--white) 0%, rgba(245,228,195,0.4) 100%);
}

.local-badge {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  padding-left: 9px;
  border-left: 2px solid var(--orange);
  margin-bottom: 6px;
  line-height: 1.3;
}

/* =============================================
   REVIEWS
============================================= */
.reviews-section {
  background: var(--navy);
  padding: 72px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.reviews-inner { max-width: 900px; margin: 0 auto; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.06); }

/* Opening quote mark */
.review-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 0.7;
  color: var(--orange);
  opacity: 0.35;
  display: block;
  margin-bottom: -8px;
}

.review-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.review-detail {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   STORY
============================================= */
.story-section {
  background: var(--cream-2);
  padding: 72px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,15,26,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
}

.story-inner { max-width: 900px; margin: 0 auto; position: relative; }

.story-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .story-content { grid-template-columns: 1fr; }
  .story-mascots-small { display: flex; justify-content: center; }
}

.story-lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 20px;
}

.story-body {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
}

.story-mascots-small {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.story-founders {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(26,18,8,0.1);
  flex-wrap: wrap;
}

.founder {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.founder-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.founder-sep {
  color: var(--text-light);
  font-size: 1.2rem;
}

/* Mascotas GRANDES en historia */
.story-mascots-hero {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 48px;
}

@keyframes storyBobLeft  { 0%,100%{ transform: rotate(-4deg) translateY(0);    } 50%{ transform: rotate(-2deg) translateY(-10px); } }
@keyframes storyBobRight { 0%,100%{ transform: rotate(4deg)  translateY(0);    } 50%{ transform: rotate(2deg)  translateY(-14px); } }
@keyframes storyWaveLeft  { 0%,100%{ transform: rotate(-4deg) translateY(0) scale(1);    } 30%{ transform: rotate(-8deg) translateY(-18px) scale(1.06); } 60%{ transform: rotate(0deg) translateY(-10px) scale(1.04); } }
@keyframes storyWaveRight { 0%,100%{ transform: rotate(4deg)  translateY(0) scale(1);    } 30%{ transform: rotate(10deg) translateY(-22px) scale(1.06); } 60%{ transform: rotate(2deg) translateY(-12px) scale(1.04); } }

.story-mascots-hero {
  cursor: pointer;
}

.story-hero-pancake {
  width: clamp(180px, 28vw, 260px);
  height: auto;
  mix-blend-mode: multiply;
  animation: storyBobLeft 4s ease-in-out infinite;
  transform-origin: bottom center;
  margin-right: -20px;
  position: relative;
  z-index: 2;
  transition: filter 0.3s ease;
}

.story-hero-burger {
  width: clamp(160px, 25vw, 240px);
  height: auto;
  mix-blend-mode: multiply;
  animation: storyBobRight 4.6s ease-in-out infinite 0.4s;
  transform-origin: bottom center;
  position: relative;
  z-index: 1;
  transition: filter 0.3s ease;
}

/* Hover/touch: animación más expresiva y sombra sutil */
.story-mascots-hero:hover .story-hero-pancake,
.story-mascots-hero.touched .story-hero-pancake {
  animation: storyWaveLeft 0.9s ease-in-out 1 forwards;
  filter: drop-shadow(0 8px 16px rgba(26,18,8,0.15));
}
.story-mascots-hero:hover .story-hero-burger,
.story-mascots-hero.touched .story-hero-burger {
  animation: storyWaveRight 0.9s ease-in-out 1 forwards;
  filter: drop-shadow(0 8px 16px rgba(26,18,8,0.15));
  animation-delay: 0.12s;
}

/* ── Botón Google Maps / Reseñas ── */
.review-cta-banner {
  background: var(--cream-2);
  border-top: 2px solid rgba(26,18,8,0.08);
  border-bottom: 2px solid rgba(26,18,8,0.08);
  padding: 32px 20px;
}

.review-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.review-cta-title {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.review-cta-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

.review-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 50px;
  border: 2px solid rgba(26,18,8,0.1);
  box-shadow: 0 2px 12px rgba(26,18,8,0.08);
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.review-cta-btn:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(232,112,58,0.2);
  transform: translateY(-2px);
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 20px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(232,112,58,0.2);
}

.footer-inner { max-width: 400px; margin: 0 auto; }

.footer-brand {
  font-family: 'Alfa Slab One', serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.footer-brand span { color: var(--orange); }

.footer-handle {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.footer-dot { color: var(--orange); }

/* =============================================
   SCROLL REVEAL ANIMATIONS
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for items */
[data-stagger="0"].reveal { transition-delay: 0.00s; }
[data-stagger="1"].reveal { transition-delay: 0.06s; }
[data-stagger="2"].reveal { transition-delay: 0.12s; }
[data-stagger="3"].reveal { transition-delay: 0.18s; }
[data-stagger="4"].reveal { transition-delay: 0.24s; }
[data-stagger="5"].reveal { transition-delay: 0.30s; }
[data-stagger="6"].reveal { transition-delay: 0.36s; }
[data-stagger="7"].reveal { transition-delay: 0.42s; }
[data-stagger="8"].reveal { transition-delay: 0.48s; }
[data-stagger="9"].reveal { transition-delay: 0.54s; }
[data-stagger="10"].reveal { transition-delay: 0.60s; }

/* =============================================
   RESPONSIVE — MÓVIL
============================================= */
@media (max-width: 640px) {

  /* ── Hero ── */
  .hero { padding: 68px 20px 44px; min-height: 100svh; }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
  }

  .hero-title { gap: 0; margin-bottom: 18px; }

  .hero-line-1, .hero-line-2 {
    font-size: clamp(2.6rem, 10vw, 3.6rem);
    -webkit-text-stroke: 3px var(--white);
    letter-spacing: 0.01em;
  }

  .hero-amp {
    font-size: clamp(1.4rem, 5.5vw, 2.2rem);
    -webkit-text-stroke: 2px var(--white);
    line-height: 1.1;
  }

  .hero-sub { font-size: 13px; margin-bottom: 26px; }
  .hero-cta { font-size: 12px; padding: 12px 28px; }

  /* ── Nav ── */
  .top-nav { height: 52px; padding: 0 16px; }
  .sticky-pills { top: 52px; }
  .pills-inner { padding: 8px 12px; gap: 6px; }
  .pill { font-size: 11px; padding: 6px 14px; }

  /* ── Mascotas fondo: solo 2 en móvil ── */
  .bg-p2, .bg-b2, .bg-p3, .bg-b3 { display: none; }
  .bg-p1 { width: 200px; left: -70px; }
  .bg-b1 { width: 185px; right: -65px; }

  /* ── Mascotas secciones oscuras: más pequeñas ── */
  .sm-bc, .sm-bd, .sm-rb { display: none; }
  .sm-bl { width: 170px; left: -50px; }
  .sm-br { width: 150px; right: -40px; }
  .sm-rl { width: 150px; left: -45px; }
  .sm-rr { width: 140px; right: -38px; }

  /* ── Section label: cabe en móvil ── */
  .section-label { gap: 10px; }
  .label-text {
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    white-space: normal;
    text-align: center;
    line-height: 1.1;
  }
  .section-desc { font-size: 11px; margin-bottom: 28px; }

  /* ── Menu section ── */
  .menu-section { padding: 44px 14px 32px; }
  #dulce { padding-top: 52px; padding-bottom: 52px; }

  /* ── Items lista ── */
  .item { gap: 10px; padding: 16px 0; }
  .item-meta { width: 34px; }
  .item-index { font-size: 0.85rem; }
  .item-name { font-size: 0.92rem; }
  .item-desc { font-size: 12px; }
  .item-price { font-size: 1rem; }
  .item-right { min-width: 68px; }
  .item-combo { font-size: 9px; }
  .item-tag { font-size: 9px; letter-spacing: 0.1em; }
  .item--featured { margin: 0; }
  .item--dark.item--featured { margin-left: 0; padding-left: 0; }

  /* ── Dulce grid: 2 columnas ── */
  .items-list--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .item--card { padding: 18px 14px 16px; }
  .item--card .item-name { font-size: 0.85rem; }
  .item--card .item-desc { font-size: 11px; }
  .card-num { font-size: 0.75rem; }

  /* ── Reviews ── */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 22px 18px; }
  .review-text { font-size: 13px; }

  /* ── Review CTA ── */
  .review-cta-banner { padding: 24px 16px; }
  .review-cta-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .review-cta-title { font-size: 1.1rem; }
  .review-cta-btn { width: 100%; justify-content: center; font-size: 12px; }

  /* ── Historia ── */
  .story-section { padding: 52px 16px; }
  .story-mascots-hero { margin-bottom: 24px; gap: 0; }
  .story-hero-pancake { width: 120px; margin-right: -12px; }
  .story-hero-burger  { width: 110px; }
  .story-lead { font-size: 1.1rem; }
  .story-body { font-size: 13.5px; }
  .story-founders { gap: 10px; }
  .founder-name { font-size: 12.5px; }
  .story-content { gap: 24px; }

  /* ── Footer ── */
  .site-footer { padding: 36px 16px 48px; }
  .footer-brand { font-size: 1.4rem; }
}

@media (min-width: 900px) {
  .items-list {
    border: 1px solid rgba(26,18,8,0.07);
    border-radius: var(--r);
    padding: 0 24px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
  }
  .menu-section--dark .items-list {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.06);
  }
  .item--featured { margin: 0; border-radius: 0; }
}
