/* ═══════════════════════════════════════════════════════════════════
   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:
    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%),
    url("img/hero.webp") center 25% / cover no-repeat,
    var(--carbon);
  overflow: hidden;
}

/* 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:
    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 */
.leb-hero-glow {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -8%;
  height: 58%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    ellipse 70% 100% at 50% 100%,
    rgba(232, 102, 58, 0.22) 0%,
    rgba(184, 70, 34, 0.16) 18%,
    rgba(122, 22, 32, 0.12) 38%,
    rgba(91, 14, 22, 0.05) 62%,
    transparent 85%
  );
  mix-blend-mode: screen;
  animation: lebHeroGlow 5.6s ease-in-out infinite;
  will-change: opacity, filter, transform;
}
@keyframes lebHeroGlow {
  0%   { opacity: 0.62; filter: blur(2px);   transform: translateY(0) scaleY(1); }
  18%  { opacity: 0.92; filter: blur(0.6px); transform: translateY(-1%) scaleY(1.02); }
  32%  { opacity: 0.74; filter: blur(1.4px); transform: translateY(0.5%) scaleY(0.98); }
  46%  { opacity: 1;    filter: blur(0.4px); transform: translateY(-1.5%) scaleY(1.03); }
  60%  { opacity: 0.78; filter: blur(1.2px); transform: translateY(0) scaleY(1); }
  74%  { opacity: 0.96; filter: blur(0.6px); transform: translateY(-1%) scaleY(1.02); }
  88%  { opacity: 0.7;  filter: blur(1.6px); transform: translateY(0.5%) scaleY(0.99); }
  100% { opacity: 0.62; filter: blur(2px);   transform: translateY(0) scaleY(1); }
}

/* 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-sub {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone);
  text-align: center;
}
.leb-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.leb-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  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);
}
.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;
}

/* ════════ 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; }

.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-top: 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; }

/* ════════ 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; }
  .leb-hero-cta { padding: 14px 20px; font-size: 9.5px; letter-spacing: 0.22em; }

  .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.24s 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; }

@media (max-width: 720px) {
  .leb-wa-float { display: 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;
}
.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(4, 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; }

@media (max-width: 960px) {
  .leb-oficio-grid { grid-template-columns: 1fr; }
  .leb-oficio-marks { grid-template-columns: 1fr 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 {
  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; }
.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:
    radial-gradient(ellipse at 20% 10%, rgba(91, 14, 22, 0.10) 0%, transparent 55%),
    url("img/hero.webp") center 25% / cover no-repeat,
    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-top-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; }

/* 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);
}
