/* Paleta leída a ojo del logo real que mandó Alberto (crema marfil, tinta
   café muy oscura, terracota, oliva) — sigue sin ser el archivo real (llega
   pegado en el chat, no hay forma de extraerlo a disco desde ahí), así que
   el wordmark aquí es tipografía, no el PNG. En cuanto Alberto ponga el
   archivo en public/images/logo.png, sustituir `.lp-hero-marca`/
   `.lp-nav-marca` por un <img>. Ver MEMORY.md. */

:root {
  --crema: #f7efe0;
  --crema-suave: #fbf6ea;
  --tinta: #362a20;
  --tinta-suave: #5a4d3d;
  --terracota: #c1652e;
  --terracota-fuerte: #a8531f;
  --oliva: #74823f;
  --borde: #e6d8ba;
}

* { box-sizing: border-box; }

/* Para el <h1> real de SEO: el logo ya enseña la marca en pantalla, así
   que este encabezado existe para buscadores y lectores de pantalla, no
   para verse -no usar display:none/visibility:hidden, eso sí lo
   esconde de los dos-. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html, body {
  margin: 0; padding: 0;
  background: var(--crema);
  color: var(--tinta);
  font-family: "Poppins", -apple-system, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

a { color: inherit; }

.lp-btn {
  display: inline-block;
  background: var(--terracota);
  color: #fff9ef;
  text-decoration: none;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 16px;
  transition: background .15s ease, transform .1s ease;
}
.lp-btn:hover { background: var(--terracota-fuerte); }
.lp-btn:active { transform: scale(.97); }
.lp-btn-chico { padding: 10px 18px; font-size: 14px; }
.lp-btn-outline {
  background: transparent; color: var(--terracota); border: 2px solid var(--terracota);
  padding: 13px 26px;
}
.lp-btn-outline:hover { background: var(--terracota); color: #fff9ef; }

/* ---------- Nav ---------- */

.lp-nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; background: rgba(244, 234, 214, .92); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--borde);
}
.lp-nav-marca {
  font-family: "Playfair Display", serif; font-style: italic; font-weight: 600;
  font-size: 24px; color: var(--tinta);
}
.lp-nav-sub { font-family: "Poppins", sans-serif; font-style: normal; font-size: 11px;
  color: var(--oliva); display: block; letter-spacing: .12em; text-transform: uppercase; margin-top: -2px; }
/* ---------- Hero ---------- */

.lp-hero { text-align: center; padding: 48px 24px 56px; }
.lp-hero-logo-img {
  max-width: 340px; width: 78%; height: auto; margin: 0 auto 12px; display: block;
  border-radius: 20px;
}
.lp-hero-desc { max-width: 480px; margin: 0 auto 30px; font-size: 16px; color: var(--tinta-suave); line-height: 1.6; }
.lp-hero-botones { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

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

.lp-seccion { max-width: 720px; margin: 0 auto; padding: 20px 24px 64px; }
.lp-titulo-seccion {
  text-align: center; font-family: "Playfair Display", serif; font-style: italic;
  font-size: 32px; color: var(--tinta); margin: 0 0 32px;
}
.lp-cargando { text-align: center; color: var(--tinta-suave); }

/* ---------- Especial del día / menú de hoy ---------- */

.lp-especial {
  background: var(--crema-suave); border: 2px dashed var(--terracota);
  border-radius: 24px; padding: 32px 28px; text-align: center; margin-bottom: 28px;
}
.lp-especial-cinta {
  display: inline-block; background: var(--oliva); color: #fff9ef; font-size: 12px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 18px;
  border-radius: 999px; margin-bottom: 14px;
}
.lp-especial h3 {
  font-family: "Playfair Display", serif; font-style: italic; font-size: 34px;
  margin: 0 0 6px; color: var(--terracota-fuerte); line-height: 1.1;
}
.lp-especial .lp-especial-desc { color: var(--tinta-suave); font-size: 15px; margin: 0 0 18px; }
.lp-especial-precio {
  font-family: "Playfair Display", serif; font-style: italic; font-size: 40px;
  color: var(--terracota); margin-top: 10px;
}
.lp-especial-precio small { font-family: "Poppins", sans-serif; font-style: normal; font-size: 15px; color: var(--tinta-suave); display: block; }

.lp-otros-hoy { display: flex; flex-direction: column; gap: 10px; }
.lp-otro-item {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  background: var(--crema-suave); border: 1px solid var(--borde); border-radius: 14px; padding: 14px 18px;
}
.lp-otro-item .nombre { font-weight: 600; }
.lp-otro-item .categoria { font-size: 12px; color: var(--oliva); display: block; }
.lp-otro-item .precio { font-weight: 700; color: var(--terracota); }

.lp-vacio {
  text-align: center; background: var(--crema-suave); border: 1px dashed var(--borde);
  border-radius: 18px; padding: 30px; color: var(--tinta-suave);
}

/* ---------- Cómo pedir ---------- */

.lp-pasos-wrap { max-width: 900px; }
.lp-pasos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-paso { text-align: center; padding: 10px; }
.lp-paso-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--oliva); color: #fff9ef;
  font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.lp-paso h3 { font-size: 16px; margin: 0 0 6px; }
.lp-paso p { font-size: 14px; color: var(--tinta-suave); margin: 0; line-height: 1.5; }

/* ---------- Zona de reparto ---------- */

.lp-zona { text-align: center; }
.lp-zona p { font-size: 15px; color: var(--tinta-suave); line-height: 1.7; }

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

.lp-footer {
  background: var(--tinta); color: var(--crema-suave); text-align: center; padding: 48px 24px;
}
.lp-footer-marca { font-family: "Playfair Display", serif; font-style: italic; font-size: 26px; margin-bottom: 18px; }
.lp-footer-marca span { font-family: "Poppins", sans-serif; font-style: normal; font-size: 13px; color: #c9b48c; }
.lp-footer-nota { margin-top: 16px; font-size: 13px; color: #9c8a6b; }

@media (max-width: 640px) {
  .lp-hero-marca h1 { font-size: 46px; }
  .lp-pasos { grid-template-columns: 1fr; }
}
