/* =====================================================================
   AL VUELO · STYLES
   Restaurante de comida casera moderna · Bogotá
   Sistema visual: premium cálido · "Como en casa"
   ===================================================================== */


/* =====================================================================
   1. TOKENS · Variables del sistema
   ===================================================================== */
:root {
  /* --- Paleta oficial Al Vuelo --- */
  --paprika: #CD6C44;        /* Principal · logo, botones, acentos */
  --walnut: #462A08;         /* Tipografía oscura, fondos profundos */
  --emerald: #006637;        /* Acento natural · veggie */
  --crema: #F9EDE8;          /* Fondo base · reemplaza el blanco */
  --naranja: #F4D2BC;        /* Fondo cálido secundario */
  --arena: #FCE0AE;          /* Etiquetas, badges, acentos sobre oscuro */
  --lima: #F7F0AE;           /* Decorativo */
  --verde-claro: #EAFC84;    /* Fondo positivo · veggie */
  --menta: #AEEBD6;          /* Secundario · detalle */

  --line: rgba(70, 42, 8, 0.14);
  --line-strong: rgba(70, 42, 8, 0.22);
  --line-light: rgba(249, 237, 232, 0.25);

  /* --- Tipografía --- */
  --display: "Playfair Display", "Times New Roman", serif;
  --body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Courier New", monospace;

  /* --- Spacing · base 8 --- */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* --- Radios --- */
  --r-1: 4px; --r-2: 10px; --r-3: 18px; --r-pill: 999px;

  /* --- Sombras --- */
  --shadow-soft: 0 2px 8px rgba(70, 42, 8, 0.06);
  --shadow-card: 0 4px 16px rgba(70, 42, 8, 0.08);
  --shadow-lift: 0 8px 28px rgba(70, 42, 8, 0.14);

  /* --- Transiciones --- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 140ms var(--ease);
  --t-base: 240ms var(--ease);
  --t-slow: 380ms var(--ease);

  /* --- Layout --- */
  --wrap-max: 1180px;
  --pad-section-y: clamp(72px, 9vw, 120px);
  --pad-section-x: clamp(20px, 4vw, 48px);
}


/* =====================================================================
   2. BASE · Reset y body
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--body);
  background: var(--crema);
  color: var(--walnut);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }

/* Selección de texto */
::selection { background: var(--paprika); color: var(--crema); }

/* Foco accesible */
:focus-visible {
  outline: 2px solid var(--paprika);
  outline-offset: 3px;
  border-radius: var(--r-1);
}


/* =====================================================================
   3. TIPOGRAFÍA · Sistema utilitario
   ===================================================================== */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paprika);
  font-weight: 500;
}

.eyebrow--with-line {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.eyebrow--with-line::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.italic-accent {
  font-style: italic;
  color: var(--paprika);
}

.mono {
  font-family: var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}


/* =====================================================================
   4. NAVEGACIÓN
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 237, 232, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 16px var(--pad-section-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-5);
}

.nav__mark { display: flex; align-items: center; color: var(--walnut); }
.nav__mark svg { height: 26px; width: auto; }

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav__links a {
  opacity: 0.8;
  transition: opacity var(--t-fast), color var(--t-fast);
}

.nav__links a:hover { opacity: 1; color: var(--paprika); }

.nav__cta {
  background: var(--paprika);
  color: var(--crema);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  transition: background var(--t-fast), transform var(--t-fast);
}

.nav__cta:hover { background: var(--walnut); transform: translateY(-1px); }
.nav__cta svg { height: 16px; width: auto; fill: currentColor; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav { padding: 12px 18px; }
  .nav__mark svg { height: 22px; }
}


/* =====================================================================
   5. BOTONES
   ===================================================================== */
.btn {
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--paprika); color: var(--crema); }
.btn--primary:hover { background: var(--walnut); }

.btn--ghost { background: transparent; color: var(--walnut); border: 2px solid var(--walnut); }
.btn--ghost:hover { background: var(--walnut); color: var(--crema); }

.btn--ghost-light { background: transparent; color: var(--crema); border: 2px solid var(--crema); }
.btn--ghost-light:hover { background: var(--crema); color: var(--walnut); }

.btn--arena { background: var(--arena); color: var(--walnut); }
.btn--arena:hover { background: var(--crema); }

.btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }


/* =====================================================================
   6. SECCIÓN BASE · sec-label, sec-title, wrap
   ===================================================================== */
section {
  padding: var(--pad-section-y) var(--pad-section-x);
  border-top: 1px solid var(--line);
}

.wrap { max-width: var(--wrap-max); margin: 0 auto; }

.sec-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paprika);
  margin-bottom: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.sec-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.sec-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-7);
  max-width: 20ch;
}

.sec-title em { color: var(--paprika); font-style: italic; }

.sec-sub {
  font-size: 17px;
  line-height: 1.55;
  max-width: 56ch;
  margin: calc(var(--s-7) * -0.6) 0 var(--s-7);
  opacity: 0.82;
}


/* =====================================================================
   7. HERO · Variante Editorial (única oficial)
   ===================================================================== */
.hero {
  padding: clamp(72px, 10vw, 120px) var(--pad-section-x);
  background: var(--crema);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__copy { max-width: 56ch; }

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paprika);
  margin-bottom: var(--s-5);
}

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
}

.hero__title em { font-style: italic; color: var(--paprika); font-weight: 800; }

.hero__lede {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  max-width: 42ch;
  margin: var(--s-5) 0 var(--s-7);
  opacity: 0.85;
}

.hero__lede strong { color: var(--walnut); font-weight: 700; }

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-3);
  overflow: hidden;
  background: var(--naranja);
  box-shadow: var(--shadow-lift);
}

.hero__photo img,
.hero__photo .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: var(--paprika);
  color: var(--crema);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  transform: rotate(-5deg);
  box-shadow: var(--shadow-card);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
    padding-bottom: 64px;
    gap: var(--s-7);
  }
  .hero__photo { max-width: 380px; margin: 0 auto; }
}


/* =====================================================================
   8. PLACEHOLDER VISUAL · Cuando aún no hay foto real
   ===================================================================== */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, var(--naranja) 0%, var(--arena) 100%);
  color: var(--walnut);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--s-5);
  position: relative;
  overflow: hidden;
}

.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(70, 42, 8, 0.06) 1.2px, transparent 1.2px);
  background-size: 6px 6px;
  pointer-events: none;
}

.placeholder__icon {
  width: 28px;
  height: 28px;
  opacity: 0.45;
  position: relative;
}

.placeholder__label { position: relative; opacity: 0.7; }

.placeholder--dark {
  background: linear-gradient(135deg, var(--paprika), var(--walnut));
  color: var(--arena);
}

.placeholder--dark::before { background-image: radial-gradient(rgba(249, 237, 232, 0.08) 1.2px, transparent 1.2px); }


/* =====================================================================
   9. MENÚ DEL DÍA · Bloque destacado
   ===================================================================== */
.menu-today {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--walnut);
  color: var(--crema);
  border-radius: var(--r-3);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.menu-today__photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--paprika), var(--walnut));
  position: relative;
}

.menu-today__stamp {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--arena);
  color: var(--walnut);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  transform: rotate(-4deg);
  z-index: 2;
  box-shadow: var(--shadow-card);
}

.menu-today__info { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }

.menu-today__day {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--arena);
  margin-bottom: var(--s-3);
}

.menu-today__title {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  margin: 0 0 var(--s-5);
  letter-spacing: -0.015em;
}

.menu-today__courses {
  display: grid;
  gap: 10px;
  padding: var(--s-4) 0;
  border-top: 1px dashed rgba(249, 237, 232, 0.3);
  border-bottom: 1px dashed rgba(249, 237, 232, 0.3);
  margin-bottom: var(--s-5);
}

.course {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--s-3);
  font-size: 15px;
  line-height: 1.4;
  align-items: baseline;
}

.course__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arena);
  padding-top: 3px;
}

.menu-today__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.menu-today__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 64px);
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.menu-today__incl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--arena);
  text-align: right;
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 860px) {
  .menu-today { grid-template-columns: 1fr; }
}


/* =====================================================================
   10. TIERS DE PRECIO · 5 niveles de menú
   ===================================================================== */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: var(--s-5);
}

.tier {
  background: var(--crema);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--paprika);
}

.tier--featured {
  background: var(--walnut);
  color: var(--crema);
  border-color: var(--walnut);
}

.tier--featured .tier__label { color: var(--arena); }
.tier--featured .tier__price { color: var(--crema); }
.tier--featured .tier__includes { color: var(--arena); opacity: 0.85; }

.tier--paprika { background: var(--paprika); color: var(--crema); border-color: var(--paprika); }
.tier--paprika .tier__label { color: var(--arena); }
.tier--paprika .tier__price { color: var(--crema); }
.tier--paprika .tier__includes { color: var(--arena); opacity: 0.9; }

.tier__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paprika);
}

.tier__name {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}

.tier__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--walnut);
  margin-top: auto;
}

.tier__price small {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  display: block;
  opacity: 0.7;
  margin-top: 4px;
  letter-spacing: 0;
}

.tier__includes {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut);
  opacity: 0.6;
  line-height: 1.6;
  padding-top: var(--s-3);
  border-top: 1px dashed var(--line);
}

.tiers-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paprika);
  margin-top: var(--s-6);
  text-align: center;
  opacity: 0.75;
}


/* =====================================================================
   11. PLATOS POR DÍA · Grid semana
   ===================================================================== */
.plates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}

.plate {
  background: var(--crema);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.plate:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.plate__pic {
  aspect-ratio: 1;
  border-radius: var(--r-2);
  overflow: hidden;
  background: var(--naranja);
  position: relative;
}

.plate__pic img,
.plate__pic .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plate__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--walnut);
  color: var(--arena);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  z-index: 2;
}

.plate__day {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paprika);
}

.plate__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

.plate__name em { color: var(--paprika); font-style: italic; }

.plate__desc {
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.78;
}

@media (max-width: 1000px) { .plates { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .plates { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .plates { grid-template-columns: 1fr; } }


/* =====================================================================
   12. MANIFIESTO · Bloque paprika
   ===================================================================== */
.manifest {
  background: var(--paprika);
  color: var(--crema);
  padding: var(--pad-section-y) var(--pad-section-x);
  position: relative;
  overflow: hidden;
  border-top: 0;
}

.manifest::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(70, 42, 8, 0.07) 1.5px, transparent 1.5px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.manifest .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.manifest__sec-label { color: var(--arena); }
.manifest__sec-label::before { background: currentColor; }

.manifest__quote {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.manifest__quote em { color: var(--arena); font-style: italic; }

.manifest__quote::before {
  content: "\201C";
  color: var(--arena);
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.6em;
  line-height: 0.3;
  display: block;
}

.manifest__body { font-size: 16px; line-height: 1.65; opacity: 0.92; }
.manifest__body p { margin: 0 0 var(--s-4); }
.manifest__body p:last-of-type { margin-bottom: 0; }
.manifest__body strong { color: var(--arena); font-weight: 500; }

.manifest__signature {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: var(--s-5);
  color: var(--arena);
}

@media (max-width: 900px) { .manifest .wrap { grid-template-columns: 1fr; } }


/* =====================================================================
   13. INSTAGRAM GRID
   ===================================================================== */
.ig-section { background: var(--crema); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.ig-cell {
  aspect-ratio: 1;
  border-radius: var(--r-2);
  overflow: hidden;
  position: relative;
  background: var(--naranja);
  transition: transform var(--t-base);
}

.ig-cell:hover { transform: scale(1.02); }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; }

.ig-cell--text {
  background: var(--walnut);
  color: var(--crema);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 17px;
  line-height: 1.1;
}

.ig-cell--text-paprika { background: var(--paprika); }
.ig-cell--text-emerald { background: var(--emerald); }
.ig-cell--text-arena { background: var(--arena); color: var(--walnut); font-weight: 800; }

.ig-cell--mono {
  background: var(--paprika);
  color: var(--crema);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px;
  text-align: center;
}

.ig-cell--mono-walnut { background: var(--walnut); color: var(--arena); }

.ig-cta {
  margin-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
}

.ig-handle {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.ig-handle em { font-style: italic; color: var(--paprika); }

@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }


/* =====================================================================
   14. VISITA · Horarios + Mapa
   ===================================================================== */
.visit-section { background: var(--arena); border-top: 0; }

.visit {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.visit__info { display: flex; flex-direction: column; gap: var(--s-4); }

.visit__block {
  background: var(--crema);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  padding: var(--s-5);
}

.visit__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paprika);
  margin-bottom: var(--s-2);
}

.visit__v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.visit__v small {
  font-family: var(--body);
  font-weight: 400;
  font-size: 13px;
  display: block;
  opacity: 0.7;
  margin-top: 6px;
  letter-spacing: 0;
  line-height: 1.5;
}

.visit__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.visit__map {
  background: var(--menta);
  border-radius: var(--r-2);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

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


/* =====================================================================
   15. FAQ · Acordeón accesible
   ===================================================================== */
.faq { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-top: 1px solid var(--line);
  padding: var(--s-4) 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 6px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  gap: var(--s-4);
  color: var(--walnut);
  transition: color var(--t-fast);
}

.faq-q:hover { color: var(--paprika); }

.faq-q__plus {
  font-family: var(--mono);
  color: var(--paprika);
  font-size: 24px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--t-base);
  line-height: 1;
}

.faq-item[aria-expanded="true"] .faq-q__plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) var(--ease), padding-top var(--t-base) var(--ease);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

.faq-item[aria-expanded="true"] .faq-a {
  max-height: 360px;
  padding-top: 12px;
}

.faq-a strong { color: var(--paprika); font-weight: 600; }


/* =====================================================================
   16. CTA FINAL
   ===================================================================== */
.cta-final {
  background: var(--walnut);
  color: var(--crema);
  text-align: center;
  padding: var(--pad-section-y) var(--pad-section-x);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(249, 237, 232, 0.04) 1.5px, transparent 1.5px);
  background-size: 6px 6px;
  pointer-events: none;
}

.cta-final__inner { position: relative; max-width: 820px; margin: 0 auto; }

.cta-final h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  margin: 0 0 var(--s-4);
  letter-spacing: -0.025em;
}

.cta-final h2 em { color: var(--arena); font-style: italic; }

.cta-final p {
  max-width: 48ch;
  margin: 0 auto var(--s-6);
  font-size: 17px;
  opacity: 0.85;
  line-height: 1.55;
}

.cta-final .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* =====================================================================
   17. FOOTER
   ===================================================================== */
.footer {
  padding: var(--s-7) var(--pad-section-x);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: var(--s-4);
  background: var(--crema);
}

.footer__mark { display: flex; align-items: center; opacity: 1; color: var(--walnut); }
.footer__mark svg { height: 22px; width: auto; }

.footer__links { display: flex; gap: var(--s-5); flex-wrap: wrap; }
.footer__links a:hover { color: var(--paprika); }


/* =====================================================================
   18. FAB · Botón flotante WhatsApp en mobile
   ===================================================================== */
.fab-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background: var(--paprika);
  color: var(--crema);
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lift);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.fab-whatsapp:hover { transform: scale(1.04); }

.fab-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

@media (max-width: 900px) { .fab-whatsapp { display: inline-flex; } }


/* =====================================================================
   19. UTILIDADES
   ===================================================================== */
.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;
}

.divider-dashed {
  border: 0;
  border-top: 1px dashed var(--line);
  margin: var(--s-7) 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* =====================================================================
   20. MARQUEE STRIP · Magic UI Marquee
   ===================================================================== */
.marquee-strip {
  background: var(--walnut);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 0;
  border-bottom: 0;
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--walnut), transparent);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--walnut), transparent);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--arena);
  padding: 0 32px;
  flex-shrink: 0;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
}

.marquee-sep {
  color: var(--paprika);
  font-size: 12px;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
}



/* =====================================================================
   21. SHIMMER BUTTON · Magic UI Shimmer Button
   ===================================================================== */
.btn--shimmer {
  position: relative;
  overflow: hidden;
}

.btn--shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 80%
  );
  transform: translateX(-200%) skewX(-8deg);
  transition: transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.btn--shimmer:hover::after {
  transform: translateX(285%) skewX(-8deg);
}


/* =====================================================================
   22. ANIMATED GRADIENT TEXT · Hero title em
   ===================================================================== */
.hero__title em {
  font-style: italic;
  font-weight: 800;
  color: var(--paprika);
}


/* =====================================================================
   23. HERO BACKGROUND BLOB · Decorativo cálido
   ===================================================================== */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 58%;
  height: 130%;
  background: radial-gradient(
    ellipse 70% 60% at 65% 40%,
    rgba(252, 224, 174, 0.42) 0%,
    rgba(244, 210, 188, 0.22) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
  /* sin animación — blob decorativo estático */
}

.hero > * { position: relative; z-index: 1; }


/* =====================================================================
   24. FEATURED TIER GLOW · Magic UI Shine Border
   ===================================================================== */
.tier--featured {
  box-shadow:
    0 8px 32px rgba(205, 108, 68, 0.22),
    0 0 0 2px rgba(252, 224, 174, 0.40);
}

.tier--featured:hover {
  box-shadow:
    0 12px 40px rgba(205, 108, 68, 0.30),
    0 0 0 2px rgba(252, 224, 174, 0.60);
}


/* =====================================================================
   25. PLATE IMAGE ZOOM · Hover effect
   ===================================================================== */
.plate__pic { overflow: hidden; }

.plate__pic .placeholder,
.plate__pic img {
  transition: transform var(--t-slow) var(--ease);
}

.plate:hover .plate__pic .placeholder,
.plate:hover .plate__pic img {
  transform: scale(1.05);
}


/* =====================================================================
   26. NAV LINK UNDERLINE · Magic UI hover
   ===================================================================== */
.nav__links a {
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--paprika);
  border-radius: 1px;
  transition: width var(--t-base) var(--ease);
}

.nav__links a:hover::after { width: 100%; }


/* =====================================================================
   27. MANIFEST SECTION · Depth gradient overlay
   ===================================================================== */
.manifest::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 15% 55%, rgba(70, 42, 8, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 45% 70% at 92% 75%, rgba(249, 237, 232, 0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.manifest .wrap { position: relative; z-index: 1; }


/* =====================================================================
   28. VISIT BLOCKS · Hover lift + shimmer
   ===================================================================== */
.visit__block {
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.visit__block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(205, 108, 68, 0.04) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  pointer-events: none;
}

.visit__block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.visit__block:hover::after { opacity: 1; }


/* =====================================================================
   29. INSTAGRAM GRID · Enhanced hover with depth
   ===================================================================== */
.ig-cell {
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), z-index 0s;
}

.ig-cell:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-lift);
  z-index: 2;
  position: relative;
}


/* =====================================================================
   30. CTA FINAL · Animated gradient background
   ===================================================================== */
.cta-final {
  background: linear-gradient(135deg, var(--walnut) 0%, #2b1a05 45%, #3d2208 100%);
}


/* =====================================================================
   31. TIER CARDS · Hover radial glow effect
   ===================================================================== */
.tier {
  overflow: hidden;
}

.tier::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(205, 108, 68, 0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  pointer-events: none;
}

.tier:not(.tier--featured):not(.tier--paprika):hover::after { opacity: 1; }


/* =====================================================================
   32. MENU TODAY CARD · Subtle inner glow
   ===================================================================== */
.menu-today {
  position: relative;
}

.menu-today::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(252, 224, 174, 0.06) 0%,
    transparent 45%,
    rgba(205, 108, 68, 0.08) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.menu-today__info,
.menu-today__photo { position: relative; z-index: 2; }


/* =====================================================================
   33. FAQ · Improved answer styling
   ===================================================================== */
.faq-item {
  transition: background var(--t-base) var(--ease);
  border-radius: var(--r-1);
  padding-left: var(--s-3);
  padding-right: var(--s-3);
  margin-left: calc(var(--s-3) * -1);
  margin-right: calc(var(--s-3) * -1);
}

.faq-item[aria-expanded="true"] {
  background: rgba(205, 108, 68, 0.04);
}


/* =====================================================================
   34. HERO BADGE · Float animation
   ===================================================================== */
.hero__badge {
  /* sin animación continua — posición estática elegante */
}
