/* =========================================================
   NAPLES — Estilo Napolitano · Sistema de diseño
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Paleta */
  --rojo-napoli: #A41E22;
  --rojo-fuego:  #C8362B;
  --carbon:      #1A1413;
  --carbon-2:    #2A201E;
  --crema:       #F6EFE3;
  --crema-2:     #EFE6D4;
  --blanco:      #FFFFFF;
  --verde-italia:#1E7A46;
  --dorado:      #C9A24B;
  --gris-humo:   #7C7068;

  /* Tipografías */
  --ff-display: "Fraunces", "Playfair Display", Georgia, serif;
  --ff-ui:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-script:  "Dancing Script", cursive;

  /* Tamaños */
  --fs-display-xl: clamp(2.6rem, 6vw + 1rem, 5.5rem);
  --fs-display-md: clamp(2rem, 3.4vw + 1rem, 3.6rem);
  --fs-display-sm: clamp(1.5rem, 2vw + 1rem, 2.2rem);
  --fs-lead: clamp(1.05rem, 0.3vw + 1rem, 1.2rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-kicker: 0.78rem;

  /* Layout */
  --maxw: 1240px;
  --gap: clamp(1rem, 2vw, 1.5rem);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(26,20,19,.08);
  --shadow-md: 0 14px 40px rgba(26,20,19,.14);
  --shadow-lg: 0 28px 60px rgba(26,20,19,.22);

  /* Transiciones */
  --t-fast: 180ms cubic-bezier(.2,.7,.3,1);
  --t-med:  280ms cubic-bezier(.2,.7,.3,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

/* Custom scrollbar (WebKit/Chromium/Edge/Safari) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--carbon); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--rojo-napoli), var(--dorado));
  border-radius: 10px;
  border: 2px solid var(--carbon);
}
::-webkit-scrollbar-thumb:hover { background: var(--rojo-fuego); }
/* Firefox */
html { scrollbar-color: var(--rojo-napoli) var(--carbon); scrollbar-width: thin; }
body {
  margin: 0;
  font-family: var(--ff-ui);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--carbon);
  background: var(--crema);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.15; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
:focus-visible {
  outline: 2.5px solid var(--dorado);
  outline-offset: 3px;
  border-radius: 6px;
  transition: outline-offset .15s ease;
}
::selection { background: var(--rojo-napoli); color: var(--blanco); }
::-moz-selection { background: var(--rojo-napoli); color: var(--blanco); }

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--rojo-napoli), var(--rojo-fuego) 50%, var(--dorado));
  z-index: 110;
  transition: width 80ms linear;
  box-shadow: 0 0 8px rgba(200,54,43,.4);
  border-radius: 0 3px 3px 0;
  pointer-events: none;
}

/* ---------- PAGE LOADER ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--carbon);
  z-index: 999;
  display: grid;
  place-items: center;
  opacity: 1;
  transition: opacity .5s ease, visibility .5s ease;
}
.page-loader img {
  width: 90px; height: 90px;
  object-fit: contain;
  animation: loaderPulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(164,30,34,.4));
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.85; }
  50% { transform: scale(1.05); opacity: 1; }
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }

/* ---------- BACK TO TOP ---------- */
.back-top {
  position: fixed;
  bottom: 6.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--carbon);
  color: #fff;
  display: grid; place-items: center;
  border: 1.5px solid rgba(201,162,75,.45);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, background .25s ease, box-shadow .25s ease;
  pointer-events: none;
  z-index: 79;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.back-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover {
  background: var(--rojo-napoli);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(164,30,34,.45);
  border-color: var(--dorado);
}
.back-top svg { stroke: currentColor; }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--cream { background: var(--crema); color: var(--carbon); }
.section--dark  { background: var(--carbon); color: var(--crema); }
.section--dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(200,54,43,.15), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(201,162,75,.10), transparent 60%);
  pointer-events: none;
}
.section > .container { position: relative; z-index: 1; }

.section__head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section__head--center { text-align: center; max-width: 760px; margin-inline: auto; }

/* ---------- TIPOGRAFÍA ---------- */
.kicker {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rojo-napoli);
  margin: 0 0 1rem;
  padding-bottom: .4rem;
  position: relative;
}
.kicker::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 2.2rem; height: 2px;
  background: var(--dorado);
}
.section__head--center .kicker::after { left: 50%; transform: translateX(-50%); }
.kicker--light { color: var(--dorado); }
.kicker--hero { color: #fff; }
.kicker--hero::after { background: #fff; }

.display.display--hero { font-size: calc(var(--fs-display-xl) * 0.85); }
.display.display--hero em { color: #fff; }

.display {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-display-xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
}
.display--md { font-size: var(--fs-display-md); }
.display--sm { font-size: var(--fs-display-sm); }
.display em {
  font-style: italic;
  color: var(--rojo-napoli);
  font-weight: 600;
}
.section--dark .display em { color: var(--rojo-fuego); }

.lead { font-size: var(--fs-lead); color: var(--gris-humo); max-width: 60ch; }
.section--dark .lead { color: rgba(246,239,227,.78); }

/* ---------- BOTONES ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1rem; }

.btn--primary { background: var(--rojo-napoli); color: #fff; box-shadow: 0 10px 22px rgba(164,30,34,.25); }
.btn--primary:hover { background: var(--rojo-fuego); box-shadow: 0 14px 30px rgba(200,54,43,.32); }

.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.section--cream .btn--ghost { color: var(--carbon); border-color: rgba(26,20,19,.4); }
.section--cream .btn--ghost:hover { background: rgba(26,20,19,.05); border-color: var(--carbon); }

/* ---------- NAVBAR ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background var(--t-med), padding var(--t-med), box-shadow var(--t-med);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo { display: flex; align-items: center; gap: .7rem; color: #fff; }
.nav__badge {
  width: 48px; height: 48px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
  transition: transform var(--t-fast);
}
.nav__logo:hover .nav__badge { transform: rotate(-6deg) scale(1.05); }
.nav.is-scrolled .nav__badge { width: 42px; height: 42px; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__wordmark strong {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .14em;
}
.nav__wordmark em {
  font-family: var(--ff-script);
  font-style: normal;
  font-size: .85rem;
  color: var(--dorado);
  margin-top: 2px;
}

.nav__menu { display: flex; gap: 1.5rem; align-items: center; }
.nav__menu a {
  font-size: .95rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: .3rem 0;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--rojo-fuego);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast);
}
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__menu a.is-active { color: var(--dorado); }
.nav__menu a.is-active::after { transform: scaleX(1); background: var(--dorado); }

.nav__cta { padding: .65rem 1.1rem; font-size: .9rem; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 8px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* scrolled */
.nav.is-scrolled {
  background: rgba(26,20,19,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: .6rem 0;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,20,19,.55) 0%, rgba(26,20,19,.35) 40%, rgba(26,20,19,.85) 100%),
    radial-gradient(60% 50% at 50% 40%, rgba(200,54,43,.18), transparent 70%);
}
.hero__inner {
  text-align: center;
  padding: clamp(7rem, 12vw, 10rem) 0 6rem;
  max-width: 900px;
}
.hero h1.display { color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.hero__sub { font-size: var(--fs-lead); color: rgba(255,255,255,.92); margin: 0 auto 2rem; max-width: 50ch; }
.hero__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(420px, 70vw);
  max-height: 58svh;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 14px 40px rgba(0,0,0,.55));
  transform-origin: center center;
}
.hero__logo,
.hero__logo.reveal,
.hero__logo.reveal.is-visible { transform: scale(2); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.hero__sign {
  margin-top: 2.2rem;
  font-family: var(--ff-script);
  font-size: 1.6rem;
  color: var(--dorado);
  font-weight: 600;
}

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; border-radius: 2px;
  background: #fff;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ---------- STATS ---------- */
.stats {
  background: var(--carbon-2);
  color: var(--crema);
  padding: 2rem 0;
  border-top: 1px solid rgba(201,162,75,.18);
  border-bottom: 1px solid rgba(201,162,75,.18);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stats__item { text-align: center; }
.stats__item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  font-weight: 700;
  color: var(--dorado);
  line-height: 1;
}
.stats__item span {
  font-size: .85rem;
  color: rgba(246,239,227,.7);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- TWO COL ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.two-col--reverse .two-col__media { order: -1; }
.two-col__media { position: relative; }
.two-col__media img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.badge-gold, .badge-red {
  position: absolute;
  bottom: 1rem; left: 1rem;
  padding: .5rem .9rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.badge-gold { background: var(--dorado); color: var(--carbon); }
.badge-red  { background: var(--rojo-napoli); color: #fff; }

.micro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.micro-grid li {
  padding: 1.1rem;
  background: var(--blanco);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,75,.18);
}
.micro-grid svg { width: 26px; height: 26px; color: var(--rojo-napoli); margin-bottom: .5rem; }
.micro-grid h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.micro-grid p { font-size: .9rem; color: var(--gris-humo); margin: 0; }

.nosotros__sign {
  margin-top: 1.5rem;
  font-family: var(--ff-script);
  font-size: 1.5rem;
  color: var(--rojo-napoli);
  font-weight: 600;
}

#nosotros .two-col__media { transform: scale(0.9); transform-origin: center center; }

.featured .two-col__media { transform: scale(0.9); transform-origin: center center; }
.featured .two-col__media img {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center center;
}

.franchise .two-col__media img {
  object-fit: cover;
  object-position: center center;
}

/* ---------- BENEFITS ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.benefit {
  position: relative;
  padding: 2rem 1.6rem 1.6rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,75,.22);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}
.benefit:hover {
  transform: translateY(-6px);
  border-color: var(--dorado);
  background: rgba(255,255,255,.07);
}
.benefit__num {
  position: absolute; top: .8rem; right: 1.2rem;
  font-family: var(--ff-display);
  font-size: 4.05rem;
  font-weight: 700;
  color: rgba(201,162,75,.18);
  line-height: 1;
}
.benefit h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  margin: 0 0 .5rem;
  color: var(--blanco);
  position: relative;
}
.benefit p { color: rgba(246,239,227,.78); font-size: .95rem; margin: 0; position: relative; }

/* ---------- MENU GRID ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.menu-card {
  background: var(--blanco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,75,.18);
  display: flex; flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(26,20,19,.18);
  border-color: rgba(201,162,75,.5);
}
.menu-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--crema-2);
}
.menu-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.menu-card:hover .menu-card__media img { transform: scale(1.07); }
.menu-card__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--rojo-napoli); color: #fff;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .65rem; border-radius: 999px;
}
.menu-card__body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex; flex-direction: column; flex: 1;
}
.menu-card__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; margin-bottom: .4rem;
}
.menu-card__name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.menu-card__price {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rojo-napoli);
  white-space: nowrap;
}
.menu-card__desc {
  font-size: .92rem;
  color: var(--gris-humo);
  flex: 1; margin-bottom: 1rem;
}
.menu-card .btn { align-self: flex-start; }
.menu__note {
  margin-top: 2rem;
  text-align: center;
  font-size: .85rem;
  color: var(--gris-humo);
  font-style: italic;
}

/* ---------- FEATURED (Producto estrella) ---------- */
.featured .bullets {
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: .65rem;
}
.featured .bullets li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.02rem;
  color: rgba(246,239,227,.92);
}
.featured .bullets li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--dorado);
  font-size: 1.1rem;
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.4rem 1.6rem;
  background: var(--blanco);
  border-radius: var(--radius);
  border: 1px solid rgba(201,162,75,.2);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med);
}
.step:hover { transform: translateY(-6px); }
.step__num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rojo-napoli);
  display: block;
  line-height: 1;
  margin-bottom: .5rem;
}
.step h3 { font-family: var(--ff-display); font-size: 1.2rem; margin-bottom: .3rem; }
.step p { color: var(--gris-humo); font-size: .94rem; margin: 0; }

.channels {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
.channel {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.4rem;
  background: var(--carbon);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform var(--t-fast), background var(--t-fast);
}
.channel:hover { background: var(--rojo-napoli); transform: translateY(-3px); }
.channel--lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.channel--lg .wa-ico { width: 24px; height: 24px; }

/* ============ LOCALES — diseño premium ============ */

/* Sección con decoración sutil */
#locales {
  position: relative;
  overflow: hidden;
}
#locales::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(201,162,75,.05) 1px, transparent 1px),
    radial-gradient(rgba(164,30,34,.05) 1px, transparent 1px);
  background-size: 32px 32px, 56px 56px;
  background-position: 0 0, 16px 16px;
  opacity: .6;
  z-index: 0;
}
#locales > .container { position: relative; z-index: 1; }

.locales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ---------- Local card ---------- */
.local-card {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(201,162,75,.22);
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.5rem;
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), border-color .35s ease, box-shadow .35s ease, background .35s ease;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.local-card::before {
  /* Acento superior rojo/dorado */
  content: "";
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--rojo-napoli), var(--dorado));
  border-radius: 0 0 4px 4px;
  opacity: .85;
}
.local-card::after {
  /* Glow sutil al hacer hover */
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: radial-gradient(120% 80% at 50% 0%, rgba(164,30,34,.18), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: -1;
}
.local-card:hover {
  transform: translateY(-6px);
  border-color: var(--dorado);
  box-shadow: 0 22px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(201,162,75,.15) inset;
}
.local-card:hover::after { opacity: 1; }

/* Top row: status + NP */
.local-card__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.local-card__status {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #7BD389;
  padding: .35rem .7rem .35rem .6rem;
  border-radius: 999px;
  background: rgba(123,211,137,.08);
  border: 1px solid rgba(123,211,137,.25);
}
.local-card__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7BD389;
  position: relative;
  box-shadow: 0 0 0 0 rgba(123,211,137,.6);
  animation: dotPulseGreen 2.2s ease-out infinite;
}
@keyframes dotPulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(123,211,137,.6); }
  100% { box-shadow: 0 0 0 10px rgba(123,211,137,0); }
}
.local-card__np {
  width: 56px; height: 56px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(164,30,34,.35));
  transition: transform var(--t-fast);
}
.local-card:hover .local-card__np { transform: rotate(-8deg) scale(1.08); }

.local-card__name {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 .25rem;
}
.local-card__zona {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dorado);
  font-weight: 600;
  margin: 0;
}
.local-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,75,.4), transparent);
  margin: 1rem 0 1rem;
}
.local-card__row {
  display: flex; gap: .65rem; align-items: flex-start;
  color: rgba(246,239,227,.85);
  font-size: .94rem;
  margin-bottom: .55rem;
}
.local-card__row:last-of-type { margin-bottom: 0; }
.local-card__row svg {
  width: 18px; height: 18px;
  color: var(--dorado);
  flex-shrink: 0;
  margin-top: 2px;
}

.local-card__actions {
  display: flex; gap: .55rem; margin-top: 1.3rem; flex-wrap: wrap;
}
.local-card__actions .btn { padding: .6rem 1.1rem; font-size: .88rem; gap: .35rem; }
.local-card__actions .btn svg { width: 14px; height: 14px; }

/* ---------- Upcoming section ---------- */
.upcoming-head { margin-top: 4rem; margin-bottom: 2rem; }
.upcoming-head .display { color: var(--crema); }
.upcoming-sub {
  font-family: var(--ff-script);
  font-size: 1.25rem;
  color: var(--dorado);
  margin: .4rem 0 0;
}

/* ---------- Coming-soon card variant ---------- */
.local-card--soon {
  border-style: dashed;
  border-color: rgba(201,162,75,.4);
  background: linear-gradient(155deg, rgba(201,162,75,.05) 0%, rgba(255,255,255,.01) 100%);
}
.local-card--soon::before {
  background: linear-gradient(90deg, var(--dorado), rgba(201,162,75,.4));
}
.local-card--soon .local-card__np {
  filter: drop-shadow(0 4px 12px rgba(201,162,75,.4)) grayscale(.3) brightness(.85);
  opacity: .85;
}
.local-card__status--soon {
  color: var(--dorado);
  background: rgba(201,162,75,.08);
  border-color: rgba(201,162,75,.3);
}
.local-card__dot--soon {
  background: var(--dorado);
  animation: dotPulseGold 2.2s ease-out infinite;
}
@keyframes dotPulseGold {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,75,.6); }
  100% { box-shadow: 0 0 0 10px rgba(201,162,75,0); }
}
.local-card__soon-text {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px dashed rgba(201,162,75,.2);
  font-family: var(--ff-script);
  font-size: 1.25rem;
  color: var(--dorado);
  text-align: center;
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,162,75,.22);
  box-shadow: var(--shadow-md);
}
.map iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(.2); }

/* ---------- FRANQUICIA ---------- */
.value-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}
.value-card {
  background: var(--blanco);
  border: 1px solid rgba(201,162,75,.2);
  padding: 1.4rem 1.4rem 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med);
}
.value-card:hover { transform: translateY(-4px); }
.value-card h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  margin-bottom: .2rem;
}
.value-card p { font-size: .9rem; color: var(--gris-humo); margin: 0; }

/* ---------- GALLERY ---------- */
.gallery-swiper { padding-bottom: 3rem; }
.gallery-swiper .swiper-slide {
  width: 320px; height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.gallery-swiper .swiper-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease;
}
.gallery-swiper .swiper-slide:hover img { transform: scale(1.08); }
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  color: var(--dorado);
  --swiper-navigation-size: 28px;
}
.gallery-swiper .swiper-pagination-bullet { background: var(--dorado); }
.gallery-swiper .swiper-pagination-bullet-active { background: var(--rojo-fuego); }

/* ---------- TESTIMONIOS ---------- */
.testi-swiper { padding-bottom: 3rem; }
.testi-card {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,75,.18);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testi-card__stars { color: var(--dorado); font-size: 1.1rem; letter-spacing: .15em; margin-bottom: 1rem; }
.testi-card__text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--carbon);
  margin-bottom: 1rem;
}
.testi-card__author {
  font-size: .9rem;
  color: var(--gris-humo);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.testi-swiper .swiper-pagination-bullet { background: var(--rojo-napoli); }

/* ---------- FAQ ---------- */
.faq__wrap { max-width: 820px; margin: 0 auto; }
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  background: var(--blanco);
  border: 1px solid rgba(201,162,75,.22);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item__btn {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  transition: color var(--t-fast);
}
.faq-item__btn:hover { color: var(--rojo-napoli); }
.faq-item__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--crema);
  color: var(--rojo-napoli);
  font-size: 1.2rem; font-weight: 700;
  transition: transform var(--t-fast), background var(--t-fast);
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--rojo-napoli); color: #fff; }
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med) ease;
}
.faq-item__body > p {
  padding: 0 1.3rem 1.2rem;
  color: var(--gris-humo);
  font-size: .96rem;
  margin: 0;
}

/* ---------- CONTACTO ---------- */
.contact-list { display: grid; gap: 1.2rem; margin-top: 1.5rem; }
.contact-list li { display: grid; gap: .2rem; }
.contact-list span {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dorado);
  font-weight: 600;
}
.contact-list a, .contact-list p {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}
.contact-list a:hover { color: var(--rojo-fuego); }

.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,75,.22);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label { display: grid; gap: .35rem; }
.contact-form span {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(246,239,227,.85);
}
.contact-form span em { color: var(--rojo-fuego); font-style: normal; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .75rem .9rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,162,75,.3);
  border-radius: var(--radius-sm);
  color: #fff;
  font: inherit;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--dorado);
  background: rgba(255,255,255,.1);
}
.contact-form select option { background: var(--carbon); }
.contact-form__full { grid-column: 1 / -1; }
.contact-form .btn { grid-column: 1 / -1; justify-self: start; }
.contact-form__msg {
  grid-column: 1 / -1;
  margin: 0;
  font-size: .9rem;
  color: var(--dorado);
}
.contact-form__msg.is-error { color: var(--rojo-fuego); }
.contact-form__msg.is-ok { color: #7BD389; }

/* ---------- FOOTER ---------- */
.footer { background: #0F0B0A; color: rgba(246,239,227,.78); padding-top: 4rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand p { font-size: .95rem; max-width: 32ch; }
.footer__logo { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; color: #fff; }
.footer__sign {
  font-family: var(--ff-script);
  font-size: 1.4rem;
  color: var(--dorado);
}
.footer h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--dorado);
  margin-bottom: 1rem;
  letter-spacing: .04em;
}
.footer ul li { margin-bottom: .5rem; }
.footer ul a { font-size: .92rem; }
.footer ul a:hover { color: var(--rojo-fuego); }
.footer__bottom {
  border-top: 1px solid rgba(201,162,75,.18);
  padding: 1.4rem 0;
}
.footer__bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer__bottom p { margin: 0; font-size: .82rem; color: rgba(246,239,227,.5); }
.footer__credit em {
  font-family: var(--ff-script);
  font-style: normal;
  color: var(--dorado);
  font-size: 1rem;
}

/* ---------- WhatsApp icon helper ---------- */
.wa-ico { flex-shrink: 0; filter: drop-shadow(0 1px 1px rgba(0,0,0,.15)); }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(37,211,102,.45), inset 0 1px 0 rgba(255,255,255,.25);
  z-index: 80;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wa-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 18px 40px rgba(37,211,102,.55); }
.wa-float .wa-ico { width: 34px; height: 34px; filter: drop-shadow(0 2px 3px rgba(0,0,0,.25)); }
.wa-float__pulse {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.2s ease-out infinite;
  opacity: 0;
}
@keyframes waPulse {
  0%   { transform: scale(0.85); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,11,10,.94);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1.8rem;
  display: grid; place-items: center;
}
.lightbox__close:hover { background: var(--rojo-napoli); }

/* ---------- STORE PICKER MODAL ---------- */
.store-modal {
  position: fixed; inset: 0;
  background: rgba(15,11,10,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 1.2rem;
}
.store-modal.is-open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.store-modal__card {
  background: var(--crema);
  border-radius: var(--radius);
  padding: 2rem clamp(1.2rem, 3vw, 2rem);
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,162,75,.3);
  max-height: 92vh;
  overflow-y: auto;
}
.store-modal__close {
  position: absolute;
  top: .8rem; right: .8rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--carbon);
  color: #fff;
  font-size: 1.4rem;
  transition: background var(--t-fast), transform var(--t-fast);
}
.store-modal__close:hover { background: var(--rojo-napoli); transform: rotate(90deg); }

.store-modal__sub {
  font-size: .95rem;
  color: var(--gris-humo);
  margin: .3rem 0 1.4rem;
}

.store-modal__list {
  display: grid;
  gap: .7rem;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(201,162,75,.3);
  border-radius: var(--radius-sm);
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  color: var(--carbon);
}
.store-btn:hover {
  transform: translateY(-2px);
  border-color: var(--rojo-napoli);
  box-shadow: var(--shadow-sm);
}
.store-btn__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
}
.store-btn__icon svg { width: 36px; height: 36px; filter: drop-shadow(0 2px 4px rgba(37,211,102,.25)); }
.store-btn__info {
  flex: 1;
  display: flex; flex-direction: column;
  gap: .15rem;
}
.store-btn__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--carbon);
  line-height: 1.2;
}
.store-btn__zona {
  font-size: .85rem;
  color: var(--gris-humo);
}
.store-btn__arrow {
  font-size: 1.6rem;
  color: var(--rojo-napoli);
  font-weight: 300;
  transition: transform var(--t-fast);
}
.store-btn:hover .store-btn__arrow { transform: translateX(4px); }

/* ---------- ANIMATIONS REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.2,.7,.3,1), transform 800ms cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger automático para hijos consecutivos */
.menu-grid .reveal:nth-child(1), .benefits .reveal:nth-child(1), .locales-grid .reveal:nth-child(1), .steps .reveal:nth-child(1) { transition-delay: 0ms; }
.menu-grid .reveal:nth-child(2), .benefits .reveal:nth-child(2), .locales-grid .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: 90ms; }
.menu-grid .reveal:nth-child(3), .benefits .reveal:nth-child(3), .locales-grid .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: 180ms; }
.menu-grid .reveal:nth-child(4), .benefits .reveal:nth-child(4), .locales-grid .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: 270ms; }
.menu-grid .reveal:nth-child(5), .benefits .reveal:nth-child(5) { transition-delay: 360ms; }
.menu-grid .reveal:nth-child(6), .benefits .reveal:nth-child(6) { transition-delay: 450ms; }

/* Card hover refinements globales */
.menu-card, .step, .benefit, .local-card, .value-card { will-change: transform; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .benefits, .menu-grid, .locales-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- NAV BACKDROP (mobile) ---------- */
.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,11,10,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: opacity var(--t-med), visibility var(--t-med);
}
.nav__backdrop.is-visible { opacity: 1; visibility: visible; }
.nav__menu-cta { display: none; }

@media (max-width: 768px) {
  /* ====== NAVBAR MOBILE ====== */
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86%, 380px);
    background: linear-gradient(180deg, var(--carbon) 0%, #0F0B0A 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 5.5rem 1.75rem 2rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.7,.3,1);
    box-shadow: -10px 0 40px rgba(0,0,0,.5);
    overflow-y: auto;
    z-index: 100;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu a:not(.btn) {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201,162,75,.12);
    color: rgba(246,239,227,.92);
    display: block;
  }
  .nav__menu a:not(.btn)::after { display: none; }
  .nav__menu a:not(.btn):hover,
  .nav__menu a:not(.btn).is-active { color: var(--dorado); padding-left: .35rem; }
  .nav__menu-cta {
    display: inline-flex;
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    padding: .95rem 1.4rem;
    font-size: 1rem;
  }
  .nav__menu-cta::after { display: none; }

  .nav__burger { display: flex; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__cta { display: none; }

  /* ====== LAYOUT ====== */
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col--reverse .two-col__media { order: 0; }
  .two-col__media img { aspect-ratio: 4/3; }
  /* Cancel the scale-down on mobile - keeps cards readable */
  #nosotros .two-col__media,
  .featured .two-col__media,
  .franchise .two-col__media { transform: none; }

  .benefits, .menu-grid, .locales-grid, .steps, .micro-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .value-cards { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 1.4rem; }

  .gallery-swiper .swiper-slide { width: 78vw; height: 360px; }

  /* ====== HERO MOBILE ====== */
  .hero__ctas { flex-direction: column; width: 100%; max-width: 320px; margin-inline: auto; margin-top: 1.25rem; }
  .hero__ctas .btn { width: 100%; }
  .hero__logo,
  .hero__logo.reveal,
  .hero__logo.reveal.is-visible { transform: scale(1.7); }
  .hero__sign { font-size: 1.35rem; margin-top: 1.8rem; }

  /* ====== FLOATING BUTTONS ====== */
  .wa-float {
    width: 58px; height: 58px;
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: 1rem;
  }
  .wa-float .wa-ico { width: 32px; height: 32px; }
  .back-top {
    width: 44px; height: 44px;
    bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 70px);
    right: 1.15rem;
  }

  /* ====== STORE MODAL ====== */
  .store-modal__card { padding: 1.5rem 1.1rem; max-height: 90svh; }
  .store-btn { padding: .9rem 1rem; gap: .8rem; }
  .store-btn__name { font-size: 1rem; }

  /* ====== FAQ ====== */
  .faq-item__btn { padding: .95rem 1.1rem; font-size: 1.02rem; }
  .faq-item__body > p { padding: 0 1.1rem 1.1rem; font-size: .95rem; }

  /* ====== LOCAL CARDS ====== */
  .local-card { padding: 1.4rem 1.3rem 1.3rem; }
  .local-card__name { font-size: 1.3rem; }
  .local-card__actions .btn { flex: 1; min-width: 0; justify-content: center; }

  /* ====== FORM INPUTS (prevent iOS zoom on focus) ====== */
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 16px; }

  /* ====== SECTION RHYTHM ====== */
  .section { padding: clamp(3rem, 8vw, 4.5rem) 0; }
  .section__head { margin-bottom: 2rem; }

  /* ====== SCROLL PROGRESS — more visible on mobile ====== */
  .scroll-progress { height: 3px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  .hero__inner { padding-top: 6rem; padding-bottom: 4rem; }
  .btn { padding: .8rem 1.2rem; font-size: .92rem; min-height: 44px; }
  .btn--lg { padding: .95rem 1.4rem; font-size: 1rem; min-height: 48px; }
  .section { padding: 3rem 0; }

  /* Display sizes — tighter on tiny screens */
  .display { font-size: clamp(2rem, 8vw, 2.6rem); }
  .display.display--hero { font-size: clamp(1.8rem, 7vw, 2.3rem); }

  /* Stats — adjust on tiny screens */
  .stats__item strong { font-size: 1.7rem; }
  .stats__item span { font-size: .72rem; }

  /* Menu cards — better mobile presentation */
  .menu-card__head { flex-wrap: wrap; gap: .25rem; }
  .menu-card__name { font-size: 1.25rem; }
  .menu-card__desc { font-size: .9rem; }
  .menu-card .btn { width: 100%; justify-content: center; }

  /* Steps */
  .step { padding: 1.6rem 1.2rem 1.4rem; }
  .step__num { font-size: 2rem; }
  .step h3 { font-size: 1.1rem; }

  /* Benefit cards */
  .benefit { padding: 1.6rem 1.3rem 1.3rem; }
  .benefit h3 { font-size: 1.15rem; }
  .benefit__num { font-size: 3.2rem; }

  /* Two-col tighter */
  .two-col { gap: 1.5rem; }
  .two-col__media img { border-radius: 14px; }

  /* Featured bullets */
  .featured .bullets li { font-size: .95rem; }

  /* Channel button full width */
  .channel--lg { width: 100%; justify-content: center; padding: .95rem 1.3rem; }

  /* FAQ tighter */
  .faq-item__btn { font-size: .98rem; padding: .9rem 1rem; }
  .faq-item__body > p { padding: 0 1rem 1rem; font-size: .92rem; }

  /* Hero logo — slightly smaller on tiny screens */
  .hero__logo,
  .hero__logo.reveal,
  .hero__logo.reveal.is-visible { transform: scale(1.5); }
  .hero__sign { font-size: 1.2rem; }

  /* Floating buttons — tight to edges on tiny */
  .wa-float { width: 54px; height: 54px; right: .9rem; }
  .wa-float .wa-ico { width: 30px; height: 30px; }
  .back-top { width: 40px; height: 40px; right: 1rem; bottom: calc(max(0.9rem, env(safe-area-inset-bottom)) + 64px); }

  /* Tap targets — ensure 44px min for accessibility */
  .nav__menu a:not(.btn) { padding: 1.1rem 0; }

  /* Contact form */
  .contact-form { padding: 1.2rem; gap: .85rem; }
  .contact-list a, .contact-list p { font-size: 1rem; }
}

/* ====== TABLET LANDSCAPE / LARGER MOBILE ====== */
@media (min-width: 481px) and (max-width: 768px) {
  .menu-grid, .benefits, .locales-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====== PREVENT HORIZONTAL SCROLL ====== */
html, body { overflow-x: hidden; max-width: 100vw; }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bg img { animation: none; }
  .page-loader { display: none; }
}

/* ---------- TAP HIGHLIGHT (touch devices) ---------- */
@media (hover: none) {
  .menu-card:hover, .step:hover, .benefit:hover, .local-card:hover, .value-card:hover { transform: none; }
}
