/* ============================================
   OROVERDE JOYAS — Editorial Cinematic Dark
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-deep: #050505;
  --bg-soft: #131313;
  --emerald: #0f5132;
  --emerald-bright: #1a8551;
  --emerald-glow: rgba(15, 81, 50, 0.35);
  --gold: #c5a465;
  --gold-bright: #e0c089;
  --gold-deep: #8c6f3d;
  --ivory: #f0ebe1;
  --ivory-soft: #c8c1b3;
  --muted: #6b675f;
  --line: rgba(197, 164, 101, 0.18);
  --line-strong: rgba(197, 164, 101, 0.45);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
  cursor: default;
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ivory);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s var(--ease);
}

::selection {
  background: var(--emerald);
  color: var(--ivory);
}

/* ============================================
   LOADER
   ============================================ */

#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  color: var(--ivory);
  position: relative;
}

.loader-mark span {
  color: var(--gold);
}

.loader-progress {
  width: min(280px, 50vw);
  height: 1px;
  background: rgba(240, 235, 225, 0.12);
  overflow: hidden;
  position: relative;
}

.loader-progress::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--ivory));
  transform: scaleX(var(--p, 0));
  transform-origin: left;
  transition: transform 0.3s ease;
}

.loader-percent {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--ivory-soft);
  font-variant-numeric: tabular-nums;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
  mix-blend-mode: difference;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1rem 2.5rem;
  border-bottom-color: var(--line);
  mix-blend-mode: normal;
}

.site-header .brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--ivory);
  font-weight: 500;
}

.site-header .brand em {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
}

/* NAV — vive en <body> directamente (JS lo mueve fuera del header al cargar
   para evitar el stacking-context del header que rompia el drawer mobile).
   En desktop se posiciona fixed alineado verticalmente con el brand del header. */
nav#site-nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  pointer-events: auto;
  transition: top 0.4s var(--ease);
}
body:has(.site-header.scrolled) nav#site-nav {
  top: 1rem;
}

nav#site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  margin: 0;
  padding: 0;
}

nav#site-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 400;
  font-family: var(--sans);
  text-decoration: none;
  position: relative;
  padding: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

nav#site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

nav#site-nav a:hover::after,
nav#site-nav a.active::after {
  width: 100%;
}

nav#site-nav a:hover {
  color: var(--gold);
}

.site-header .cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s var(--ease);
}

.site-header .cta-wa:hover {
  background: var(--gold);
  color: var(--bg);
}

@media (max-width: 880px) {
  .site-header { padding: 1rem 1.2rem; }
  .site-header .cta-wa { padding: 0.55rem 0.9rem; font-size: 0.65rem; letter-spacing: 0.18em; }
}

/* ============================================
   HERO (Home — scroll video)
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

/* Hero video background — Kling 3.0 PRO cinematic loop (Andes → mina → esmeralda) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Hero-bg: overlay con tinte de marca + oscurecedor para legibilidad del copy */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(15, 81, 50, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 30%, rgba(197, 164, 101, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.30) 40%, rgba(10, 10, 10, 0.70) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1400px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 12vw, 11rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ivory);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-sub {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1vw, 1rem);
  letter-spacing: 0.06em;
  color: var(--ivory-soft);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  font-weight: 300;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  opacity: 0;
}

.hero-scroll-cue .line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   CANVAS SECTION (scroll video)
   ============================================ */

.scroll-stage {
  position: relative;
  height: 400vh; /* Reducido de 700vh tras feedback cliente — solo 2 capitulos */
  z-index: 1;
}

.canvas-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: var(--bg-deep);
}

#scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.canvas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0) 25%, rgba(10,10,10,0) 75%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
  z-index: 2;
}

.canvas-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0);
  pointer-events: none;
  z-index: 3;
  transition: background 0.5s ease;
}

/* Floating sections that ride the scroll video */
.scroll-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.float-section {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  pointer-events: none;
  opacity: 0;
}

/* Scrim gradient detrás de cada bloque para legibilidad sobre cualquier frame */
.float-section.align-left::before,
.float-section.align-right::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.float-section.align-left::before {
  background:
    linear-gradient(90deg,
      rgba(5, 5, 5, 0.88) 0%,
      rgba(5, 5, 5, 0.7) 22%,
      rgba(5, 5, 5, 0.35) 42%,
      rgba(5, 5, 5, 0) 60%);
}

.float-section.align-right::before {
  background:
    linear-gradient(270deg,
      rgba(5, 5, 5, 0.88) 0%,
      rgba(5, 5, 5, 0.7) 22%,
      rgba(5, 5, 5, 0.35) 42%,
      rgba(5, 5, 5, 0) 60%);
}

.float-section .inner {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 5vw;
  z-index: 1;
}

.align-left .inner-block { max-width: 42%; margin-right: auto; }
.align-right .inner-block { max-width: 42%; margin-left: auto; text-align: right; }

.align-right .eyebrow { flex-direction: row-reverse; }
.align-right .eyebrow::before { background: var(--gold); }

.float-section h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin: 1.2rem 0;
  font-weight: 300;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 8px 32px rgba(0, 0, 0, 0.6);
}

.float-section h2 em {
  font-style: italic;
  color: var(--gold);
}

.float-section p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ivory);
  font-weight: 300;
  max-width: 38ch;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85), 0 4px 16px rgba(0, 0, 0, 0.5);
}

.float-section .eyebrow {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
}

.align-right .float-section p { margin-left: auto; }

@media (max-width: 880px) {
  .scroll-stage { height: 320vh; } /* Mobile: tambien reducido por feedback */
  .align-left .inner-block, .align-right .inner-block {
    max-width: 100%;
    text-align: left;
  }
  .align-right .eyebrow { flex-direction: row; }
  .align-right .float-section p { margin-left: 0; }
  .float-section .inner { padding: 0 1.5rem; }
  /* En mobile, scrim cubre todo (no hay espacio para gradient lateral) */
  .float-section.align-left::before,
  .float-section.align-right::before {
    background: linear-gradient(180deg,
      rgba(5, 5, 5, 0.55) 0%,
      rgba(5, 5, 5, 0.85) 100%);
  }
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ivory);
  will-change: transform;
}

.marquee-track span {
  padding-right: 4rem;
  display: inline-block;
}

.marquee-track em {
  font-style: italic;
  color: var(--emerald-bright);
  -webkit-text-stroke: 1px var(--emerald-bright);
  color: transparent;
  padding-right: 4rem;
}

/* ============================================
   PILLARS
   ============================================ */

.pillars {
  padding: 9rem 5vw 7rem;
  background: var(--bg);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

/* Video oro de fondo (cuando el Agente A termine, el video carga; mientras tanto fallback al poster) */
.pillars-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18; /* sutil para no distraer del texto */
  z-index: 0;
  pointer-events: none;
}

.pillars-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 50%, rgba(10,10,10,0.75) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(197,164,101,0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.pillars-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.pillar {
  padding: 4rem 2.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.6s var(--ease);
}

.pillar:last-child { border-right: none; }

/* ============================================
   PRODUCT KEY SPECS — Peso + Material + Piedra (NUEVO 2026-05-22)
   Top de cada pagina producto, antes de la descripcion
   PESO es la informacion mas pedida por el cliente
   ============================================ */

.product-key-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 1.5rem 0;
  margin: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-item-key {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.spec-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 0.55rem;
}

.spec-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--ivory);
}

@media (max-width: 600px) {
  .product-key-specs { gap: 1.25rem; }
  .spec-value { font-size: 1.2rem; }
}

/* ============================================
   BENTO STATS GRANDES (NUEVO 2026-05-22)
   Portado del MVP B — "100% colombiana asi grande" pedido por cliente
   ============================================ */

.bento-stats {
  padding: 9rem 5vw 7rem;
  background: var(--bg-deep);
  position: relative;
  z-index: 10;
}

.bento-stats-head {
  max-width: 1400px;
  margin: 0 auto 4rem;
  text-align: left;
}

.bento-eyebrow-section {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.bento-stats-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--ivory);
  font-weight: 500;
  max-width: 900px;
  margin: 0;
}

.bento-stats-head em {
  font-style: normal;
  color: var(--gold);
}

.bento-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-card {
  padding: 3rem 2.5rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.bento-card--dark {
  background: var(--bg-soft, #161616);
}

.bento-card--emerald {
  background: var(--emerald, #0F5132);
  color: var(--ivory);
}

.bento-card--outline {
  border: 1px solid var(--line);
}

.bento-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.bento-card--emerald .bento-eyebrow {
  /* 2026-05-27 a11y fix: gold-hi sobre emerald daba contraste 3.5:1 (AA FAIL).
     ivory directo alcanza ~9:1 sobre #0F5132. */
  color: var(--ivory);
}

.bento-number {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.9;
  color: var(--ivory);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.bento-desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  /* 2026-05-27 a11y fix: --ivory-dim no existe en :root (heredaba inherit).
     ivory-soft = rgba(245,241,232,0.82) garantiza contraste AA sobre bg-deep/bg-soft. */
  color: var(--ivory-soft);
  line-height: 1.6;
  margin: 0;
  max-width: 28ch;
}

.bento-card--emerald .bento-desc {
  /* 2026-05-27 a11y fix: opacity 0.85 sobre emerald daba ~4.2:1 (AA borderline FAIL).
     ivory full (1.0) sobre emerald ~9:1. */
  color: var(--ivory);
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bento-card {
    min-height: 240px;
    padding: 2.25rem 1.75rem;
  }
  .bento-stats {
    padding: 5rem 1.5rem 4rem;
  }
}

.pillar:hover {
  background: var(--bg-soft);
}

.pillar .num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.pillar h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.pillar p {
  color: var(--ivory-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 38ch;
}

@media (max-width: 880px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; padding: 3rem 1.5rem; }
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */

.featured {
  padding: 9rem 5vw;
  background: var(--bg);
  position: relative;
  z-index: 10;
}

.featured-head {
  max-width: 1400px;
  margin: 0 auto 5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
}

.featured-head h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  max-width: 14ch;
  line-height: 1;
}

.featured-head h2 em {
  font-style: italic;
  color: var(--gold);
}

.featured-head .head-text {
  max-width: 32ch;
  color: var(--ivory-soft);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.featured-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
}

.product-card .img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
}

.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
  filter: brightness(0.92);
}

.product-card:hover .img-wrap img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.product-card .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.85) 100%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.6s var(--ease);
}

.product-card:hover .img-wrap::after { opacity: 0.9; }

.product-card .meta {
  padding: 1.5rem 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

/* 2026-05-27: h3 -> h2 (heading-order axe). Mantengo h4 por legacy y aniado h2 + clase. */
.product-card .meta h4,
.product-card .meta h2,
.product-card .meta .product-card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ivory);
  line-height: 1.15;
  margin: 0;
}

.product-card .meta .cat {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  /* 2026-05-27 a11y fix: --muted (#6b675f) sobre bg-deep dio contraste 3.3:1 (pa11y FAIL).
     ivory-soft alcanza ~7:1 sobre #0a0a0a. */
  color: var(--ivory-soft);
  white-space: nowrap;
  padding-top: 0.4rem;
}

.product-card .price-line {
  margin-top: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-card .price-line .arrow {
  display: inline-block;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .price-line .arrow { transform: translateX(8px); }

@media (max-width: 1100px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .featured-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   STORY (with video bg)
   ============================================ */

.story {
  position: relative;
  padding: 12rem 5vw;
  background: var(--bg-deep);
  overflow: hidden;
  z-index: 10;
}

.story-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.72;
}

.story-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
}

.story-bg-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(10,10,10,0.55) 90%),
    linear-gradient(180deg, var(--bg-deep) 0%, transparent 18%, transparent 82%, var(--bg-deep) 100%);
}

.story-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.story-content h2 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 2rem 0;
}

.story-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.story-content p {
  color: var(--ivory-soft);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 56ch;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat .num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat .num em {
  font-style: italic;
  font-size: 0.6em;
}

.stat .label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  margin-top: 1rem;
}

@media (max-width: 700px) {
  .story-stats { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================
   BOUTIQUE CTA
   ============================================ */

.boutique {
  position: relative;
  padding: 9rem 5vw;
  background: var(--bg);
  z-index: 10;
}

.boutique-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.boutique-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}

.boutique-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  transition: transform 2s var(--ease);
}

.boutique:hover .boutique-img img { transform: scale(1.04); }

.boutique-text h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  margin: 1.5rem 0 2rem;
}

.boutique-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.boutique-text p {
  color: var(--ivory-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 42ch;
}

@media (max-width: 880px) {
  .boutique-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.6s var(--ease);
  z-index: -1;
}

.btn:hover {
  color: var(--bg);
  border-color: var(--gold);
}

.btn:hover::before { transform: translateX(0); }

.btn .arrow {
  display: inline-block;
  transition: transform 0.5s var(--ease);
}

.btn:hover .arrow { transform: translateX(6px); }

.btn-emerald {
  background: var(--emerald);
  border-color: var(--emerald-bright);
  color: var(--ivory);
}

.btn-emerald::before { background: var(--emerald-bright); }

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn-gold::before { background: var(--gold-bright); }
.btn-gold:hover { color: var(--bg); }

/* ============================================
   FOOTER
   ============================================ */

footer {
  position: relative;
  padding: 7rem 5vw 3rem;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  z-index: 10;
  overflow: hidden;
}

.footer-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 0.85;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(197, 164, 101, 0.12);
  font-style: italic;
  white-space: nowrap;
  transform: translateY(-30%);
}

.footer-grid {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-top: 4rem;
}

.footer-grid h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-grid a {
  font-size: 0.92rem;
  color: var(--ivory-soft);
  font-weight: 300;
  transition: color 0.4s var(--ease);
}

.footer-grid a:hover { color: var(--gold); }

.footer-brand p {
  color: var(--ivory-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 40ch;
  margin-top: 1.5rem;
}

.footer-brand .lockup {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  color: var(--ivory);
}

.footer-brand .lockup em {
  font-style: normal;
  color: var(--gold);
}

.footer-bottom {
  position: relative;
  max-width: 1400px;
  margin: 5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  /* 2026-05-27 a11y fix: --muted (#6b675f) dio contraste 3.62:1 (pa11y FAIL AA). */
  color: var(--ivory-soft);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */

.fab-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--emerald);
  border: 1px solid var(--emerald-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  box-shadow: 0 8px 32px rgba(15, 81, 50, 0.5);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: scale(0.8);
}

.fab-wa.show {
  opacity: 1;
  transform: scale(1);
}

.fab-wa:hover {
  background: var(--emerald-bright);
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(26, 133, 81, 0.6);
}

.fab-wa svg { width: 28px; height: 28px; }

@media (max-width: 720px) {
  .fab-wa {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 52px;
    height: 52px;
  }
  .fab-wa svg { width: 24px; height: 24px; }
}

/* ============================================
   INNER PAGES — common
   ============================================ */

.inner-hero {
  position: relative;
  padding: 14rem 5vw 6rem;
  background: var(--bg-deep);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(15, 81, 50, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(197, 164, 101, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.inner-hero .inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.inner-hero h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  margin: 1.5rem 0;
}

.inner-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.inner-hero p {
  color: var(--ivory-soft);
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 50ch;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* ============================================
   COLECCION — filters + grid
   ============================================ */

.collection-page {
  padding: 5rem 5vw 10rem;
  background: var(--bg);
}

.filters {
  max-width: 1400px;
  margin: 0 auto 4rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2.5rem;
}

.filter-pill {
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ivory-soft);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-pill.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.collection-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2rem;
}

@media (max-width: 1000px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .collection-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   PRODUCT PAGE
   ============================================ */

.product-page {
  padding: 10rem 5vw 8rem;
  background: var(--bg);
}

/* 2026-05-27: breadcrumb "Volver a la coleccion" — UX navegabilidad detalle producto.
   Minimal-discreto, gold-on-hover, animacion sutil de flecha. */
.product-back-link {
  max-width: 1400px;
  margin: 0 auto 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  text-decoration: none;
  padding: 0.55rem 0.85rem 0.55rem 0;
  min-height: 44px;
  transition: color .25s ease;
}
.product-back-link .arrow-back {
  display: inline-block;
  transition: transform .3s var(--ease-out);
  font-size: 1.05rem;
  line-height: 1;
}
.product-back-link:hover { color: var(--gold); }
.product-back-link:hover .arrow-back { transform: translateX(-5px); }
.product-back-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
/* Mostrar como bloque (no inline) para que tome el ancho del grid + posicion clara arriba */
section.product-page > .product-back-link {
  display: flex;
  width: 100%;
  max-width: 1400px;
}

.product-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .product-back-link {
    margin-bottom: 1.5rem;
    font-size: 0.68rem;
  }
}

.product-gallery {
  position: relative;
}

.gallery-main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.gallery-thumbs .thumb {
  aspect-ratio: 1;
  background: var(--bg-soft);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
  border: 1px solid transparent;
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

.gallery-thumbs img {
  width: 100%; height: 100%; object-fit: cover;
}

.product-info {
  position: sticky;
  top: 8rem;
}

.product-info .cat {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.product-info h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.product-info h1 em {
  font-style: italic;
  color: var(--gold);
}

.product-info .desc {
  color: var(--ivory-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
}

.product-info .price-tag {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.product-cta-row .btn { justify-content: center; }

.specs {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

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

.spec-item summary {
  padding: 1.2rem 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.spec-item summary::-webkit-details-marker { display: none; }

.spec-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 200;
  transition: transform 0.3s ease;
}

.spec-item[open] summary::after { content: '−'; transform: rotate(0deg); }

.spec-item .body {
  padding: 0 0 1.5rem;
  color: var(--ivory-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 880px) {
  .product-grid { grid-template-columns: 1fr; gap: 3rem; }
  .product-info { position: static; }
}

.related {
  max-width: 1400px;
  margin: 7rem auto 0;
  padding-top: 5rem;
  border-top: 1px solid var(--line);
}

.related h3,
.related .related-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ============================================
   SOBRE
   ============================================ */

.about-block {
  padding: 8rem 5vw;
  background: var(--bg);
  position: relative;
}

.about-block.alt { background: var(--bg-deep); }

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-inner.reverse > :first-child { order: 2; }

.about-block h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1rem 0 2rem;
}

.about-block h2 em {
  font-style: italic;
  color: var(--gold);
}

.about-block p {
  color: var(--ivory-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.about-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}

.about-img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-img img,
.about-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img video { filter: brightness(0.85); }

@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner.reverse > :first-child { order: initial; }
}

/* ============================================
   CONTACTO
   ============================================ */

.contact-page {
  padding: 6rem 5vw 10rem;
  background: var(--bg);
}

.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-info h2 em { font-style: italic; color: var(--gold); }

.contact-list {
  list-style: none;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}

.contact-list li .label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.contact-list li .value {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ivory);
  font-weight: 400;
}

.contact-form {
  background: var(--bg-soft);
  padding: 3rem;
  border: 1px solid var(--line);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-form .sub {
  color: var(--ivory-soft);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.field {
  margin-bottom: 1.4rem;
  position: relative;
}

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  margin-bottom: 0.6rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.95rem 1rem;
  font-weight: 300;
  transition: border-color 0.3s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn { width: 100%; justify-content: center; margin-top: 1rem; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form { padding: 2rem 1.5rem; }
}

/* ============================================
   ANIMATION HELPERS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s var(--ease);
}

.reveal-clip.visible {
  clip-path: inset(0 0 0 0);
}

[data-split] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

[data-split] .word > span {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

/* ============================================
   HERO GOLD UNDERLINE (animated)
   ============================================ */

.hero-title em.gold-underline {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-title em.gold-underline .underline-svg {
  position: absolute;
  left: 0;
  bottom: -0.06em;
  width: 100%;
  height: 0.16em;
  color: var(--gold);
  overflow: visible;
  pointer-events: none;
}

.hero-title em.gold-underline .underline-svg path {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: drawUnderline 1.6s var(--ease) forwards 1.8s;
  filter: drop-shadow(0 0 6px rgba(197, 164, 101, 0.45));
}

@keyframes drawUnderline {
  to { stroke-dashoffset: 0; }
}

/* ============================================
   CUSTOM CURSOR (desktop with mouse only)
   ============================================ */

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor .product-card,
  body.has-custom-cursor .filter-pill,
  body.has-custom-cursor .gallery-thumbs .thumb,
  body.has-custom-cursor .spec-item summary {
    cursor: none;
  }
  body.has-custom-cursor input,
  body.has-custom-cursor textarea,
  body.has-custom-cursor select {
    cursor: text;
  }
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.35s ease;
  mix-blend-mode: difference;
  will-change: transform;
}

.custom-cursor.visible { opacity: 1; }

.custom-cursor .cursor-dot {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 6px;
  height: 6px;
  background: #f0ebe1;
  border-radius: 50%;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.custom-cursor .cursor-ring {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(240, 235, 225, 0.45);
  border-radius: 50%;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.custom-cursor.hover .cursor-dot {
  transform: scale(0);
}

.custom-cursor.hover .cursor-ring {
  transform: scale(1.7);
  border-color: rgba(240, 235, 225, 0.85);
  background: rgba(240, 235, 225, 0.06);
}

.custom-cursor.press .cursor-ring {
  transform: scale(0.8);
}

/* ============================================
   PAGE TRANSITION
   ============================================ */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: var(--bg-deep);
  pointer-events: none;
  transform: translateY(100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-transition.cover {
  transform: translateY(0);
  pointer-events: all;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition.open {
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1) 0.05s;
}

.page-transition .pt-mark {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.16em;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.5s var(--ease);
}

.page-transition .pt-mark em {
  color: var(--gold);
  font-style: normal;
}

.page-transition.cover .pt-mark {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

/* ============================================
   PRODUCT CARD VIDEO HOVER
   ============================================ */

.product-card .img-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease);
  z-index: 1;
}

.product-card.has-video:hover .img-wrap img {
  filter: brightness(1.1) blur(2px);
}

.product-card.has-video:hover .img-wrap video {
  opacity: 1;
}

/* Indicator badge for has-video cards */
.product-card.has-video .img-wrap::before {
  content: '▶ Ver en movimiento';
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.product-card.has-video:hover .img-wrap::before {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 9rem 5vw;
  background: var(--bg-deep);
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--line);
}

.testimonials-head {
  max-width: 1400px;
  margin: 0 auto 5rem;
}

.testimonials-head h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  margin-top: 1.5rem;
  max-width: 16ch;
}

.testimonials-head h2 em {
  font-style: italic;
  color: var(--gold);
}

.testimonials-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.t-card {
  position: relative;
  padding: 3.5rem 2.5rem 2.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: border-color 0.5s var(--ease), transform 0.6s var(--ease);
}

.t-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.t-card .t-mark {
  position: absolute;
  top: 1.2rem;
  left: 2rem;
  font-family: var(--serif);
  font-size: 5rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  opacity: 0.85;
}

.t-card blockquote {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--ivory);
  font-weight: 400;
  font-style: italic;
  margin-top: 1.5rem;
  flex: 1;
}

.t-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.t-card figcaption strong {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.04em;
}

.t-card figcaption span {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 1000px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .hero-title em.gold-underline .underline-svg path {
    stroke-dashoffset: 0;
    animation: none;
  }
  .page-transition,
  .custom-cursor { display: none; }
  body.has-custom-cursor,
  body.has-custom-cursor * { cursor: auto !important; }
  .product-card.has-video .img-wrap video { display: none; }
}

/* ============================================
   SKIP LINK (a11y)
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 1rem 1.5rem;
  z-index: 9999;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================
   CRO-2026-05-25 — Hero CTAs, trust line, testimonials avatar, sticky mobile bar
   ============================================ */

/* Hero CTA row */
.hero-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.85rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta-primary,
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.65rem;
  border-radius: 2px;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.hero-cta-primary {
  background: var(--emerald, #1f6b4b);
  color: var(--ivory, #f5f1e8);
  border: 1px solid var(--emerald, #1f6b4b);
  box-shadow: 0 18px 40px -22px rgba(31, 107, 75, 0.65);
}
.hero-cta-primary:hover {
  background: #246d4d;
  transform: translateY(-2px);
}
.hero-cta-primary .arrow { transition: transform .25s ease; }
.hero-cta-primary:hover .arrow { transform: translateX(4px); }
.hero-cta-secondary {
  background: transparent;
  color: var(--ivory, #f5f1e8);
  border: 1px solid rgba(245, 241, 232, 0.35);
}
.hero-cta-secondary:hover {
  border-color: var(--gold, #C5A465);
  color: var(--gold, #C5A465);
}
.hero-trust {
  margin-top: 1.25rem;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-soft, rgba(245, 241, 232, 0.78));
  font-weight: 400;
}
.hero-trust span[aria-hidden="true"] { color: var(--gold, #C5A465); margin-right: .35rem; }

/* CTA microcopy (boutique + product) */
.cta-microcopy {
  margin-top: 0.9rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-soft, rgba(245, 241, 232, 0.72));
  font-weight: 300;
}

/* ============================================
   CTA FINAL — "Empieza con una conversacion"
   Restaurado 2026-05-27 (bug #2: estilos faltantes tras retiro del asistente.css)
   Port del backup _backup_asistente_viejo/asistente.css adaptado a variables del sitio.
   ============================================ */
.cta-final {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg-deep);
  z-index: 10;
}
.cta-final__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  pointer-events: none;
}
.cta-final__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--bg-deep) 0%,
    transparent 35%,
    transparent 65%,
    var(--bg-deep) 100%);
  pointer-events: none;
}
.cta-final__dark {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.4);
  pointer-events: none;
}
.cta-final__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 1.5rem;
}
.cta-final__eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: ctaFinalFadeUp 1s var(--ease-out) forwards;
}
@media (min-width: 768px) {
  .cta-final__eyebrow { font-size: 1.125rem; }
}
.cta-final__title {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--ivory);
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 56rem;
  opacity: 0;
  transform: translateY(40px);
  animation: ctaFinalFadeUp 1.1s var(--ease-out) 0.15s forwards;
}
.cta-final__title em {
  font-style: normal;
  color: var(--gold);
  display: inline;
}
.cta-final__desc {
  margin-top: 2rem;
  max-width: 36rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ivory-soft);
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: ctaFinalFadeUp 1s var(--ease-out) 0.35s forwards;
}
@media (min-width: 768px) {
  .cta-final__desc { font-size: 1.125rem; }
}
.cta-final__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  animation: ctaFinalFadeUp 1s var(--ease-out) 0.5s forwards;
}
.cta-final__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 1.1rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  cursor: pointer;
  min-height: 48px;
}
.cta-final__btn:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--bg-deep);
  transform: translateY(-3px);
}
.cta-final__btn .arrow {
  display: inline-block;
  transition: transform 0.5s var(--ease-out);
}
.cta-final__btn:hover .arrow { transform: translateX(6px); }

@keyframes ctaFinalFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-final__eyebrow,
  .cta-final__title,
  .cta-final__desc,
  .cta-final__actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* CTA Final — microcopy + phone as link */
.cta-final__microcopy {
  margin-top: 0.85rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-soft, rgba(245, 241, 232, 0.78));
  font-weight: 300;
  opacity: 0.85;
}
a.cta-final__phone {
  text-decoration: none;
  color: inherit;
  transition: color .25s ease;
  /* 2026-05-27 a11y fix: garantizar 44px min para WCAG 2.5.5 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 1rem;
}
a.cta-final__phone:hover { color: var(--gold, #C5A465); }

/* 2026-05-27: secundario para captura (data-lead-capture).
   Jerarquia visual menor que el btn gold primario — sigue convirtiendo pero sin competir. */
.cta-final__secondary {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  cursor: pointer;
  padding: 0.75rem 1.2rem;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  transition: color .25s ease;
  flex-wrap: wrap;
  text-align: center;
}
.cta-final__secondary .cta-final__secondary-pre {
  opacity: 0.78;
  font-weight: 300;
}
.cta-final__secondary em {
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid rgba(197, 164, 101, 0.55);
  padding-bottom: 3px;
  transition: border-color .25s ease, color .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.cta-final__secondary em .arrow {
  transition: transform .3s var(--ease-out);
}
.cta-final__secondary:hover { color: var(--ivory); }
.cta-final__secondary:hover em {
  border-bottom-color: var(--gold-bright);
  color: var(--gold-bright);
}
.cta-final__secondary:hover em .arrow { transform: translateX(4px); }
.cta-final__secondary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
@media (max-width: 480px) {
  .cta-final__secondary {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* Variant: cta-final usado como hero de pagina (/contacto) */
.cta-final.cta-final--page-hero {
  min-height: 70vh;
  height: auto;
  padding: clamp(6rem, 12vh, 9rem) 1.5rem clamp(4rem, 8vh, 6rem);
}
.cta-final.cta-final--page-hero .cta-final__content {
  height: auto;
  padding: 0;
}
@media (max-width: 768px) {
  .cta-final.cta-final--page-hero {
    min-height: 60vh;
    padding-top: clamp(5rem, 10vh, 7rem);
  }
}

/* ============================================
   RONDA 3 — A11y fixes (contraste + touch targets)
   ============================================ */

/* R3-6: Subir contraste de --ivory-soft (de 0.7 a 0.82 effective via fallback) */
:root {
  --ivory-soft: rgba(245, 241, 232, 0.82);
}

/* R3-7: Touch targets >=44px (WCAG 2.5.5) — touch targets para .cta-wa del header */
.site-header .cta-wa {
  min-height: 44px;
}
.site-header .cta-wa {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-header .brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
footer ul li a,
footer ul li {
  display: inline-block;
  padding: 0.4rem 0;
  min-height: 32px;
}
footer ul li a {
  line-height: 1.6;
}
/* Footer "Conectar" group needs more space because of tel/whatsapp */
footer h5 + ul li a {
  padding: 0.55rem 0;
}
/* 2026-05-27 a11y: en mobile subir todos a 44px min para WCAG 2.5.5 */
@media (max-width: 768px) {
  footer ul li a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0;
  }
  /* nav primario (header) tambien necesita 44 en mobile cuando se abre */
  nav#site-nav ul li a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Testimonials — caption with avatar + verified badge */
.t-card figcaption.t-caption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
}
.t-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, #1f6b4b 0%, #2b8a63 100%);
  color: var(--ivory, #f5f1e8);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid rgba(197, 164, 101, 0.35);
}
.t-card .t-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.t-card .t-meta strong {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ivory, #f5f1e8);
  text-transform: none;
}
.t-card .t-meta span {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #C5A465);
}
.t-verified {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6fbf8a;
  background: rgba(60, 130, 90, 0.15);
  border: 1px solid rgba(111, 191, 138, 0.35);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Contact form helper */
.contact-form .form-helper {
  text-align: left;
}

/* Mobile sticky CTA bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(197, 164, 101, 0.22);
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  gap: 0.7rem;
}
.mobile-sticky-cta .msc-btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 0.5rem;
  border-radius: 4px;
  min-height: 48px;
  transition: transform .15s ease, background .2s ease;
}
.mobile-sticky-cta .msc-btn:active { transform: scale(0.97); }
.msc-btn--wa {
  background: #25D366;
  color: #062e15;
  font-weight: 500;
}
.msc-btn--call {
  background: transparent;
  color: var(--ivory, #f5f1e8);
  border: 1px solid rgba(245, 241, 232, 0.35);
}

@media (max-width: 768px) {
  /* 2026-05-27: bug #1 fix — sticky bar verde duplicaba el hero CTA "Hablar por WhatsApp".
     Se oculta. El lead-trigger flotante sigue dando acceso rapido a WhatsApp via modal. */
  .mobile-sticky-cta { display: none; }
  .fab-wa { display: none; }
  body { padding-bottom: 0; }
  .hero-cta-row { gap: 0.7rem; }
  .hero-cta-primary, .hero-cta-secondary {
    flex: 1 1 100%;
    justify-content: center;
    font-size: 0.78rem;
    padding: 0.95rem 1.2rem;
  }
  .hero-trust { font-size: 0.7rem; letter-spacing: 0.16em; }
  .t-card figcaption.t-caption {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.5rem;
  }
  .t-verified { grid-column: 1 / -1; justify-self: start; }
}

/* Desktop (>768px): ocultar FAB WhatsApp redondo (redundante con asistente trigger) */
@media (min-width: 769px) {
  .fab-wa { display: none !important; }
}

/* Sticky bar mobile: WhatsApp solo, full-width (sin Llamar) */
.mobile-sticky-cta .msc-btn--wa {
  flex: 1 1 100%;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 1rem 0.5rem;
}

/* ============================================
   RONDA 4 — Como funciona / Comparativa / FAQ
   ============================================ */

/* ---- COMO FUNCIONA ---- */
.how-it-works {
  padding: 8rem 5vw;
  background: var(--bg-deep, #0A0A0A);
  position: relative;
}
.hiw-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.hiw-head .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold, #C5A465);
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}
.hiw-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory, #F5F1E8);
  margin: 0 0 1.5rem;
}
.hiw-head h2 em {
  color: var(--gold, #C5A465);
  font-style: italic;
}
.hiw-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ivory-soft);
  max-width: 50ch;
  margin: 0 auto;
}
.hiw-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto 4rem;
  counter-reset: hiw;
}
.hiw-step {
  position: relative;
  background: linear-gradient(180deg, rgba(245,241,232,0.04) 0%, rgba(245,241,232,0.02) 100%);
  border: 1px solid rgba(197,164,101,0.18);
  padding: 2.4rem 1.8rem 2rem;
  border-radius: 4px;
  transition: border-color .35s ease, transform .35s ease;
}
.hiw-step:hover {
  border-color: rgba(197,164,101,0.4);
  transform: translateY(-3px);
}
.hiw-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--gold, #C5A465);
  opacity: 0.85;
  margin-bottom: 1rem;
}
.hiw-step h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory, #F5F1E8);
  margin: 0 0 0.85rem;
  line-height: 1.2;
}
.hiw-step p {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ivory-soft);
  margin: 0 0 1.2rem;
}
.hiw-time {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold, #C5A465);
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(197,164,101,0.3);
  border-radius: 2px;
}
.hiw-cta {
  text-align: center;
}
.hiw-cta .cta-microcopy {
  margin-top: 0.85rem;
}
@media (max-width: 1000px) {
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .how-it-works { padding: 5rem 1.2rem; }
  .hiw-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hiw-step { padding: 2rem 1.5rem 1.6rem; }
  .hiw-num { font-size: 2.6rem; }
}

/* ---- COMPARATIVA ---- */
.compare {
  padding: 8rem 5vw;
  background: linear-gradient(180deg, var(--bg-deep, #0A0A0A) 0%, #050505 100%);
}
.compare-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.compare-head .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold, #C5A465);
  margin-bottom: 1.5rem;
}
.compare-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ivory, #F5F1E8);
  margin: 0 0 1rem;
  line-height: 1.1;
}
.compare-head h2 em {
  color: var(--gold, #C5A465);
  font-style: italic;
}
.compare-sub {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ivory-soft);
  font-weight: 300;
}
.compare-wrap {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  background: rgba(245,241,232,0.02);
  border: 1px solid rgba(245,241,232,0.08);
}
.compare-table thead th {
  text-align: left;
  padding: 1.6rem 1.2rem;
  font-weight: 400;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(197,164,101,0.22);
  vertical-align: top;
}
.compare-table thead th.compare-us {
  background: linear-gradient(180deg, rgba(31,107,75,0.18) 0%, rgba(31,107,75,0.05) 100%);
  border-bottom-color: var(--gold, #C5A465);
}
.compare-brand {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ivory, #F5F1E8);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.25rem;
}
.compare-us .compare-brand { color: var(--gold, #C5A465); }
.compare-tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  font-weight: 300;
}
.compare-table tbody th {
  text-align: left;
  padding: 1.1rem 1.2rem;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--ivory, #F5F1E8);
  background: rgba(245,241,232,0.025);
  border-bottom: 1px solid rgba(245,241,232,0.06);
  vertical-align: middle;
  width: 28%;
}
.compare-table tbody td {
  padding: 1.1rem 1.2rem;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 300;
  color: var(--ivory-soft);
  border-bottom: 1px solid rgba(245,241,232,0.06);
  vertical-align: middle;
}
.compare-table td.ok { color: var(--ivory, #F5F1E8); }
.compare-table td.ok::first-letter { color: #6fbf8a; font-weight: 500; }
.compare-table td.no { color: rgba(245,241,232,0.55); }
.compare-table td.no::first-letter { color: #c46f6f; font-weight: 500; }
.compare-table td.warn { color: rgba(245,241,232,0.7); }
.compare-table td.warn::first-letter { color: #d4a85a; font-weight: 500; }
.compare-table td.us-price {
  color: var(--gold, #C5A465);
  font-weight: 400;
}
.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th { background: rgba(197,164,101,0.04); }
@media (max-width: 768px) {
  .compare { padding: 5rem 0.8rem; }
  .compare-wrap { font-size: 0.88rem; }
  .compare-table thead th,
  .compare-table tbody th,
  .compare-table tbody td { padding: 0.9rem 0.7rem; }
  .compare-brand { font-size: 1rem; }
  .compare-table tbody td { font-size: 0.78rem; }
}

/* ---- FAQ ---- */
.faq {
  padding: 8rem 5vw;
  background: var(--bg-deep, #0A0A0A);
}
.faq-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.faq-head .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold, #C5A465);
  margin-bottom: 1.5rem;
}
.faq-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ivory, #F5F1E8);
  margin: 0 0 1rem;
  line-height: 1.1;
}
.faq-head h2 em {
  color: var(--gold, #C5A465);
  font-style: italic;
}
.faq-sub {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ivory-soft);
  max-width: 50ch;
  margin: 0 auto;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(197,164,101,0.18);
  padding: 0;
}
.faq-item:first-child { border-top: 1px solid rgba(197,164,101,0.18); }
.faq-item summary {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory, #F5F1E8);
  padding: 1.6rem 3rem 1.6rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color .2s ease;
}
.faq-item summary:hover { color: var(--gold, #C5A465); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--gold, #C5A465);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-body {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ivory-soft);
  padding: 0 3rem 1.8rem 0;
  max-width: 70ch;
}
@media (max-width: 600px) {
  .faq { padding: 5rem 1.2rem; }
  .faq-item summary { font-size: 1rem; padding: 1.3rem 2.4rem 1.3rem 0; }
  .faq-item .faq-body { font-size: 0.92rem; padding-right: 0; padding-bottom: 1.5rem; }
}

/* ============================================
   MOBILE HAMBURGER MENU
   ============================================ */

/* Boton hamburguesa: oculto en desktop por defecto */
.nav-hamburger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 9500;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.nav-hamburger .hamburger-line {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold, #C5A465);
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
/* X cuando esta abierto */
body.nav-open .nav-hamburger .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
body.nav-open .nav-hamburger .hamburger-line:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-hamburger .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  /* Mostrar boton hamburguesa */
  .nav-hamburger { display: inline-flex; }

  /* Ocultar CTA "Consultar" del header en mobile (queda en menu drawer + sticky bar) */
  .site-header .cta-wa { display: none; }

  /* Layout del header en mobile: brand izquierda, hamburguesa derecha */
  .site-header {
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* NAV mobile: ya NO esta dentro de .site-header (JS lo mueve al body).
     Override desktop transform: translateX(-50%) que rompe la posicion del overlay. */
  nav#site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100vw;
    height: 100vh;
    max-width: none;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: background 0.3s ease, opacity 0.25s ease;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
    padding: 0;
    box-shadow: none;
    border-left: none;
    margin: 0;
  }
  body.nav-open nav#site-nav {
    background: rgba(0, 0, 0, 0.65);
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open { overflow: hidden; }

  /* Panel drawer interno (el UL es el panel solido a la derecha) */
  nav#site-nav ul {
    position: relative;
    z-index: 1;
    list-style: none;
    flex-direction: column;
    display: flex;
    gap: 0;
    align-items: flex-start;
    width: 86%;
    max-width: 360px;
    height: 100%;
    background-color: #0A0A0A;
    background-image: linear-gradient(180deg, #0F0F0F 0%, #080808 100%);
    border-left: 1px solid rgba(197, 164, 101, 0.18);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    overflow-y: auto;
  }
  body.nav-open nav#site-nav ul {
    transform: translateX(0);
  }
  nav#site-nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(197, 164, 101, 0.12);
    list-style: none;
  }
  nav#site-nav ul li:last-child {
    border-bottom: none;
  }
  nav#site-nav a {
    display: block;
    font-size: 1.05rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: var(--sans);
    text-decoration: none;
    font-weight: 400;
    padding: 1.3rem 0;
    width: 100%;
    color: var(--ivory);
  }
  nav#site-nav a.active {
    color: var(--gold);
  }
  nav#site-nav a::after {
    display: none;
  }
}

/* ============================================
   LEAD CAPTURE MODAL (Sistema captura leads — reemplaza asistente conversacional)
   ============================================ */

/* Trigger flotante */
.lead-trigger {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 8500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.4rem;
  background: var(--gold, #C5A465);
  color: var(--bg-deep, #0A0A0A);
  font-family: var(--sans), Inter, system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.7);
  transition: background 0.35s ease, transform 0.35s ease;
}
.lead-trigger:hover {
  background: #d2b378;
  transform: translateY(-2px);
}
.lead-trigger__dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}
.lead-trigger__dot::before,
.lead-trigger__dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--bg-deep, #0A0A0A);
}
.lead-trigger__dot::before {
  opacity: 0.5;
  animation: leadTriggerPing 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes leadTriggerPing {
  75%, 100% { transform: scale(2.2); opacity: 0; }
}
@media (min-width: 769px) {
  .lead-trigger { bottom: 2rem; right: 2rem; padding: 1rem 1.75rem; font-size: 0.8rem; }
}
@media (max-width: 768px) {
  /* 2026-05-27: sticky bar (72px) eliminada, lead-trigger vuelve a su anclaje natural.
     Min-height 44 para WCAG 2.5.5 touch targets. */
  .lead-trigger {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
    right: 1rem !important;
    min-height: 44px;
    padding: 0.95rem 1.4rem;
  }
}

/* Modal overlay */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lead-modal.is-open { display: flex; opacity: 1; }
body.lead-modal-open { overflow: hidden; }

.lead-modal__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #0F0F0F 0%, #080808 100%);
  border: 1px solid rgba(197, 164, 101, 0.25);
  border-radius: 4px;
  padding: 2.5rem 2rem 2rem;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.9);
}
.lead-modal.is-open .lead-modal__panel { transform: translateY(0) scale(1); }

.lead-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(197, 164, 101, 0.25);
  border-radius: 50%;
  color: var(--ivory, #F5F1E8);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}
.lead-modal__close:hover {
  background: var(--gold, #C5A465);
  color: var(--bg-deep, #0A0A0A);
  border-color: var(--gold, #C5A465);
}

.lead-modal__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold, #C5A465);
  margin-bottom: 0.85rem;
}
.lead-modal__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory, #F5F1E8);
  margin: 0 0 0.7rem;
}
.lead-modal__title em { color: var(--gold, #C5A465); font-style: italic; }
.lead-modal__sub {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ivory-soft);
  font-weight: 300;
  margin: 0 0 1.8rem;
}

.lead-modal__form { display: flex; flex-direction: column; gap: 1.1rem; }
.lead-field { display: flex; flex-direction: column; gap: 0.4rem; }
.lead-field label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #C5A465);
  font-weight: 500;
}
.lead-field input,
.lead-field select,
.lead-field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ivory, #F5F1E8);
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(197, 164, 101, 0.22);
  border-radius: 2px;
  padding: 0.8rem 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: var(--gold, #C5A465);
  background: rgba(245, 241, 232, 0.06);
}
.lead-field textarea { min-height: 80px; resize: vertical; }
.lead-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #C5A465 50%), linear-gradient(135deg, #C5A465 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}
.lead-field input::placeholder,
.lead-field textarea::placeholder { color: rgba(245, 241, 232, 0.35); }

/* 2026-05-27 fix: el select tiene bg semi-transparente (0.04) que en el dropdown
   nativo deja las options sobre fondo del OS (ilegible). Forzar bg solido + color
   ivory en cada option. Soportado en Chrome/Edge/Firefox. */
.lead-field select option {
  background-color: #0a0a0a;
  color: #f0ebe1;
  padding: 0.5rem;
}
.lead-field select option:disabled,
.lead-field select option[value=""] {
  color: rgba(240, 235, 225, 0.45);
}
.lead-field select option:checked,
.lead-field select option:hover {
  background-color: #1a8551;
  color: #ffffff;
}

.lead-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .lead-row-2 { grid-template-columns: 1fr; } }

.lead-modal__submit {
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--emerald, #1f6b4b);
  color: var(--ivory, #F5F1E8);
  border: 1px solid var(--emerald, #1f6b4b);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 28px -10px rgba(31, 107, 75, 0.55);
}
.lead-modal__submit:hover:not(:disabled) { background: #246d4d; transform: translateY(-2px); }
.lead-modal__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.lead-modal__submit .lead-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(245, 241, 232, 0.3);
  border-top-color: var(--ivory, #F5F1E8);
  border-radius: 50%;
  animation: leadSpinnerSpin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.lead-modal__submit.is-loading .lead-spinner { display: inline-block; }
@keyframes leadSpinnerSpin { to { transform: rotate(360deg); } }

.lead-modal__helper {
  margin-top: 0.85rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ivory-soft);
  font-weight: 300;
  text-align: center;
  opacity: 0.8;
}
.lead-modal__helper strong { color: var(--gold, #C5A465); font-weight: 500; }

/* Toast confirmacion */
.lead-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 10000;
  padding: 1rem 1.5rem;
  background: var(--emerald, #1f6b4b);
  color: var(--ivory, #F5F1E8);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 2px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.lead-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

.lead-field-error {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: #c46f6f;
  margin-top: 0.3rem;
}
.lead-field.has-error input,
.lead-field.has-error select,
.lead-field.has-error textarea { border-color: #c46f6f; }

/* Divider entre primario y secundario */
.lead-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.4rem 0 0.4rem;
}
.lead-divider__line {
  flex: 1;
  height: 1px;
  background: rgba(197, 164, 101, 0.22);
}
.lead-divider__text {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  font-weight: 400;
  white-space: nowrap;
}

/* Boton WhatsApp directo (sin form) */
.lead-modal__direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.25rem;
  background: transparent;
  color: var(--ivory, #F5F1E8);
  border: 1px solid #25D366;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.lead-modal__direct:hover {
  background: #25D366;
  color: #062e15;
  transform: translateY(-2px);
}
.lead-modal__direct-icon {
  font-size: 1rem;
  line-height: 1;
}
.lead-modal__helper--soft {
  opacity: 0.65;
  margin-top: 0.6rem !important;
  font-size: 0.68rem;
}



/* ===== i18n language toggle ===== */
/* El toggle vive como <li class="nav-lang"> dentro de nav#site-nav ul
   (main.js mueve el nav al <body> en runtime; estos selectores funcionan
   igual en desktop y dentro del drawer mobile). */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-lang button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.45);
  transition: color 0.3s ease;
}
.nav-lang button:hover {
  color: rgba(245, 241, 232, 0.8);
}
.nav-lang button.active {
  color: var(--gold, #C5A465);
}
.nav-lang-sep {
  color: rgba(245, 241, 232, 0.25);
  font-size: 0.72rem;
}
/* Desktop: alinear verticalmente con los links del nav (min-height 44px). */
nav#site-nav ul .nav-lang {
  min-height: 44px;
}
/* Mobile drawer: el UL es el panel solido; el toggle va separado al final
   con un borde superior dorado sutil (mismo patron que el borde del panel). */
@media (max-width: 768px) {
  nav#site-nav .nav-lang {
    margin-top: 1.6rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(197, 164, 101, 0.18);
    border-bottom: none;
  }
  nav#site-nav .nav-lang button {
    font-size: 0.95rem;
  }
  nav#site-nav .nav-lang .nav-lang-sep {
    font-size: 0.95rem;
  }
}

/* ===== product trust row (confianza factual, 2026-07-12) ===== */
.product-trust { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; margin: 1.1rem 0 0.3rem; padding-top: 0.9rem; border-top: 1px solid rgba(197, 164, 101, 0.16); }
.product-trust span { font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(245, 241, 232, 0.55); }
.product-trust span::before { content: '\2713'; color: var(--gold, #C5A465); margin-right: 0.45rem; }


/* ===== R2 2026-07-13: dos vias de compra + coleccion premium + respaldo ===== */

/* --- Dos vias de compra (how-it-works) --- */
.buy-paths { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 1000px; margin: 2.5rem auto 0; }
.buy-path { position: relative; display: flex; flex-direction: column; gap: 0.8rem; padding: 2rem 2.2rem 1.9rem; background: var(--bg-soft, #111); border: 1px solid rgba(197, 164, 101, 0.16); text-decoration: none; transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease); overflow: hidden; }
.buy-path::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold, #C5A465), transparent); opacity: 0; transition: opacity 0.5s var(--ease); }
.buy-path--wa::before { background: linear-gradient(90deg, transparent, #2b8a63, transparent); }
.buy-path:hover { transform: translateY(-5px); border-color: rgba(197, 164, 101, 0.4); box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35); }
.buy-path:hover::before { opacity: 1; }
.buy-path__tag { font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold, #C5A465); }
.buy-path--wa .buy-path__tag { color: #6fbf8a; }
.buy-path__title { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; color: var(--ivory, #f5f1e8); margin: 0; line-height: 1.15; }
.buy-path__desc { font-family: var(--sans); font-size: 0.9rem; line-height: 1.55; color: rgba(245, 241, 232, 0.72); margin: 0; flex: 1; }
.buy-path__cta { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold, #C5A465); display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; }
.buy-path--wa .buy-path__cta { color: #6fbf8a; }
.buy-path__cta .arrow { transition: transform 0.5s var(--ease); }
.buy-path:hover .buy-path__cta .arrow { transform: translateX(8px); }
.hiw-path-note { text-align: center; font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245, 241, 232, 0.55); margin: 3.2rem 0 0; }
@media (max-width: 768px) {
  .buy-paths { grid-template-columns: 1fr; gap: 1rem; }
  .buy-path { padding: 1.6rem 1.5rem; }
}

/* --- Coleccion: cards enmarcadas premium (solo grid de /coleccion) --- */
.collection-grid { gap: 2.5rem 2rem; }
.collection-grid .product-card { background: #0e0d0b; border: 1px solid rgba(197, 164, 101, 0.12); padding: 0.85rem 0.85rem 1.25rem; transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease); }
.collection-grid .product-card:hover { transform: translateY(-6px); border-color: rgba(197, 164, 101, 0.38); box-shadow: 0 26px 52px rgba(0, 0, 0, 0.45); }
.collection-grid .product-card .meta { flex-direction: column-reverse; align-items: flex-start; gap: 0.35rem; padding: 1.25rem 0.35rem 0; }
.collection-grid .product-card .meta .cat { padding-top: 0; font-size: 0.62rem; letter-spacing: 0.28em; color: var(--gold, #C5A465); opacity: 0.85; }
.collection-grid .product-card .meta .product-card-title { font-size: 1.5rem; }
.collection-grid .product-card .price-line { margin: 0.9rem 0.35rem 0; padding-top: 0.85rem; border-top: 1px solid rgba(197, 164, 101, 0.14); justify-content: space-between; color: rgba(245, 241, 232, 0.65); }
.collection-grid .product-card:hover .price-line { color: var(--gold, #C5A465); }
.card-badge { position: absolute; top: 1.4rem; left: 1.4rem; z-index: 2; background: rgba(10, 10, 10, 0.82); color: var(--gold, #C5A465); font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; padding: 0.45rem 0.85rem; border: 1px solid rgba(197, 164, 101, 0.4); backdrop-filter: blur(4px); }
.collection-grid .product-card.soon .img-wrap img { filter: brightness(0.75) saturate(0.85); }
.collection-grid .product-card.soon:hover .img-wrap img { filter: brightness(0.9) saturate(0.95); }

/* --- Compra con respaldo: acento superior + numeracion outline --- */
.testimonials .t-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold, #C5A465), transparent); opacity: 0; transition: opacity 0.5s var(--ease); }
.testimonials .t-card:hover::after { opacity: 1; }
.testimonials .t-card:hover { transform: translateY(-6px); border-color: rgba(197, 164, 101, 0.35); box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35); }
.testimonials .t-avatar { background: transparent; border: 1px solid rgba(197, 164, 101, 0.55); color: var(--gold, #C5A465); font-family: var(--serif); font-size: 0.95rem; font-style: italic; }
.testimonials .t-card .t-mark { font-size: 2.2rem; font-style: normal; opacity: 0.9; top: 1.5rem; }
.testimonials .t-card blockquote { font-size: 1.12rem; margin-top: 1.1rem; }

/* ===== R2b 2026-07-13: patrones Baymard/NNg — hover ilumina, movil 2col, comparativa elevada, trust strip ===== */

/* Hover revela (antes oscurecia) + titulo dorado sincronizado */
.product-card:hover .img-wrap::after { opacity: 0.35; }
.product-card .img-wrap img { transition: transform 1s var(--ease), filter 1s var(--ease); }
.product-card .product-card-title { transition: color 0.4s var(--ease); }
.collection-grid .product-card:hover .product-card-title { color: var(--gold, #C5A465); }

/* Movil: 2 columnas (estandar joyeria fina) */
@media (max-width: 600px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0.8rem; }
  .collection-grid .product-card { padding: 0.5rem 0.5rem 0.85rem; }
  .collection-grid .product-card .meta { padding: 0.9rem 0.2rem 0; }
  .collection-grid .product-card .meta .product-card-title { font-size: 1.05rem; }
  .collection-grid .product-card .meta .cat { display: none; }
  .collection-grid .product-card .price-line { font-size: 0.6rem; letter-spacing: 0.1em; margin: 0.6rem 0.2rem 0; padding-top: 0.6rem; }
  .card-badge { top: 0.85rem; left: 0.85rem; font-size: 0.5rem; padding: 0.3rem 0.5rem; letter-spacing: 0.18em; }
}

/* Comparativa: columna OROVERDE elevada como card */
.compare-table { border-collapse: separate; border-spacing: 0; }
.compare-table th:nth-child(2), .compare-table td:nth-child(2) {
  background: rgba(197, 164, 101, 0.06);
  border-left: 1px solid rgba(197, 164, 101, 0.4);
  border-right: 1px solid rgba(197, 164, 101, 0.4);
}
.compare-table thead th:nth-child(2) { border-top: 1px solid rgba(197, 164, 101, 0.4); }
.compare-table tbody tr:last-child td:nth-child(2) { border-bottom: 1px solid rgba(197, 164, 101, 0.4); }

/* Conector entre pasos del proceso */
.hiw-step { position: relative; }
.hiw-step::after { content: ''; position: absolute; top: 3.2rem; right: -1.6rem; width: 1.5rem; height: 1px; background: rgba(197, 164, 101, 0.28); }
.hiw-grid .hiw-step:last-child::after { display: none; }
@media (max-width: 900px) { .hiw-step::after { display: none; } }

/* Trust strip site-wide (coleccion / sobre) */
.trust-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem 3.5rem; padding: 2.6rem 5vw; border-top: 1px solid rgba(197, 164, 101, 0.14); border-bottom: 1px solid rgba(197, 164, 101, 0.14); }
.trust-strip__item { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245, 241, 232, 0.6); transition: color 0.4s var(--ease); }
.trust-strip__item:hover { color: var(--ivory, #f5f1e8); }
.trust-strip__item svg { width: 26px; height: 26px; stroke: var(--gold, #C5A465); stroke-width: 1.4; fill: none; opacity: 0.85; }
@media (max-width: 600px) { .trust-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; text-align: center; } }


/* ===== R3 2026-07-13: FAQ premium + espiral, respaldo skew-cards, PDP stack, related enmarcadas ===== */

/* --- FAQ rediseño --- */
.faq { position: relative; overflow: hidden; }
.faq-spiral { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.16; pointer-events: none; z-index: 0;
  -webkit-mask-image: radial-gradient(circle at center, rgba(255,255,255,1), rgba(255,255,255,0.15) 58%, transparent 76%);
  mask-image: radial-gradient(circle at center, rgba(255,255,255,1), rgba(255,255,255,0.15) 58%, transparent 76%); }
.faq-head, .faq-list { position: relative; z-index: 1; }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 1100px; margin: 0 auto; counter-reset: faqn; }
.faq-item { counter-increment: faqn; background: rgba(14, 13, 11, 0.78); border: 1px solid rgba(197, 164, 101, 0.16); padding: 1.4rem 1.6rem; margin: 0; backdrop-filter: blur(6px); transition: border-color 0.4s var(--ease), background 0.4s var(--ease); }
.faq-item:hover { border-color: rgba(197, 164, 101, 0.4); }
.faq-item[open] { border-color: rgba(197, 164, 101, 0.45); background: rgba(14, 13, 11, 0.94); }
.faq-item summary { display: flex; align-items: baseline; gap: 0.9rem; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: counter(faqn, decimal-leading-zero); font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.15em; color: var(--gold, #C5A465); opacity: 0.75; flex-shrink: 0; }
.faq-item summary::after { content: '+'; margin-left: auto; font-family: var(--serif); font-size: 1.35rem; font-weight: 300; color: var(--gold, #C5A465); line-height: 1; transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0.9rem 0 0.2rem 2rem; }
@media (max-width: 800px) {
  .faq-list { grid-template-columns: 1fr; }
  .faq-spiral { display: none; }
}
@media (prefers-reduced-motion: reduce) { .faq-spiral { display: none; } }

/* --- Compra con respaldo: skew-cards adaptadas a la marca --- */
.backing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem; max-width: 1280px; margin: 0 auto; }
.backing-card { position: relative; display: flex; min-height: 350px; }
.backing-card__panel { position: absolute; top: 7%; bottom: 7%; left: 10%; width: 44%; transform: skewX(-12deg); transition: all 0.55s var(--ease); pointer-events: none; }
.backing-card:nth-child(1) .backing-card__panel { background: linear-gradient(315deg, rgba(197, 164, 101, 0.75), rgba(122, 95, 47, 0.55)); }
.backing-card:nth-child(2) .backing-card__panel { background: linear-gradient(315deg, rgba(43, 138, 99, 0.7), rgba(13, 59, 40, 0.55)); }
.backing-card:nth-child(3) .backing-card__panel { background: linear-gradient(315deg, rgba(197, 164, 101, 0.7), rgba(31, 107, 75, 0.55)); }
.backing-card__panel::after { content: ''; position: absolute; inset: 0; background: inherit; filter: blur(28px); opacity: 0.5; }
.backing-card:hover .backing-card__panel { transform: skewX(0); left: 3%; width: 94%; }
.backing-card__glass { position: relative; z-index: 2; width: 100%; margin: 1.8rem 0.8rem; padding: 2rem 1.9rem; background: rgba(10, 10, 10, 0.62); backdrop-filter: blur(12px); border: 1px solid rgba(197, 164, 101, 0.22); display: flex; flex-direction: column; gap: 0.55rem; transition: transform 0.55s var(--ease), border-color 0.55s var(--ease); }
.backing-card:hover .backing-card__glass { transform: translateY(-4px); border-color: rgba(197, 164, 101, 0.45); }
.backing-card__num { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--gold, #C5A465); border: 1px solid rgba(197, 164, 101, 0.5); border-radius: 50%; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; }
.backing-card__title { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ivory, #f5f1e8); margin: 0; line-height: 1.15; }
.backing-card__tag { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold, #C5A465); margin: 0 0 0.4rem; }
.backing-card__desc { font-family: var(--sans); font-size: 0.88rem; line-height: 1.6; color: rgba(245, 241, 232, 0.72); margin: 0; }
@media (max-width: 1000px) {
  .backing-grid { grid-template-columns: 1fr; gap: 1.4rem; max-width: 560px; }
  .backing-card { min-height: 0; }
}

/* --- PDP: jerarquia de compra apilada --- */
.product-cta-row { flex-direction: column; align-items: stretch; gap: 0.8rem; max-width: 460px; }
.product-cta-row .btn { width: 100%; display: inline-flex; justify-content: center; text-align: center; }
.buy-note { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245, 241, 232, 0.5); margin: 0.7rem 0 0; }
.price-tag { border-left: 2px solid var(--gold, #C5A465); padding-left: 0.9rem; }

/* --- Related "Te puede interesar": mismas cards enmarcadas de la coleccion --- */
.related .product-card { background: #0e0d0b; border: 1px solid rgba(197, 164, 101, 0.12); padding: 0.85rem 0.85rem 1.25rem; transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease); }
.related .product-card:hover { transform: translateY(-6px); border-color: rgba(197, 164, 101, 0.38); box-shadow: 0 26px 52px rgba(0, 0, 0, 0.45); }
.related .product-card .meta { flex-direction: column-reverse; align-items: flex-start; gap: 0.35rem; padding: 1.25rem 0.35rem 0; }
.related .product-card .meta .cat { padding-top: 0; font-size: 0.62rem; letter-spacing: 0.28em; color: var(--gold, #C5A465); opacity: 0.85; }
.related .product-card .meta .product-card-title { font-size: 1.35rem; }
.related .product-card .price-line { margin: 0.9rem 0.35rem 0; padding-top: 0.85rem; border-top: 1px solid rgba(197, 164, 101, 0.14); justify-content: space-between; color: rgba(245, 241, 232, 0.65); }
.related .product-card:hover .price-line { color: var(--gold, #C5A465); }
.related .product-card:hover .product-card-title { color: var(--gold, #C5A465); }

/* ============================================
   VISOR DE PRODUCTO — LUJO (2026-07-20)
   inner-zoom en hover + lightbox fullscreen + swipe movil
   ============================================ */
.gallery-thumbs .thumb {
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
  color: inherit;
  display: block;
  width: 100%;
}
.gallery-main.zoomable { cursor: zoom-in; }
.gallery-main .zoom-layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 250%;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  pointer-events: none;
  z-index: 3;
}
/* Lightbox */
body.lb-open { overflow: hidden; }
.ov-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 7, 6, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.ov-lightbox.open { display: flex; opacity: 1; }
.ov-lightbox .lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.ov-lightbox .lb-close,
.ov-lightbox .lb-nav {
  position: absolute;
  background: rgba(20, 20, 18, 0.55);
  color: var(--ivory, #f0ebe1);
  border: 1px solid rgba(197, 164, 101, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
  z-index: 2;
}
.ov-lightbox .lb-close:hover,
.ov-lightbox .lb-nav:hover {
  background: rgba(197, 164, 101, 0.25);
  border-color: var(--gold, #C5A465);
}
.ov-lightbox .lb-close {
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}
.ov-lightbox .lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}
.ov-lightbox .lb-prev { left: max(0.8rem, env(safe-area-inset-left)); }
.ov-lightbox .lb-next { right: max(0.8rem, env(safe-area-inset-right)); }
.ov-lightbox .lb-counter {
  position: absolute;
  bottom: max(1.2rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  color: var(--ivory-soft, #cfc7b8);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}
@media (max-width: 640px) {
  .ov-lightbox .lb-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .ov-lightbox .lb-img { max-width: 96vw; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-main .zoom-layer, .ov-lightbox { transition: none; }
}


/* ============================================
   LOOKBOOK phone-frame (video propio 2026-07-20)
   ============================================ */
.lookbook { padding: clamp(4rem, 9vw, 8rem) 1.5rem; }
.lookbook-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.lookbook-text h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; margin: 0.6rem 0 1.2rem; }
.lookbook-text p { color: var(--ivory-soft, #cfc7b8); max-width: 42ch; line-height: 1.7; }
.lookbook-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.8rem; color: var(--gold, #C5A465);
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem;
  border-bottom: 1px solid rgba(197,164,101,0.4); padding-bottom: 3px;
  transition: border-color 0.3s, gap 0.3s;
}
.lookbook-cta:hover { border-color: var(--gold, #C5A465); gap: 0.85rem; }
.lookbook-phone { display: flex; justify-content: center; }
.phone-frame {
  width: min(300px, 78vw);
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(160deg, #1a1a18, #050505);
  border: 1px solid rgba(197,164,101,0.22);
  box-shadow: 0 34px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.05);
}
.lookbook-video {
  display: block; width: 100%; aspect-ratio: 9 / 16;
  object-fit: cover; border-radius: 24px; background: #000;
}
@media (max-width: 780px) {
  .lookbook-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .lookbook-text p { margin-inline: auto; }
  .lookbook-phone { order: 2; }
}


/* Botón de sonido en el video del lookbook (comercial v2) */
[data-video-sound] { position: relative; }
.video-sound-btn {
  position: absolute; inset: 0; margin: auto;
  width: max-content; height: max-content;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.3rem; border-radius: 999px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(197,164,101,0.5);
  color: var(--ivory, #f0ebe1); cursor: pointer;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.25s, transform 0.25s, opacity 0.3s; z-index: 2;
}
.video-sound-btn:hover { background: rgba(197,164,101,0.3); transform: scale(1.04); }
.video-sound-btn .vsb-icon { font-size: 0.68rem; }
[data-video-sound].sound-on .video-sound-btn { opacity: 0; pointer-events: none; }
