/* =========================================================
   Shamea Velas — estilos
   Paleta pastel: crema, rosados y verdes claros (tomados del video del hero)
   ========================================================= */

:root {
  /* Crema */
  --crema: #FBF6EE;
  --crema-2: #F5ECDF;
  --arena: #EBDCC7;
  /* Rosados */
  --rosa-50: #FCF2EF;
  --rosa: #F2D6D0;
  --rosa-polvo: #D9A99F;
  --rosa-hondo: #9E5B52;
  /* Verdes */
  --verde-50: #F0F5EE;
  --verde-claro: #D7E5D5;
  --salvia: #8AA59F;
  --verde: #5B7C6C;
  --verde-hondo: #2F4A3F;
  /* Texto */
  --tinta: #3A3431;
  --tinta-suave: #6A625C;
  /* WhatsApp en clave pastel (contraste AA con texto blanco) */
  --wa: #3B7658;
  --wa-hover: #2F6249;

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "Jost", "Segoe UI", system-ui, sans-serif;

  --radius: 20px;
  --radius-lg: 30px;
  --header-h: 76px;
  --gutter: clamp(16px, 4vw, 48px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow-soft: 0 24px 60px -28px rgba(47, 74, 63, .45);

  interpolate-size: allow-keywords;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--crema);
  color: var(--tinta);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--verde-hondo);
  line-height: 1.04;
  letter-spacing: -.01em;
}

h1 em, h2 em, .cierre-quote em {
  font-style: italic;
  font-weight: 400;
  color: var(--rosa-hondo);
}

p { margin: 0; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--verde-hondo);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(1200px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--verde-hondo);
  color: var(--crema);
  text-decoration: none;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--verde);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

/* ---------- Vidrio líquido ---------- */
.glass {
  background: linear-gradient(140deg, rgba(255, 252, 247, .72), rgba(251, 246, 238, .48));
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius-lg);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .glass { background: rgba(251, 246, 238, .94); }
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .98rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn .icon-wa { width: 20px; height: 20px; flex: none; }

.btn-primary {
  background: var(--verde-hondo);
  color: var(--crema);
  box-shadow: 0 14px 30px -14px rgba(47, 74, 63, .7);
}
.btn-primary:hover { background: #253C33; }

.btn-ghost {
  background: rgba(255, 255, 255, .55);
  border-color: rgba(47, 74, 63, .22);
  color: var(--verde-hondo);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .85); }

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(59, 118, 88, .8);
}
.btn-wa:hover { background: var(--wa-hover); }

.btn-light {
  background: var(--crema);
  color: var(--verde-hondo);
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .45);
}
.btn-light:hover { background: #fff; }

.btn-sm { min-height: 44px; padding: 0 18px; font-size: .92rem; }
.btn-lg { min-height: 58px; padding: 0 30px; font-size: 1.05rem; width: 100%; }

/* ---------- Encabezado ---------- */
.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1200px, 100% - 28px);
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(251, 246, 238, .38);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .5);
  transition: background-color .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 246, 238, .78);
  box-shadow: 0 14px 40px -24px rgba(47, 74, 63, .5);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--verde-hondo);
  text-decoration: none;
}
.logo-mark {
  width: 30px;
  height: 30px;
  align-self: center;
  margin-right: 2px;
}
.logo-mark circle { fill: var(--rosa); }
.logo-mark path { fill: var(--verde); }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
}
.logo-sub {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--verde);
}

.nav {
  display: flex;
  gap: clamp(18px, 2.6vw, 36px);
}
.nav a {
  position: relative;
  padding: 6px 0;
  font-size: .95rem;
  color: var(--tinta);
  text-decoration: none;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--rosa-hondo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

/* ---------- Video de fondo genérico ---------- */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #8AA59F;
  isolation: isolate;
}
/* El video horizontal tiene la vela a la derecha: se ancla a ese lado */
.hero-video { object-position: 100% 40%; z-index: -1; }

.hero-inner {
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 96px;
}

.hero-panel {
  width: min(540px, 46vw);
  padding: clamp(32px, 3.6vw, 48px);
}

.hero h1 {
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  line-height: .98;
}

.hero-lead {
  margin-top: 22px;
  color: var(--tinta);
  font-size: 1.08rem;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* abajo a la izquierda, bajo el panel, para no tapar la vela ni la hoja */
.scroll-cue {
  position: absolute;
  left: max(var(--gutter), (100% - 1200px) / 2);
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--verde-hondo);
  text-decoration: none;
}
.scroll-cue i {
  position: relative;
  order: -1;
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(47, 74, 63, .2);
}
.scroll-cue i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 1px;
  height: 50%;
  background: var(--verde-hondo);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  to { top: 100%; }
}

/* =========================================================
   SECCIONES GENERALES
   ========================================================= */
.section {
  position: relative;
  padding: clamp(88px, 12vw, 150px) 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto clamp(44px, 6vw, 72px);
  text-align: center;
}
.section-head .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}
.section-head h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}
.section-head p {
  margin-top: 18px;
  color: var(--tinta-suave);
}

/* =========================================================
   AROMAS
   ========================================================= */
.aromas {
  overflow: hidden;
  background: var(--crema);
  isolation: isolate;
}

/* Ambientación de la sección: una capa por aroma, se funden entre sí */
.aromas-fondo {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.fondo-capa {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s var(--ease);
}
.fondo-capa.is-active { opacity: 1; }

.fondo-chocolate {
  background:
    radial-gradient(58% 52% at 12% 16%, rgba(233, 209, 178, .9), transparent 70%),
    radial-gradient(52% 48% at 88% 26%, rgba(246, 232, 212, .95), transparent 72%),
    radial-gradient(70% 55% at 50% 102%, rgba(226, 200, 168, .75), transparent 72%),
    linear-gradient(180deg, #FCF5EA, #F6E9D8);
}
.fondo-cafe {
  background:
    radial-gradient(58% 52% at 14% 18%, rgba(206, 170, 132, .85), transparent 70%),
    radial-gradient(52% 48% at 86% 28%, rgba(226, 198, 168, .9), transparent 72%),
    radial-gradient(70% 55% at 50% 102%, rgba(168, 126, 88, .5), transparent 74%),
    linear-gradient(180deg, #F5EADB, #EBD9C1);
}
.fondo-lavanda {
  background:
    radial-gradient(58% 52% at 13% 17%, rgba(202, 180, 222, .8), transparent 70%),
    radial-gradient(52% 48% at 87% 27%, rgba(228, 214, 241, .95), transparent 72%),
    radial-gradient(70% 55% at 50% 102%, rgba(176, 150, 204, .55), transparent 74%),
    linear-gradient(180deg, #F6F1FA, #EBE3F4);
}

/* ---------- Vitrina de velas ---------- */
.vitrina {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  grid-template-areas:
    "escena texto"
    "puntos texto";
  column-gap: clamp(20px, 3.5vw, 56px);
  align-items: center;
}

.vitrina-escena {
  position: relative;
  grid-area: escena;
  aspect-ratio: 1 / .88;
  touch-action: pan-y;
}

/* Ambientación: luz de color, elementos del aroma y su video */
.ambiente {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s var(--ease), visibility 0s linear .7s;
}
.ambiente.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity .7s var(--ease), visibility 0s;
}
.amb-luz {
  position: absolute;
  inset: 6% 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 46%, var(--tono), transparent 70%);
  filter: blur(8px);
}
/* Elementos recortados del aroma: chocolates, granos de café o ramas de lavanda */
.amb-el {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: auto;
  transform: rotate(var(--r, 0deg));
  filter: drop-shadow(0 16px 20px rgba(76, 52, 32, .28));
}
.amb-el.al-frente { z-index: 4; }

.amb-video {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 4;
  width: var(--s);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(255, 252, 247, .85);
  box-shadow: 0 22px 46px -24px rgba(76, 52, 32, .55);
}

/* Pila: la vela activa al frente y las otras dos esperando a los lados */
.pila {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.vela-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52%;
  aspect-ratio: 3 / 4;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  background: var(--crema-2);
  cursor: pointer;
  opacity: .55;
  filter: blur(1.5px) saturate(.85);
  box-shadow: 0 22px 46px -26px rgba(47, 74, 63, .5);
  transform:
    translate(calc(-50% + var(--x, 0%)), -50%)
    scale(var(--s, .74))
    rotate(var(--r, 0deg));
  transition:
    transform .75s var(--ease),
    opacity .6s var(--ease),
    filter .6s var(--ease),
    box-shadow .6s var(--ease);
}
.vela-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vela-item.is-prev { --x: -60%; --r: -5deg; z-index: 1; }
.vela-item.is-next { --x: 60%; --r: 5deg; z-index: 1; }
.vela-item.is-prev:hover,
.vela-item.is-next:hover { opacity: .8; --s: .78; }
.vela-item.is-active {
  --x: 0%;
  --s: 1;
  --r: 0deg;
  z-index: 3;
  opacity: 1;
  filter: none;
  cursor: default;
  box-shadow: 0 40px 80px -36px rgba(47, 74, 63, .7);
}

/* Flechas a los lados */
.flecha {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(251, 246, 238, .72);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 16px 34px -18px rgba(47, 74, 63, .6);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color .4s var(--ease), transform .4s var(--ease);
}
.flecha:hover { background: #fff; }
.flecha-izq { left: -14px; }
.flecha-der { right: -14px; }
.flecha-izq:hover { transform: translate(-3px, -50%); }
.flecha-der:hover { transform: translate(3px, -50%); }
.flecha svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--verde-hondo);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Texto del aroma activo */
.vitrina-texto {
  grid-area: texto;
  display: grid;
}
.aroma-info {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), visibility 0s linear .55s;
}
.aroma-info.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .55s var(--ease) .15s, transform .55s var(--ease) .15s, visibility 0s;
}
.aroma-info h3 {
  margin-top: 12px;
  font-size: clamp(2.6rem, 4.6vw, 4rem);
}
.aroma-info p {
  margin-top: 12px;
  max-width: 44ch;
  color: var(--tinta);
}
.aroma-info .aroma-notes { margin-top: 20px; }
.aroma-info .btn { margin-top: 28px; }

.vitrina-puntos {
  grid-area: puntos;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(18px, 2.4vw, 30px);
}
.vitrina-punto {
  position: relative;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 74, 63, .25);
  cursor: pointer;
  transition: width .45s var(--ease), background-color .45s var(--ease);
}
.vitrina-punto::after {
  /* área de toque cómoda */
  content: "";
  position: absolute;
  inset: -14px -8px;
}
.vitrina-punto.is-active { width: 28px; background: var(--verde-hondo); }

.aroma-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent, var(--rosa));
  color: var(--verde-hondo);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.aroma-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.aroma-notes li {
  padding: 3px 10px;
  border: 1px solid rgba(47, 74, 63, .18);
  border-radius: 999px;
  font-size: .8rem;
  color: var(--tinta-suave);
}

/* Características */
.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(48px, 7vw, 88px) 0 0;
  padding: 0;
  list-style: none;
}
.features li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--tone);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--verde-hondo);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.features strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--verde-hondo);
}
.features span:not(.feature-icon) {
  display: block;
  font-size: .9rem;
  line-height: 1.4;
  color: var(--tinta-suave);
}

/* =========================================================
   CÓMO SE HACEN — image scrubbing
   ========================================================= */
.proceso {
  position: relative;
  height: 420vh;
  background: #E9E1D6;
}

.proceso-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.proceso-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.proceso-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251, 246, 238, .35) 0%, rgba(251, 246, 238, 0) 26%),
    radial-gradient(70% 60% at 0% 100%, rgba(58, 52, 49, .28), transparent 70%);
  pointer-events: none;
}

.proceso-veil {
  position: absolute;
  inset: 0;
  background: var(--crema);
  opacity: 0;
  pointer-events: none;
}

.proceso-ui {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  padding: calc(var(--header-h) + 28px) 0 clamp(28px, 5vh, 56px);
}

.proceso-head {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 18px 28px 20px;
  border-radius: var(--radius);
}
.proceso-head .eyebrow { margin-bottom: 6px; }
.proceso-head h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }

.proceso-steps {
  grid-column: 1;
  grid-row: 3;
  display: grid;
  align-self: end;
  width: min(470px, 100%);
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  grid-area: 1 / 1;
  align-self: end;
  padding: 28px 30px 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(26px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), visibility 0s linear .6s;
}
.step.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .6s var(--ease) .12s, transform .6s var(--ease) .12s, visibility 0s;
}

.step-num {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rosa-hondo);
}
.step h3 { font-size: clamp(2rem, 3vw, 2.7rem); }
.step p { margin-top: 10px; color: var(--tinta); }

.proceso-progress {
  grid-column: 2;
  grid-row: 2 / 4;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
  height: min(300px, 40vh);
  margin-left: 24px;
}
.proceso-bar {
  position: absolute;
  left: 50%;
  top: 22px;
  bottom: 22px;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(251, 246, 238, .7);
  border-radius: 2px;
  overflow: hidden;
}
.proceso-bar i {
  position: absolute;
  inset: 0;
  background: var(--verde-hondo);
  transform: scaleY(var(--p, 0));
  transform-origin: top;
}
.proceso-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(251, 246, 238, .5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--verde-hondo);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.proceso-dot:hover { transform: scale(1.08); }
.proceso-dot.is-active {
  background: var(--verde-hondo);
  border-color: var(--verde-hondo);
  color: var(--crema);
}

.proceso-hint {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(251, 246, 238, .6);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--verde-hondo);
  transition: opacity .5s var(--ease);
}
.proceso.is-started .proceso-hint { opacity: 0; }

/* =========================================================
   PREGUNTAS + CONTACTO
   ========================================================= */
.contacto {
  position: relative;
  background: var(--crema-2);
  isolation: isolate;
}

/* Video fijo a pantalla completa: se ve limpio al entrar y difuminado tras el vidrio al bajar.
   El contenedor absoluto limita el sticky a la sección para que no se desborde. */
.contacto-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.contacto-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.contacto-video { object-position: 50% 50%; }
.contacto-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 246, 238, .3), rgba(242, 214, 208, .08));
}

.contacto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 32px);
  align-items: stretch;
  padding: 44vh 0 clamp(80px, 10vw, 130px);
}

.contacto .glass {
  background: linear-gradient(140deg, rgba(255, 252, 247, .7), rgba(251, 246, 238, .44));
}

.faq,
.contact-card {
  padding: clamp(28px, 3.4vw, 46px);
}
.faq h2,
.contact-card h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.1rem);
}

.faq-list { margin-top: 26px; }

.faq-item {
  border-top: 1px solid rgba(47, 74, 63, .16);
}
.faq-item:last-child { border-bottom: 1px solid rgba(47, 74, 63, .16); }

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 44px 14px 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--verde-hondo);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--rosa-hondo);
  transition: transform .4s var(--ease);
}
.faq-item summary::after { transform: rotate(90deg); }
.faq-item[open] summary::after { transform: rotate(0deg); }

.faq-item::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size .45s var(--ease), content-visibility .45s allow-discrete;
}
.faq-item[open]::details-content { block-size: auto; }

.faq-answer p {
  padding: 0 36px 20px 0;
  color: var(--tinta);
}

.contact-lead {
  margin-top: 14px;
  margin-bottom: 26px;
  color: var(--tinta);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(47, 74, 63, .16);
}
.info-block h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.55rem;
  font-weight: 600;
}

.status {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px 4px 22px;
  border-radius: 999px;
  position: relative;
  background: var(--rosa);
  color: var(--rosa-hondo);
}
.status:empty { display: none; }
.status::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: currentColor;
}
.status.is-open {
  background: var(--verde-claro);
  color: var(--wa);
}

.hours {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hours li {
  display: flex;
  flex-direction: column;
  padding: 5px 0;
  font-size: .98rem;
  line-height: 1.4;
}
.hours li span:first-child { font-size: .84rem; color: var(--tinta-suave); }
.hours li span:last-child { color: var(--tinta); }
.hours li.is-today span { color: var(--verde-hondo); font-weight: 500; }

address {
  font-style: normal;
  color: var(--tinta);
}

.text-link {
  display: inline-flex;
  gap: 6px;
  margin-top: 10px;
  font-weight: 500;
  color: var(--verde-hondo);
  text-decoration: none;
}
.text-link span { transition: transform .35s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

/* =========================================================
   CIERRE
   ========================================================= */
.cierre {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 92vh;
  min-height: 92svh;
  overflow: hidden;
  background: #6B5A4E;
  isolation: isolate;
}
/* En el video horizontal la vela queda a la izquierda: el texto va a la derecha */
.cierre-video { z-index: -2; object-position: 30% 40%; }
.cierre-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(270deg, rgba(47, 36, 30, .66) 0%, rgba(47, 36, 30, .3) 42%, rgba(47, 36, 30, 0) 62%),
    linear-gradient(0deg, rgba(47, 36, 30, .5) 0%, rgba(47, 36, 30, 0) 40%);
}

.cierre-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-bottom: clamp(56px, 9vw, 110px);
}
.cierre .eyebrow { color: var(--rosa); }
.cierre-quote {
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.02;
  color: var(--crema);
}
.cierre-quote em { color: var(--rosa); }

/* =========================================================
   PIE DE PÁGINA
   ========================================================= */
.site-footer {
  padding: clamp(56px, 7vw, 84px) 0 28px;
  background: var(--crema-2);
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr;
  gap: 32px;
}
.footer-brand p {
  margin-top: 14px;
  max-width: 30ch;
  color: var(--tinta-suave);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-col h3 {
  margin-bottom: 6px;
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--verde);
}
.footer-col a {
  width: fit-content;
  color: var(--tinta);
  text-decoration: none;
}
.footer-col a:hover { color: var(--rosa-hondo); }
.footer-col p { color: var(--tinta); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(47, 74, 63, .14);
  font-size: .85rem;
  color: var(--tinta-suave);
}

/* =========================================================
   ANIMACIONES DE ENTRADA
   ========================================================= */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.contacto-grid .contact-card { transition-delay: .12s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .contacto-grid { grid-template-columns: 1fr; }

  /* Vitrina apilada: primero la vela, luego el texto */
  .vitrina {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "escena"
      "texto"
      "puntos";
    justify-items: center;
  }
  .vitrina-escena { width: min(520px, 100%); }
  .vitrina-texto { margin-top: clamp(10px, 3vw, 24px); }
  .aroma-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .aroma-info p { max-width: 38ch; }
  .aroma-notes { justify-content: center; }
}

/* Pantallas verticales: se usan los videos verticales */
@media (max-aspect-ratio: 1/1) {
  .hero-video { object-position: 50% 50%; }

  /* Título arriba (sobre la pared), acciones abajo (sobre la mesa):
     así la mano y la vela quedan visibles en el centro */
  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: calc(var(--header-h) + 22px) 0 26px;
  }
  .hero-panel {
    display: contents;
  }
  .hero-head { max-width: 560px; }
  .hero h1 { font-size: clamp(2.7rem, 11vw, 4.6rem); }
  .hero .eyebrow { color: var(--verde-hondo); }
  .hero-foot {
    max-width: 560px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(140deg, rgba(255, 252, 247, .74), rgba(251, 246, 238, .52));
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, .9);
  }
  .hero-lead { margin-top: 0; font-size: 1rem; }
  .hero-actions { margin-top: 16px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .scroll-cue { display: none; }

  .contacto-grid { padding-top: 48vh; padding-top: 48svh; }
  /* sube el video vertical para que la repisa y la mano queden en la mitad superior */
  .contacto-video { inset: auto 0 0 0; height: 140%; }

  /* Cierre: el video se sube para que la vela quede arriba y el texto debajo, sobre las manos */
  .cierre { min-height: 100vh; min-height: 100svh; }
  .cierre-video { inset: auto 0 0 0; height: 128%; object-position: 50% 50%; }
  .cierre-shade {
    background: linear-gradient(0deg, rgba(47, 36, 30, .82) 0%, rgba(47, 36, 30, .5) 26%, rgba(47, 36, 30, 0) 46%);
  }
  .cierre-inner { align-items: flex-start; text-align: left; padding-bottom: 36px; }
  .cierre-quote { margin-bottom: 22px; font-size: clamp(2.3rem, 9.6vw, 3.6rem); }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }

  body { font-size: 1rem; }

  .site-header { top: 10px; width: calc(100% - 20px); padding: 6px 6px 6px 16px; }
  .logo-name { font-size: 1.5rem; }
  .btn-sm { width: 44px; padding: 0; }
  .btn-sm .btn-label { display: none; }
  .logo-mark { width: 26px; height: 26px; }

  .eyebrow { font-size: .72rem; letter-spacing: .16em; }

  .vitrina-escena { aspect-ratio: 1 / .95; }
  .vela-item { width: 58%; }
  .vela-item.is-prev { --x: -56%; }
  .vela-item.is-next { --x: 56%; }
  .flecha-izq { left: 0; }
  .flecha-der { right: 0; }
  .aroma-info h3 { font-size: clamp(2.3rem, 10vw, 3rem); }
  .amb-video { border-width: 4px; }
  .flecha { width: 46px; height: 46px; }
  .flecha svg { width: 18px; height: 18px; }

  .features { grid-template-columns: 1fr; }

  .proceso { height: 380vh; }
  .proceso-ui {
    grid-template-columns: minmax(0, 1fr);
    padding-top: calc(var(--header-h) + 14px);
    padding-bottom: 16px;
  }
  .proceso-head { padding: 12px 18px 14px; }
  .proceso-steps { width: 100%; }
  .step { padding: 20px 22px 22px; }
  .step p { font-size: .96rem; line-height: 1.55; }
  .proceso-progress {
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    align-self: start;
    justify-self: end;
    height: auto;
    width: 150px;
    margin: 14px 0 0;
  }
  .proceso-bar {
    left: 22px;
    right: 22px;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
  }
  .proceso-bar i { transform: scaleX(var(--p, 0)); transform-origin: left; }
  .proceso-dot { width: 40px; height: 40px; }
  .proceso-hint { display: none; }

  .info-grid { grid-template-columns: 1fr; }
  .hours li { flex-direction: row; justify-content: space-between; gap: 16px; font-size: .92rem; }
  .hours li span:first-child { font-size: inherit; }
  .hours li span:last-child { text-align: right; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .carrusel-pista { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
