/* ============================================================
   HUERTA CHINÉN · LANDING — estilos del sitio
   Construido sobre huerta-chinen-tokens.css (Design System v1.0.0)
   Nozoe Studio · 2026
   Regla de oro: solo variables --hch-*, nunca HEX crudos.
   ============================================================ */

/* ───────── Reset / base ───────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--hch-surface-base);
  color: var(--hch-text-primary);
  font-family: var(--hch-font-text);
  min-height: 100vh;
  transition: background var(--hch-dur-base) var(--hch-ease-out),
              color var(--hch-dur-base) var(--hch-ease-out);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--hch-container-default);
  margin: 0 auto;
  padding-left: clamp(16px, 5vw, 48px);
  padding-right: clamp(16px, 5vw, 48px);
}
.section { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ───────── Tipografía de marca ───────── */
.display {
  font-family: var(--hch-font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.92;
  margin: 0;
}
.hch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hch-font-text);
  font-weight: var(--hch-fw-semibold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hch-eyebrow);
  margin: 0;
}
.hch-eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--hch-accent-warm);
  flex-shrink: 0;
}
.hch-eyebrow--center { justify-content: center; }

/* ───────── Botón (componente del DS) ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--hch-size-2);
  font-family: var(--hch-font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--hch-btn-radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  outline: none;
  transition: background var(--hch-dur-fast) var(--hch-ease-out),
              color var(--hch-dur-fast) var(--hch-ease-out),
              border-color var(--hch-dur-fast) var(--hch-ease-out),
              transform var(--hch-dur-base) var(--hch-ease-out),
              box-shadow var(--hch-dur-fast) var(--hch-ease-out);
}
.btn--sm { height: var(--hch-btn-h-sm); padding: 0 var(--hch-btn-px-sm); font-size: 15px; }
.btn--md { height: var(--hch-btn-h-md); padding: 0 var(--hch-btn-px-md); font-size: 18px; }
.btn--lg { height: var(--hch-btn-h-lg); padding: 0 var(--hch-btn-px-lg); font-size: 22px; }

.btn--primary   { background: var(--hch-surface-cta); color: var(--hch-text-on-accent); }
.btn--primary:hover   { background: var(--hch-surface-cta-hover); transform: translateY(-2px); }
.btn--warm      { background: var(--hch-accent-warm); color: var(--hch-text-on-accent); }
.btn--warm:hover      { background: var(--hch-accent-warm-hover); transform: translateY(-2px); }
.btn--whatsapp  { background: var(--hch-whatsapp); color: var(--hch-white); }
.btn--whatsapp:hover  { background: var(--hch-whatsapp-hover); transform: translateY(-2px); }
.btn--secondary { background: transparent; color: var(--hch-text-primary); border-color: var(--hch-border-strong); }
.btn--secondary:hover { background: var(--hch-text-primary); color: var(--hch-surface-base); }
.btn--ghost     { background: transparent; color: var(--hch-text-primary); }
.btn--ghost:hover     { background: var(--hch-surface-warm); }
.btn:focus-visible { box-shadow: var(--hch-shadow-focus); }

/* ───────── Sello "40 años" · estampa de doble anillo ───────── */
.sello {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 94px; height: 94px;
  border-radius: 50%;
  border: 2px solid var(--hch-accent);
  color: var(--hch-accent);
  text-align: center;
}
.sello::before { /* anillo interior · da profundidad de estampa */
  content: ""; position: absolute; inset: 4.5px; border-radius: 50%;
  border: 1px solid var(--hch-accent); opacity: 0.5;
}
.sello b { display: block; font-family: var(--hch-font-display); font-size: 43px; line-height: 0.74; letter-spacing: 0.01em; }
.sello small {
  position: relative; margin-top: 4px; padding-top: 5px;
  font-family: var(--hch-font-text); font-weight: var(--hch-fw-bold);
  font-size: 9.5px; letter-spacing: 0.26em; text-indent: 0.26em; line-height: 1;
}
.sello small::before { /* filete divisor sobre "AÑOS" */
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 17px; height: 1.5px; background: var(--hch-accent); opacity: 0.65;
}

/* ───────── Header ───────── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--hch-z-overlay);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: clamp(10px, 2vw, 20px) clamp(16px, 5vw, 48px);
  pointer-events: none;
}
.site-header a, .site-header > div { pointer-events: auto; }
.site-header__logo { width: clamp(92px, 10.5vw, 142px); height: auto; object-fit: contain; }
[data-theme="light"] .site-header__logo { filter: drop-shadow(0 4px 12px rgba(26,23,20,0.20)); }
[data-theme="dark"]  .site-header__logo { filter: drop-shadow(0 6px 16px rgba(0,0,0,0.45)); }
.header__controls { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 18px); }

.lang-switch {
  display: flex; align-items: center; gap: 3px; padding: 3px;
  background: var(--hch-surface-raised); border: 1px solid var(--hch-border-subtle);
  border-radius: var(--hch-radius-md); box-shadow: var(--hch-shadow-sm);
}
.lang-switch button {
  font-family: var(--hch-font-text); font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  padding: 7px 13px; border-radius: var(--hch-radius-sm); border: none; cursor: pointer;
  background: transparent; color: var(--hch-text-tertiary); line-height: 1;
}
.lang-switch button[aria-pressed="true"] { background: var(--hch-text-primary); color: var(--hch-surface-base); }

.theme-toggle {
  width: 40px; height: 40px; border-radius: var(--hch-radius-md);
  border: 1px solid var(--hch-border-subtle); background: var(--hch-surface-raised);
  box-shadow: var(--hch-shadow-sm); color: var(--hch-text-primary);
  cursor: pointer; font-size: 18px; line-height: 1; display: inline-grid; place-items: center;
}

/* ───────── Hero ───────── */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--hch-carbon-900);
}
.hero__slides { position: absolute; inset: 0; overflow: hidden; background: var(--hch-carbon-900); }
.hero__slides img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1);
  transition: opacity 1500ms var(--hch-ease-out), transform 6000ms var(--hch-ease-out);
}
.hero__slides img.is-active { opacity: 1; transform: scale(1.06); }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,23,20,0.55) 0%, rgba(26,23,20,0.20) 38%, rgba(26,23,20,0.88) 100%);
}
.hero__inner { position: relative; width: 100%; padding-top: clamp(36px, 7vw, 92px); padding-bottom: clamp(36px, 7vw, 92px); }
.hero__eyebrow { color: var(--hch-accent-warm); line-height: 1.45; }
.hero__title { font-size: clamp(56px, 11vw, 138px); line-height: 0.85; color: var(--hch-papel-50); margin-top: 20px; text-wrap: balance; }
.hero__subtitle { font-size: clamp(16px, 2.1vw, 20px); line-height: 1.6; color: var(--hch-papel-200); max-width: 560px; margin: 18px 0 26px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.status-pill {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(26,23,20,0.5); border: 1px solid rgba(250,248,244,0.2); backdrop-filter: blur(6px);
}
.status-pill__label { font-size: 13px; font-weight: 600; color: var(--hch-papel-100); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.status-dot--open   { background: var(--hch-state-success); box-shadow: 0 0 0 4px rgba(46,125,91,0.22); }
.status-dot--closed { background: var(--hch-state-warning); box-shadow: 0 0 0 4px rgba(198,139,23,0.22); }

/* ───────── Trust bar ───────── */
.trust { background: var(--hch-surface-raised); border-bottom: 1px solid var(--hch-border-divider); }
.trust__inner {
  display: flex; flex-wrap: wrap; gap: 14px clamp(24px, 5vw, 56px);
  align-items: center; justify-content: center; padding: 18px 0;
}
.trust__item { display: flex; align-items: baseline; gap: 9px; }
.trust__value { font-family: var(--hch-font-display); font-size: 26px; letter-spacing: 0.02em; color: var(--hch-text-primary); line-height: 1; }
.trust__label { font-size: 13px; color: var(--hch-text-tertiary); }

/* ───────── Historia ───────── */
.historia__inner { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 72px); align-items: center; }
.historia__media { flex: 1 1 320px; position: relative; min-width: 280px; }
.historia__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--hch-radius-xl); box-shadow: var(--hch-shadow-lg); }
.historia__sello {
  position: absolute; right: -12px; bottom: -16px; display: grid; place-items: center;
  width: 104px; height: 104px; border-radius: 50%; background: var(--hch-surface-base); box-shadow: var(--hch-shadow-md);
}
.historia__body { flex: 1 1 400px; min-width: 300px; }
.historia__title { font-size: clamp(34px, 5.5vw, 60px); color: var(--hch-text-primary); margin-top: 12px; }
.historia__body p { font-size: 16px; line-height: 1.65; color: var(--hch-text-secondary); max-width: 52ch; }
.timeline { margin-top: 28px; display: flex; flex-direction: column; }
.timeline__row { display: flex; gap: 18px; }
.timeline__year { font-family: var(--hch-font-display); font-size: 28px; letter-spacing: 0.02em; color: var(--hch-accent-warm); min-width: 72px; line-height: 1.1; }
.timeline__text { border-left: 2px solid var(--hch-border-subtle); padding: 0 0 22px 20px; flex: 1; }
.timeline__text p { font-size: 14.5px; line-height: 1.55; color: var(--hch-text-secondary); margin: 2px 0 0; max-width: none; }

/* ───────── Carta ───────── */
.carta { background: var(--hch-surface-sunken); }
.carta__head { text-align: center; max-width: 640px; margin: 0 auto 8px; }
.carta__title { font-size: clamp(34px, 5.5vw, 60px); color: var(--hch-text-primary); margin-top: 12px; }
.carta__stack { display: flex; flex-direction: column; gap: clamp(20px, 3.2vw, 32px); margin-top: clamp(28px, 4vw, 44px); }

/* ═════════ LA PIZARRA · menú del día (sección destacada) ═════════ */
.pizarra {
  /* paleta de tiza, local a la pizarra */
  --slate-1: #2a2521;            /* centro del slate (zona recién borrada) */
  --slate-2: #141110;            /* bordes del slate */
  --chalk: #faf8f4;
  --chalk-dim: rgba(247, 243, 237, 0.86);
  --chalk-soft: rgba(247, 243, 237, 0.60);
  --chalk-faint: rgba(247, 243, 237, 0.34);
  --chalk-orange: #f5a466;       /* tiza de color · la chispa */
  position: relative;
  padding: clamp(11px, 1.5vw, 18px);   /* el marco de madera */
  border-radius: 22px;
  background:
    repeating-linear-gradient(94deg, rgba(0,0,0,0.12) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(91deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 9px),
    linear-gradient(135deg, #6b4a30 0%, #3a2616 36%, #5a3c26 62%, #2c1d12 100%);
  box-shadow: var(--hch-shadow-xl),
    inset 0 2px 0 rgba(255,255,255,0.14),
    inset 0 -4px 8px rgba(0,0,0,0.5);
}
.pizarra__board {
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  padding: clamp(26px, 4vw, 54px);
  color: var(--chalk);
  background: radial-gradient(125% 95% at 28% 16%, var(--slate-1), var(--slate-2) 76%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.65), inset 0 0 70px rgba(0,0,0,0.55);
}
/* polvo de tiza */
.pizarra__board::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05; mix-blend-mode: screen;
}
/* manchas de borrador */
.pizarra__board::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.6;
  background:
    radial-gradient(38% 26% at 80% 20%, rgba(247,243,237,0.06), transparent 70%),
    radial-gradient(46% 34% at 16% 78%, rgba(247,243,237,0.05), transparent 72%),
    radial-gradient(30% 50% at 52% 50%, rgba(247,243,237,0.03), transparent 70%);
}
/* línea de tiza dibujada por dentro del borde */
.pizarra__edge {
  position: absolute; inset: clamp(10px, 1.5vw, 16px); z-index: 1; pointer-events: none;
  border: 1.5px solid var(--chalk-faint); border-radius: 5px;
}
.pizarra__in { position: relative; z-index: 2; }

/* encabezado */
.pizarra__head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 18px 28px; }
.pizarra__headline { min-width: 240px; flex: 1 1 auto; }
.pizarra .hch-eyebrow { color: var(--chalk-orange); }
.pizarra .hch-eyebrow::before { background: var(--chalk-orange); }
.pizarra__title { font-size: clamp(42px, 6.6vw, 78px); line-height: 0.86; color: var(--chalk); margin-top: 22px; text-shadow: 0 0 1px rgba(250,248,244,0.55), 0 2px 1px rgba(0,0,0,0.25); }
.pizarra__incluye { margin-top: 22px; font-weight: 700; font-size: clamp(13px, 1.65vw, 16px); letter-spacing: 0.05em; text-transform: uppercase; color: var(--chalk-orange); }
.pizarra__incluye b { color: var(--chalk); font-weight: 700; }

/* placa de madera con la fecha */
.pizarra__date {
  flex: 0 0 auto; display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 22px; border-radius: 11px;
  background: linear-gradient(135deg, #6b4a30, #3a2616 70%);
  border: 1px solid rgba(0,0,0,0.45);
  box-shadow: var(--hch-shadow-md), inset 0 1px 0 rgba(255,255,255,0.16), inset 0 -2px 4px rgba(0,0,0,0.45);
}
.pizarra__date-kicker { font-family: var(--hch-font-text); font-weight: 700; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--chalk-orange); }
.pizarra__date-value { font-family: var(--hch-font-display); font-size: clamp(22px, 2.8vw, 34px); letter-spacing: 0.03em; text-transform: uppercase; line-height: 1; color: var(--chalk); text-align: center; }


/* menú apilado · entradas (3 columnas) sobre platos de fondo (2 columnas) */
.pizarra__menu { display: flex; flex-direction: column; gap: clamp(26px, 3.6vw, 42px); margin-top: clamp(22px, 3vw, 32px); }

/* encabezado de categoría · nombre + píldora "Elige 1" + filo de tiza */
.pizarra__colhead {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 12px; margin-bottom: 4px;
  border-bottom: 1.5px solid var(--chalk-soft);
}
.pizarra__colhead-name {
  font-family: var(--hch-font-display); text-transform: uppercase;
  letter-spacing: 0.06em; font-size: clamp(22px, 2.7vw, 28px);
  line-height: 1; color: var(--chalk-orange);
}
.pizarra__choose {
  font-family: var(--hch-font-text); font-weight: 600;
  font-size: 11px; letter-spacing: 0.04em; line-height: 1; white-space: nowrap;
  color: var(--chalk-soft); padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--chalk-faint); background: rgba(255,255,255,0.045);
}

/* listas numeradas · contador automático en CSS */
.pizarra__list { display: grid; grid-template-columns: 1fr; counter-reset: dish; }
@media (min-width: 560px) { .pizarra__list--entradas { grid-template-columns: 1fr 1fr; } }
@media (min-width: 820px) { .pizarra__list--entradas { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 620px) { .pizarra__list--fondos { grid-template-columns: 1fr 1fr; } }
.pizarra__list--entradas { column-gap: clamp(18px, 3vw, 44px); }
.pizarra__list--fondos { column-gap: clamp(22px, 4vw, 56px); }

.pizarra__list li {
  counter-increment: dish;
  display: flex; align-items: center; gap: 13px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--chalk-faint);
  font-family: var(--hch-font-text);
  font-size: clamp(14.5px, 1.55vw, 16.5px);
  line-height: 1.3; color: var(--chalk-dim);
}
/* badge numerado · círculo con anillo de tiza naranja */
.pizarra__list li::before {
  content: counter(dish);
  flex-shrink: 0; display: grid; place-items: center;
  width: 27px; height: 27px; border-radius: 50%;
  border: 1.5px solid rgba(245,164,102,0.5);
  background: rgba(245,164,102,0.09);
  color: var(--chalk-orange);
  font-size: 12.5px; font-weight: 700; font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.pizarra__nota { margin: clamp(22px, 3vw, 30px) 0 0; font-size: 13.5px; line-height: 1.55; font-style: italic; color: var(--chalk-orange); }

/* cierre comercial · botón a la izquierda + placa de precio (madera) a la derecha */
.pizarra__price {
  margin-top: clamp(24px, 3.4vw, 38px); padding-top: clamp(22px, 3vw, 30px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 34px;
  border-top: 1.5px solid var(--chalk-faint);
}
.pizarra__order { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; max-width: 380px; }
.pizarra__stock { font-size: 12.5px; line-height: 1.5; color: var(--chalk-soft); margin: 0; }

/* placa de precio · misma madera que la placa de fecha (rima visual) */
.pizarra__price-plate {
  flex: 0 0 auto; display: inline-flex; flex-direction: column; align-items: center; gap: 7px;
  padding: clamp(14px, 1.8vw, 20px) clamp(26px, 3.2vw, 44px); border-radius: 14px;
  background: linear-gradient(135deg, #6b4a30, #3a2616 70%);
  border: 1px solid rgba(0,0,0,0.45);
  box-shadow: var(--hch-shadow-md), inset 0 1px 0 rgba(255,255,255,0.16), inset 0 -2px 6px rgba(0,0,0,0.5);
}
.pizarra__price-label { font-family: var(--hch-font-text); font-weight: 700; font-size: clamp(11px, 1.3vw, 13px); letter-spacing: 0.2em; text-transform: uppercase; color: var(--chalk-orange); line-height: 1; }
.pizarra__price-value { font-family: var(--hch-font-display); display: inline-flex; align-items: baseline; gap: 5px; line-height: 0.82; color: var(--chalk); white-space: nowrap; }
.pizarra__price-cur { font-size: clamp(24px, 2.8vw, 34px); color: var(--chalk-dim); }
.pizarra__price-num { font-size: clamp(46px, 6vw, 68px); letter-spacing: 0.01em; }

/* entrada animada · escrito a tiza */
.pizarra [data-chalk] { opacity: 0; transform: translateY(12px); transition: opacity 0.55s var(--hch-ease-out), transform 0.55s var(--hch-ease-out); transition-delay: calc(var(--d, 0) * 1ms); }
.pizarra.is-in [data-chalk] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .pizarra [data-chalk] { opacity: 1; transform: none; transition: none; }
}

.classics__title { font-size: clamp(26px, 3.4vw, 38px); color: var(--hch-text-primary); margin: 10px 0 4px; }
.classics__sub { font-size: 14px; line-height: 1.55; color: var(--hch-text-tertiary); margin: 0 0 18px; max-width: 56ch; }
.classics__card { background: var(--hch-surface-raised); border: 1px solid var(--hch-border-subtle); border-radius: var(--hch-card-radius); padding: var(--hch-card-padding); box-shadow: var(--hch-shadow-sm); }
.classics__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0 clamp(28px, 4vw, 56px); }
.dish { padding: 11px 0; border-bottom: 1px solid var(--hch-border-divider); }
.dish__row { display: flex; align-items: baseline; gap: 10px; }
.dish__name { font-weight: 600; font-size: 16px; color: var(--hch-text-primary); white-space: nowrap; }
.dish__star { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 999px; font-weight: 600; font-size: 11px; background: var(--hch-naranja-50); color: var(--hch-naranja-700); white-space: nowrap; }
.dish__leader { flex: 1; border-bottom: 2px dotted var(--hch-border-subtle); transform: translateY(-4px); }
.dish__price { font-family: var(--hch-font-display); font-size: 24px; letter-spacing: 0.02em; color: var(--hch-accent); white-space: nowrap; }
.dish__desc { font-size: 13px; color: var(--hch-text-tertiary); margin-top: 1px; }

.safety { background: var(--hch-surface-raised); border: 1px solid var(--hch-border-subtle); border-radius: var(--hch-radius-xl); padding: clamp(20px, 3vw, 30px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px; }
.safety__body { flex: 1 1 360px; min-width: 280px; }
.safety__body h4 { font-weight: 700; font-size: 16px; color: var(--hch-text-primary); margin: 0; }
.safety__body p { font-size: 13.5px; line-height: 1.55; color: var(--hch-text-secondary); margin: 8px 0 0; max-width: 62ch; }
.safety__ctas { display: flex; flex-wrap: wrap; gap: 10px; }

.delivery { margin-top: clamp(28px, 4.5vw, 48px); display: flex; gap: clamp(16px, 3vw, 28px); align-items: flex-start; padding: clamp(20px, 3.5vw, 34px); background: var(--hch-surface-warm); border: 1px solid var(--hch-border-subtle); border-left: 4px solid var(--hch-accent-warm); border-radius: var(--hch-radius-xl); box-shadow: var(--hch-shadow-sm); }
.delivery__icon { flex-shrink: 0; display: grid; place-items: center; width: clamp(48px, 7vw, 62px); height: clamp(48px, 7vw, 62px); border-radius: 50%; background: var(--hch-naranja-100); color: var(--hch-accent-warm); }
.delivery__body { flex: 1; min-width: 0; }
.delivery__title { font-family: var(--hch-font-display); text-transform: uppercase; font-size: clamp(21px, 3vw, 30px); letter-spacing: 0.02em; line-height: 1; color: var(--hch-text-primary); }
.delivery__body p { font-size: 14.5px; line-height: 1.55; color: var(--hch-text-secondary); margin: 11px 0 0; }
.delivery__list { margin: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.delivery__list li { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; line-height: 1.45; color: var(--hch-text-primary); }
.delivery__price { flex-shrink: 0; font-family: var(--hch-font-display); font-size: 19px; line-height: 1.05; color: var(--hch-accent-warm); min-width: 62px; }

/* ───────── Galería ───────── */
.galeria__head { max-width: 640px; margin: 0 auto 32px; text-align: center; }
.galeria__title { font-size: clamp(34px, 5.5vw, 60px); color: var(--hch-text-primary); margin: 12px 0 8px; }
.galeria__sub { font-size: 15px; line-height: 1.55; color: var(--hch-text-tertiary); margin: 0; }
.galeria__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px)  { .galeria__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .galeria__grid { grid-template-columns: repeat(5, 1fr); } }
.galeria__item { position: relative; padding: 0; border: none; border-radius: var(--hch-radius-lg); overflow: hidden; cursor: zoom-in; aspect-ratio: 1/1; background: var(--hch-surface-sunken); box-shadow: var(--hch-shadow-sm); display: block; }
.galeria__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--hch-dur-slow) var(--hch-ease-out); }
.galeria__item:hover img { transform: scale(1.06); }
.galeria__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 14px 12px; text-align: left; font-family: var(--hch-font-display); font-size: 19px; letter-spacing: 0.02em; color: var(--hch-papel-50); background: linear-gradient(180deg, transparent, rgba(26,23,20,0.78)); }

/* ───────── Lightbox ───────── */
.lightbox { position: fixed; inset: 0; z-index: var(--hch-z-toast); background: rgba(26,23,20,0.93); backdrop-filter: blur(4px); display: grid; place-items: center; padding: clamp(16px, 5vw, 48px); cursor: zoom-out; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: var(--hch-radius-lg); box-shadow: var(--hch-shadow-xl); }
.lightbox__close { position: absolute; top: 18px; right: 24px; font-family: var(--hch-font-display); font-size: 34px; line-height: 1; color: var(--hch-papel-100); background: none; border: none; cursor: pointer; }
.lightbox__caption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; font-family: var(--hch-font-display); font-size: 24px; letter-spacing: 0.04em; color: var(--hch-papel-100); }

/* ───────── Cómo llegar ───────── */
.llegar { border-top: 1px solid var(--hch-border-divider); }
.llegar__inner { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.llegar__info { flex: 1 1 340px; min-width: 300px; }
.llegar__title { font-size: clamp(30px, 4.5vw, 52px); color: var(--hch-text-primary); margin: 12px 0 24px; }
.llegar__cols { display: flex; flex-wrap: wrap; gap: 28px 48px; margin-bottom: 22px; }
.llegar__cols h4, .footer__col h4 { font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hch-text-tertiary); margin: 0 0 10px; }
.llegar__cols ul { display: flex; flex-direction: column; gap: 4px; }
.llegar__cols li { font-size: 15px; color: var(--hch-text-primary); }
.llegar__note { font-size: 14px; line-height: 1.6; color: var(--hch-text-secondary); margin: 0 0 22px; max-width: 46ch; }
.llegar__map { flex: 1 1 360px; min-width: 300px; min-height: 320px; border-radius: var(--hch-radius-xl); overflow: hidden; box-shadow: var(--hch-shadow-md); border: 1px solid var(--hch-border-subtle); }
.llegar__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ───────── CTA roja ───────── */
.cta-band { background: var(--hch-rojo-500); color: #000; }
.cta-band__inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; padding-top: clamp(32px, 5vw, 56px); padding-bottom: clamp(32px, 5vw, 56px); }
.cta-band__title { font-size: clamp(30px, 4.5vw, 52px); margin: 0; color: #000; }
.cta-band__sub { font-size: 16px; margin: 10px 0 0; color: #000; opacity: 0.82; }

/* ───────── Juguería ───────── */
.jug { background: var(--hch-surface-warm); }
.jug__inner { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 48px); align-items: center; justify-content: space-between; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }
.jug__body { flex: 1 1 380px; min-width: 280px; }
.jug__title { font-size: clamp(28px, 4vw, 44px); line-height: 0.98; color: var(--hch-text-primary); margin: 10px 0 0; }
.jug__body p { font-size: 15px; line-height: 1.6; color: var(--hch-text-secondary); margin: 12px 0 18px; max-width: 50ch; }
.jug__badge { flex: 0 0 auto; display: grid; place-items: center; width: 200px; height: 200px; border-radius: 50%; background: var(--hch-surface-base); border: 2px dashed var(--hch-accent-warm); box-shadow: var(--hch-shadow-sm); text-align: center; }
.jug__badge-name { font-family: var(--hch-font-display); font-size: 38px; line-height: 0.9; letter-spacing: 0.02em; color: var(--hch-accent-warm); }
.jug__badge-handle { font-weight: 600; font-size: 12px; letter-spacing: 0.12em; color: var(--hch-text-tertiary); margin-top: 8px; }

/* ───────── Redes sociales ───────── */
.social { background: var(--hch-surface-sunken); border-top: 1px solid var(--hch-border-divider); }
.social__head { max-width: 680px; margin: 0 auto clamp(28px, 4vw, 44px); text-align: center; }
.social__title { font-size: clamp(32px, 5vw, 56px); color: var(--hch-text-primary); margin: 12px 0 10px; }
.social__sub { font-size: 15.5px; line-height: 1.62; color: var(--hch-text-secondary); margin: 0 auto; max-width: 62ch; }

.social__grid { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.6vw, 28px); align-items: stretch; }
@media (min-width: 760px) { .social__grid { grid-template-columns: 1fr 1fr; } }

.social-card {
  display: flex; flex-direction: column;
  background: var(--hch-surface-raised);
  border: 1px solid var(--hch-border-subtle);
  border-radius: var(--hch-card-radius);
  padding: clamp(16px, 2.4vw, 24px);
  box-shadow: var(--hch-shadow-sm);
}

.social-card__head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.social-card__icon { flex-shrink: 0; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; color: var(--hch-white); box-shadow: var(--hch-shadow-sm); }
.social-card__icon svg { width: 25px; height: 25px; }
.social-card__icon--ig { background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%); }
.social-card__icon--fb { background: #1877F2; }
.social-card__id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.social-card__platform { font-weight: 700; font-size: 15px; color: var(--hch-text-primary); line-height: 1; }
.social-card__handle { font-size: 13.5px; color: var(--hch-text-tertiary); line-height: 1; }

/* preview Instagram · mini-grid de fotos del huarique */
.social-card__media { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; border-radius: var(--hch-radius-md); overflow: hidden; text-decoration: none; }
.social-card__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--hch-surface-sunken); transition: filter var(--hch-dur-base) var(--hch-ease-out); }
.social-card__media:hover img { filter: brightness(0.9); }
.social-card__more { display: grid; place-items: center; gap: 5px; aspect-ratio: 1/1; color: var(--hch-white); font-weight: 700; font-size: 12px; letter-spacing: 0.02em; text-align: center; background: linear-gradient(45deg, #F09433, #DC2743 55%, #BC1888); }
.social-card__more svg { width: 22px; height: 22px; }
.social-card__media:hover .social-card__more { filter: brightness(1.06); }

/* preview Facebook · embed oficial (Page Plugin). Marca de agua de respaldo mientras carga */
.social-card__embed {
  position: relative; border-radius: var(--hch-radius-md); overflow: hidden;
  border: 1px solid var(--hch-border-divider); min-height: 400px;
  background: var(--hch-surface-sunken)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 24 24' fill='%23C0B5A5'%3E%3Cpath d='M22 12.06C22 6.5 17.52 2 12 2S2 6.5 2 12.06c0 5 3.66 9.15 8.44 9.94v-7.03H7.9v-2.9h2.54V9.85c0-2.51 1.5-3.9 3.77-3.9 1.09 0 2.24.19 2.24.19v2.47h-1.26c-1.24 0-1.63.77-1.63 1.56v1.88h2.78l-.45 2.9h-2.33V22c4.78-.79 8.44-4.94 8.44-9.94z'/%3E%3C/svg%3E") center/44px no-repeat;
}
.social-card__embed iframe { position: relative; z-index: 1; width: 100%; height: 400px; border: 0; display: block; }
/* variante Instagram en vivo · sin la marca de agua de Facebook */
.social-card__embed--ig { background: var(--hch-surface-sunken); }

.social-card__text { font-size: 14px; line-height: 1.55; color: var(--hch-text-secondary); margin: 16px 0 18px; }
.social-card__cta { margin-top: auto; align-self: flex-start; }

/* ───────── Footer ───────── */
.footer { background: var(--hch-carbon-900); color: var(--hch-papel-200); }
.footer__inner { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 56px); justify-content: space-between; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }
.footer__brand { flex: 1 1 320px; min-width: 260px; }
.footer__brand img { width: clamp(124px, 16vw, 164px); height: auto; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(0,0,0,0.45)); }
.footer__tagline { font-size: 14px; line-height: 1.65; color: var(--hch-papel-400); max-width: 320px; margin: 14px 0 0; }
.footer__col { flex: 0 1 auto; }
.footer__col h4 { color: var(--hch-papel-300); }
.footer__col ul { display: flex; flex-direction: column; gap: 6px; }
.footer__col li, .footer__col a { font-size: 14px; color: var(--hch-papel-400); text-decoration: none; }
.footer__col a { color: var(--hch-papel-300); }
.footer__bar { border-top: 1px solid var(--hch-carbon-700); }
.footer__bar-inner { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between; padding: 18px 0; }
.footer__bar-left { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; color: var(--hch-papel-500); }
.footer__bar-left .hashtag { color: var(--hch-accent-warm); font-weight: 600; }
.footer__bar-right { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--hch-papel-500); }
.footer__bar-right a { display: inline-flex; align-items: center; }
.footer__bar-right img { height: 26px; width: auto; margin: 0 4px; }
.footer__demo { color: var(--hch-accent-warm); font-weight: 700; }

/* ───────── FAB WhatsApp ───────── */
.fab { position: fixed; right: clamp(16px, 4vw, 32px); bottom: clamp(16px, 4vw, 32px); z-index: var(--hch-z-popover); display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.fab__status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 999px; background: var(--hch-surface-raised); border: 1px solid var(--hch-border-subtle); box-shadow: var(--hch-shadow-md); }
.fab__status span:last-child { font-size: 12px; font-weight: 600; color: var(--hch-text-secondary); }
.fab__wa { position: relative; display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--hch-whatsapp); box-shadow: var(--hch-shadow-lg); text-decoration: none; }
.fab__pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--hch-whatsapp); animation: hchPulse 2.6s var(--hch-ease-out) infinite; z-index: -1; }
@keyframes hchPulse { 0% { transform: scale(1); opacity: 0.5; } 70% { transform: scale(2.4); opacity: 0; } 100% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .fab__pulse, .hero__slides img { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
