/* ============================================================
   PKÑA — Sistema base + Hero
   Paleta y tipografía del brand book oficial (BB2023)
   ============================================================ */

@font-face {
  font-family: "Ostrich Sans";
  src: url("../assets/fonts/OstrichSans-Heavy.woff2?v=3") format("woff2"),
       url("../assets/fonts/OstrichSans-Heavy.woff?v=3") format("woff"),
       url("../assets/fonts/OstrichSans-Heavy.otf?v=3") format("opentype");
  font-weight: 800;
  font-display: block;
}

:root {
  /* Paleta oficial */
  --verde: #566246;
  --verde-osc: #444e36;
  --salvia: #a4c2a5;
  --crema: #f1f2eb;
  --crema-2: #fbfbf7;
  --gris: #d8dad3;
  --carbon: #4a4a48;
  --coral: #ff6666;

  /* Tipografía */
  --display: "Ostrich Sans", "Arial Narrow", sans-serif;
  --texto: "DM Sans", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--texto);
  color: var(--carbon);
  background: var(--crema);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--texto);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
  line-height: 1;
}
.btn:active { transform: scale(.97); }

.btn--wa { background: var(--verde); color: var(--crema); }
.btn--wa:hover { background: var(--verde-osc); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--crema); border-color: rgba(241,242,235,.6); }
.btn--ghost:hover { background: rgba(241,242,235,.12); border-color: var(--crema); }

.ico-wa { width: 20px; height: 20px; fill: currentColor; flex: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color .35s ease, box-shadow .35s ease, height .35s ease;
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.nav__logo { justify-self: start; }
.nav__cta { justify-self: end; }
.nav__logo-img { height: 40px; width: auto; transition: height .35s ease; }

.nav__links { display: flex; gap: 38px; justify-self: center; }
.nav__links a {
  font-family: var(--texto);
  color: var(--crema);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: .2px;
  position: relative;
  transition: color .25s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--coral); transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 10px 18px; font-size: .92rem; }

/* Estado al hacer scroll: barra crema sólida */
.nav--scrolled {
  background: var(--crema);
  box-shadow: 0 2px 18px rgba(74,74,72,.10);
  height: 64px;
}
.nav--scrolled .nav__links a { color: var(--carbon); }
.nav--scrolled .nav__logo-img { height: 34px; }

/* Botón de idioma ES | EN */
.nav__right { justify-self: end; display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  background: transparent;
  border: 1px solid rgba(241, 242, 235, .55);
  color: var(--crema);
  font-family: var(--texto);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.lang-toggle:hover { background: rgba(241, 242, 235, .15); }
.nav--scrolled .lang-toggle { color: var(--verde); border-color: rgba(86, 98, 70, .4); }
.nav--scrolled .lang-toggle:hover { background: rgba(86, 98, 70, .1); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-h) 24px 80px;
}

/* Capa de medios (placeholder hasta tener el video).
   Verde profundo + textura de azulejo, en línea con el brand book. */
.hero__media {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 20%, #6b774f 0%, #4d573c 45%, #353d29 100%);
  z-index: 0;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(241,242,235,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,242,235,.06) 1px, transparent 1px);
  background-size: 46px 46px;
}
.hero__video { width: 100%; height: 100%; object-fit: cover; }

.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(40,46,32,.35) 0%, rgba(40,46,32,.15) 40%, rgba(40,46,32,.55) 100%);
}

.hero__content { position: relative; z-index: 2; max-width: 860px; }

.hero__logo { height: clamp(140px, 17vw, 230px); width: auto; margin: 0 auto 24px; }

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  color: var(--crema);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: .5px;
  padding-top: .3em;
}
.hero__title .accent { color: var(--coral); }

.hero__subtitle {
  font-family: var(--texto);
  color: rgba(241,242,235,.9);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  margin: 22px auto 0;
  max-width: 540px;
}

.hero__actions {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Indicador de scroll */
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 26px; height: 42px;
  border: 2px solid rgba(241,242,235,.55); border-radius: 14px;
  display: flex; justify-content: center;
}
.hero__scroll span {
  width: 4px; height: 9px; margin-top: 7px; border-radius: 2px;
  background: var(--crema); animation: scrolldot 1.6s ease-in-out infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(-4px); }
  50% { opacity: 1; transform: translateY(4px); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ============================================================
   SECCIONES (base) + DIFERENCIADOR
   ============================================================ */
.section { padding: clamp(64px, 10vw, 130px) 0; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.overline {
  font-family: var(--texto);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--verde);
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 800;
  color: var(--carbon);
  font-size: clamp(2rem, 5.2vw, 3.7rem);
  line-height: .98;
  letter-spacing: .5px;
}
.section__lead {
  font-family: var(--texto);
  color: #6b665e;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-top: 18px;
}

.steps {
  margin-top: clamp(40px, 6vw, 66px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: var(--crema-2);
  border: 1px solid var(--gris);
  border-radius: 16px;
  padding: 26px 22px;
}
.step__num {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--salvia);
  display: block;
}
.step__title {
  font-family: var(--texto);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--carbon);
  margin: 14px 0 8px;
}
.step__desc { font-family: var(--texto); color: #6b665e; font-size: .98rem; }

.step--hl { background: var(--verde); border-color: var(--verde); }
.step--hl .step__num { color: rgba(241,242,235,.5); }
.step--hl .step__title { color: var(--crema); }
.step--hl .step__desc { color: rgba(241,242,235,.85); }

/* Reveal al hacer scroll */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in-view { opacity: 1; transform: none; }
.steps .step:nth-child(2) { transition-delay: .08s; }
.steps .step:nth-child(3) { transition-delay: .16s; }
.steps .step:nth-child(4) { transition-delay: .24s; }

/* ============================================================
   3 · NUESTRA HISTORIA (fondo verde)
   ============================================================ */
.historia {
  position: relative;
  background: var(--verde);
  overflow: hidden;
}
.historia::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(241,242,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,242,235,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.historia__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.ph-photo {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background: rgba(241,242,235,.07);
  border: 1px solid rgba(241,242,235,.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(241,242,235,.55);
  font-family: var(--texto);
  font-size: .9rem;
}

.historia__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}

.overline--light { color: var(--salvia); }
.section__title--light { color: var(--crema); }
.historia__p {
  font-family: var(--texto);
  color: rgba(241,242,235,.85);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  max-width: 540px;
  margin-top: 18px;
}
.historia__sign {
  font-family: var(--texto);
  font-weight: 600;
  color: var(--salvia);
  margin-top: 24px;
}

/* ============================================================
   4 · EL MENÚ DEL LOCAL (fondo crema)
   ============================================================ */
.menu-grid {
  margin-top: clamp(40px, 6vw, 60px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.menu-card {
  background: var(--crema-2);
  border: 1px solid var(--gris);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(74,74,72,.10); }
.menu-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--salvia);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(63,74,53,.55);
  overflow: hidden;
}
.menu-card__img img { width: 100%; height: 100%; object-fit: cover; }

/* Destacados (los más pedidos) */
.menu-grid--feat { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.menu-card--feat .menu-card__img { aspect-ratio: 16 / 10; }
.menu-card--feat .menu-card__name { font-size: 1.35rem; }
.menu-card__combo {
  font-family: var(--texto);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--carbon);
  line-height: 1.45;
}
.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--coral);
  color: #fff;
  font-family: var(--texto);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .3px;
  padding: 5px 12px;
  border-radius: 999px;
}
.menu-card__body { padding: 16px 18px 20px; }
.menu-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.menu-card__name {
  font-family: var(--texto);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--carbon);
}
.menu-card__price {
  font-family: var(--texto);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--verde);
  white-space: nowrap;
}
.menu-card__desc {
  font-family: var(--texto);
  color: #6b665e;
  font-size: .95rem;
  margin-top: 6px;
}

/* Combos especiales (solo texto) */
.combo-feat-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.combo-feat {
  position: relative;
  background: var(--crema-2);
  border: 1px solid var(--gris);
  border-radius: 16px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.combo-feat:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(74,74,72,.10); }
.combo-feat__badge {
  background: var(--coral);
  color: #fff;
  font-family: var(--texto);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .3px;
  padding: 5px 12px;
  border-radius: 999px;
}
.combo-feat__items {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: .5px;
  color: var(--carbon);
}
.combo-feat__items .plus { color: var(--coral); margin: 0 .12em; }

.menu-group {
  font-family: var(--texto);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--verde);
  margin: clamp(34px, 5vw, 52px) 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gris);
}

/* Franja de combos */
.combo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--verde);
  border-radius: 16px;
  padding: 22px 26px;
}
.combo-card__name { font-family: var(--texto); font-weight: 600; font-size: 1.2rem; color: var(--crema); }
.combo-card__desc { font-family: var(--texto); color: rgba(241,242,235,.82); font-size: .95rem; margin-top: 4px; }
.combo-card__price { font-family: var(--texto); font-weight: 600; font-size: 1.2rem; color: var(--crema); white-space: nowrap; }

/* Tacos individuales (lista compacta) */
.taco-list { max-width: 620px; }
.taco-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--gris);
}
.taco-row__info { display: flex; flex-direction: column; }
.taco-row__name { font-family: var(--texto); font-weight: 600; font-size: 1.05rem; color: var(--carbon); }
.taco-row__desc { font-family: var(--texto); color: #6b665e; font-size: .9rem; margin-top: 2px; }
.taco-row__price { font-family: var(--texto); font-weight: 600; color: var(--verde); white-space: nowrap; }

.menu-foot {
  margin-top: clamp(32px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.menu-foot__note { font-family: var(--texto); color: #6b665e; font-size: 1rem; }

.btn--outline {
  background: transparent;
  color: var(--verde);
  border-color: var(--verde);
}
.btn--outline:hover { background: var(--salvia); border-color: var(--verde); transform: translateY(-2px); }

/* ============================================================
   5 · TRES MANERAS DE DISFRUTARLO (fondo crema)
   ============================================================ */
.ways-grid {
  margin-top: clamp(40px, 6vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.way-card {
  position: relative;
  background: var(--crema-2);
  border: 1px solid var(--gris);
  border-radius: 16px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.way-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(74,74,72,.10); }
.way-card--hl { border: 2px solid var(--verde); }
.way-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--salvia);
  color: #3f4a35;
  margin-bottom: 8px;
}
.way-card__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.55rem;
  letter-spacing: .5px;
  color: var(--carbon);
}
.way-card__tag {
  font-family: var(--texto);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--verde);
}
.way-card__desc {
  font-family: var(--texto);
  color: #6b665e;
  font-size: .98rem;
  flex: 1;
}
.way-card .btn { margin-top: 14px; width: 100%; }
.way-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--coral);
  color: #fff;
  font-family: var(--texto);
  font-weight: 600;
  font-size: .72rem;
  padding: 4px 11px;
  border-radius: 999px;
}

/* ============================================================
   6 · EL KIT A CASA (producto estrella)
   ============================================================ */
.kit-star {
  margin-top: clamp(32px, 5vw, 50px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: var(--verde);
  border-radius: 20px;
  overflow: hidden;
}
.kit-star__media {
  position: relative;
  min-height: 340px;
  background: #4b5640;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(241,242,235,.5);
}
.kit-star__media::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(241,242,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,242,235,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.kit-star__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.kit-star__badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  background: var(--coral);
  color: #fff;
  font-family: var(--texto);
  font-weight: 600;
  font-size: .78rem;
  padding: 6px 14px;
  border-radius: 999px;
}
.kit-star__body {
  padding: clamp(28px, 4vw, 52px);
  color: var(--crema);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kit-star__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: .5px;
  color: var(--crema);
}
.kit-star__desc {
  font-family: var(--texto);
  color: rgba(241,242,235,.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 14px;
}
.kit-star__list {
  list-style: none;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.kit-star__list li {
  font-family: var(--texto);
  color: var(--crema);
  font-size: .98rem;
  position: relative;
  padding-left: 22px;
}
.kit-star__list li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
}
.kit-star .btn { margin-top: 26px; align-self: flex-start; }

.btn--wa-light { background: var(--crema); color: var(--verde); }
.btn--wa-light:hover { background: #fff; transform: translateY(-2px); }

.kit-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.kit-mini {
  background: var(--crema-2);
  border: 1px solid var(--gris);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.kit-mini__img {
  width: 190px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.kit-mini__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 600px) {
  .kit-mini { flex-direction: column; align-items: stretch; }
  .kit-mini__img { width: 100%; height: 200px; }
}
.kit-mini__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: .5px;
  color: var(--carbon);
}
.kit-mini__desc { font-family: var(--texto); color: #6b665e; font-size: .98rem; flex: 1; }
.kit-mini .btn { margin-top: 14px; }
.kit-mini--antojos { background: var(--salvia); border-color: var(--salvia); }
.kit-mini--antojos .kit-mini__desc { color: #3f4a35; }

/* ============================================================
   7 · CÓMO PREPARAR EL KIT (fondo verde)
   ============================================================ */
.prep {
  position: relative;
  overflow: hidden;
  background: var(--verde);
}
.prep::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(241,242,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,242,235,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.prep .container { position: relative; }
.prep__lead {
  font-family: var(--texto);
  color: rgba(241,242,235,.85);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-top: 18px;
}
.prep-grid {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.prep-step__num {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(241,242,235,.4);
  color: var(--crema);
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.prep-step__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: .5px;
  color: var(--crema);
}
.prep-step__desc {
  font-family: var(--texto);
  color: rgba(241,242,235,.8);
  font-size: .95rem;
  margin-top: 8px;
}
.prep-step__opt {
  font-family: var(--texto);
  text-transform: none;
  font-size: .58em;
  font-weight: 600;
  color: var(--salvia);
  letter-spacing: 0;
}
.prep-tip {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--texto);
  color: var(--crema);
  font-size: .98rem;
  background: rgba(241,242,235,.08);
  border: 1px solid rgba(241,242,235,.22);
  border-radius: 999px;
  padding: 10px 18px;
}
.prep-tip strong { color: var(--coral); font-weight: 600; }
.prep-grid .prep-step:nth-child(2) { transition-delay: .08s; }
.prep-grid .prep-step:nth-child(3) { transition-delay: .16s; }
.prep-grid .prep-step:nth-child(4) { transition-delay: .24s; }
.prep__cta { margin-top: clamp(32px, 5vw, 48px); }

/* ============================================================
   FRANJA · SLOGAN (brand breath)
   ============================================================ */
.statement {
  position: relative;
  overflow: hidden;
  background: var(--verde);
  padding: clamp(76px, 12vw, 150px) 0;
  text-align: center;
}
.statement::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(241,242,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,242,235,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.statement__text {
  position: relative;
  font-family: var(--display);
  text-transform: uppercase;
  color: var(--crema);
  font-size: clamp(2.2rem, 6.5vw, 5.2rem);
  line-height: .98;
  letter-spacing: 1px;
}

/* ============================================================
   8 · EL LOCAL — LA CONDESA (fondo crema)
   ============================================================ */
.local__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.local__media {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: var(--salvia);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #3f4a35;
  font-family: var(--texto);
  font-size: .9rem;
  overflow: hidden;
}
.local__desc {
  font-family: var(--texto);
  color: #6b665e;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 16px;
}

/* Carrusel */
.carousel { position: relative; border-radius: 18px; overflow: hidden; }
.carousel__track { display: flex; transition: transform .5s ease; }
.carousel__track img {
  min-width: 100%;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(241,242,235,.9);
  color: var(--verde);
  border: none;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease, transform .2s ease;
}
.carousel__btn:hover { background: #fff; }
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }
.carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}
.carousel__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(241,242,235,.55);
  cursor: pointer;
  padding: 0;
  transition: background-color .25s ease, width .25s ease, border-radius .25s ease;
}
.carousel__dots button.active { background: #fff; width: 22px; border-radius: 4px; }
.local__info {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.local__row { display: flex; flex-direction: column; gap: 3px; }
.local__label {
  font-family: var(--texto);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--verde);
}
.local__val { font-family: var(--texto); color: var(--carbon); font-size: 1rem; }
.local__text .btn { margin-top: 28px; }

/* ============================================================
   PKÑA REWARDS (fondo gris claro)
   ============================================================ */
.rewards { background: var(--gris); }
.rewards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.rewards__desc {
  font-family: var(--texto);
  color: #5e5a52;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 16px;
}
.rewards__desc strong { color: var(--coral); font-weight: 600; }
.rewards__list {
  list-style: none;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rewards__list li {
  font-family: var(--texto);
  color: var(--carbon);
  font-size: 1rem;
  position: relative;
  padding-left: 24px;
}
.rewards__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--verde);
}
.rewards__text .btn { margin-top: 28px; }
.rewards__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}
.rewards__media--wallet {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rewards__media--wallet img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
}

/* ============================================================
   9 · DELIVERY & COBERTURA (fondo verde)
   ============================================================ */
.delivery {
  position: relative;
  overflow: hidden;
  background: var(--verde);
}
.delivery::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(241,242,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,242,235,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.delivery .container { position: relative; }
.routes {
  margin-top: clamp(32px, 5vw, 44px);
  display: flex;
  flex-direction: column;
}
.route {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(241,242,235,.18);
}
.route:last-child { border-bottom: 1px solid rgba(241,242,235,.18); }
.route__day {
  flex: 0 0 130px;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: .5px;
  color: var(--crema);
}
.route__zones {
  font-family: var(--texto);
  color: rgba(241,242,235,.9);
  font-size: 1.02rem;
  line-height: 1.6;
}
.route--sat .route__day { color: var(--coral); }
.route--sat .route__zones { color: rgba(241,242,235,.75); font-style: italic; }
.delivery__note {
  font-family: var(--texto);
  color: rgba(241,242,235,.8);
  font-size: .98rem;
  margin-top: 24px;
}
.delivery__cta {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   11 · RESEÑAS (fondo crema)
   ============================================================ */
.rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.rating__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--carbon);
}
.rating__stars { color: var(--coral); display: inline-flex; gap: 3px; }
.rating__stars .star { width: 24px; height: 24px; }
.rating__src { font-family: var(--texto); color: #6b665e; font-size: 1rem; }

.reviews {
  margin-top: clamp(36px, 5vw, 52px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.review {
  background: var(--crema-2);
  border: 1px solid var(--gris);
  border-radius: 16px;
  padding: 24px;
}
.review__stars { color: var(--coral); display: flex; gap: 2px; margin-bottom: 14px; }
.review__stars .star { width: 16px; height: 16px; }
.review__quote {
  font-family: var(--texto);
  color: var(--carbon);
  font-size: 1.08rem;
  line-height: 1.55;
}
.review__by {
  display: block;
  margin-top: 14px;
  font-family: var(--texto);
  color: #8a857c;
  font-size: .85rem;
}
.resenas__cta { margin-top: clamp(32px, 5vw, 44px); }

/* ============================================================
   13 · PKÑA EVENTOS (próximamente · fondo verde)
   ============================================================ */
.eventos {
  position: relative;
  overflow: hidden;
  background: var(--verde);
  text-align: center;
}
.eventos::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(241,242,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,242,235,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.eventos__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eventos__badge {
  background: var(--coral);
  color: #fff;
  font-family: var(--texto);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}
.eventos__title { margin-top: 22px; }
.eventos__lead {
  font-family: var(--texto);
  color: rgba(241,242,235,.85);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 16px;
}
.eventos .btn { margin-top: 30px; }

/* ============================================================
   FOOTER (fondo verde profundo)
   ============================================================ */
.footer { background: #3f4a34; color: var(--crema); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr;
  gap: clamp(36px, 6vw, 80px);
  padding: clamp(56px, 8vw, 92px) 24px 44px;
}
.footer__logo { height: 54px; width: auto; }
.footer__tagline {
  font-family: var(--texto);
  color: rgba(241,242,235,.78);
  font-size: .98rem;
  line-height: 1.6;
  max-width: 320px;
  margin-top: 18px;
}
.footer__brand .btn { margin-top: 22px; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__col h4 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--crema);
  margin-bottom: 16px;
}
.footer__col a,
.footer__col p {
  display: block;
  font-family: var(--texto);
  color: rgba(241,242,235,.78);
  font-size: .95rem;
  text-decoration: none;
  margin-bottom: 11px;
  line-height: 1.5;
}
.footer__col a { transition: color .2s ease; cursor: pointer; }
.footer__col a:hover { color: var(--crema); }
.footer__bottom { border-top: 1px solid rgba(241,242,235,.16); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 24px;
}
.footer__bottom span { font-family: var(--texto); color: rgba(241,242,235,.55); font-size: .85rem; }

/* ============================================================
   INSTAGRAM (fondo crema)
   ============================================================ */
.instagram .section__lead strong { color: var(--coral); font-weight: 600; }
.ig-grid {
  margin-top: clamp(36px, 5vw, 52px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.ig-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .ig-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--salvia);
  display: block;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ig-tile__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(74, 74, 72, 0);
  opacity: 0;
  transition: opacity .3s ease, background-color .3s ease;
}
.ig-tile__icon svg { width: 34px; height: 34px; }
.ig-tile:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(74, 74, 72, .18); }
.ig-tile:hover img { transform: scale(1.07); }
.ig-tile:hover .ig-tile__icon { opacity: 1; background: rgba(74, 74, 72, .35); }
.ig-tile--feature {
  background: var(--coral);
  color: #fff;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  padding: 14px;
}
.ig-tile--feature:hover { background: #f25151; transform: translateY(-3px); }
.ig-feature__title { font-family: var(--display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .5px; line-height: 1.05; }
.ig-feature__sub { font-family: var(--texto); font-size: .82rem; opacity: .9; }
.ig-cta { margin-top: clamp(28px, 4vw, 40px); }

/* ============================================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--verde); color: var(--crema);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(68,78,54,.4);
  transition: transform .25s ease, background-color .25s ease;
}
.wa-float .ico-wa { width: 28px; height: 28px; }
.wa-float:hover { background: var(--verde-osc); transform: scale(1.06); }

/* Botón volver arriba (abajo a la izquierda) */
.to-top {
  position: fixed; left: 18px; bottom: 18px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--crema); color: var(--verde);
  border: 1px solid rgba(86,98,70,.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(68,78,54,.2);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background-color .25s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--verde); color: var(--crema); }
.to-top svg { width: 22px; height: 22px; }

/* ============================================================
   ANIMACIONES (reveal)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); animation: revealUp .8s ease forwards; }
.reveal--d1 { animation-delay: .15s; }
.reveal--d2 { animation-delay: .3s; }
.reveal--d3 { animation-delay: .45s; }
@keyframes revealUp { to { opacity: 1; transform: none; } }

/* El título del hero aparece SOLO con desvanecido (sin transform) para que
   ninguna capa de compositing recorte el tilde de la Ñ en iPhone (Safari/Chrome). */
.hero__title.reveal { transform: none; animation-name: heroFadeIn; }
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .prep-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .prep-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .ways-grid { grid-template-columns: 1fr; }
  .kit-star { grid-template-columns: 1fr; }
  .kit-star__media { min-height: 220px; }
}
@media (max-width: 640px) {
  .kit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .historia__grid { grid-template-columns: 1fr; }
  .ph-photo { aspect-ratio: 4 / 3; }
  .local__grid { grid-template-columns: 1fr; }
  .rewards__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta span { display: none; }
  .nav__cta { padding: 10px; border-radius: 50%; }
  .hero__logo { height: clamp(120px, 34vw, 160px); }
}
@media (max-width: 600px) {
  .menu-grid--feat { grid-template-columns: 1fr; }
  .combo-feat-grid { grid-template-columns: 1fr; }
  .route { flex-direction: column; gap: 6px; }
  .route__day { flex: none; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ====================== PRENSA · HAN HABLADO DE NOSOTROS ====================== */
.press { background: var(--gris); }

/* Destacado */
.press-feature {
  display: block;
  max-width: 860px;
  margin: 2.6rem auto 1.4rem;
  padding: 2.4rem clamp(1.6rem, 4vw, 3rem);
  background: var(--crema-2);
  border: 1px solid rgba(74, 74, 72, .1);
  border-radius: 18px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 30px rgba(74, 74, 72, .06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.press-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(74, 74, 72, .12);
}
.press-feature__badge {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: .42rem .9rem;
  background: var(--verde);
  color: var(--crema);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.press-feature__quote {
  margin: 0 auto 1.5rem;
  max-width: 640px;
  color: var(--carbon);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  line-height: 1.28;
  font-weight: 500;
}
.press-feature__quote em { color: var(--verde); font-style: italic; }
.press-feature__source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Nombre del medio (como "logo" tipográfico) */
.press-name {
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--verde);
  font-size: 1.02rem;
}
.press-feature__cta,
.press-card__cta {
  color: var(--coral);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
}

/* Grid de otros medios */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 860px;
  margin: 0 auto;
}
.press-card {
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  background: var(--crema-2);
  border: 1px solid rgba(74, 74, 72, .1);
  border-radius: 16px;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(74, 74, 72, .1);
}
.press-card__tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: .32rem .7rem;
  background: var(--salvia);
  color: var(--verde-osc);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.press-card__tag svg { width: 12px; height: 12px; }
.press-card__tag--note { background: var(--gris); color: var(--carbon); }
.press-card__quote {
  margin: 0 0 1.4rem;
  color: var(--carbon);
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 500;
  flex: 1;
}
.press-card__source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .press-grid { grid-template-columns: 1fr; }
  .press-feature__source { flex-direction: column; gap: .5rem; }
}

/* ====================== PÁGINA LEGAL (Aviso de Privacidad) ====================== */
.nav--solid {
  position: sticky;
  top: 0;
  background: var(--crema-2);
  border-bottom: 1px solid rgba(74, 74, 72, .1);
}
.nav--solid .nav__inner { justify-content: space-between; }
.legal-back {
  color: var(--verde);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
}
.legal-back:hover { color: var(--coral); }
.legal-back--bottom { display: inline-block; margin-top: 2.5rem; }

.legal {
  background: var(--crema);
  padding: clamp(2.5rem, 6vw, 5rem) 1.5rem clamp(3rem, 8vw, 6rem);
}
.legal__inner {
  max-width: 760px;
  margin: 0 auto;
  color: var(--carbon);
}
.legal__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  line-height: 1.02;
  color: var(--verde);
  margin: .3rem 0 .4rem;
  letter-spacing: .01em;
}
.legal__updated {
  color: rgba(74, 74, 72, .6);
  font-size: .9rem;
  margin-bottom: 2.4rem;
}
.legal h2 {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  color: var(--verde);
  margin: 2.4rem 0 .7rem;
  font-weight: 600;
}
.legal p { line-height: 1.7; margin: 0 0 1rem; }
.legal ul { margin: 0 0 1.2rem; padding-left: 1.2rem; line-height: 1.7; }
.legal li { margin-bottom: .5rem; }
.legal strong { color: var(--carbon); font-weight: 600; }
.legal a { color: var(--verde); }
.legal__consent {
  margin-top: 2.4rem;
  padding: 1.2rem 1.4rem;
  background: var(--crema-2);
  border-left: 3px solid var(--verde);
  border-radius: 8px;
  font-weight: 500;
}
.legal-blank {
  background: #fff4c2;
  color: #7a5b00;
  padding: .05em .35em;
  border-radius: 4px;
  font-style: italic;
  font-size: .92em;
}
