/* ═══════════════════════════════════════════════════════════════════
   LA ESTANCIA BLACK — Web institucional
   Carbón · Hueso · Borgoña · Bodoni Moda + Inter Tight + JetBrains Mono
   Editorial · Restricción · Trazabilidad
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --carbon:        #0A0A0A;
  --carbon-2:      #141414;
  --steel:         #1F1F1F;
  --line:          #2A2A2A;
  --line-soft:     rgba(237, 230, 214, 0.08);
  --bone:          #EDE6D6;
  --bone-dim:      #B8B0A0;
  --bone-faint:    rgba(237, 230, 214, 0.45);
  --burgundy:      #5B0E16;
  --burgundy-glow: #7A1620;

  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans:  "Inter Tight", system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --max-w: 1280px;
  --pad-side: clamp(28px, 6vw, 80px);
  color-scheme: dark;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--bone);
  background: var(--carbon);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
::selection { background: var(--burgundy); color: var(--bone); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; font-size: inherit; color: inherit; cursor: pointer; border: none; background: transparent; }

/* Brand lockup compartido */
.leb-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  line-height: 1;
}
.leb-brand-pre {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--bone-dim);
  text-transform: uppercase;
}
.leb-brand-main {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--bone);
}

/* ════════ NAV ════════ */
.leb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.leb-nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
}
.leb-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--pad-side);
  display: flex;
  align-items: center;
  gap: 24px;
}
.leb-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.leb-nav-links a {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.leb-nav-links a:hover { color: var(--bone); }
.leb-nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.leb-nav-links a:hover::after { transform: scaleX(1); }

.leb-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--bone);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  transition: background 0.22s var(--ease), color 0.22s var(--ease);
}
.leb-nav-cta:hover { background: var(--bone); color: var(--carbon); }
.leb-nav-cta-arrow { font-size: 12px; }

/* Burger mobile */
.leb-nav-burger {
  display: none;
  width: 34px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  border: 1px solid var(--line);
}
.leb-nav-burger span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--bone);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.leb-nav-burger.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.leb-nav-burger.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }

.leb-nav-sheet {
  display: flex;
  flex-direction: column;
  background: var(--carbon);
  border-top: 1px solid var(--line);
  padding: 8px var(--pad-side) 24px;
  gap: 0;
}
.leb-nav-sheet a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.leb-nav-sheet a.is-cta {
  margin-top: 12px;
  border: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
  text-align: center;
  padding: 16px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ════════ HERO ════════ */
.leb-hero {
  position: relative;
  min-height: 100vh;
  padding: 100px var(--pad-side) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--carbon);
  overflow: hidden;
}

/* Slideshow del hero — crossfade entre imágenes (rotación en web-fx.js).
   Capa más al fondo (z0, primer hijo); el grid y el veil pintan encima. */
.leb-hero-slides { position: absolute; inset: 0; z-index: 0; }
.leb-hero-slide {
  position: absolute;
  inset: 0;
  background-position: center 25%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.leb-hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .leb-hero-slide { transition: none; }
}

/* Veil — degradado vertical para imagen de fondo.
   Bottom: 100% carbón sólido (CTAs y foot respiran limpio).
   Top: 15% opacidad para que la foto sea protagonista.
   + Fade sutil al borde superior para legibilidad del nav/eyebrow. */
.leb-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(91, 14, 22, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 95%, rgba(237, 230, 214, 0.04) 0%, transparent 50%),
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.62) 0%,
      rgba(10, 10, 10, 0.28) 8%,
      transparent 16%
    ),
    linear-gradient(
      to top,
      var(--carbon) 0%,
      rgba(10, 10, 10, 0.92) 38%,
      rgba(10, 10, 10, 0.55) 68%,
      rgba(10, 10, 10, 0.15) 100%
    );
}
.leb-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(237, 230, 214, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 230, 214, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* Glow del fuego — radial cálido en el bottom del hero con flicker irregular */
/* (glow titilante del hero removido — hero más calmo, jun 2026) */

/* Canvas de brasas — capa entre grid (0) y contenido (2) */
.leb-hero-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  mix-blend-mode: screen;
}

.leb-hero-top,
.leb-hero-foot,
.leb-hero-bottom { position: relative; z-index: 2; }

.leb-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.leb-hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.leb-hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--burgundy);
  border-radius: 50%;
  display: inline-block;
}

/* Bloque inferior — rule + tagline + CTAs centrados, empujado hacia el foot */
.leb-hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: auto;
  margin-bottom: 70px;
  padding-top: 40px;
}
.leb-hero-rule {
  width: 64px;
  height: 1px;
  background: var(--burgundy);
  margin: 0;
}
.leb-hero-headline {
  margin: 0;
  max-width: 15ch;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--bone);
  text-align: center;
  text-wrap: balance;
}
.leb-hero-sub {
  margin: 0;
  max-width: 54ch;
  font-family: var(--sans);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--bone-dim);
  text-align: center;
}
.leb-hero-ctas {
  display: flex;
  flex-direction: column;   /* los dos CTAs, uno debajo del otro */
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.leb-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(360px, 100%);  /* mismo ancho para los dos apilados */
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.leb-hero-cta--prime {
  background: var(--bone);
  color: var(--carbon);
  border: 1px solid var(--bone);
}
.leb-hero-cta--prime:hover { background: #FFFFFF; border-color: #FFFFFF; }
.leb-hero-cta--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--bone-faint);
}
.leb-hero-cta--ghost:hover { border-color: var(--bone); }
.leb-hero-cta-arrow { font-size: 13px; }

.leb-hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.leb-hero-foot-block { display: flex; flex-direction: column; gap: 6px; }
.leb-hero-foot-block--center { text-align: center; }
.leb-hero-foot-block--right { text-align: right; }
.leb-hero-foot-label { color: #5a5a5a; font-size: 9px; }

/* ════════ SECTION SHELL ════════ */
.leb-section {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px var(--pad-side);
  border-top: 1px solid var(--line);
}
/* ── Breadcrumbs (ruta de navegación) ── */
.leb-crumbs {
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.leb-crumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.leb-crumbs li {
  display: inline-flex;
  align-items: center;
  color: var(--bone-dim);
}
.leb-crumbs li + li::before {
  content: "›";
  margin: 0 10px;
  color: var(--bone-faint);
}
.leb-crumbs a {
  color: var(--bone-dim);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.leb-crumbs a:hover { color: var(--bone); }
.leb-crumbs [aria-current="page"] { color: var(--bone); }
.leb-section-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.leb-section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
}
.leb-section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.01em;
  color: var(--bone);
}
.leb-section-meta {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ════════ NUESTRA CASA ════════ */
.leb-casa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 120px;
}
.leb-casa-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.leb-casa-lead em { font-style: italic; color: var(--bone-dim); }
.leb-casa-body p {
  margin: 0 0 24px;
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
}
.leb-casa-body p:first-child { color: var(--bone); }
.leb-casa-body strong {
  color: var(--bone);
  font-weight: 500;
  border-bottom: 1px solid var(--burgundy);
}

.leb-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.leb-pillar {
  background: var(--carbon);
  padding: 56px 40px;
}
.leb-pillar-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--burgundy-glow);
  margin-bottom: 36px;
}
.leb-pillar-title {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--bone);
  line-height: 1.1;
}
.leb-pillar-title em { font-style: italic; color: var(--bone-dim); font-weight: 400; }
.leb-pillar-text {
  margin: 0;
  font-size: 14.5px;
  color: var(--bone-dim);
  line-height: 1.65;
}

/* ════════ EMPRESAS ════════ */
.leb-emp-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.leb-emp-lead {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.leb-emp-lead em { font-style: italic; color: var(--bone-dim); }
.leb-emp-intro-body {
  margin: 0;
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.75;
  max-width: 460px;
  align-self: center;
}

.leb-emp-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.leb-emp-card {
  background: var(--carbon);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  padding: 64px 56px;
  transition: background 0.28s var(--ease);
}
.leb-emp-card:hover { background: var(--carbon-2); }

.leb-emp-aside { display: flex; flex-direction: column; }
.leb-emp-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 28px;
}
.leb-emp-card-title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.leb-emp-card-tagline {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--burgundy-glow);
}

.leb-emp-body { display: flex; flex-direction: column; align-items: flex-start; }
.leb-emp-card-text {
  margin: 0 0 28px;
  color: var(--bone-dim);
  font-size: 15.5px;
  line-height: 1.72;
  max-width: 540px;
}
.leb-emp-card-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.leb-emp-card-list li {
  position: relative;
  padding-left: 22px;
  color: var(--bone);
  font-size: 14.5px;
  line-height: 1.55;
}
.leb-emp-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: var(--burgundy-glow);
  border-radius: 50%;
}

.leb-emp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 14px 26px;
  background: var(--bone);
  color: var(--carbon);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.leb-emp-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28); }
.leb-emp-cta-ico { width: 17px; height: 17px; flex: none; }
.leb-emp-cta-arrow { transition: transform 0.24s var(--ease); }
.leb-emp-cta:hover .leb-emp-cta-arrow { transform: translateX(4px); }

.leb-emp-foot {
  margin: 48px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--bone-dim);
}
.leb-emp-foot a {
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid var(--burgundy);
}
.leb-emp-foot a:hover { color: var(--burgundy-glow); }

@media (max-width: 960px) {
  .leb-emp-intro { grid-template-columns: 1fr; gap: 32px; }
  .leb-emp-card { grid-template-columns: 1fr; gap: 28px; padding: 48px 36px; }
}
@media (max-width: 600px) {
  .leb-emp-card { padding: 40px 24px; }
  .leb-emp-cta { width: 100%; justify-content: center; }
}

/* ════════ CATÁLOGO ════════ */
.leb-catalogo-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--bone-dim);
  max-width: 760px;
  margin: 0 0 80px;
}
.leb-catalogo-lead em { font-style: italic; color: var(--bone); }

.leb-cat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.leb-cat-card {
  background: var(--carbon);
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 480px;
  transition: background 0.28s var(--ease);
}
.leb-cat-card:hover { background: var(--carbon-2); }

.leb-cat-card-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 32px;
}
.leb-cat-card-mark {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 110px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--bone);
  opacity: 0.92;
  margin: 0 0 24px;
  background: linear-gradient(160deg, var(--bone) 0%, var(--bone-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.leb-cat-card-title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.015em;
  color: var(--bone);
  line-height: 1.05;
}
.leb-cat-card-title em { font-style: italic; color: var(--bone-dim); font-weight: 400; }
.leb-cat-card-desc {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--bone-dim);
}
.leb-cat-card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.leb-cat-card-list > div { line-height: 1.4; }
.leb-cat-card-more { color: var(--burgundy-glow) !important; }

.leb-cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
  border-top: 1px solid transparent;
  align-self: flex-start;
  transition: gap 0.22s var(--ease);
}
.leb-cat-card-cta:hover { gap: 16px; }

/* Teaser "Nuestra casa" en la home → link a /nuestra-casa/ (color hereda del tema) */
.leb-casa-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: inherit;
}
.leb-casa-more:hover { gap: 16px; }

.leb-catalogo-foot {
  text-align: center;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.leb-cta-prime {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  background: var(--bone);
  color: var(--carbon);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}
.leb-cta-prime:hover { background: #FFFFFF; transform: translateY(-1px); }
.leb-cta-arrow { font-size: 13px; }
.leb-catalogo-foot-note {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ════════ HISTORIA ════════ */
.leb-historia-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.leb-historia-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.leb-historia-quote em {
  color: var(--burgundy-glow);
  font-style: italic;
}
.leb-historia-body p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--bone-dim);
}
.leb-historia-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.leb-historia-meta > div {
  background: var(--carbon);
  padding: 20px 18px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.leb-historia-meta strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--bone);
  text-transform: none;
}

/* ════════ NEWSLETTER · Lote del mes ════════ */
.leb-newsletter {
  text-align: center;
}
.leb-newsletter-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 0;
}
.leb-newsletter-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 24px;
}
.leb-newsletter-dot {
  width: 6px; height: 6px;
  background: var(--burgundy);
  border-radius: 50%;
  animation: lebRulePulse 3.6s ease-in-out infinite;
}
.leb-newsletter-title {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.leb-newsletter-title em {
  font-style: italic;
  color: var(--burgundy-glow);
}
.leb-newsletter-sub {
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--bone-dim);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.leb-newsletter-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.leb-newsletter-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  background: var(--bone);
  color: var(--carbon);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.22s var(--ease), transform 0.18s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.leb-newsletter-cta:hover { background: #FFFFFF; transform: translateY(-1px); }
.leb-newsletter-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 30%, rgba(232, 102, 58, 0.32) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.75s var(--ease);
  z-index: 0;
}
.leb-newsletter-cta:hover::after { transform: translateX(110%); }
.leb-newsletter-cta > * { position: relative; z-index: 1; }
.leb-newsletter-cta-arrow { font-size: 14px; }
.leb-newsletter-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.leb-newsletter-note-sep { color: var(--burgundy); }

/* Light mode override para newsletter */
[data-theme="light"] .leb-newsletter-title { color: #262626; }
[data-theme="light"] .leb-newsletter-sub { color: #6B6B6B; }
[data-theme="light"] .leb-newsletter-cta { background: #262626; color: #FAF7EE; }
[data-theme="light"] .leb-newsletter-cta:hover { background: #000; }
[data-theme="light"] .leb-newsletter-cta::after {
  background: linear-gradient(100deg, transparent 30%, rgba(232, 102, 58, 0.20) 50%, transparent 70%);
}
[data-theme="light"] .leb-newsletter-note { color: rgba(38, 38, 38, 0.40); }

@media (max-width: 720px) {
  .leb-newsletter-inner { padding: 30px 0; }
  .leb-newsletter-cta { padding: 18px 28px; font-size: 10px; letter-spacing: 0.24em; }
  .leb-newsletter-note { font-size: 8.5px; letter-spacing: 0.16em; }
}

/* ════════ FAQ ════════ */
.leb-faq-list { border-top: 1px solid var(--line); }
.leb-faq-item {
  border-bottom: 1px solid var(--line);
}
.leb-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 20px;
  align-items: center;
  transition: color 0.22s var(--ease);
}
.leb-faq-item summary::-webkit-details-marker { display: none; }
.leb-faq-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--burgundy-glow);
}
.leb-faq-q {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--bone);
}
.leb-faq-toggle {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 300;
  color: var(--bone-dim);
  transition: transform 0.28s var(--ease), color 0.22s var(--ease);
  justify-self: end;
}
.leb-faq-item[open] .leb-faq-toggle { transform: rotate(45deg); color: var(--burgundy-glow); }
.leb-faq-a {
  padding: 0 0 28px 80px;
}
.leb-faq-a p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--bone-dim);
  max-width: 720px;
}
.leb-faq-a em { font-style: italic; color: var(--bone); }

/* ════════ LOCALES ════════ */
.leb-locales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.leb-local {
  background: var(--carbon);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.leb-local-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--burgundy-glow);
  margin-bottom: 20px;
}
.leb-local-city {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 8px;
}
.leb-local-addr {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--bone);
}
.leb-local-divider {
  width: 32px;
  height: 1px;
  background: var(--burgundy);
  margin: 28px 0;
}
.leb-local-hours {
  margin-bottom: 32px;
}
.leb-local-hours-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 12px;
}
.leb-local-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.leb-local-hours-row:last-child { border-bottom: none; }
.leb-local-hours-row span:first-child {
  color: var(--bone-dim);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.leb-local-hours-row .is-closed {
  font-style: italic;
  font-family: var(--serif);
  letter-spacing: 0;
  color: var(--bone-faint);
  font-size: 13px;
  text-transform: none;
}

.leb-local-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.leb-local-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--bone);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.leb-local-btn:hover { background: var(--bone); color: var(--carbon); }
.leb-local-btn--ghost {
  border-color: var(--line);
  color: var(--bone-dim);
}
.leb-local-btn--ghost:hover { background: transparent; border-color: var(--bone-dim); color: var(--bone); }
.leb-local-btn span { font-size: 12px; }

/* ════════ FOOTER ════════ */
.leb-footer {
  border-top: 1px solid var(--line);
  background: var(--carbon);
}
.leb-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--pad-side) 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}
.leb-footer-brand .leb-brand { margin-bottom: 18px; }
.leb-footer-tagline {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.leb-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.leb-footer-col-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 8px;
}
.leb-footer-col a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--bone-dim);
  transition: color 0.22s var(--ease);
}
.leb-footer-col a:hover { color: var(--bone); }

.leb-footer-bottom {
  border-bottom: 1px solid var(--line);
  padding: 28px var(--pad-side);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5a5a5a;
  gap: 16px;
  flex-wrap: wrap;
}
.leb-footer-wagon strong { color: var(--bone-dim); font-weight: 500; }
/* v7.99.18 · Firma WAGON: lockup logo+wordmark como link a Instagram + reveal al scroll */
.leb-wagon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
  text-decoration: none;
  color: inherit;
}
.leb-wagon-link strong { transition: color 0.22s var(--ease); }
.leb-wagon-link:hover strong { color: var(--bone); }
.leb-footer-wagon-logo {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
/* Reveal al entrar al viewport: .leb-footer-wagon se observa (se le agrega .leb-reveal en
   web.js). Anulo el fade+slide genérico del wrapper y animo logo + palabra con stagger. */
.leb-footer-wagon.leb-reveal { opacity: 1; transform: none; }
.leb-footer-wagon .leb-footer-wagon-logo {
  opacity: 0;
  transform: scale(0.4) rotate(-30deg);
  transition: opacity 0.5s var(--ease), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.leb-footer-wagon .leb-wagon-link strong {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.5s var(--ease) 0.15s, transform 0.5s var(--ease) 0.15s, color 0.22s var(--ease);
}
.leb-footer-wagon.is-in .leb-footer-wagon-logo { opacity: 1; transform: scale(1) rotate(0); }
.leb-footer-wagon.is-in .leb-wagon-link strong { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .leb-footer-wagon .leb-footer-wagon-logo,
  .leb-footer-wagon .leb-wagon-link strong {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ════════ REVEAL ════════ */
.leb-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.leb-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 960px) {
  .leb-pillars,
  .leb-cat-cards,
  .leb-locales-grid {
    grid-template-columns: 1fr;
  }
  .leb-casa-grid,
  .leb-historia-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .leb-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .leb-section { padding: 100px var(--pad-side); }
  .leb-section-head { margin-bottom: 60px; }
}

@media (max-width: 720px) {
  .leb-nav-links { display: none; }
  .leb-nav-cta { display: none; }
  .leb-nav-right .leb-topbar-toggle { display: none; }
  .leb-nav-burger { display: inline-flex; }
  .leb-nav-right { gap: 10px; }
  /* Ciudad compacta en mobile: pin + abreviatura (Gchú / CDU) */
  .leb-nav-right .leb-city-name { display: none; }
  .leb-nav-right .leb-city-abbr { display: inline; }
  .leb-city-btn { padding: 8px 10px; gap: 6px; }

  .leb-hero { padding-top: 84px; }
  .leb-hero-top { font-size: 9px; gap: 12px; }
  .leb-hero-edition { display: none; }
  .leb-hero-foot-block--center { display: none; }
  .leb-hero-foot { font-size: 9px; }
  /* Botones del hero apilados (uno debajo del otro) en mobile */
  .leb-hero-ctas { gap: 10px; width: 100%; }
  .leb-hero-cta {
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    font-size: 9.5px;
    letter-spacing: 0.18em;
  }

  .leb-section { padding: 80px var(--pad-side); }
  .leb-section-head { flex-wrap: wrap; gap: 16px; }
  .leb-section-meta { width: 100%; margin-left: 0; }

  .leb-faq-item summary { grid-template-columns: 40px 1fr 24px; gap: 14px; padding: 22px 0; }
  .leb-faq-a { padding-left: 54px; }

  .leb-local { padding: 32px 28px; }

  .leb-footer-inner { grid-template-columns: 1fr; padding: 60px var(--pad-side) 40px; }
  .leb-footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ════════════════════════════════════════════════════════════════════
   FX · Brasas, pulse, sweep, glow
   Capa atmósfera — agregada en PLAN 3
   ════════════════════════════════════════════════════════════════════ */

/* — Pulse del divider borgoña (hierro al rojo) — */
.leb-rule--pulse {
  animation: lebRulePulse 3.6s ease-in-out infinite;
  will-change: box-shadow, background-color;
}
.leb-rule--pulse:nth-child(odd) { animation-delay: 1.1s; }
.leb-rule--pulse:nth-child(3n)  { animation-delay: 2.3s; }

@keyframes lebRulePulse {
  0%, 100% {
    background: var(--burgundy);
    box-shadow: 0 0 0 rgba(122, 22, 32, 0);
  }
  50% {
    background: var(--burgundy-glow);
    box-shadow:
      0 0 6px rgba(122, 22, 32, 0.5),
      0 0 14px rgba(122, 22, 32, 0.18);
  }
}

/* — Sweep ember en CTAs principales hueso-fill — */
.leb-hero-cta--prime,
.leb-cta-prime,
.leb-nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.leb-hero-cta--prime::after,
.leb-cta-prime::after,
.leb-nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(232, 102, 58, 0.32) 50%,
    transparent 70%
  );
  transform: translateX(-110%);
  transition: transform 0.75s var(--ease);
  z-index: 0;
}
.leb-hero-cta--prime > *,
.leb-cta-prime > *,
.leb-nav-cta > * { position: relative; z-index: 1; }

.leb-hero-cta--prime:hover::after,
.leb-cta-prime:hover::after,
.leb-nav-cta:hover::after {
  transform: translateX(110%);
}

/* — Glow ember en letras A/B/C del catálogo (hover) — */
.leb-cat-card-mark {
  transition: filter 0.55s var(--ease);
}
.leb-cat-card:hover .leb-cat-card-mark {
  filter:
    drop-shadow(0 0 22px rgba(217, 199, 136, 0.24))
    drop-shadow(0 0 52px rgba(91, 14, 22, 0.36));
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════════════
   REDISEÑO · Sistema fotográfico + hero statement + rieles de conversión
   "La carta de la casa" — la foto de celular tratada como decisión editorial
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero statement (H1) ── */
.leb-hero-bottom { gap: 20px; margin-bottom: 54px; }
.leb-hero-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 8.2vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--bone);
  text-align: center;
  text-wrap: balance;
}
.leb-hero-title span,
.leb-hero-title em { display: block; }
.leb-hero-title em { font-style: italic; color: var(--bone-dim); }

/* ── Estado "Abierto ahora" en el hero foot ── */
.leb-hero-status { display: inline-flex; align-items: center; gap: 8px; }
.leb-hero-foot-block--right .leb-hero-status { align-self: flex-end; }
.leb-hero-status-dot {
  position: relative;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bone-dim);
}
.leb-hero-status.is-open .leb-hero-status-dot { background: #2EAD5C; }
.leb-hero-status.is-closed .leb-hero-status-dot { background: #8a6a2a; }

/* ── Sistema fotográfico ── */
.leb-photo {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--carbon-2);
  border: 1px solid var(--line);
  aspect-ratio: var(--ph-ratio, 4 / 5);
}
.leb-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.9) brightness(0.96);
  transition: transform 0.9s var(--ease);
}
.leb-photo--zoom:hover img,
a.leb-photo:hover img { transform: scale(1.045); }
/* Grano editorial — SVG turbulence, sin asset binario */
.leb-photo::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 2; pointer-events: none;
  opacity: 0.10;
  mix-blend-mode: overlay;
  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");
}
/* Viñeta + tinte borgoña — el grado de la casa */
.leb-photo::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background:
    radial-gradient(125% 115% at 50% 26%, transparent 56%, rgba(10, 10, 10, 0.62) 100%),
    linear-gradient(180deg, transparent 58%, rgba(91, 14, 22, 0.12) 100%);
}
.leb-photo--duotone img { filter: contrast(1.08) saturate(0.5) brightness(0.82); }
.leb-photo--duotone::after {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.30) 0%, rgba(10, 10, 10, 0.68) 100%),
    linear-gradient(140deg, rgba(91, 14, 22, 0.42) 0%, transparent 60%);
  mix-blend-mode: multiply;
}
/* Caption de trazabilidad (aparece en hover) */
.leb-photo-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  background: linear-gradient(to top, rgba(10, 10, 10, 0.82), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.leb-photo:hover .leb-photo-cap { opacity: 1; transform: translateY(0); }

/* ── WhatsApp flotante — estética de la casa, no verde genérico ── */
.leb-wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 54px; height: 54px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--carbon-2);
  border: 1px solid var(--line);
  color: var(--bone);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease), border-color 0.24s var(--ease), color 0.24s var(--ease);
}
.leb-wa-float::after {
  content: "";
  position: absolute; inset: -1px;
  border: 1px solid var(--burgundy);
  opacity: 0;
  transition: opacity 0.24s var(--ease);
}
.leb-wa-float:hover { transform: translateY(-3px); border-color: var(--bone-dim); color: #fff; }
.leb-wa-float:hover::after { opacity: 0.55; }
.leb-wa-float svg { width: 24px; height: 24px; }

/* v7.99.16 · El flotante de WhatsApp también en mobile. Antes estaba oculto porque
   lo reemplazaba la barra CTA sticky; esa barra se dio de baja (Hito 21), así que mobile
   quedaba sin acceso persistente a WhatsApp. Posición safe-area-aware para no pisar el
   home indicator de iOS. Con el drawer abierto queda detrás del backdrop (z 110 > 90). */
@media (max-width: 720px) {
  .leb-wa-float {
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }
  /* No tapar el hero: el flotante se oculta mientras el hero está a la vista
     (lo togglea web.js con IntersectionObserver) y entra al pasar al contenido. */
  .leb-wa-float.leb-wa-float--at-hero {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
    pointer-events: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   REDISEÑO · Fase B — Cards de líneas con foto + Producto estrella + Casa
   ═══════════════════════════════════════════════════════════════════ */

/* ── Casa — banner de foto duotono ── */
.leb-casa-photo { --ph-ratio: 21 / 9; margin: 0 0 4px; }

/* ── Líneas — cards con foto tratada + letra watermark ── */
.leb-cat-card { padding: 0; min-height: 0; }
.leb-cat-card-photo {
  --ph-ratio: 4 / 3;
  border: none;
  border-bottom: 1px solid var(--line);
}
.leb-cat-card-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(110px, 16vw, 168px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bone);
  opacity: 0.13;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.leb-cat-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px 32px;
}
.leb-cat-card-body .leb-cat-card-meta { margin-bottom: 18px; }

/* ── Producto estrella ── */
.leb-estrella-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.leb-estrella-grid + .leb-estrella-grid {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}
.leb-estrella-grid--reverse .leb-estrella-photo { order: 2; }
.leb-estrella-photo { --ph-ratio: 4 / 5; }
.leb-estrella-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy-glow);
  margin-bottom: 20px;
}
.leb-estrella-title {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.leb-estrella-title em { font-style: italic; color: var(--bone-dim); }
.leb-estrella-body > p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--bone-dim);
  max-width: 460px;
}
.leb-estrella-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 28px 0 30px;
}
/* Charcutería: 2 datos (se quitó "Sal marina") → 2 columnas, evita celda vacía */
.leb-estrella-grid--reverse .leb-estrella-data {
  grid-template-columns: repeat(2, 1fr);
}
.leb-estrella-data > div {
  background: var(--carbon);
  padding: 18px 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.leb-estrella-data strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--bone);
  text-transform: none;
}
.leb-estrella-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
  align-self: flex-start;
  transition: gap 0.22s var(--ease);
}
.leb-estrella-cta:hover { gap: 16px; }
.leb-estrella-cta span { font-size: 12px; }

@media (max-width: 960px) {
  .leb-estrella-grid { grid-template-columns: 1fr; gap: 32px; }
  .leb-estrella-grid--reverse .leb-estrella-photo { order: 0; }
  .leb-casa-photo { --ph-ratio: 16 / 9; }
}

/* ═══════════════════════════════════════════════════════════════════
   REDISEÑO · Fase C — El Oficio + Cómo funciona + Locales (mapa + badge)
   ═══════════════════════════════════════════════════════════════════ */

/* ── El Oficio ── */
.leb-oficio-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--bone-dim);
  max-width: 760px;
  margin: 0 0 56px;
}
.leb-oficio-lead em { font-style: italic; color: var(--bone); }
.leb-oficio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.leb-oficio-photo { --ph-ratio: 4 / 5; }
.leb-oficio-marks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.leb-oficio-marks > div {
  background: var(--carbon);
  padding: 24px 20px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.leb-oficio-marks > div span {
  color: var(--burgundy-glow);
  font-size: 9px;
  letter-spacing: 0.22em;
}

/* ── Cómo funciona ── */
.leb-pasos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.leb-paso {
  background: var(--carbon);
  padding: 48px 40px;
}
.leb-paso-num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--bone);
  opacity: 0.18;
  margin-bottom: 28px;
}
.leb-paso-title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--bone);
  line-height: 1.1;
}
.leb-paso-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--bone-dim);
}
.leb-pasos-foot { text-align: center; margin-top: 56px; }

/* ── Locales · mini-mapa estilizado + badge "Abierto ahora" ── */
.leb-local-map {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background-color: var(--carbon-2);
  background-image:
    linear-gradient(rgba(237, 230, 214, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 230, 214, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
}
.leb-local-map img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.leb-local-map-pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 26px; height: 26px;
  transform: translate(-50%, -62%);
  color: var(--burgundy-glow);
  transition: color 0.22s var(--ease), transform 0.22s var(--ease);
}
.leb-local-map:hover .leb-local-map-pin { color: var(--burgundy); transform: translate(-50%, -70%); }
.leb-local-map-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: linear-gradient(to top, rgba(10, 10, 10, 0.72), transparent);
  transition: color 0.22s var(--ease);
}
.leb-local-map:hover .leb-local-map-label { color: var(--bone); }
.leb-local-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.leb-local-badge-dot {
  position: relative;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bone-dim);
}
.leb-local-badge.is-open .leb-local-badge-dot { background: #2EAD5C; }
.leb-local-badge.is-closed .leb-local-badge-dot { background: #8a6a2a; }
/* Badge de estado en vivo en la landing de sucursal (entre dirección y horarios) */
.leb-suc-badge { margin: 4px 0 20px; font-size: 10px; }

@media (max-width: 960px) {
  .leb-oficio-grid { grid-template-columns: 1fr; }
  .leb-oficio-marks { grid-template-columns: 1fr; }
  .leb-pasos-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   REDISEÑO · v2 — Ciudad + drawer lateral + hero aligerado
   ═══════════════════════════════════════════════════════════════════ */

/* ── Cluster derecho de la topbar ── */
.leb-nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.leb-nav-links { margin-left: 0; }
.leb-nav-burger { margin-left: 0; }
/* Wordmark de la topbar sin "Black" (placeholder hasta el logo real) */
.leb-nav .leb-brand-pre { font-size: 16px; letter-spacing: 0.12em; color: var(--bone); }

/* ── Selector de Ciudad (todos los dispositivos) ── */
.leb-city { position: relative; }
.leb-city-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.leb-city-btn:hover { color: var(--bone); border-color: var(--bone-dim); }
.leb-city-pin { width: 13px; height: 13px; color: var(--burgundy-glow); flex: none; }
.leb-city-name { white-space: nowrap; }
.leb-city-abbr { display: none; white-space: nowrap; }
.leb-city-caret { font-size: 12px; line-height: 1; opacity: 0.7; }
.leb-city-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 230px;
  z-index: 130;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--carbon);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
.leb-city-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0;
  color: var(--bone-dim);
  background: transparent;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.leb-city-menu button::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid var(--bone-faint);
  flex: none;
}
.leb-city-menu button.is-active { color: var(--bone); }
.leb-city-menu button.is-active::before { background: var(--burgundy-glow); border-color: var(--burgundy-glow); }
.leb-city-menu button:hover { background: var(--carbon-2); color: var(--bone); }

/* ── Drawer lateral izquierdo (mobile) ── */
.leb-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.leb-nav-backdrop.is-open { opacity: 1; }
.leb-nav-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 120;
  width: min(82vw, 340px);
  display: flex;
  flex-direction: column;
  padding: 20px 24px calc(24px + env(safe-area-inset-bottom, 0px));
  background: var(--carbon);
  border-right: 1px solid var(--line);
  transform: translateX(-100%);
  transition: transform 0.38s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.leb-nav-drawer.is-open { transform: translateX(0); }
.leb-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.leb-drawer-brand { font-family: var(--serif); font-size: 18px; color: var(--bone); display: inline-flex; align-items: baseline; gap: 8px; }
.leb-drawer-brand .leb-brand-pre { font-size: 10px; }
.leb-drawer-brand strong { font-weight: 900; letter-spacing: -0.02em; }
.leb-drawer-close {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  color: var(--bone-dim);
  font-size: 14px;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.leb-drawer-close:hover { color: var(--bone); border-color: var(--bone-dim); }
.leb-drawer-nav { display: flex; flex-direction: column; }
.leb-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bone);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.18s var(--ease), padding-left 0.18s var(--ease);
}
.leb-drawer-nav a:hover { color: var(--burgundy-glow); padding-left: 6px; }
/* v7.99.19 · Iconos en los items del drawer (sidebar mobile). Más tenues que el texto;
   se encienden con el item en hover. */
.leb-drawer-ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--bone-dim);
  transition: color 0.18s var(--ease);
}
.leb-drawer-nav a:hover .leb-drawer-ico { color: var(--burgundy-glow); }
.leb-drawer-foot { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.leb-drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: var(--bone);
  color: var(--carbon);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.leb-drawer-soon {
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px dashed var(--bone-faint);
  color: var(--bone-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.leb-drawer-toggles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.leb-drawer-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.leb-drawer-toggle:hover { color: var(--bone); border-color: var(--bone-dim); }
.leb-drawer-toggle .leb-lang-btn-text { color: var(--bone); font-weight: 600; }
.leb-drawer-toggle svg { width: 15px; height: 15px; }

/* ── Catálogo condicional por ciudad ── */
.leb-cat-soon { display: none; }
html[data-city="cdelu"] .leb-cat-only { display: none !important; }
html[data-city="cdelu"] .leb-hero-cta--soon { display: inline-flex; }
html[data-city="cdelu"] .leb-catalogo-soon { display: block; }
html[data-city="cdelu"] .leb-drawer-soon { display: inline-flex; }
.leb-hero-cta--soon {
  background: transparent;
  border: 1px dashed var(--bone-faint);
  color: var(--bone-dim);
  cursor: default;
}
.leb-catalogo-soon {
  margin: 0 auto;
  max-width: 540px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--bone-dim);
}

/* ── Locales filtrados por ciudad ── */
html[data-city="gchu"] .leb-local[data-city="cdelu"],
html[data-city="cdelu"] .leb-local[data-city="gchu"] { display: none; }
@media (min-width: 961px) {
  html[data-city="gchu"] .leb-locales-grid { grid-template-columns: repeat(2, 1fr); }
  html[data-city="cdelu"] .leb-locales-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Hero foot aligerado: estado único centrado ── */
.leb-hero-foot { justify-content: center; }
.leb-hero-foot .leb-hero-status-txt { color: var(--bone); }

/* ═══════════════════════════════════════════════════════════════════
   REDISEÑO · Fase D — Pasada de calidad / accesibilidad
   ═══════════════════════════════════════════════════════════════════ */

/* Hash-scroll no tapado por el nav fijo (link directo, "atrás" del browser) */
.leb-hero, .leb-section { scroll-margin-top: 80px; }

/* Sin delay de tap ni doble-tap zoom en controles */
a, button, summary { touch-action: manipulation; }

/* Titulares equilibrados en 2+ líneas */
.leb-section-title, .leb-estrella-title, .leb-paso-title { text-wrap: balance; }

/* Indicador "vivo" del estado abierto — anillo animado por transform/opacity
   (en lugar de box-shadow; lo desactiva prefers-reduced-motion global) */
.leb-hero-status.is-open .leb-hero-status-dot::after,
.leb-local-badge.is-open .leb-local-badge-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2EAD5C;
  animation: lebDotPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lebDotPulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50%      { transform: scale(2.6); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   AVISO · Reabastecimiento (Lun–Mié, Gualeguaychú) — debajo del hero
   ═══════════════════════════════════════════════════════════════════ */
.leb-restock {
  max-width: var(--max-w);
  margin: 44px auto 0;
  padding: 0 var(--pad-side);
}
.leb-restock-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--burgundy);
  background: linear-gradient(100deg, rgba(91, 14, 22, 0.12) 0%, transparent 55%);
}
.leb-restock-icon { flex: none; color: var(--burgundy-glow); display: inline-flex; }
.leb-restock-icon svg { width: 26px; height: 26px; }
.leb-restock-text { flex: 1; min-width: 0; }
.leb-restock-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy-glow);
  margin-bottom: 7px;
}
.leb-restock-msg {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.7vw, 20px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.leb-restock-msg em { font-style: italic; color: var(--bone); border-bottom: 1px solid var(--burgundy); }
.leb-restock-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--bone);
  color: var(--carbon);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.leb-restock-cta:hover { background: #ffffff; transform: translateY(-1px); }
[data-theme="light"] .leb-restock-inner { background: linear-gradient(100deg, rgba(91, 14, 22, 0.07) 0%, transparent 55%); }
[data-theme="light"] .leb-restock-cta { background: #262626; color: #FAF7EE; }
[data-theme="light"] .leb-restock-cta:hover { background: #000000; }
@media (max-width: 720px) {
  .leb-restock-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .leb-restock-cta { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   v7.98.3 · LIGHT MODE — Editorial cream
   Activacion: <html data-theme="light"> (toggle manual en nav)
   - Brasas + glow del fuego: desactivados (son "calor en oscuridad")
   - Veil del hero: invertido (cream -> transparent abajo)
   - Identidad mantenida (Bodoni + borgoña + hairlines)
   ═══════════════════════════════════════════════════════════════════ */

[data-theme="light"] {
  --carbon:        #FAF7EE;
  --carbon-2:      #F0EBD8;
  --steel:         #E8E1CB;
  --line:          rgba(38, 38, 38, 0.10);
  --line-soft:     rgba(38, 38, 38, 0.06);
  --bone:          #262626;
  --bone-dim:      #6B6B6B;
  --bone-faint:    rgba(38, 38, 38, 0.45);
  color-scheme: light;
}

[data-theme="light"] ::selection { background: var(--burgundy); color: #FAF7EE; }

[data-theme="light"] body {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(91, 14, 22, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 95%, rgba(38, 38, 38, 0.03) 0%, transparent 50%),
    var(--carbon);
}

/* Nav */
[data-theme="light"] .leb-nav { background: rgba(250, 247, 238, 0.78); }
[data-theme="light"] .leb-nav.is-scrolled {
  background: rgba(250, 247, 238, 0.92);
  border-bottom-color: rgba(38, 38, 38, 0.12);
}
[data-theme="light"] .leb-brand-main { color: #262626; }
[data-theme="light"] .leb-nav-links a:hover { color: #262626; }
[data-theme="light"] .leb-nav-cta { border-color: #262626; color: #262626; }
[data-theme="light"] .leb-nav-cta:hover { background: #262626; color: #FAF7EE; }
[data-theme="light"] .leb-nav-burger { border-color: rgba(38, 38, 38, 0.18); }
[data-theme="light"] .leb-nav-burger span { background: #262626; }
[data-theme="light"] .leb-nav-sheet { background: #FAF7EE; border-top-color: rgba(38, 38, 38, 0.12); }
[data-theme="light"] .leb-nav-sheet a { border-bottom-color: rgba(38, 38, 38, 0.10); color: #262626; }
[data-theme="light"] .leb-nav-sheet a.is-cta { border-color: #262626; color: #262626; }

/* HERO — efectos atmosfericos OFF + veil invertido */
[data-theme="light"] .leb-hero {
  background: var(--carbon);
}
[data-theme="light"] .leb-hero-veil {
  background:
    linear-gradient(
      to bottom,
      rgba(250, 247, 238, 0.62) 0%,
      rgba(250, 247, 238, 0.28) 8%,
      transparent 16%
    ),
    linear-gradient(
      to top,
      var(--carbon) 0%,
      rgba(250, 247, 238, 0.92) 38%,
      rgba(250, 247, 238, 0.55) 68%,
      rgba(250, 247, 238, 0.15) 100%
    );
}
[data-theme="light"] .leb-hero-fx,
[data-theme="light"] .leb-hero-glow,
[data-theme="light"] .leb-hero-grid { display: none; }
[data-theme="light"] .leb-hero-eyebrow,
[data-theme="light"] .leb-hero-edition,
[data-theme="light"] .leb-hero-foot { color: var(--bone-dim); }
[data-theme="light"] .leb-hero-foot-label { color: rgba(38, 38, 38, 0.40); }
[data-theme="light"] .leb-hero-sub { color: #262626; }
[data-theme="light"] .leb-hero-cta--prime { background: #262626; color: #FAF7EE; border-color: #262626; }
[data-theme="light"] .leb-hero-cta--prime:hover { background: #000; border-color: #000; }
[data-theme="light"] .leb-hero-cta--ghost { color: #262626; border-color: rgba(38, 38, 38, 0.30); }
[data-theme="light"] .leb-hero-cta--ghost:hover { border-color: #262626; }

/* Sections */
[data-theme="light"] .leb-section { border-top-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-section-head { border-bottom-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-section-title { color: #262626; }
[data-theme="light"] .leb-section-num,
[data-theme="light"] .leb-section-meta { color: var(--bone-dim); }

/* Casa + pilares */
[data-theme="light"] .leb-casa-lead { color: #262626; }
[data-theme="light"] .leb-casa-lead em { color: var(--bone-dim); }
[data-theme="light"] .leb-casa-body p:first-child { color: #262626; }
[data-theme="light"] .leb-pillars { background: rgba(38, 38, 38, 0.10); border-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-pillar { background: #FAF7EE; }
[data-theme="light"] .leb-pillar-title { color: #262626; }

/* Catalogo cards */
[data-theme="light"] .leb-catalogo-lead em { color: #262626; }
[data-theme="light"] .leb-cat-cards { background: rgba(38, 38, 38, 0.10); border-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-cat-card { background: #FAF7EE; }
[data-theme="light"] .leb-cat-card:hover { background: var(--carbon-2); }
[data-theme="light"] .leb-cat-card-mark {
  background: linear-gradient(160deg, #262626 0%, #6B6B6B 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
[data-theme="light"] .leb-cat-card-title { color: #262626; }
[data-theme="light"] .leb-cat-card-list { color: #6B6B6B; }
[data-theme="light"] .leb-cat-card-cta { color: #262626; }
[data-theme="light"] .leb-cta-prime { background: #262626; color: #FAF7EE; }
[data-theme="light"] .leb-cta-prime:hover { background: #000; }

/* Historia */
[data-theme="light"] .leb-historia-quote { color: #262626; }
[data-theme="light"] .leb-historia-body p { color: #6B6B6B; }
[data-theme="light"] .leb-historia-meta { background: rgba(38, 38, 38, 0.10); border-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-historia-meta > div { background: #FAF7EE; }
[data-theme="light"] .leb-historia-meta strong { color: #262626; }

/* FAQ */
[data-theme="light"] .leb-faq-list { border-top-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-faq-item { border-bottom-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-faq-q { color: #262626; }
[data-theme="light"] .leb-faq-a p { color: #6B6B6B; }
[data-theme="light"] .leb-faq-a em { color: #262626; }

/* Locales */
[data-theme="light"] .leb-locales-grid { background: rgba(38, 38, 38, 0.10); border-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-local { background: #FAF7EE; }
[data-theme="light"] .leb-local-addr { color: #262626; }
[data-theme="light"] .leb-local-hours-row { color: #262626; }
[data-theme="light"] .leb-local-btn { border-color: #262626; color: #262626; }
[data-theme="light"] .leb-local-btn:hover { background: #262626; color: #FAF7EE; }
[data-theme="light"] .leb-local-btn--ghost { border-color: rgba(38, 38, 38, 0.20); color: var(--bone-dim); }
[data-theme="light"] .leb-local-btn--ghost:hover { background: transparent; border-color: #262626; color: #262626; }

/* Footer */
[data-theme="light"] .leb-footer { border-top-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-footer-col a { color: var(--bone-dim); }
[data-theme="light"] .leb-footer-col a:hover { color: #262626; }
[data-theme="light"] .leb-footer-bottom { border-bottom-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-footer-wagon strong { color: var(--bone-dim); }

/* Sweep ember CTA — mas sutil en light */
[data-theme="light"] .leb-hero-cta--prime::after,
[data-theme="light"] .leb-cta-prime::after,
[data-theme="light"] .leb-nav-cta::after {
  background: linear-gradient(100deg, transparent 30%, rgba(232, 102, 58, 0.18) 50%, transparent 70%);
}

/* Glow letras A/B/C ajustado */
[data-theme="light"] .leb-cat-card:hover .leb-cat-card-mark {
  filter: drop-shadow(0 0 22px rgba(91, 14, 22, 0.15)) drop-shadow(0 0 52px rgba(91, 14, 22, 0.10));
}

/* v7.98.5 · Accessibility — focus visible global */
button:focus-visible,
a:focus-visible,
input:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--burgundy-glow);
  outline-offset: 2px;
}
[data-theme="light"] button:focus-visible,
[data-theme="light"] a:focus-visible,
[data-theme="light"] input:focus-visible,
[data-theme="light"] details summary:focus-visible {
  outline-color: var(--burgundy);
}

.leb-skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--bone);
  color: var(--carbon);
  padding: 8px 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 200;
  transition: top 0.18s var(--ease);
}
.leb-skip-link:focus { top: 8px; }

/* Oculto visualmente pero accesible (lectores de pantalla + SEO) */
.leb-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;
}

/* Toggle theme button */
.leb-theme-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--bone-dim);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  background: transparent;
  cursor: pointer;
}
.leb-theme-btn:hover { color: var(--bone); border-color: var(--bone-dim); }
.leb-theme-btn svg { width: 15px; height: 15px; }
.leb-theme-btn .leb-theme-icon--moon { display: inline-flex; }
.leb-theme-btn .leb-theme-icon--sun  { display: none; }
[data-theme="light"] .leb-theme-btn .leb-theme-icon--moon { display: none; }
[data-theme="light"] .leb-theme-btn .leb-theme-icon--sun  { display: inline-flex; }

/* ── Rediseño · overrides light mode ── */
[data-theme="light"] .leb-wa-float {
  background: #FFFFFF;
  border-color: rgba(38, 38, 38, 0.14);
  color: #262626;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.12);
}
[data-theme="light"] .leb-wa-float:hover { color: #000; border-color: rgba(38, 38, 38, 0.30); }
[data-theme="light"] .leb-city-menu { box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14); }
[data-theme="light"] .leb-photo img { filter: contrast(1.03) saturate(0.95) brightness(1); }
[data-theme="light"] .leb-photo::after {
  background:
    radial-gradient(125% 115% at 50% 26%, transparent 60%, rgba(38, 38, 38, 0.18) 100%),
    linear-gradient(180deg, transparent 70%, rgba(91, 14, 22, 0.10) 100%);
}
[data-theme="light"] .leb-photo-cap {
  color: #262626;
  background: linear-gradient(to top, rgba(250, 247, 238, 0.92), transparent);
}
[data-theme="light"] .leb-estrella-title { color: #262626; }
[data-theme="light"] .leb-estrella-body > p { color: #6B6B6B; }
[data-theme="light"] .leb-estrella-grid + .leb-estrella-grid { border-top-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-estrella-data { background: rgba(38, 38, 38, 0.10); border-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-estrella-data > div { background: #FAF7EE; }
[data-theme="light"] .leb-estrella-data strong { color: #262626; }
[data-theme="light"] .leb-estrella-cta { color: #262626; }
[data-theme="light"] .leb-oficio-lead em { color: #262626; }
[data-theme="light"] .leb-oficio-marks { background: rgba(38, 38, 38, 0.10); border-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-oficio-marks > div { background: #FAF7EE; color: #262626; }
[data-theme="light"] .leb-pasos-grid { background: rgba(38, 38, 38, 0.10); border-color: rgba(38, 38, 38, 0.10); }
[data-theme="light"] .leb-paso { background: #FAF7EE; }
[data-theme="light"] .leb-paso-num { color: #262626; }
[data-theme="light"] .leb-paso-title { color: #262626; }
[data-theme="light"] .leb-local-map {
  background-image:
    linear-gradient(rgba(38, 38, 38, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 38, 38, 0.06) 1px, transparent 1px);
}
[data-theme="light"] .leb-local-map-label {
  color: #6B6B6B;
  background: linear-gradient(to top, rgba(250, 247, 238, 0.8), transparent);
}

/* ═══════════════════════════════════════════════════════════════════
   PIZARRA · Recomendados de la semana (recomendado.js)
   Banda full-width tipo pizarrón, debajo del hero, ROTANDO entre items.
   Colores de tiza hardcodeados a propósito → oscura en AMBOS temas.
   ═══════════════════════════════════════════════════════════════════ */
.leb-pizarra {
  position: relative;
  background: linear-gradient(160deg, #15120f 0%, #0c0a08 100%);
  border-top: 1px solid rgba(237, 230, 214, 0.10);
  border-bottom: 1px solid rgba(237, 230, 214, 0.10);
  overflow: hidden;
}
/* Textura de tiza — mismo SVG noise que usa .leb-photo::before */
.leb-pizarra::before {
  content: "";
  position: absolute;
  inset: 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: overlay;
  pointer-events: none;
}
.leb-pizarra-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--pad-side) 40px;
}
.leb-destacados-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(237, 230, 214, 0.12);
}
.leb-destacados-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #D9C788;
}
.leb-destacados-count {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(237, 230, 214, 0.5);
  font-variant-numeric: tabular-nums;
}

/* Índice editorial: lista de destacados (izq) + visor grande que cambia (der) */
.leb-destacados-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: stretch;
}
.leb-destacados-list { list-style: none; margin: 0; padding: 0; }
.leb-destacados-item { border-top: 1px solid rgba(237, 230, 214, 0.10); }
.leb-destacados-item:last-child { border-bottom: 1px solid rgba(237, 230, 214, 0.10); }

.leb-destacados-row {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 14px 22px 6px;
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.32s var(--ease), background 0.32s var(--ease);
}
.leb-destacados-row::before {
  content: "";
  position: absolute;
  left: -1px; top: 0; bottom: 0;
  width: 2px;
  background: #D9C788;
  transform: scaleY(0);
  transition: transform 0.32s var(--ease);
}
.leb-destacados-item.is-active .leb-destacados-row::before { transform: scaleY(1); }
.leb-destacados-item.is-active .leb-destacados-row { padding-left: 18px; background: rgba(237, 230, 214, 0.02); }

.leb-destacados-line { display: flex; align-items: baseline; gap: 18px; }
.leb-destacados-num {
  flex: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(237, 230, 214, 0.45);
  transition: color 0.3s var(--ease);
}
.leb-destacados-item.is-active .leb-destacados-num { color: #D9C788; }
.leb-destacados-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.1vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: #C9C1B1;
  transition: color 0.3s var(--ease);
}
.leb-destacados-item.is-active .leb-destacados-name { color: #F3EEE2; }

.leb-destacados-reveal {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-left: 29px;
  transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease), margin-top 0.4s var(--ease);
}
.leb-destacados-item.is-active .leb-destacados-reveal { max-height: 170px; opacity: 1; margin-top: 12px; }
.leb-destacados-bajada {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: #B8B0A0;
  max-width: 44ch;
}
.leb-destacados-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D9C788;
}
.leb-destacados-cta-arrow { transition: transform 0.28s var(--ease); }
.leb-destacados-row:hover .leb-destacados-cta-arrow { transform: translateX(5px); }

.leb-destacados-thumb { display: none; }

.leb-destacados-dots { display: none; justify-content: center; gap: 9px; margin-top: 22px; }
.leb-destacados-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(237, 230, 214, 0.25);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.leb-destacados-dot:hover { background: rgba(237, 230, 214, 0.5); }
.leb-destacados-dot.is-active { background: #D9C788; transform: scale(1.3); }

.leb-destacados-preview {
  position: relative;
  height: 100%;
  min-height: 380px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(237, 230, 214, 0.14);
  background: #0c0a08;
}
.leb-destacados-pimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  filter: contrast(1.04);
  transition: opacity 0.7s var(--ease), transform 7s linear;
}
.leb-destacados-pimg.is-active { opacity: 1; transform: scale(1); }
.leb-destacados-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.34) 100%);
  pointer-events: none;
}

@media (max-width: 760px) {
  /* Sin panel de color: la sección se funde con la página (negro plano = body en dark) */
  .leb-pizarra { background: #0A0A0A; border-top: 0; border-bottom: 0; }
  .leb-pizarra::before { display: none; }
  .leb-pizarra-inner { padding: 34px 0 30px; }
  .leb-destacados-head { padding: 0 var(--pad-side); margin-bottom: 22px; }

  /* Carrusel deslizable con el dedo (scroll-snap horizontal) */
  .leb-destacados-grid { display: block; }
  .leb-destacados-preview { display: none; }
  .leb-destacados-list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: var(--pad-side);
  }
  .leb-destacados-list::-webkit-scrollbar { display: none; }
  .leb-destacados-item {
    flex: 0 0 84%;
    scroll-snap-align: center;
    border: 0;
  }
  .leb-destacados-item:last-child { border-bottom: 0; }
  .leb-destacados-row { padding: 0; }
  .leb-destacados-row::before { display: none; }
  .leb-destacados-item.is-active .leb-destacados-row { padding-left: 0; background: none; }
  .leb-destacados-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    margin-bottom: 14px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(237, 230, 214, 0.12);
  }
  .leb-destacados-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .leb-destacados-name { color: #F3EEE2; }
  .leb-destacados-reveal { max-height: none; opacity: 1; margin-top: 12px; padding-left: 0; }
  .leb-destacados-line { gap: 14px; }
  .leb-destacados-dots { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  .leb-destacados-pimg, .leb-destacados-reveal, .leb-destacados-row, .leb-destacados-row::before { transition: none; }
  .leb-destacados-pimg { transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   EN CONSTRUCCIÓN · wireframe/esqueleto animado (Recetas, Blog)
   Previsualiza el layout real "vacío": build-in con stagger + shimmer +
   textura que se transforma en los placeholders de imagen + barra
   indeterminada. Comunica "se está creando". Reduced-motion safe.
   ═══════════════════════════════════════════════════════════════════ */
.leb-wip-note {
  margin: 0 0 26px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--bone-dim);
  max-width: 58ch;
}
.leb-wip-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--burgundy-glow);
  animation: lebWipBlink 1.6s ease-in-out infinite;
}
@keyframes lebWipBlink { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }

/* Barra indeterminada — señal de "construyendo" */
.leb-wip-bar {
  position: relative;
  width: 100%;
  height: 2px;
  margin: 0 0 56px;
  background: var(--line);
  overflow: hidden;
}
.leb-wip-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, transparent, var(--burgundy-glow), transparent);
  animation: lebWipBar 1.9s ease-in-out infinite;
}
@keyframes lebWipBar { 0% { transform: translateX(-110%); } 100% { transform: translateX(360%); } }

/* Grilla de recetas / lista de blog */
.leb-wip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.leb-wip-list { display: flex; flex-direction: column; }

/* Tarjeta (recetas) = wireframe punteado · Fila (blog) = hairline */
.leb-wip-card,
.leb-wip-row {
  opacity: 0;
  animation: lebWipIn 0.7s var(--ease) forwards;
}
.leb-wip-card {
  border: 1px dashed var(--line);
  border-radius: 5px;
  padding: 14px;
}
.leb-wip-row {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.leb-wip-row:first-child { border-top: 1px solid var(--line); }
.leb-wip-row-body { flex: 1 1 auto; min-width: 0; }
@keyframes lebWipIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.leb-wip-card:nth-child(1), .leb-wip-row:nth-child(1) { animation-delay: 0.04s; }
.leb-wip-card:nth-child(2), .leb-wip-row:nth-child(2) { animation-delay: 0.12s; }
.leb-wip-card:nth-child(3), .leb-wip-row:nth-child(3) { animation-delay: 0.20s; }
.leb-wip-card:nth-child(4), .leb-wip-row:nth-child(4) { animation-delay: 0.28s; }
.leb-wip-card:nth-child(5), .leb-wip-row:nth-child(5) { animation-delay: 0.36s; }
.leb-wip-card:nth-child(6), .leb-wip-row:nth-child(6) { animation-delay: 0.44s; }

/* Bloques skeleton */
.leb-wip-img,
.leb-wip-line {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--carbon-2), var(--steel));
}
.leb-wip-img {
  border: 1px solid var(--line);
  border-radius: 3px;
  aspect-ratio: 4 / 3;
}
.leb-wip-img--wide { flex: 0 0 auto; width: 240px; aspect-ratio: 16 / 10; }
.leb-wip-line { height: 12px; border-radius: 2px; margin-top: 12px; }
.leb-wip-line--title { height: 20px; width: 72%; margin-top: 16px; }
.leb-wip-line--short { width: 42%; }
.leb-wip-line--meta { height: 9px; width: 28%; margin-top: 0; }

/* Textura que "se transforma" en los placeholders de imagen */
.leb-wip-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
  animation: lebWipTexture 8s linear infinite;
}
@keyframes lebWipTexture {
  0%   { background-position: 0 0; opacity: 0.06; }
  50%  { opacity: 0.16; }
  100% { background-position: 180px 96px; opacity: 0.06; }
}

/* Shimmer (barrido) sobre imágenes y líneas */
.leb-wip-img::after,
.leb-wip-line::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, transparent 18%, rgba(237, 230, 214, 0.07) 50%, transparent 82%);
  transform: translateX(-100%);
  animation: lebWipShimmer 2.4s ease-in-out infinite;
}
@keyframes lebWipShimmer { 100% { transform: translateX(100%); } }

@media (max-width: 960px) {
  .leb-wip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .leb-wip-grid { grid-template-columns: 1fr; }
  .leb-wip-row { flex-direction: column; align-items: stretch; gap: 16px; }
  .leb-wip-img--wide { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .leb-wip-card,
  .leb-wip-row { opacity: 1; animation: none; }
  .leb-wip-img::before,
  .leb-wip-img::after,
  .leb-wip-line::after,
  .leb-wip-bar::after,
  .leb-wip-dot { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTENIDO REAL · Blog · Recetas · Equipo (alimentado por el CMS)
   El skeleton .leb-wip-* es el estado vacío/carga; cuando hay contenido
   publicado, el JS lo reemplaza por estos bloques.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Blog: lista de notas ── */
.leb-posts { display: flex; flex-direction: column; }
.leb-post-row {
  display: flex; gap: 28px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: opacity 0.35s var(--ease);
}
.leb-post-row:first-child { border-top: 1px solid var(--line); }
.leb-post-row:hover { opacity: 0.82; }
.leb-post-thumb {
  flex: 0 0 auto; width: 240px; aspect-ratio: 16 / 10; object-fit: cover;
  border: 1px solid var(--line); border-radius: 4px; background: var(--carbon-2);
}
.leb-post-body { flex: 1 1 auto; min-width: 0; }
.leb-post-meta, .leb-recipe-meta, .leb-article-meta, .leb-team-role {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--bone-faint);
}
.leb-post-title { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); line-height: 1.1; margin: 8px 0; }
.leb-post-excerpt { color: var(--bone-dim); max-width: 64ch; margin: 0; }

/* ── Recetas: grilla de tarjetas ── */
.leb-recipes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leb-recipe-card {
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.leb-recipe-card:hover { border-color: var(--bone-faint); transform: translateY(-3px); }
.leb-recipe-thumb { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--carbon-2); }
.leb-recipe-info { padding: 16px 16px 20px; }
.leb-recipe-card .leb-recipe-title { font-family: var(--serif); font-size: 21px; line-height: 1.15; margin: 0 0 8px; }

/* ── Detalle (artículo de blog / receta) ── */
.leb-article, .leb-recipe { max-width: 760px; margin: 0 auto; }
.leb-article-hero, .leb-recipe-hero {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 6px;
  border: 1px solid var(--line); background: var(--carbon-2); margin: 0 0 28px;
}
.leb-article h1, .leb-recipe h1 { font-family: var(--serif); font-size: clamp(28px, 5vw, 44px); line-height: 1.05; margin: 0 0 12px; }
.leb-article-meta, .leb-recipe-meta-row { margin-bottom: 28px; display: flex; gap: 16px; flex-wrap: wrap; }
.leb-recipe-meta-row { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone-faint); }
.leb-prose { color: var(--bone-dim); font-size: 17px; line-height: 1.7; }
.leb-prose p { margin: 0 0 18px; }
.leb-prose h2 { font-family: var(--serif); color: var(--bone); font-size: 26px; margin: 32px 0 12px; }
.leb-prose h3 { font-family: var(--serif); color: var(--bone); font-size: 21px; margin: 26px 0 10px; }
.leb-prose ul { margin: 0 0 18px; padding-left: 22px; }
.leb-prose li { margin: 0 0 6px; }
.leb-prose strong { color: var(--bone); }
.leb-back {
  display: inline-block; font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--bone-dim);
  text-decoration: none; margin-bottom: 28px;
}
.leb-back:hover { color: var(--bone); }

/* Receta: ingredientes + pasos */
.leb-recipe-cols { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; margin-top: 8px; }
.leb-recipe-cols h2 { font-family: var(--serif); font-size: 22px; margin: 0 0 14px; }
.leb-ing { list-style: none; padding: 0; margin: 0; }
.leb-ing li { padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--bone-dim); }
.leb-steps { counter-reset: paso; list-style: none; padding: 0; margin: 0; }
.leb-steps li { position: relative; padding: 1px 0 18px 42px; color: var(--bone-dim); line-height: 1.6; }
.leb-steps li::before {
  counter-increment: paso; content: counter(paso);
  position: absolute; left: 0; top: 0;
  width: 27px; height: 27px; border-radius: 50%;
  border: 1px solid var(--burgundy-glow); color: var(--bone);
  font-family: var(--mono); font-size: 12px; display: grid; place-items: center;
}

/* ── Equipo (Nuestra Casa) ── */
.leb-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leb-team-photo {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 6px;
  border: 1px solid var(--line); background: var(--carbon-2); margin: 0 0 14px;
}
.leb-team-name { font-family: var(--serif); font-size: 22px; margin: 0 0 2px; }
.leb-team-role { margin: 0 0 8px; }
.leb-team-bio { color: var(--bone-dim); font-size: 14px; line-height: 1.55; margin: 0; }

@media (max-width: 960px) {
  .leb-recipes, .leb-team { grid-template-columns: repeat(2, 1fr); }
  .leb-recipe-cols { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .leb-recipes, .leb-team { grid-template-columns: 1fr; }
  .leb-post-row { flex-direction: column; align-items: stretch; gap: 16px; }
  .leb-post-thumb { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESEÑAS DE GOOGLE (#leb-resenas · alimentado por el CMS)
   Reemplaza al "Lote del mes". Curado desde el panel; oculto si no hay data.
   ═══════════════════════════════════════════════════════════════════ */
.leb-resenas { text-align: center; }
.leb-resenas-head { max-width: 720px; margin: 0 auto 40px; }
.leb-resenas-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--bone-faint);
  display: inline-flex; align-items: center; gap: 8px;
}
.leb-resenas-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--burgundy-glow); }
.leb-resenas-title { font-family: var(--serif); font-size: clamp(26px, 4vw, 40px); line-height: 1.08; margin: 14px 0 0; }
.leb-resenas-sub { color: var(--bone-dim); margin: 12px 0 0; }
.leb-resenas-agg {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-top: 22px; padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
}
.leb-resenas-rating { font-family: var(--serif); font-size: 26px; line-height: 1; color: var(--bone); }
.leb-resenas-aggstars { color: #D9C788; letter-spacing: 2px; font-size: 15px; }
.leb-resenas-count { font-family: var(--mono); font-size: 12px; color: var(--bone-faint); }
.leb-resenas-glink {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--bone-dim);
  text-decoration: none; border-left: 1px solid var(--line); padding-left: 14px;
}
.leb-resenas-glink:hover { color: var(--bone); }

.leb-resenas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  text-align: left; max-width: var(--max-w); margin: 0 auto;
}
.leb-resena {
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--line); border-radius: 8px; padding: 22px;
  background: var(--carbon-2); transition: border-color 0.3s var(--ease);
}
.leb-resena:hover { border-color: var(--bone-faint); }
.leb-resena-stars { color: #D9C788; letter-spacing: 2px; font-size: 15px; }
.leb-resena-texto { color: var(--bone-dim); line-height: 1.6; margin: 0; flex: 1 1 auto; }
.leb-resena-foot { display: flex; flex-direction: column; gap: 2px; padding-top: 12px; border-top: 1px solid var(--line); }
.leb-resena-autor { color: var(--bone); font-weight: 500; }
.leb-resena-meta { font-size: 12px; color: var(--bone-faint); }
.leb-resena-via { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone-faint); margin-top: 4px; }
.leb-resenas-foot { margin-top: 28px; }
.leb-resenas-ask { margin: 32px auto 0; max-width: 640px; color: var(--bone-dim); font-size: 15px; }
.leb-resenas-ask a {
  color: var(--bone); text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: var(--burgundy-glow); transition: color 0.2s var(--ease);
}
.leb-resenas-ask a:hover { color: var(--burgundy-glow); }

@media (max-width: 960px) { .leb-resenas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .leb-resenas-grid { grid-template-columns: 1fr; } }

/* ════════ LANDINGS SEO · cortes / categorías (.leb-corte-*) ════════ */
.leb-corte-resumen {
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.4;
  font-style: italic;
  color: var(--bone);
  margin: 0 0 20px;
}
.leb-corte-term {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0 0 48px;
}
.leb-corte-photo { margin: 0 0 64px; --reveal: 1; }
/* Reveal atado al scroll: la foto arranca en duotone (oscura + desaturada) y
   va mostrando su color real de la casa + un leve zoom a medida que sube por
   el viewport. web.js escribe --reveal (0→1) por frame y el CSS interpola
   filter/transform/opacity. Sin JS o con prefers-reduced-motion queda revelada
   (--reveal:1), así SIEMPRE se ve el color (no depende del efecto). En dark
   (default) se revela el color; en light, que ya es brillante, el filtro
   estático de tema manda y queda solo el zoom + el fundido de la capa. */
.leb-corte-photo img {
  filter:
    contrast(calc(1.08 - 0.03 * var(--reveal)))
    saturate(calc(0.5 + 0.42 * var(--reveal)))
    brightness(calc(0.82 + 0.16 * var(--reveal)));
  transform: scale(calc(1 + 0.05 * var(--reveal)));
  transition: filter 0.12s linear, transform 0.12s linear;
  /* will-change lo maneja web.js: promueve la capa SOLO mientras anima
     (0<reveal<1) y la suelta en los extremos → sin capa retenida de gusto. */
}
.leb-corte-photo::after {
  opacity: calc(0.30 + 0.70 * (1 - var(--reveal)));
  transition: opacity 0.12s linear;
}
@media (prefers-reduced-motion: reduce) {
  .leb-corte-photo { --reveal: 1 !important; }
  .leb-corte-photo img { transform: none; transition: none; }
}
.leb-corte-body { max-width: 720px; margin: 0 0 72px; }
.leb-corte-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--bone-dim);
  margin: 0 0 20px;
}
.leb-corte-body p:last-child { margin-bottom: 0; }
.leb-corte-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--bone);
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.leb-corte-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 0 72px;
}
.leb-corte-tip-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--bone);
  margin: 0 0 10px;
}
.leb-corte-tip-text { font-size: 14.5px; line-height: 1.65; color: var(--bone-dim); margin: 0; }
.leb-corte-comprar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  border: 1px solid var(--line);
  margin: 0 0 72px;
}
.leb-corte-comprar .leb-corte-h2 { border: 0; padding: 0; margin: 0 0 8px; }
.leb-corte-comprar-txt { max-width: 460px; color: var(--bone-dim); font-size: 15px; line-height: 1.6; margin: 0; }
.leb-corte-comprar-cta { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.leb-corte-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--line);
  color: var(--bone);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.leb-corte-btn:hover { border-color: var(--bone); }
.leb-corte-btn--prime { background: var(--bone); color: var(--carbon); border-color: var(--bone); }
.leb-corte-btn--prime:hover { background: var(--burgundy-glow); border-color: var(--burgundy-glow); color: var(--bone); }
.leb-corte-faq { border-top: 1px solid var(--line); margin: 0 0 72px; }
.leb-corte-faq-item { border-bottom: 1px solid var(--line); }
.leb-corte-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--bone);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.leb-corte-faq-item summary::-webkit-details-marker { display: none; }
.leb-corte-faq-item summary::after { content: "+"; color: var(--bone-dim); font-size: 20px; }
.leb-corte-faq-item[open] summary::after { content: "–"; }
.leb-corte-faq-a { padding: 0 0 24px; color: var(--bone-dim); font-size: 15px; line-height: 1.7; max-width: 720px; }
.leb-corte-rel-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0 0 16px;
}
.leb-corte-rel-links { display: flex; flex-wrap: wrap; gap: 12px; }
.leb-corte-rel-link {
  padding: 10px 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 14px;
  color: var(--bone);
  transition: border-color 0.2s var(--ease);
}
.leb-corte-rel-link:hover { border-color: var(--bone); }
.leb-corte-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.leb-corte-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 56px 28px 28px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 0.2s var(--ease);
  position: relative;
}
.leb-corte-card:hover { border-color: var(--bone); }
.leb-corte-card-name { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--bone); }
.leb-corte-card-sub { font-size: 14px; line-height: 1.55; color: var(--bone-dim); }
.leb-corte-card-arrow { position: absolute; top: 24px; right: 24px; color: var(--bone-dim); }
.leb-suc-info { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 0 0 72px; }
.leb-suc-block .leb-corte-h2 { margin-bottom: 20px; }
.leb-suc-addr { font-size: 16px; line-height: 1.6; color: var(--bone); margin: 0 0 24px; }
.leb-suc-hours { border-top: 1px solid var(--line); }
.leb-suc-hrow {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--bone-dim);
}
.leb-suc-hrow span:last-child { color: var(--bone); }
@media (max-width: 860px) {
  .leb-corte-tips { grid-template-columns: 1fr; gap: 20px; }
  .leb-corte-comprar { flex-direction: column; align-items: flex-start; padding: 28px; }
  .leb-corte-comprar-cta { width: 100%; }
  .leb-corte-grid { grid-template-columns: 1fr; }
  .leb-suc-info { grid-template-columns: 1fr; gap: 28px; }
}
