/* ===========================================================================
   OFELIA · Pizzería de horno a leña — hoja de estilos
   ---------------------------------------------------------------------------
   Identidad: noche de horno encendido. Fondos oscuros con calidez de madera,
   acentos de brasa (naranjas/ámbar), crema para el texto y arcos que evocan
   la boca del horno del logo. Tipografía: Fraunces (títulos), Figtree (texto)
   y Caveat (acentos manuscritos, eco de la cursiva del logo).
   =========================================================================== */

/* ------------------------------ Tokens ---------------------------------- */

:root {
  /* Fondos (de más profundo a más elevado) */
  --bg-0: #18110e;
  --bg-1: #201712;
  --bg-2: #291d16;
  --bg-3: #33241b;

  /* Texto */
  --cream: #f5ecdd;
  --cream-2: #d9c8b0;
  --muted: #a8917a;

  /* Acentos de fuego */
  --ember: #ff8a2e;
  --ember-deep: #d9541e;
  --flame: #ffb45e;
  --fire-grad: linear-gradient(135deg, #ffa04a 0%, #f0701f 55%, #d9541e 100%);

  /* Utilitarios */
  --line: rgba(245, 236, 221, 0.14);
  --line-soft: rgba(245, 236, 221, 0.08);
  --ok: #4ade80;
  --bad: #f87171;
  --wsp: #25d366;
  --wsp-deep: #189a4c;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 6px 22px rgba(0, 0, 0, 0.3);
  --container: 1140px;
  --header-h: 72px;
}

/* ------------------------------ Reset ------------------------------------ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--cream-2);
  background-color: var(--bg-0);
  /* Vetas cálidas muy sutiles, como paredes iluminadas por el horno */
  background-image:
    radial-gradient(1100px 500px at 85% -5%, rgba(240, 112, 31, 0.07), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(240, 112, 31, 0.05), transparent 55%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--flame);
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
  border-radius: 4px;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* ------------------------------ Botones ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease,
    background-color 0.18s ease, border-color 0.18s ease;
  will-change: transform;
}

.btn:active {
  transform: scale(0.97);
}

.btn--fire {
  background: var(--fire-grad);
  color: #23130a;
  box-shadow: 0 8px 24px rgba(224, 94, 23, 0.35);
}

.btn--fire:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(224, 94, 23, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--line);
}

.btn--ghost:hover {
  border-color: var(--ember);
  color: var(--flame);
  transform: translateY(-2px);
}

.btn--wsp {
  background: linear-gradient(135deg, #2fe273, var(--wsp-deep));
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(24, 154, 76, 0.35);
}

.btn--wsp:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.btn--wsp:disabled {
  filter: grayscale(0.7) brightness(0.6);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Botón de checkout fuera del horario de atención: rojo "Cerrado ahora". */
.btn--wsp.btn--closed {
  background: linear-gradient(135deg, #f87171, #b91c1c);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}

.btn--text {
  background: none;
  color: var(--muted);
  font-weight: 600;
}

.btn--text:hover {
  color: var(--bad);
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.06rem;
}

.btn--xl {
  padding: 1.15rem 2.6rem;
  font-size: 1.15rem;
}

/* --------------------------- Encabezado ---------------------------------- */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.topbar.is-scrolled,
.topbar--menu {
  background: rgba(24, 17, 14, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
}

.brand__logo {
  width: 58px;
  height: auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--cream);
}

.brand__sub {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--ember);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  color: var(--cream-2);
  font-weight: 600;
  font-size: 0.98rem;
  transition: color 0.18s ease;
}

.nav a:hover {
  color: var(--flame);
}

.nav .nav__cta {
  display: none; /* en desktop el CTA es el botón naranja del header */
}

.topbar__cta {
  padding: 0.62rem 1.3rem;
  font-size: 0.95rem;
}

/* Hamburguesa */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--cream);
}

/* Botón carrito (header de la carta) */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-2);
  color: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.cart-btn:hover {
  border-color: var(--ember);
}

.cart-btn__icon {
  font-size: 1.15rem;
}

.cart-btn__badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  background: var(--fire-grad);
  color: #23130a;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(224, 94, 23, 0.5);
}

.cart-btn__badge.is-hidden {
  display: none;
}

.cart-btn.bump {
  animation: bump 0.45s ease;
}

@keyframes bump {
  0% { transform: scale(1); }
  35% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* ------------------------------- Hero ------------------------------------ */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 3.5rem);
  padding-bottom: 4.5rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(720px 460px at 78% 62%, rgba(240, 112, 31, 0.16), transparent 65%),
    radial-gradient(500px 320px at 12% 10%, rgba(255, 180, 94, 0.07), transparent 60%);
  animation: glow 7s ease-in-out infinite alternate;
}

@keyframes glow {
  from { opacity: 0.75; }
  to { opacity: 1; }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
}

.hero__logo {
  width: min(230px, 55%);
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.5));
}

.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--ember);
  margin-bottom: 0.4rem;
}

.hero__title {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 0.5em;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--flame), var(--ember-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__desc {
  font-size: 1.1rem;
  max-width: 46ch;
  color: var(--cream-2);
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.1rem 0 1.6rem;
}

.hero__hours {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Estado abierto/cerrado */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--muted);
}

.status-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.status-pill.is-open {
  color: var(--ok);
  border-color: rgba(74, 222, 128, 0.35);
}

.status-pill.is-closed {
  color: var(--bad);
  border-color: rgba(248, 113, 113, 0.3);
}

/* Media del hero: arco de horno */
.hero__media {
  position: relative;
  display: grid;
  justify-items: center;
}

.arch {
  overflow: hidden;
  border-radius: 999px 999px var(--radius) var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.arch::after {
  /* segundo anillo, como los ladrillos alrededor de la boca del horno */
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed rgba(245, 236, 221, 0.28);
  border-radius: inherit;
  pointer-events: none;
}

.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch--hero {
  width: min(430px, 100%);
  aspect-ratio: 4 / 4.7;
}

.arch--photo {
  width: 100%;
  aspect-ratio: 4 / 4.4;
}

/* Sello circular flotante */
.hero__stamp {
  position: absolute;
  bottom: 6%;
  left: 2%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  gap: 2px;
  background: var(--bg-1);
  border: 1.5px dashed var(--ember);
  color: var(--flame);
  font-family: var(--font-script);
  font-size: 1.05rem;
  line-height: 1.15;
  box-shadow: var(--shadow-soft);
  animation: floaty 5s ease-in-out infinite;
}

.hero__stamp-icon {
  font-size: 1.5rem;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* --------------------------- Cinta / marquee ----------------------------- */

.ribbon {
  overflow: hidden;
  background: linear-gradient(90deg, var(--ember-deep), #a83b12 60%, var(--ember-deep));
  transform: rotate(-1deg);
  margin: 0 -12px;
  border-block: 1px solid rgba(0, 0, 0, 0.25);
}

.ribbon__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  padding: 0.72rem 0;
  animation: marquee 26s linear infinite;
}

.ribbon__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffe9d2;
  white-space: nowrap;
}

.ribbon__track i {
  font-style: normal;
  color: #ffc891;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----------------------------- Secciones --------------------------------- */

.section {
  padding: 5.5rem 0;
}

.kicker {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--ember);
  margin-bottom: 0.2rem;
}

.kicker--center {
  text-align: center;
}

.section__title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 0.8em;
}

.section__title--center {
  text-align: center;
}

/* ------------------------------ Nosotros --------------------------------- */

.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about__points {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  display: grid;
  gap: 0.7rem;
}

.about__points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--cream);
}

.about__points li span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  font-size: 1.2rem;
}

/* --------------------------- Características ----------------------------- */

.features {
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(240, 112, 31, 0.07), transparent 70%),
    var(--bg-1);
  border-block: 1px solid var(--line-soft);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.feature {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 46, 0.4);
  box-shadow: var(--shadow-soft);
}

.feature__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.1rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
  border-radius: 999px 999px 14px 14px; /* mini arco de horno */
  background: linear-gradient(160deg, var(--bg-3), var(--bg-1));
  border: 1px solid var(--line);
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4em;
}

.feature p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

/* ------------------------------ Galería ---------------------------------- */

.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
  margin-top: 2.4rem;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  min-height: 190px;
  margin: 0;
}

.tile--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tile--photo:hover img {
  transform: scale(1.04);
}

.tile--photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1.3rem 1rem;
  background: linear-gradient(transparent, rgba(12, 7, 5, 0.85));
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
}

.tile--wide {
  grid-column: span 4;
  aspect-ratio: 16 / 10;
}

.tile--sq {
  grid-column: span 2;
  aspect-ratio: 1 / 1;
}

.tile--half {
  grid-column: span 3;
  aspect-ratio: 16 / 10;
}

.tile--logo {
  grid-column: span 2;
  display: grid;
  place-items: center;
  background:
    radial-gradient(240px 200px at 50% 100%, rgba(255, 160, 74, 0.35), transparent 75%),
    linear-gradient(160deg, #7c2d0e, #451a09);
}

.tile--logo img {
  width: 62%;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
}

/* ------------------------------ Opiniones -------------------------------- */

.reviews-sec {
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(240, 112, 31, 0.06), transparent 70%),
    var(--bg-1);
  border-block: 1px solid var(--line-soft);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.reviews-summary__score {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
}

.reviews-summary__count {
  color: var(--muted);
  font-size: 0.95rem;
}

.stars {
  color: #e8b04b;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}

.stars--empty {
  color: rgba(245, 236, 221, 0.18);
}

.reviews {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 760px;
  margin-inline: auto;
}

.reviews__viewport {
  overflow: hidden;
  flex: 1;
}

.reviews__track {
  display: flex;
  transition: transform 0.45s ease;
}

.review {
  flex: 0 0 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.8rem 2rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.review__stars {
  margin-bottom: 0.7rem;
}

.review__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--cream);
}

.review__foot {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.review__avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--fire-grad);
  color: #23130a;
  font-weight: 800;
  font-size: 1.1rem;
}

.review__author {
  font-weight: 700;
  color: var(--cream);
  font-size: 0.98rem;
}

.review__date {
  color: var(--muted);
  font-size: 0.85rem;
}

.review__google {
  margin-left: auto;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.reviews-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(245, 236, 221, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-dot.is-active {
  background: var(--ember);
  transform: scale(1.25);
}

.reviews__more {
  text-align: center;
  margin: 1.8rem 0 0;
}

/* ------------------------------ Horarios --------------------------------- */

.hours {
  background: var(--bg-1);
  border-block: 1px solid var(--line-soft);
}

.hours__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.sched {
  list-style: none;
  margin: 0;
  padding: 1.6rem 1.8rem;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sched__row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.55rem 0;
}

.sched__row + .sched__row {
  border-top: 1px solid var(--line-soft);
}

.sched__day {
  font-weight: 700;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.sched__dots {
  flex: 1;
  border-bottom: 2px dotted rgba(245, 236, 221, 0.18);
  transform: translateY(-4px);
}

.sched__hours {
  color: var(--cream-2);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.sched__row--closed .sched__hours,
.sched__row--closed .sched__day {
  color: var(--muted);
  font-weight: 500;
}

.sched__row--today .sched__day,
.sched__row--today .sched__hours {
  color: var(--flame);
}

.sched__today-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--fire-grad);
  color: #23130a;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
}

/* ------------------------------ Ubicación -------------------------------- */

.place__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.place__addr {
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--cream);
  border-left: 3px solid var(--ember);
  padding-left: 1.1rem;
  margin: 1.2rem 0 1.6rem;
}

.place__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.place__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
}

.place__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(1.02);
}

/* ------------------------------ CTA final -------------------------------- */

.cta-band {
  padding: 5rem 0;
  background:
    radial-gradient(640px 340px at 50% 120%, rgba(240, 112, 31, 0.25), transparent 70%),
    var(--bg-1);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.cta-band__script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--ember);
  margin-bottom: 0.1rem;
}

.cta-band h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 1.2em;
}

/* ------------------------------- Footer ---------------------------------- */

.footer {
  background: #120c09;
  border-top: 1px solid var(--line-soft);
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.footer--slim {
  padding-top: 2.6rem;
}

.footer__inner {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.footer__brand img {
  margin-inline: auto;
  opacity: 0.95;
}

.footer__brand p {
  font-family: var(--font-script);
  color: var(--ember);
  font-size: 1.25rem;
  margin: 0.4rem 0 0;
}

.footer__text {
  color: var(--muted);
  margin: 0;
}

.footer__follow {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--ember);
  margin: 0.6rem 0 0.2rem;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 0.6rem 0;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--line);
  color: var(--cream);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.social-pill:hover {
  transform: translateY(-2px);
}

.social-pill--wsp:hover {
  border-color: var(--wsp);
  color: var(--wsp);
}

.social-pill--ig:hover {
  border-color: #e1306c;
  color: #f77bab;
}

.social-pill--fb:hover {
  border-color: #1877f2;
  color: #6aa9f7;
}

.footer__copy {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.8rem 0 0;
}

.footer__credit {
  color: rgba(168, 145, 122, 0.65);
  font-size: 0.82rem;
  margin: 0;
}

.footer__credit a {
  color: var(--cream-2);
  font-weight: 600;
}

/* ------------------------- WhatsApp flotante ------------------------------ */

.fab-wsp {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fe273, var(--wsp-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(24, 154, 76, 0.45);
  transition: transform 0.18s ease;
}

.fab-wsp:hover {
  transform: scale(1.08);
}

.fab-wsp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(47, 226, 115, 0.6);
  animation: pulse 2.4s ease-out infinite;
}

.fab-wsp--left {
  right: auto;
  left: 1.15rem;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ------------------------ Animaciones de scroll --------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ===========================================================================
   CARTA / PEDIDO
   =========================================================================== */

.page-menu main {
  padding-top: var(--header-h);
}

.menu-page {
  padding-top: 3rem;
  min-height: 70vh;
}

.menu-page__head {
  margin-bottom: 1.8rem;
}

.menu-page__lead {
  text-align: center;
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
}

/* Buscador */
.searchbox {
  position: relative;
  max-width: 560px;
  margin: 0 auto 1.4rem;
}

.searchbox__icon {
  position: absolute;
  left: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.65;
}

.searchbox input {
  width: 100%;
  padding: 0.9rem 1.2rem 0.9rem 2.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--bg-2);
  color: var(--cream);
  font-size: 1rem;
  transition: border-color 0.18s ease;
}

.searchbox input::placeholder {
  color: var(--muted);
}

.searchbox input:focus {
  outline: none;
  border-color: var(--ember);
}

/* Pestañas de categorías */
.cats {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.25rem 0.1rem 0.7rem;
  scrollbar-width: thin;
  scrollbar-color: var(--bg-3) transparent;
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  background: linear-gradient(var(--bg-0) 82%, transparent);
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--bg-2);
  color: var(--cream-2);
  font-weight: 700;
  font-size: 0.95rem;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease,
    transform 0.18s ease;
}

.cat-pill:hover {
  border-color: var(--ember);
  transform: translateY(-1px);
}

.cat-pill--on {
  background: var(--fire-grad);
  border-color: transparent;
  color: #23130a;
  box-shadow: 0 6px 18px rgba(224, 94, 23, 0.35);
}

.menu-page__note {
  color: var(--muted);
  font-size: 0.93rem;
  background: var(--bg-1);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  margin: 0.4rem 0 1.4rem;
}

/* Estados de carga */
.menu-state {
  text-align: center;
  color: var(--muted);
  padding: 3rem 0;
}

.menu-state--error {
  color: var(--bad);
}

.menu-state__detail {
  font-size: 0.88rem;
  opacity: 0.8;
}

.menu-state__hint {
  font-size: 0.88rem;
  color: var(--muted);
}

.spinner {
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--ember);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Grilla de productos */
.dishes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.3rem;
  padding-bottom: 4rem;
}

.dish {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.dish:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 46, 0.35);
  box-shadow: var(--shadow-soft);
}

.dish__media {
  aspect-ratio: 16 / 10;
  background: var(--bg-1);
}

.dish__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish__img--contain {
  object-fit: contain;
  padding: 0.8rem;
}

.dish__ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  background:
    radial-gradient(180px 130px at 50% 115%, rgba(240, 112, 31, 0.22), transparent 75%),
    linear-gradient(160deg, var(--bg-3), var(--bg-1));
}

.dish__ph span {
  filter: grayscale(0.15);
  opacity: 0.9;
}

.dish__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.2rem;
}

.dish__name {
  font-size: 1.22rem;
  margin-bottom: 0.25em;
}

.dish__desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.9em;
}

/* Chips de tamaño / variantes */
.dish__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.size-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--cream-2);
  font-size: 0.85rem;
  font-weight: 700;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.size-chip:hover {
  border-color: var(--ember);
}

.size-chip--on {
  background: rgba(255, 138, 46, 0.16);
  border-color: var(--ember);
  color: var(--flame);
}

.size-chip__sub {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.75;
}

.dish__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.dish__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--flame);
}

.dish__buy {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
}

.btn--add {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
}

/* Selector de cantidad */
.stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-1);
}

.stepper__btn {
  width: 38px;
  height: 100%;
  min-height: 38px;
  border: none;
  background: transparent;
  color: var(--cream);
  font-size: 1.15rem;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}

.stepper__btn:hover {
  background: rgba(255, 138, 46, 0.15);
  color: var(--flame);
}

.stepper__num {
  width: 40px;
  border: none;
  background: transparent;
  color: var(--cream);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
}

.stepper__num:focus {
  outline: none;
}

.stepper--sm .stepper__btn {
  width: 30px;
  min-height: 30px;
  font-size: 1rem;
}

.stepper--sm .stepper__num,
.stepper__num--ro {
  width: 32px;
  display: inline-grid;
  place-items: center;
  font-size: 0.95rem;
}

/* --------------------- Barra flotante del pedido ------------------------- */

.cart-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, 130%);
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: min(480px, calc(100% - 2rem));
  padding: 0.85rem 1.3rem;
  border: none;
  border-radius: 999px;
  background: var(--fire-grad);
  color: #23130a;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(224, 94, 23, 0.5);
  transition: transform 0.3s ease;
}

.cart-bar.is-visible {
  transform: translate(-50%, 0);
}

.cart-bar__icon {
  font-size: 1.2rem;
}

.cart-bar__total {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* --------------------------- Carrito (drawer) ---------------------------- */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(10, 6, 4, 0.65);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(430px, 100%);
  display: flex;
  flex-direction: column;
  background: var(--bg-1);
  border-left: 1px solid var(--line-soft);
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.5);
  transform: translateX(105%);
  transition: transform 0.3s ease;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.3rem;
  border-bottom: 1px solid var(--line-soft);
}

.drawer__title {
  font-size: 1.3rem;
  margin: 0;
}

.drawer__count {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem 1.3rem;
  scrollbar-width: thin;
  scrollbar-color: var(--bg-3) transparent;
}

.drawer__empty {
  text-align: center;
  color: var(--muted);
  padding: 2.5rem 0;
}

.drawer__empty-hint {
  font-size: 0.9rem;
  opacity: 0.8;
}

.lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.line {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 0.8rem;
  align-items: start;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}

.line__img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
}

.line__img--ph {
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-1));
}

.line__name {
  font-weight: 700;
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.3;
}

.line__variant {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--flame);
  background: rgba(255, 138, 46, 0.14);
  border-radius: 999px;
  padding: 0.05rem 0.5rem;
  margin-left: 0.15rem;
}

.line__unit {
  color: var(--muted);
  font-size: 0.83rem;
  margin: 0.15rem 0 0.5rem;
}

.line__ctrl {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.line__del {
  border: none;
  background: none;
  font-size: 1.05rem;
  opacity: 0.6;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.line__del:hover {
  opacity: 1;
  transform: scale(1.12);
}

.line__total {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--flame);
  font-size: 1.02rem;
  white-space: nowrap;
}

.drawer__foot {
  padding: 1.1rem 1.3rem 1.25rem;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0.55rem;
  background: var(--bg-0);
}

.totals {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.totals__row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.95rem;
}

.totals__row--total {
  color: var(--cream);
  font-weight: 800;
  font-size: 1.2rem;
  border-top: 1px dashed var(--line);
  padding-top: 0.5rem;
  margin-top: 0.3rem;
}

.totals__row--total span:last-child {
  font-family: var(--font-display);
  color: var(--flame);
}

/* --------------------------- Checkout (modal) ---------------------------- */

.sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sheet__panel {
  width: min(560px, 100%);
  max-height: min(92vh, 780px);
  display: flex;
  flex-direction: column;
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.sheet.is-open .sheet__panel {
  transform: none;
}

.sheet__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.05rem 1.2rem;
  border-bottom: 1px solid var(--line-soft);
}

.sheet__title {
  margin: 0 auto 0 0;
  font-size: 1.3rem;
}

.sheet__back {
  order: -1;
}

.sheet__body {
  overflow-y: auto;
  padding: 1.2rem 1.3rem 1.4rem;
  scrollbar-width: thin;
  scrollbar-color: var(--bg-3) transparent;
}

.summary {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.05rem;
  margin-bottom: 1.3rem;
  display: grid;
  gap: 0.35rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--cream-2);
}

.summary-row--total {
  border-top: 1px dashed var(--line);
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  font-weight: 800;
  color: var(--cream);
}

.summary-row--total span:last-child {
  font-family: var(--font-display);
  color: var(--flame);
  font-size: 1.1rem;
}

.checkout-form {
  display: grid;
  gap: 1.05rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field__label {
  font-weight: 700;
  color: var(--cream);
  font-size: 0.95rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--bg-2);
  color: var(--cream);
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.18s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ember);
}

.fulfillment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.fulfillment__opt {
  cursor: pointer;
}

.fulfillment__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fulfillment__opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--bg-2);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream-2);
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.fulfillment__opt input:checked + span {
  border-color: var(--ember);
  background: rgba(255, 138, 46, 0.14);
  color: var(--flame);
}

.fulfillment__opt input:focus-visible + span {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}

.fulfillment__hint {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.checkout-form__note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

/* --------------------------- Íconos SVG en línea -------------------------- */

.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.cart-btn__icon svg,
.cart-bar__icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.searchbox__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.cat-pill__icon {
  display: inline-flex;
}

.cat-pill__icon svg {
  width: 17px;
  height: 17px;
}

.dish__ph svg {
  width: 52px;
  height: 52px;
  color: rgba(255, 180, 94, 0.75);
}

.line__img--ph svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 180, 94, 0.8);
}

.line__del svg {
  display: block;
  width: 17px;
  height: 17px;
}

.feature__icon svg {
  width: 34px;
  height: 34px;
  color: var(--flame);
}

.about__points li span svg {
  width: 20px;
  height: 20px;
  color: var(--flame);
}

.hero__stamp-icon svg {
  display: block;
  width: 26px;
  height: 26px;
  margin-inline: auto;
}

.fulfillment__opt span svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.drawer__empty-ico {
  display: block;
}

.drawer__empty-ico svg {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 0.7rem;
  color: var(--muted);
}

/* ------------------------------ Genéricos -------------------------------- */

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--cream);
  font-size: 1rem;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.icon-btn:hover {
  border-color: var(--ember);
  color: var(--flame);
}

/* Toasts */
.toast-container {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  pointer-events: none;
}

.toast {
  background: var(--bg-3);
  border: 1px solid rgba(255, 138, 46, 0.45);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

.toast--error {
  border-color: rgba(248, 113, 113, 0.55);
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */

@media (max-width: 1024px) {
  .hero__inner {
    gap: 2rem;
  }

  .about__inner,
  .hours__inner,
  .place__inner {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: calc(var(--header-h) + 2rem);
    text-align: center;
  }

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

  .hero__logo {
    margin-inline: auto;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__status,
  .hero__actions {
    justify-content: center;
  }

  .hero__media {
    order: 2;
  }

  .arch--hero {
    width: min(360px, 88%);
    aspect-ratio: 4 / 4.2;
  }

  .about__inner,
  .hours__inner,
  .place__inner {
    grid-template-columns: 1fr;
  }

  .about__media {
    max-width: 430px;
    margin-inline: auto;
  }

  .mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile--wide,
  .tile--half {
    grid-column: span 2;
  }

  .tile--sq,
  .tile--logo {
    grid-column: span 1;
    min-height: 160px;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 45;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(24, 17, 14, 0.98);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav.is-open {
    max-height: 420px;
  }

  .nav a {
    padding: 0.95rem 1.5rem;
    border-top: 1px solid var(--line-soft);
  }

  .nav .nav__cta {
    display: block;
    color: var(--flame);
  }

  .nav-toggle {
    display: flex;
  }

  .topbar__cta {
    display: none;
  }

  .cart-btn__label {
    display: none;
  }

  .cart-btn {
    padding: 0.55rem 0.8rem;
  }
}

@media (min-width: 769px) {
  .cart-bar {
    display: none; /* en desktop alcanza con el botón del header */
  }
}

@media (max-width: 768px) {
  /* En la carta, la barra flotante del pedido ocupa el borde inferior:
     el WhatsApp flotante y los toasts se elevan para no quedar tapados. */
  .fab-wsp--left {
    bottom: 5.6rem;
  }

  .page-menu .toast-container {
    bottom: 6.4rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stamp {
    width: 100px;
    height: 100px;
    font-size: 0.95rem;
    left: 0;
  }

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

  .dishes {
    grid-template-columns: 1fr;
    padding-bottom: 6.5rem; /* espacio para la barra flotante del pedido */
  }

  .dish__buy {
    flex-wrap: wrap;
  }

  .btn--add {
    min-width: 100%;
  }

  .fab-wsp {
    width: 52px;
    height: 52px;
  }

  .place__map {
    aspect-ratio: 4 / 3.4;
  }

  /* En pantallas chicas se navega con los puntos; las flechas roban ancho. */
  .reviews__arrow {
    display: none;
  }

  .review {
    padding: 1.4rem 1.3rem 1.2rem;
  }

  .cta-band {
    padding: 3.5rem 0;
  }
}

/* ------------------------ Reducción de movimiento ------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
