/* =========================================================================
   SOMOS ERA CONSCIENTE — v2 atmósfera evolutiva
   No bloques. No cards. No grids. Solo el viaje.
   ========================================================================= */

:root {
  /* Cosmos */
  --cosmos-void: #020308;
  --cosmos-deep: #050912;
  --cosmos: #0B1A2E;
  --cosmos-mid: #14253E;
  --cosmos-glow: #1F3556;

  /* Atmósfera intermedia */
  --twilight: #1d2845;
  --dawn: #4a3a5c;
  --horizon: #c5a982;
  --sky: #b8c9d4;

  /* Tierra */
  --beige: #F0E6D2;
  --beige-warm: #E8DCC0;
  --kraft: #C9A875;
  --kraft-dark: #8C6A3C;
  --soil: #3a2818;
  --soil-deep: #1f1409;

  /* Acentos */
  --oro: #C9A24A;
  --oro-soft: #E0C078;

  /* 4 elementos */
  --fuego: #B6502A;
  --raices: #5A6340;
  --abundancia: #2c4566;
  --energia: #4E3A6E;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Geist', -apple-system, system-ui, sans-serif;
  --mono: 'Geist Mono', 'SF Mono', Menlo, monospace;

  --gutter: clamp(20px, 4vw, 48px);
}

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

html, body { width: 100%; }
html { scroll-behavior: auto; }

body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  color: var(--beige);
  background: var(--cosmos-void);
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: clip;
}

@media (max-width: 900px), (pointer: coarse) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

/* =========================================================================
   ATMÓSFERA EVOLUTIVA — fondo único que cambia con scroll
   ========================================================================= */
.atmosphere {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.atmosphere__layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  /* No transition: rAF updates every frame, smoothness viene del scroll */
}

/* Capa 1 — Cosmos profundo */
.atm-cosmos {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(40, 60, 110, 0.4), transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(80, 50, 130, 0.25), transparent 55%),
    radial-gradient(ellipse at 50% 90%, rgba(201, 162, 74, 0.06), transparent 60%),
    linear-gradient(180deg, var(--cosmos-void) 0%, var(--cosmos) 50%, var(--cosmos-mid) 100%);
}

/* Capa 2 — Crepúsculo / atmósfera alta */
.atm-twilight {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(120, 90, 140, 0.4), transparent 60%),
    linear-gradient(180deg, var(--cosmos-mid) 0%, var(--twilight) 40%, var(--dawn) 100%);
  opacity: 0;
}

/* Capa 3 — Cielo / horizonte */
.atm-sky {
  background:
    radial-gradient(ellipse at 50% 90%, rgba(197, 169, 130, 0.4), transparent 60%),
    linear-gradient(180deg, var(--dawn) 0%, var(--horizon) 50%, var(--sky) 90%, var(--beige-warm) 100%);
  opacity: 0;
}

/* Capa 4 — Tierra */
.atm-earth {
  background:
    radial-gradient(ellipse at 50% 20%, var(--sky) 0%, var(--beige-warm) 30%, transparent 70%),
    linear-gradient(180deg, var(--beige-warm) 0%, var(--horizon) 35%, var(--soil) 70%, var(--soil-deep) 100%);
  opacity: 0;
}

/* Estrellas en cosmos */
.atm-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at 12% 22%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 28% 65%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1.5px 1.5px at 47% 12%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 63% 78%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.3px 1.3px at 78% 35%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 91% 58%, rgba(255,255,255,0.6), transparent),
    radial-gradient(0.8px 0.8px at 8% 88%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.1px 1.1px at 35% 92%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 55% 40%, rgba(255,255,255,0.7), transparent),
    radial-gradient(0.9px 0.9px at 22% 55%, rgba(255,255,255,0.55), transparent);
  background-size: 100% 100%;
  animation: drift 180s linear infinite;
}
@keyframes drift {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-60px, -100px, 0); }
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* =========================================================================
   CURSOR
   ========================================================================= */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--oro);
  border-radius: 50%;
  pointer-events: none; z-index: 100;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: width 0.3s, height 0.3s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(224,192,120,0.6);
  border-radius: 50%;
  pointer-events: none; z-index: 100;
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(.2,.7,.2,1), height 0.5s, border-color 0.4s, opacity 0.4s;
}
.is-hover .cursor-dot { width: 3px; height: 3px; }
.is-hover .cursor-ring { width: 70px; height: 70px; border-color: var(--oro); }
@media (max-width: 900px), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* =========================================================================
   NAV MINIMALISTA
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.6s, padding 0.6s, color 0.6s;
  mix-blend-mode: difference;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--beige);
}
.nav__brand em { color: var(--beige); font-style: italic; opacity: 0.8; }
.nav__menu {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--beige);
  padding: 10px 16px;
  border: 1px solid rgba(240,230,210,0.4);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav__menu:hover { background: var(--beige); color: var(--cosmos-deep); border-color: var(--beige); }

.menu-panel {
  position: fixed;
  inset: 0;
  background: rgba(2,3,8,0.96);
  backdrop-filter: blur(20px);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
.menu-panel.open { opacity: 1; pointer-events: auto; }
.menu-panel ul {
  list-style: none;
  text-align: center;
}
.menu-panel li {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 300;
  margin: 16px 0;
  opacity: 0.5;
  transition: opacity 0.4s, color 0.4s;
}
.menu-panel li:hover { opacity: 1; color: var(--oro-soft); font-style: italic; }
.menu-close {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--beige);
  padding: 10px 16px;
  border: 1px solid rgba(240,230,210,0.3);
}

/* =========================================================================
   ESCENAS — full-bleed, sin bordes, sin fondos propios
   ========================================================================= */
.act {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14vh var(--gutter);
}
.act__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.act__eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--oro-soft);
  opacity: 0.8;
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.act__eyebrow::before, .act__eyebrow::after {
  content: ""; width: 36px; height: 1px;
  background: currentColor; opacity: 0.5;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

/* =========================================================================
   ACT 1 — UNIVERSO (hero)
   ========================================================================= */
.act--universe {
  min-height: 100svh;
  position: relative;
}
.act--universe::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/generated/hero-cosmos.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(0.75) hue-rotate(-8deg) contrast(1.05);
  opacity: 0.7;
  z-index: -1;
}
.act--universe::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(2,3,8,0.55) 70%),
    linear-gradient(180deg, rgba(2,3,8,0.4) 0%, rgba(2,3,8,0) 30%, rgba(2,3,8,0.9) 100%);
  z-index: -1;
}

.universe__title {
  font-size: clamp(56px, 11vw, 168px);
  font-weight: 300;
  color: var(--beige);
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.universe__title em {
  color: var(--oro-soft);
  font-style: italic;
}
.universe__title .word {
  display: inline-block;
  margin: 0 0.12em;
  opacity: 0;
  transform: translateY(50px);
  animation: rise 1.8s cubic-bezier(.16,1,.3,1) forwards;
}
.universe__title .word:nth-child(1) { animation-delay: 0.4s; }
.universe__title .word:nth-child(2) { animation-delay: 0.9s; }
.universe__title .word:nth-child(3) { animation-delay: 1.4s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.universe__whisper {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(240,230,210,0.7);
  margin-top: 48px;
  opacity: 0;
  animation: rise 1.6s ease 2s forwards;
}

.scroll-cue {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(240,230,210,0.6);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: rise 1.6s ease 2.4s forwards;
}
.scroll-cue__line {
  width: 1px; height: 70px;
  background: linear-gradient(to bottom, var(--oro), transparent);
  animation: pulseLine 2.6s ease-in-out infinite;
}
@keyframes pulseLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* =========================================================================
   ACT 2 — EL DESCENSO (texto fragmentado, atmósfera en transición)
   ========================================================================= */
.act--descent {
  min-height: 180vh;
  display: block;
  padding: 0 var(--gutter);
}
.descent__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.descent__line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--beige);
  text-align: center;
  max-width: 720px;
  opacity: 0;
  position: absolute;
  transition: opacity 0.8s ease;
}
.descent__line em { color: var(--oro-soft); font-style: italic; }

/* =========================================================================
   ACT 3 — LOS 4 RITUALES (full-screen inmersivos, sin grid)
   ========================================================================= */
.ritual-act {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16vh var(--gutter);
  position: relative;
  overflow: hidden;
}
.ritual-act__tint {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  mix-blend-mode: soft-light;
  z-index: 1;
  pointer-events: none;
}
.ritual-act.in .ritual-act__tint { opacity: 0.7; }

.ritual-act[data-elem="fuego"]      .ritual-act__tint { background: radial-gradient(ellipse at 50% 50%, var(--fuego), transparent 70%); }
.ritual-act[data-elem="raices"]     .ritual-act__tint { background: radial-gradient(ellipse at 50% 50%, var(--raices), transparent 70%); }
.ritual-act[data-elem="abundancia"] .ritual-act__tint { background: radial-gradient(ellipse at 50% 50%, var(--abundancia), transparent 70%); }
.ritual-act[data-elem="energia"]    .ritual-act__tint { background: radial-gradient(ellipse at 50% 50%, var(--energia), transparent 70%); }

.ritual-act__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}
.ritual-act.in .ritual-act__symbol { opacity: 1; transform: translateY(0) rotate(0); }

.ritual-act__elem {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--oro-soft);
  margin-bottom: 28px;
  opacity: 0;
  transition: opacity 1.4s ease 0.3s;
}
.ritual-act.in .ritual-act__elem { opacity: 1; }

.ritual-act__title {
  font-size: clamp(56px, 10vw, 140px);
  color: var(--beige);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.4s ease 0.4s, transform 1.4s cubic-bezier(.16,1,.3,1) 0.4s;
}
.ritual-act__title em { font-style: italic; color: var(--oro-soft); }
.ritual-act.in .ritual-act__title { opacity: 1; transform: translateY(0); }

.ritual-act__poem {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300;
  color: rgba(240,230,210,0.85);
  max-width: 620px;
  margin: 40px auto 0;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 1.6s ease 0.9s;
}
.ritual-act.in .ritual-act__poem { opacity: 1; }

/* Foto del ritual — protagonista de la escena, sin bordes ni card */
.ritual-act__photo {
  position: relative;
  width: clamp(280px, 42vw, 480px);
  margin: 48px auto 16px;
  aspect-ratio: 3/4;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition:
    opacity 1.6s ease 0.5s,
    transform 1.8s cubic-bezier(.16,1,.3,1) 0.5s;
}
.ritual-act.in .ritual-act__photo {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.ritual-act__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}
/* Glow tintado en el color del elemento, no es border */
.ritual-act__photo::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.55;
  filter: blur(60px);
  pointer-events: none;
}
.ritual-act[data-elem="fuego"]      .ritual-act__photo::before { background: var(--fuego); }
.ritual-act[data-elem="raices"]     .ritual-act__photo::before { background: var(--raices); }
.ritual-act[data-elem="abundancia"] .ritual-act__photo::before { background: var(--abundancia); }
.ritual-act[data-elem="energia"]    .ritual-act__photo::before { background: var(--energia); }

/* Velado oscuro suave abajo de la foto para fundir con la atmósfera */
.ritual-act__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(2,3,8,0.5) 100%);
  pointer-events: none;
}

/* Placeholder para ritual sin foto (abundancia) */
.ritual-act__photo--placeholder {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(44, 69, 102, 0.8), transparent 70%),
    linear-gradient(160deg, var(--abundancia), var(--cosmos-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}
.ritual-act__photo--placeholder img {
  width: 35%;
  height: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: drop-shadow(0 0 30px rgba(201,162,74,0.4));
}

.ritual-act__symbol {
  width: clamp(50px, 6vw, 80px);
  height: clamp(50px, 6vw, 80px);
  margin: 0 auto 28px;
  opacity: 0;
  transform: translateY(20px) rotate(-8deg);
  transition: opacity 1.4s ease 0.1s, transform 1.4s cubic-bezier(.16,1,.3,1) 0.1s;
}

/* =========================================================================
   ACT 4 — ATERRIZAJE
   ========================================================================= */
.act--landing {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}
.landing__horizon {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0%, transparent 50%, rgba(58,40,24,0.6) 70%, var(--soil-deep) 100%);
}
.landing__earth {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(140,106,60,0.4) 0%, transparent 60%),
    linear-gradient(180deg, var(--soil) 0%, var(--soil-deep) 80%);
  z-index: 2;
  transform: translateY(40%);
  transition: transform 1.4s cubic-bezier(.16,1,.3,1);
}
.act--landing.in .landing__earth { transform: translateY(0); }

.landing__sprout {
  position: absolute;
  left: 50%;
  bottom: 30%;
  width: clamp(40px, 5vw, 70px);
  transform: translateX(-50%) translateY(40px);
  opacity: 0;
  transition: opacity 1.6s ease 1s, transform 1.6s cubic-bezier(.16,1,.3,1) 1s;
  z-index: 3;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}
.act--landing.in .landing__sprout { opacity: 1; transform: translateX(-50%) translateY(0); }
.landing__sprout svg { width: 100%; }

.landing__content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
  padding: 18vh var(--gutter) 0;
  text-align: center;
}
.landing__title {
  font-size: clamp(56px, 10vw, 140px);
  color: var(--beige);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.landing__title em { font-style: italic; color: var(--oro-soft); }
.landing__poem {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: rgba(240,230,210,0.85);
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.landing__box {
  position: absolute;
  left: 50%;
  bottom: 38%;
  width: clamp(140px, 18vw, 240px);
  transform: translateX(-50%) translateY(-60vh) rotate(-5deg);
  opacity: 0;
  transition: opacity 2s ease 0.5s, transform 2.6s cubic-bezier(.34,1.2,.4,1) 0.5s;
  z-index: 4;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
}
.act--landing.in .landing__box {
  opacity: 1;
  transform: translateX(-50%) translateY(0) rotate(0);
}

/* =========================================================================
   ACT 4 — TABLAS (la parte café, ecommerce)
   ========================================================================= */
.act--tablas {
  background: linear-gradient(180deg, transparent 0%, rgba(45, 30, 18, 0.85) 30%, var(--soil) 100%);
  padding: 16vh var(--gutter);
  position: relative;
  z-index: 10;
}
.tablas__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.tablas__head .act__eyebrow { color: var(--oro); }
.tablas__head h2 {
  font-size: clamp(48px, 7vw, 96px);
  color: var(--beige);
  letter-spacing: -0.02em;
}
.tablas__head h2 em { color: var(--oro-soft); font-style: italic; }
.tablas__head > p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(240,230,210,0.7);
  margin-top: 20px;
  line-height: 1.5;
}

.tablas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1100px) { .tablas__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px)  { .tablas__grid { grid-template-columns: 1fr; } }

.tabla {
  position: relative;
  background: rgba(11, 7, 4, 0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,162,74,0.18);
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1), border-color 0.4s;
}
.tabla:hover {
  transform: translateY(-8px);
  border-color: var(--oro);
}
.tabla__symbol {
  position: absolute;
  top: 18px; left: 18px;
  width: 36px; height: 36px;
  z-index: 3;
  opacity: 0.85;
}
.tabla__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin: 0 -24px 20px;
  width: calc(100% + 48px);
  margin-top: -24px;
  margin-bottom: 20px;
  position: relative;
}
.tabla__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1), filter 0.5s;
  filter: brightness(0.85);
}
.tabla:hover .tabla__img img { transform: scale(1.06); filter: brightness(1); }
.tabla__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,7,4,0.6) 100%);
  pointer-events: none;
}

.tabla__img--placeholder {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(44, 69, 102, 0.7), transparent 70%),
    linear-gradient(160deg, var(--abundancia), var(--cosmos-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabla__img--placeholder img {
  width: 40%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(201,162,74,0.5));
}

.tabla__elem {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 8px;
}
.tabla__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--beige);
  line-height: 1.1;
  margin-bottom: 6px;
}
.tabla__name em { font-style: italic; color: var(--oro-soft); }
.tabla__verbs {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(240,230,210,0.65);
  margin-bottom: 18px;
}
.tabla__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.tabla__size {
  flex: 1;
  min-width: 70px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 8px;
  border: 1px solid rgba(201,162,74,0.4);
  color: var(--beige);
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}
.tabla__size.is-on { background: var(--oro); color: var(--cosmos-deep); border-color: var(--oro); }
.tabla__size:not(.is-on):hover { color: var(--oro); border-color: var(--oro); }
.tabla__price {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--beige);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.tabla__price small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--oro-soft);
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.7;
}
.tabla__add {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 1px solid var(--oro);
  color: var(--oro);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tabla__add::before { content: "+"; font-size: 14px; }
.tabla__add:hover { background: var(--oro); color: var(--cosmos-deep); }
.tabla__add.added { background: var(--oro); color: var(--cosmos-deep); }
.tabla__add.added::before { content: "✓"; }

/* =========================================================================
   ACT 5 — EL VIAJE DE ERA
   ========================================================================= */
.act--viaje {
  background: linear-gradient(180deg, var(--soil) 0%, var(--kraft-dark) 50%, var(--kraft) 100%);
  color: var(--cosmos-deep);
  padding: 18vh var(--gutter);
  position: relative;
  z-index: 10;
}
.viaje__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .viaje__grid { grid-template-columns: 1fr; gap: 48px; text-align: center; } }

.viaje__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cosmos);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.viaje__eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--cosmos); opacity: 0.6; }
.viaje__title {
  font-size: clamp(40px, 6vw, 80px);
  color: var(--cosmos-deep);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.viaje__title em { color: var(--cosmos); font-style: italic; }
.viaje__desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(5,9,18,0.8);
  margin-bottom: 32px;
  max-width: 460px;
}
@media (max-width: 900px) { .viaje__desc { margin-left: auto; margin-right: auto; } }
.viaje__list {
  list-style: none;
  margin-bottom: 36px;
}
.viaje__list li {
  padding: 14px 0;
  border-top: 1px solid rgba(5,9,18,0.15);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cosmos-deep);
  display: flex;
  justify-content: space-between;
}
.viaje__list li:last-child { border-bottom: 1px solid rgba(5,9,18,0.15); }
.viaje__list li::after {
  content: attr(data-num);
  color: var(--cosmos);
  opacity: 0.6;
  font-size: 10px;
}
.viaje__price {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--cosmos-deep);
  margin-bottom: 24px;
}
.viaje__add {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 28px;
  background: var(--cosmos-deep);
  color: var(--oro);
  border: 0;
  cursor: pointer;
  transition: background 0.3s, gap 0.3s;
}
.viaje__add:hover { background: var(--cosmos); gap: 18px; }
.viaje__add::after { content: "→"; }
.viaje__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
.viaje__visual img {
  width: 75%;
  max-width: 360px;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.4));
  animation: float 8s ease-in-out infinite;
}
.viaje__orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(5,9,18,0.18);
  border-radius: 50%;
  animation: spin 80s linear infinite;
}
.viaje__orbit--in {
  inset: 22%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 60s;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

/* =========================================================================
   ACT 6 — EL MERCADO
   ========================================================================= */
.act--mercado {
  background: linear-gradient(180deg, var(--kraft) 0%, var(--beige-warm) 60%, var(--beige) 100%);
  color: var(--cosmos-deep);
  padding: 16vh var(--gutter);
  position: relative;
  z-index: 10;
}
.mercado__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.mercado__head .act__eyebrow { color: var(--kraft-dark); }
.mercado__head h2 {
  font-size: clamp(40px, 6vw, 80px);
  color: var(--cosmos-deep);
  letter-spacing: -0.02em;
}
.mercado__head h2 em { color: var(--kraft-dark); font-style: italic; }
.mercado__head p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(5,9,18,0.7);
  margin-top: 18px;
}

.mercado__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
@media (max-width: 1000px) { .mercado__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .mercado__grid { grid-template-columns: 1fr; } }

.merc {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(140,106,60,0.2);
  padding: 18px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.merc:hover { transform: translateY(-6px); border-color: var(--kraft-dark); box-shadow: 0 20px 40px -20px rgba(11,26,46,0.18); }
.merc__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--beige-warm);
  margin-bottom: 16px;
}
.merc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.16,1,.3,1); }
.merc:hover .merc__img img { transform: scale(1.08); }
.merc__cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--kraft-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.merc__name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--cosmos-deep);
  margin-bottom: 12px;
  line-height: 1.2;
}
.merc__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(140,106,60,0.18);
  padding-top: 12px;
  margin-top: auto;
}
.merc__price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cosmos-deep);
}
.merc__add {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--kraft-dark);
  text-transform: uppercase;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.merc__add:hover { color: var(--cosmos-deep); }
.merc__add::before { content: "+ "; }
.merc__cta {
  text-align: center;
}
.merc__cta a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--kraft-dark);
  padding: 18px 28px;
  border: 1px solid var(--kraft-dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.4s, color 0.4s;
}
.merc__cta a:hover { background: var(--kraft-dark); color: var(--beige); }
.merc__cta a::after { content: "→"; }

/* =========================================================================
   ACT 7 — LA CONSCIENCIA (historias detrás del bocado)
   ========================================================================= */
.act--consciencia {
  background: linear-gradient(180deg, var(--beige) 0%, var(--beige-warm) 50%, var(--kraft) 100%);
  color: var(--cosmos-deep);
  padding: 18vh var(--gutter);
  position: relative;
  z-index: 10;
}
.consc__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.consc__head .act__eyebrow { color: var(--kraft-dark); }
.consc__head h2 {
  font-size: clamp(40px, 6vw, 80px);
  color: var(--cosmos-deep);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.consc__head h2 em { color: var(--kraft-dark); font-style: italic; }
.consc__head p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(5,9,18,0.75);
  line-height: 1.6;
}
.consc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .consc__grid { grid-template-columns: 1fr; gap: 18px; } }

.historia {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  color: var(--beige);
}
.historia__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.7) saturate(0.95);
  transition: transform 1.4s cubic-bezier(.16,1,.3,1), filter 0.6s;
}
.historia:hover .historia__bg { transform: scale(1.06); filter: brightness(0.55); }
.historia__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,9,18,0.92) 100%);
}
.historia__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.historia__location {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--oro);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.historia__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--beige);
  line-height: 1.1;
  margin-bottom: 8px;
}
.historia__story {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(240,230,210,0.85);
  margin-bottom: 14px;
  line-height: 1.5;
}
.historia__product {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--oro);
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid rgba(201,162,74,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.historia__product::after { content: "→"; }

.historia--p1 .historia__bg { background-image: linear-gradient(135deg, #5A3D24, #2c1810); }
.historia--p2 .historia__bg { background-image: linear-gradient(135deg, #B6502A, #5a2812); }
.historia--p3 .historia__bg { background-image: linear-gradient(135deg, #5A6340, #2c3320); }

/* =========================================================================
   ACT 5 — ELIGE TU RITUAL (no usado, mantenido para compatibilidad)
   ========================================================================= */
.act--choose {
  min-height: 100vh;
  background: var(--soil-deep);
  padding: 16vh var(--gutter);
  text-align: center;
  position: relative;
  z-index: 10;
}
.choose__head {
  margin-bottom: 80px;
}
.choose__head .act__eyebrow { color: var(--oro); }
.choose__head h2 {
  font-size: clamp(48px, 7vw, 96px);
  color: var(--beige);
  letter-spacing: -0.02em;
}
.choose__head h2 em { color: var(--oro-soft); font-style: italic; }

.choose__list {
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
}
.choose__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  border-bottom: 1px solid rgba(201,162,74,0.18);
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: padding 0.4s;
}
.choose__item:first-child { border-top: 1px solid rgba(201,162,74,0.18); }
.choose__item:hover { padding-left: 24px; }

.choose__item__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--oro);
  text-transform: uppercase;
  width: 80px;
  flex-shrink: 0;
}
.choose__item__name {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--beige);
  flex: 1;
}
.choose__item__name em { font-style: italic; color: var(--oro-soft); }
.choose__item__price {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--beige);
  opacity: 0.7;
  margin-right: 24px;
}
.choose__item__arrow {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--oro);
  transition: transform 0.4s;
}
.choose__item:hover .choose__item__arrow { transform: translateX(8px); }

.choose__expand {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(.4,0,.2,1);
}
.choose__item.open + .choose__expand { grid-template-rows: 1fr; }
.choose__expand__inner {
  overflow: hidden;
  padding: 0 80px 0 80px;
}
.choose__item.open + .choose__expand .choose__expand__inner {
  padding: 28px 80px 36px 80px;
}
.choose__expand p {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(240,230,210,0.75);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.size-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.size-row__opt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid rgba(201,162,74,0.5);
  color: var(--beige);
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
}
.size-row__opt.is-on { background: var(--oro); color: var(--cosmos-deep); border-color: var(--oro); }
.size-row__opt:hover:not(.is-on) { border-color: var(--oro); color: var(--oro); }

.add-cta {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1px solid var(--oro);
  color: var(--oro);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.add-cta:hover { background: var(--oro); color: var(--cosmos-deep); }
.add-cta.added { background: var(--oro); color: var(--cosmos-deep); }

/* =========================================================================
   FOOTER MINIMAL
   ========================================================================= */
.foot {
  background: var(--cosmos-void);
  padding: clamp(24px, 4vh, 44px) var(--gutter) 30px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.foot__brand {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--beige);
  margin-bottom: 8px;
}
.foot__brand em { color: var(--oro); font-style: italic; }
.foot__tagline {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(240,230,210,0.5);
  font-size: 17px;
  margin-bottom: 48px;
}
.foot__row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,230,210,0.5);
  margin-bottom: 32px;
}
.foot__row a { transition: color 0.3s; }
.foot__row a:hover { color: var(--oro); }
.foot__copy {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(240,230,210,0.3);
  text-transform: uppercase;
}

/* =========================================================================
   CONEJO EASTER EGG (cruza la pantalla, no se anuncia)
   ========================================================================= */
.rabbit-cross {
  position: fixed;
  bottom: 12vh;
  left: -120px;
  width: 90px;
  height: 90px;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}
.rabbit-cross.run {
  animation: rabbitRun 6s cubic-bezier(.3,.6,.7,1) forwards;
  pointer-events: auto;
  cursor: pointer;
}
@keyframes rabbitRun {
  0%   { left: -120px; opacity: 0; transform: translateY(0); }
  10%  { opacity: 1; }
  30%  { transform: translateY(-30px); }
  35%  { transform: translateY(0); }
  60%  { transform: translateY(-25px); }
  65%  { transform: translateY(0); }
  90%  { opacity: 1; }
  100% { left: calc(100vw + 120px); opacity: 0; transform: translateY(0); }
}
.rabbit-cross svg { width: 100%; height: 100%; }

/* =========================================================================
   CART
   ========================================================================= */
.cart-fab {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 60;
  width: 50px; height: 50px;
  background: rgba(2,3,8,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--oro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}
.cart-fab:hover { transform: scale(1.08); }
.cart-fab svg { width: 20px; height: 20px; stroke: var(--oro); fill: none; stroke-width: 1.5; }
.cart-fab__count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 20px; height: 20px;
  background: var(--oro);
  color: var(--cosmos-deep);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(.4,1.4,.4,1);
}
.cart-fab__count.shown { opacity: 1; transform: scale(1); }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--cosmos-void);
  border-left: 1px solid rgba(201,162,74,0.2);
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(201,162,74,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer__head h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--beige);
}
.cart-drawer__close {
  background: none; border: 0;
  color: var(--beige);
  font-size: 24px;
  opacity: 0.7;
  cursor: pointer;
}
.cart-drawer__close:hover { opacity: 1; color: var(--oro); }
.cart-drawer__items {
  flex: 1; overflow-y: auto;
  padding: 24px 32px;
}
.cart-drawer__empty {
  color: rgba(240,230,210,0.4);
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  margin-top: 60px;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,162,74,0.1);
}
.cart-item__name { font-family: var(--serif); font-size: 17px; color: var(--beige); }
.cart-item__variant {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--oro-soft);
  text-transform: uppercase; margin-top: 4px;
}
.cart-item__price {
  font-family: var(--mono); font-size: 13px;
  color: var(--beige); align-self: center;
}
.cart-item__remove {
  background: none; border: 0;
  color: rgba(240,230,210,0.4);
  font-size: 18px; cursor: pointer;
  grid-column: 2; justify-self: end;
}
.cart-drawer__foot {
  padding: 24px 32px;
  border-top: 1px solid rgba(201,162,74,0.15);
}
.cart-drawer__total {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--beige); margin-bottom: 18px;
}
.cart-drawer__total strong {
  font-family: var(--serif); font-size: 22px;
  font-weight: 400; color: var(--oro);
  letter-spacing: 0; text-transform: none;
}
.cart-drawer .btn-checkout {
  display: flex;
  align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 18px; border: 1px solid var(--oro);
  color: var(--oro);
}
.cart-drawer .btn-checkout:hover { background: var(--oro); color: var(--cosmos-deep); }

.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(2,3,8,0.6);
  backdrop-filter: blur(4px);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--cosmos-void);
  border: 1px solid var(--oro);
  color: var(--beige);
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 90;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.toast.shown { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================================
   WHATSAPP
   ========================================================================= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 50px; height: 50px;
  background: rgba(2,3,8,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--oro);
  color: var(--oro);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  z-index: 55;
  transition: transform 0.4s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 20px; height: 20px; fill: currentColor; }

/* =========================================================================
   ACCESSIBILITY
   ========================================================================= */
:focus-visible {
  outline: 2px solid var(--oro);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .universe__title .word, .universe__whisper, .scroll-cue { opacity: 1; transform: none; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring, #particles, .rabbit-cross { display: none; }
}

@media (max-width: 700px) {
  .choose__item { flex-wrap: wrap; gap: 8px; }
  .choose__item__num { width: 100%; }
  .choose__item__price { margin: 8px 0; }
  .choose__expand__inner { padding: 0 16px !important; }
  .choose__item.open + .choose__expand .choose__expand__inner { padding: 20px 16px 28px !important; }
}

/* =========================================================================
   ERA REDESIGN 2026 - fusion cosmos ecommerce
   ========================================================================= */
.era-redesign {
  background: #04060e;
}

.nav--era {
  mix-blend-mode: normal;
  background: linear-gradient(180deg, rgba(4,6,14,.76), rgba(4,6,14,0));
  backdrop-filter: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,230,210,.78);
}
.nav__links a { transition: color .25s, opacity .25s; }
.nav__links a:hover { color: var(--oro-soft); opacity: 1; }
@media (max-width: 860px) { .nav__links { display: none; } }

.hero-nave-era {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px var(--gutter) 80px;
  z-index: 10;
}
.hero-nave-era__media,
.hero-nave-era__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-nave-era__media {
  background-image: url('../img/flux-pro-2.0_integra_esta_imagen_de_fonfo-0.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(1.05) brightness(.82);
  transform: scale(1.02);
}
.hero-nave-era__shade {
  background:
    radial-gradient(ellipse at 50% 46%, rgba(4,6,14,0) 0%, rgba(4,6,14,.18) 38%, rgba(4,6,14,.82) 92%),
    linear-gradient(180deg, rgba(4,6,14,.30), rgba(4,6,14,.05) 44%, rgba(4,6,14,.90));
}
.hero-nave-era__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  color: #f8f1df;
  margin-top: 7vh;
}
.hero-nave-era__seal {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--oro-soft);
  margin-bottom: 18px;
  padding-left: .46em;
}
.hero-nave-era h1 {
  font-size: clamp(58px, 10vw, 132px);
  letter-spacing: -.025em;
  text-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.hero-nave-era__content > p:not(.hero-nave-era__seal) {
  max-width: 580px;
  margin: 24px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.45;
  color: rgba(248,241,223,.88);
}
.hero-nave-era__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.era-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.era-btn:hover { transform: translateY(-2px); }
.era-btn--primary { background: var(--beige); color: var(--cosmos-deep); }
.era-btn--ghost { border: 1px solid rgba(240,230,210,.55); color: var(--beige); background: rgba(240,230,210,.06); }
.era-btn--dark { background: var(--cosmos-deep); color: var(--beige); border: 1px solid var(--cosmos-deep); }

.cosmic-journey {
  position: relative;
  z-index: 10;
  height: 360vh;
  background: #04060e;
}
.cosmic-journey__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.cosmic-journey__field,
.cosmic-journey__earth,
.cosmic-journey__cloud,
.cosmic-journey__thread {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cosmic-journey__field {
  background:
    radial-gradient(circle at 50% 10%, rgba(201,163,91,.35), transparent 18%),
    radial-gradient(ellipse at 50% 42%, rgba(48,68,138,.55), transparent 46%),
    linear-gradient(180deg, #04060e 0%, #0b1535 26%, #30264b 48%, #8c4f4f 70%, #e1b574 100%);
}
.cosmic-journey__thread {
  left: 50%;
  right: auto;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(233,217,176,.94), rgba(201,163,91,.5), transparent);
  box-shadow: 0 0 24px rgba(233,217,176,.8), 0 0 70px rgba(201,163,91,.55);
  animation: threadFlow 7s linear infinite;
}
.cosmic-journey__thread::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fff8dd;
  box-shadow: 0 0 32px 10px rgba(233,217,176,.72);
  animation: cometFall 6.5s ease-in-out infinite;
}
.cosmic-journey__cloud--a {
  opacity: .65;
  background: radial-gradient(60% 24% at 26% 62%, rgba(91,98,150,.75), transparent 74%), radial-gradient(64% 28% at 72% 58%, rgba(130,102,148,.68), transparent 72%);
  filter: blur(22px);
}
.cosmic-journey__cloud--b {
  opacity: .62;
  background: radial-gradient(58% 26% at 34% 76%, rgba(232,150,92,.78), transparent 72%), radial-gradient(55% 22% at 72% 72%, rgba(244,178,110,.72), transparent 74%);
  filter: blur(28px);
}
.cosmic-journey__earth {
  top: 55%;
  background: linear-gradient(180deg, rgba(241,233,214,0), rgba(241,233,214,.8) 52%, #f1e9d6 100%);
}
.cosmic-journey__phrases {
  position: relative;
  z-index: 2;
  min-height: 280px;
  width: min(760px, calc(100vw - 40px));
  text-align: center;
}
.cosmic-journey__phrases p {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 78px);
  line-height: 1.04;
  color: #fff4e2;
  text-shadow: 0 18px 58px rgba(0,0,0,.45);
  opacity: 0;
  animation: eraPhrase 16s ease-in-out infinite;
}
.cosmic-journey__phrases p:nth-child(2) { animation-delay: 4s; }
.cosmic-journey__phrases p:nth-child(3) { animation-delay: 8s; }
.cosmic-journey__phrases p:nth-child(4) { animation-delay: 12s; color: #1d2430; text-shadow: 0 8px 44px rgba(255,236,196,.35); }
@keyframes eraPhrase { 0%, 18%, 100% { opacity: 0; transform: translateY(18px); } 7%, 13% { opacity: 1; transform: translateY(0); } }

.origin-era,
.viaje-era {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(90px, 14vh, 150px) var(--gutter);
  background: #f1e9d6;
  color: #1d2430;
}
.origin-era__text h2,
.viaje-era__copy h2,
.section-head h2 {
  font-size: clamp(42px, 6vw, 82px);
  color: #1d2430;
}
.origin-era__text p:not(.act__eyebrow),
.viaje-era__copy p:not(.act__eyebrow),
.section-head p:not(.act__eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(29,36,48,.76);
}
.origin-era__image,
.viaje-era__photo {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 34px 80px rgba(29,36,48,.18);
}
.origin-era__image img,
.viaje-era__photo img { width: 100%; height: 100%; object-fit: cover; }
.viaje-era { background: linear-gradient(180deg, #f1e9d6, #e6d2a9); }
.viaje-era__price { font-family: var(--serif); font-size: 44px !important; color: #1d2430 !important; margin: 28px 0 18px !important; }

.rituals-era {
  position: relative;
  z-index: 12;
  padding: clamp(90px, 14vh, 150px) var(--gutter);
  background: linear-gradient(180deg, #f1e9d6 0%, #2a1b11 100%);
  color: var(--beige);
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 58px; }
.section-head--light h2 { color: #1d2430; }
.section-head--light p:not(.act__eyebrow) { margin-left: auto; margin-right: auto; }
.ritual-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1360px;
  margin: 0 auto;
}
.ritual-path {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0,0,0,.26);
  isolation: isolate;
}
.ritual-path > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.ritual-path__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: .82;
}
.ritual-path::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.20) 45%, rgba(0,0,0,.78));
}
.ritual-path--fuego .ritual-path__veil { background: linear-gradient(180deg, rgba(182,80,42,.75), rgba(92,31,14,.92)); }
.ritual-path--raices .ritual-path__veil { background: linear-gradient(180deg, rgba(57,82,57,.78), rgba(14,42,31,.94)); }
.ritual-path--abundancia .ritual-path__veil { background: linear-gradient(180deg, rgba(44,69,102,.82), rgba(11,26,46,.96)); }
.ritual-path--energia .ritual-path__veil { background: linear-gradient(180deg, rgba(78,58,110,.80), rgba(31,23,52,.94)); }
.ritual-path__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 22px;
  color: white;
}
.ritual-path__content p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--oro-soft);
  margin-bottom: 12px;
}
.ritual-path__content h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  color: #fff7e7;
  margin-bottom: 8px;
}
.ritual-path__content h3 em { color: var(--oro-soft); font-style: italic; }
.ritual-path__content > span {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255,247,231,.86);
  margin-bottom: 12px;
}
.ritual-path .tabla__sizes { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.ritual-path .tabla__size {
  border: 1px solid rgba(255,247,231,.34);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 9px;
  letter-spacing: .12em;
  color: rgba(255,247,231,.88);
  line-height: 1.25;
}
.ritual-path .tabla__size.is-on { background: var(--oro-soft); color: #1d2430; border-color: var(--oro-soft); }
.ritual-path .tabla__amount { display: block; font-family: var(--serif); font-size: 26px; margin-bottom: 12px; }
.ritual-path .tabla__add {
  width: 100%;
  border-radius: 999px;
  background: #fff7e7;
  color: #1d2430;
  padding: 11px 16px;
  font-size: 9.5px;
  letter-spacing: .18em;
  font-weight: 600;
}

.mercado-era {
  position: relative;
  z-index: 12;
  padding: clamp(90px, 14vh, 150px) var(--gutter);
  background: linear-gradient(180deg, #e6d2a9 0%, #f1e9d6 80%);
  color: #1d2430;
}
.section-head--paper p:not(.act__eyebrow) { margin-left: auto; margin-right: auto; }
.mercado-era__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
}
.mercado-era__more {
  text-align: center;
  margin-top: clamp(40px, 6vh, 64px);
}

.rabbit-gate {
  position: relative;
  z-index: 12;
  min-height: 36vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f1e9d6, #04060e 82%);
  overflow: hidden;
}
.white-rabbit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(245,239,227,.82);
  opacity: .58;
  transform: translateY(12px);
  animation: rabbitSignal 7s ease-in-out infinite;
}
.white-rabbit:hover { opacity: 1; color: var(--oro-soft); }
.white-rabbit svg { width: 92px; filter: drop-shadow(0 0 20px rgba(245,239,227,.35)); }
.white-rabbit span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
@keyframes rabbitSignal { 0%,100% { opacity:.36; transform:translateY(14px); } 50% { opacity:.86; transform:translateY(0); } }

@media (max-width: 1100px) {
  .ritual-paths, .mercado-era__grid { grid-template-columns: repeat(2, 1fr); }
  .ritual-path { min-height: 560px; }
}
@media (max-width: 760px) {
  .hero-nave-era { min-height: 100svh; padding-inline: 20px; }
  .hero-nave-era__media { background-position: center; transform: scale(1.08); }
  .hero-nave-era__content { margin-top: 18vh; }
  .hero-nave-era h1 { font-size: clamp(54px, 18vw, 78px); }
  .hero-nave-era__content > p:not(.hero-nave-era__seal) { font-size: 20px; }
  .origin-era, .viaje-era { grid-template-columns: 1fr; text-align: center; }
  .origin-era__text p:not(.act__eyebrow), .viaje-era__copy p:not(.act__eyebrow) { margin-left: auto; margin-right: auto; }
  .ritual-paths, .mercado-era__grid { grid-template-columns: 1fr; }
  .ritual-path { min-height: 620px; }
  .cosmic-journey { height: 300vh; }
}

/* ERA responsive polish after screenshot QA */
.nav--era .nav__menu { display: none; }
.hero-nave-era h1 { max-width: 920px; margin-left: auto; margin-right: auto; }
@media (max-width: 860px) {
  .nav--era {
    padding: 18px 16px;
    gap: 12px;
  }
  .nav--era .nav__menu {
    display: inline-flex;
    font-size: 10px;
    letter-spacing: .20em;
    padding: 9px 12px;
    flex-shrink: 0;
  }
  .nav__brand {
    font-size: 15px;
    letter-spacing: .04em;
    min-width: 0;
  }
  .cart-fab {
    top: 76px;
    right: 18px;
    width: 46px;
    height: 46px;
  }
}
@media (max-width: 760px) {
  .hero-nave-era__content {
    width: 100%;
    max-width: 340px;
    margin-top: 16vh;
  }
  .hero-nave-era h1 {
    max-width: 340px;
    font-size: clamp(44px, 14vw, 56px);
    line-height: .98;
    overflow-wrap: normal;
  }
  .hero-nave-era__seal {
    font-size: 10px;
    letter-spacing: .34em;
  }
  .hero-nave-era__content > p:not(.hero-nave-era__seal) {
    max-width: 320px;
    font-size: 18px;
  }
  .hero-nave-era__actions {
    width: min(100%, 300px);
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }
  .hero-nave-era__actions .era-btn {
    width: 100%;
  }
}

/* ERA refinement pass: logo, cart clearance, forward journey, final box */
.era-logo-hero {
  width: clamp(150px, 18vw, 230px);
  height: auto;
  margin: 0 auto 18px;
  opacity: .86;
  filter: drop-shadow(0 0 24px rgba(233,217,176,.20));
  mix-blend-mode: screen;
}
.cart-fab {
  top: 88px;
  right: 28px;
}
.scroll-cue {
  left: 50%;
  width: 190px;
  text-align: center;
  transform: translateX(-50%);
}
.scroll-cue__line {
  margin-left: auto;
  margin-right: auto;
  transform-origin: top center;
}
.cosmic-journey__field,
.cosmic-journey__cloud,
.cosmic-journey__earth,
.cosmic-journey__thread,
.cosmic-journey__box {
  will-change: transform, opacity;
}
.cosmic-journey__box {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 9vh;
  width: clamp(160px, 22vw, 320px);
  transform: translateX(-50%) translateY(70px) scale(.72);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 40px 72px rgba(0,0,0,.48));
}
.cosmic-journey__phrases {
  pointer-events: none;
}
.cosmic-journey__phrases p {
  transition: opacity .25s ease, transform .25s ease;
}
.ritual-path--fuego > img,
.ritual-path--raices > img,
.ritual-path--energia > img {
  object-position: center;
}
.ritual-path--abundancia > img {
  object-fit: contain;
  padding: 22%;
  background: radial-gradient(circle at 50% 42%, rgba(224,192,120,.28), rgba(44,69,102,.92) 55%, #0b1a2e 100%);
}
@media (max-width: 860px) {
  .cart-fab {
    top: 78px;
    right: 18px;
  }
}
@media (max-width: 760px) {
  .nav--era .nav__menu {
    position: fixed;
    top: 18px;
    right: 14px;
    z-index: 75;
    display: inline-flex;
    background: rgba(4,6,14,.52);
    backdrop-filter: blur(10px);
    font-size: 10px;
    letter-spacing: .18em;
    padding: 9px 11px;
  }
  .nav__brand {
    max-width: 225px;
    overflow: hidden;
    white-space: nowrap;
  }
  .era-logo-hero {
    width: 142px;
    margin-bottom: 14px;
  }
  .hero-nave-era__content > p:not(.hero-nave-era__seal) {
    max-width: 292px;
    font-size: 17px;
  }
  .hero-nave-era .scroll-cue {
    display: none;
  }
  .cosmic-journey__box {
    width: min(62vw, 230px);
    bottom: 11vh;
  }
}

/* ERA cue alignment fix */
.hero-nave-era .scroll-cue {
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 190px;
  transform: none;
  bottom: 6px;
  z-index: 4;
  gap: 8px;
  align-items: center;
  text-align: center;
  color: var(--oro-soft);
  text-shadow: 0 0 10px rgba(224,192,120,.85), 0 0 22px rgba(201,162,74,.5);
}
.hero-nave-era .scroll-cue__line {
  height: 26px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--oro-soft), rgba(201,162,74,.1));
  box-shadow: 0 0 8px rgba(224,192,120,.8), 0 0 16px rgba(201,162,74,.45);
}

/* =========================================================================
   ERA 2026 — AJUSTES: caja flotante, instantáneas, rituales, mercado
   ========================================================================= */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Eyebrow sin guion largo (líneas decorativas) */
.act__eyebrow--bare { padding-left: 0; }
.act__eyebrow--bare::before,
.act__eyebrow--bare::after { display: none; }

/* ---- ATERRIZAJE: caja como objeto flotante + CTA "Pídela aquí" ---- */
.cosmic-journey__box {
  display: grid;
  place-items: center;
  bottom: 19vh;
  width: clamp(210px, 26vw, 360px);
}
/* las frases las controla el scroll (JS), no un timer: evita que tapen la caja */
.cosmic-journey__phrases p { animation: none !important; }
.cosmic-journey__box img {
  width: 100%;
  height: auto;
  animation: eraFloatBox 6.5s ease-in-out infinite;
  filter: drop-shadow(0 34px 64px rgba(0,0,0,.5));
}
@keyframes eraFloatBox {
  0%, 100% { transform: translateY(0) rotate(-1.4deg); }
  50%      { transform: translateY(-16px) rotate(1.4deg); }
}
.cosmic-journey__cta {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 7vh;
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: #1d2430;
  color: #fff7e7;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 22px 46px rgba(0,0,0,.34);
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s, color .3s;
}
.cosmic-journey__cta::after { content: "↓"; font-size: 15px; }
.cosmic-journey__cta.show { pointer-events: auto; }
.cosmic-journey__cta:hover { background: var(--oro); color: #1d2430; }
@media (prefers-reduced-motion: reduce) { .cosmic-journey__box img { animation: none; } }

/* ---- DEL COSMOS A TU MESA: instantáneas (Polaroid) ---- */
.cosmos-mesa {
  position: relative;
  z-index: 12;
  padding: clamp(90px, 14vh, 150px) var(--gutter);
  background: #f1e9d6;
  color: #1d2430;
}
.cosmos-mesa__head { margin-bottom: 60px; }
.snaps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  max-width: 1240px;
  margin: 0 auto;
}
.snap {
  background: #fffdf7;
  padding: 14px 14px 20px;
  border-radius: 3px;
  box-shadow: 0 18px 40px rgba(29,36,48,.16);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s;
}
.snap:nth-child(1) { transform: rotate(-3deg)  translateY(14px); }
.snap:nth-child(2) { transform: rotate(1.5deg) translateY(-16px); }
.snap:nth-child(3) { transform: rotate(3deg)   translateY(8px); }
.snap:nth-child(4) { transform: rotate(-1.8deg) translateY(-6px); }
.snap:hover { transform: rotate(0) translateY(-10px) !important; box-shadow: 0 30px 60px rgba(29,36,48,.24); z-index: 2; }
.snap__photo { aspect-ratio: 4/5; overflow: hidden; background: #e8dcc0; }
.snap__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.98) contrast(1.02); }
.snap__cap { padding: 16px 6px 0; text-align: center; }
.snap__num {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--kraft-dark);
}
.snap__cap h3 {
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 23px);
  color: #1d2430;
  margin: 10px 0 8px;
  line-height: 1.14;
}
.snap__cap p { font-size: 13.5px; line-height: 1.5; color: rgba(29,36,48,.72); }
@media (max-width: 1000px) { .snaps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .snaps { grid-template-columns: 1fr; max-width: 360px; }
  .snap, .snap:nth-child(1), .snap:nth-child(2), .snap:nth-child(3), .snap:nth-child(4) { transform: rotate(0) translateY(0); }
}

/* ---- RITUALES: dejar ver la tabla, filtro de color + icono ---- */
.ritual-path__veil { opacity: .48; }
.ritual-path::after {
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.12) 42%, rgba(0,0,0,.74));
}
.ritual-path > img { filter: saturate(1.04) contrast(1.04); }
.ritual-path__top {
  position: absolute;
  top: 16px; left: 18px; right: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ritual-path__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
  border: 1px solid rgba(255,247,231,.22);
  flex-shrink: 0;
}
.ritual-path__elem {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--oro-soft);
  text-shadow: 0 2px 8px rgba(0,0,0,.65);
}
/* Abundancia (Agua): sin foto de tabla todavía → mosaico con el símbolo */
.ritual-path--symbol > img {
  object-fit: cover;
  padding: 0;
  background: #0b1a2e;
}
.ritual-path--symbol .ritual-path__veil { opacity: .3; }

/* Ingredientes de cada tabla (entre los verbos y el tamano) */
.ritual-path__content p.ritual-path__ingredients {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,247,231,.82);
  margin: 0 0 14px;
}
/* Abundancia: proximamente */
.ritual-path__soon {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--oro-soft);
  border: 1px solid rgba(224,192,120,.5);
  border-radius: 999px;
  padding: 11px 20px;
}
.ritual-path__soon::before { content: "✦"; }

/* ---- EL MERCADO: instantáneas de producto (Polaroid) ---- */
.mercado-era__grid { gap: clamp(20px, 2.6vw, 36px); }
.mercado-era .merc {
  background: #fffdf7;
  border: 0;
  padding: 14px 14px 18px;
  border-radius: 3px;
  box-shadow: 0 16px 38px rgba(29,36,48,.16);
}
.mercado-era .merc:nth-child(odd)  { transform: rotate(-1.4deg); }
.mercado-era .merc:nth-child(even) { transform: rotate(1.3deg); }
.mercado-era .merc:hover { transform: rotate(0) translateY(-8px); box-shadow: 0 30px 60px rgba(29,36,48,.24); }
.mercado-era .merc__img { aspect-ratio: 1/1; background: #f3ece0; margin-bottom: 14px; }
@media (max-width: 560px) {
  .mercado-era .merc,
  .mercado-era .merc:nth-child(odd),
  .mercado-era .merc:nth-child(even) { transform: rotate(0); }
}

/* =========================================================================
   ERA 2026 — logo+frase hero, hilo dorado, conejo+brote (cierre)
   ========================================================================= */

/* Logo en el nav (arriba izquierda) */
.nav__brand--logo { display: inline-flex; align-items: center; }
.nav__brand--logo img {
  height: 75px; width: auto; display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.4));
}
@media (max-width: 760px) { .nav__brand--logo img { height: 57px; } }

/* Hero: el logo va en el nav; al centro la frase con la fuente del menu */
.era-logo-hero { display: none; }
.hero-nave-era__content p.hero-nave-era__brandline {
  font-family: var(--mono);
  font-size: clamp(12px, 1.5vw, 16px);
  letter-spacing: .34em;
  text-transform: uppercase;
  font-style: normal;
  color: rgba(248,241,223,.92);
  margin: 0 0 16px;
  max-width: none;
  text-shadow: 0 6px 22px rgba(0,0,0,.5);
}
.hero-nave-era__content p.hero-nave-era__brandline em { color: var(--oro-soft); font-style: normal; }

/* ---- HILO DORADO que recorre el sitio hasta el brote ---- */
.era-thread-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, 88vw);
  top: 0;
  height: 0;            /* lo fija el JS */
  z-index: 46;
  pointer-events: none;
}
.era-thread { width: 100%; height: 100%; display: block; overflow: visible; }
.era-thread__path {
  filter: drop-shadow(0 0 5px rgba(233,217,176,.85)) drop-shadow(0 0 14px rgba(201,162,74,.55));
  opacity: .82;
}
@media (prefers-reduced-motion: reduce) { .era-thread-wrap { display: none; } }

/* ---- CIERRE: conejo de ERA + brote (la vida) ---- */
.closing {
  position: relative;
  z-index: 12;
  background:
    radial-gradient(120% 64% at 50% 6%, rgba(46,64,118,.30), transparent 60%),
    linear-gradient(180deg, #e6d2a9 0%, #2a1d10 9%, #06080f 26%, #020308 100%);
  padding: clamp(80px, 13vh, 150px) var(--gutter) clamp(6px, 1.5vh, 18px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.closing__stars {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 30%, rgba(255,255,255,.85), transparent),
    radial-gradient(1.1px 1.1px at 28% 52%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.6px 1.6px at 47% 22%, rgba(255,255,255,.9), transparent),
    radial-gradient(1px 1px at 63% 64%, rgba(255,255,255,.55), transparent),
    radial-gradient(1.3px 1.3px at 78% 36%, rgba(255,255,255,.78), transparent),
    radial-gradient(1px 1px at 88% 58%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.2px 1.2px at 35% 78%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 55% 44%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.1px 1.1px at 70% 86%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 20% 68%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.2px 1.2px at 92% 78%, rgba(255,255,255,.55), transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 100%);
  opacity: .85;
}
.closing__rabbit, .closing__sprout,
.closing__oracle-text, .closing__oracle-btn { position: relative; z-index: 2; }
.closing__oracle-text {
  max-width: 480px;
  margin: clamp(10px, 2.4vh, 26px) auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.5;
  color: rgba(240,230,210,.86);
  text-shadow: 0 4px 18px rgba(0,0,0,.55);
}
.closing__oracle-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(16px, 2.4vh, 26px);
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid var(--oro);
  background: rgba(2,3,8,.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--oro-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .3s, color .3s, transform .3s, box-shadow .3s;
}
.closing__oracle-btn:hover {
  background: var(--oro);
  color: var(--cosmos-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(201,162,74,.3);
}
.closing__oracle-btn .paw { width: 34px; height: 19px; flex-shrink: 0; }

/* Eyebrows legibles sobre fondos claros (antes casi no se leian) */
.cosmos-mesa .act__eyebrow,
.rituals-era .act__eyebrow,
.viaje-era .act__eyebrow,
.mercado-era .act__eyebrow {
  color: #8a5a26;
  opacity: 1;
}
.closing__thread {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
  overflow: visible;
}
.closing__thread path {
  filter: drop-shadow(0 0 5px rgba(233,217,176,.85)) drop-shadow(0 0 14px rgba(201,162,74,.55));
  opacity: .85;
}
.closing__rabbit {
  display: inline-block;
  position: relative;
  margin-bottom: clamp(20px, 4vh, 46px);
  opacity: .97;
  transition: opacity .4s, transform .4s;
}
.closing__rabbit::before {
  content: "";
  position: absolute;
  left: 50%; top: 46%;
  width: 132%; height: 132%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(233,217,176,.42) 0%, rgba(201,162,74,.17) 40%, transparent 68%);
  filter: blur(24px);
  z-index: -1;
  pointer-events: none;
}
.closing__rabbit img {
  width: clamp(230px, 50vw, 340px);
  height: auto;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 55%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 50%, #000 55%, transparent 78%);
  filter: drop-shadow(0 0 46px rgba(233,217,176,.4)) brightness(1.08) contrast(1.05);
}
.closing__rabbit:hover { opacity: 1; transform: translateY(-4px); }
.closing__sprout { position: relative; max-width: clamp(220px, 34vw, 320px); margin: clamp(40px, 9vh, 120px) auto 0; }
.closing__sprout img {
  width: 100%;
  height: auto;
  filter: saturate(1.05) brightness(1.04) drop-shadow(0 0 24px rgba(233,217,176,.22));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 19%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 19%, #000 100%);
}

/* =========================================================================
   HERO VIAJE — entrar a la pagina = volar hacia adelante atravesando la ventana
   ========================================================================= */
.hero-nave-era {
  height: 200vh;
  min-height: 200vh;
  position: relative;
  display: block;
  padding: 0;
  overflow: visible;
  z-index: 10;
}
.hero-nave-era__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 120px var(--gutter) 80px;
  background: radial-gradient(ellipse 85% 70% at 50% 44%, #0b1430 0%, #050a18 46%, #02040b 100%);
}
.hero-nave-era__media {
  transform-origin: 50% 44%;
  will-change: transform, opacity, filter;
}
.hero-warp {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}
.hero-nave-era__shade { z-index: 1; }
.hero-nave-era__content { z-index: 2; will-change: transform, opacity; }
.hero-nave-era .scroll-cue { z-index: 3; }
@media (prefers-reduced-motion: reduce) {
  .hero-nave-era { height: 100svh; min-height: 100svh; }
  .hero-nave-era__stage { position: relative; }
  .hero-warp { display: none; }
}

/* =========================================================================
   ERA DESCENT — descenso cósmico (un solo pin, movimiento por scroll)
   Hero + viaje fusionados. Conserva imágenes y textos; solo cambia el movimiento.
   ========================================================================= */
.era-descent {
  position: relative;
  z-index: 10;
  height: 520vh;            /* largo del recorrido del scroll */
  background: #04060e;
}
.era-descent__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.era-descent__layer { position: absolute; inset: 0; pointer-events: none; }
.era-descent__base { background: #04060e; }
.era-descent__nebula {
  inset: -6%;
  background: url('../img/flux-pro-2.0_integra_esta_imagen_de_fonfo-0.jpg') center 44% / cover no-repeat;
  filter: saturate(.9) contrast(1.05) brightness(.82);
  transform: scale(1.05);
  will-change: transform, opacity;
}
.era-descent__core {
  left: 50%; top: 30%;
  width: 46vmin; height: 46vmin;
  inset: auto;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,163,91,.5), rgba(120,150,220,.16) 42%, transparent 70%);
  filter: blur(6px);
  will-change: transform, opacity;
}
.era-descent__stars, .era-descent__stars2 { will-change: transform, opacity; }
.era-descent__stars {
  background-image:
    radial-gradient(1.6px 1.6px at 16% 22%, rgba(255,255,255,.85), transparent),
    radial-gradient(1.4px 1.4px at 84% 18%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.5px 1.5px at 24% 70%, rgba(201,163,91,.7), transparent),
    radial-gradient(1.3px 1.3px at 73% 76%, rgba(255,255,255,.65), transparent),
    radial-gradient(1.5px 1.5px at 92% 52%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.2px 1.2px at 8% 48%, rgba(255,255,255,.55), transparent),
    radial-gradient(1.3px 1.3px at 58% 34%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.2px 1.2px at 40% 12%, rgba(255,255,255,.55), transparent);
}
.era-descent__stars2 {
  background-image:
    radial-gradient(1px 1px at 30% 40%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 66% 22%, rgba(255,255,255,.45), transparent),
    radial-gradient(1px 1px at 12% 80%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 88% 64%, rgba(255,255,255,.45), transparent),
    radial-gradient(1px 1px at 50% 88%, rgba(255,255,255,.4), transparent);
}
.era-descent__clouds { opacity: 0; will-change: transform, opacity; }
.era-descent__clouds > div { position: absolute; inset: -12%; }
.era-descent__clouds--a > div {
  background:
    radial-gradient(55% 26% at 22% 58%, rgba(86,96,140,.92), transparent 72%),
    radial-gradient(60% 28% at 52% 48%, rgba(108,116,158,.85), transparent 73%),
    radial-gradient(52% 24% at 80% 60%, rgba(80,90,132,.9), transparent 72%);
  filter: blur(22px);
  animation: cloudDrift 26s ease-in-out infinite alternate;
}
.era-descent__clouds--b > div {
  background:
    radial-gradient(58% 26% at 30% 66%, rgba(232,150,92,.9), transparent 72%),
    radial-gradient(64% 30% at 62% 60%, rgba(244,178,110,.85), transparent 73%),
    radial-gradient(50% 24% at 84% 70%, rgba(214,120,80,.82), transparent 72%);
  filter: blur(24px);
  animation: cloudDrift 34s ease-in-out infinite alternate-reverse;
}
.era-descent__sunrise {
  position: absolute;
  left: 50%; bottom: 6%;
  width: 130vmax; height: 90vmax;
  transform: translate(-50%, 30%) scale(.6);
  background: radial-gradient(ellipse 42% 48% at 50% 100%, rgba(255,228,170,.92), rgba(224,192,120,.55) 32%, rgba(201,120,70,.26) 55%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.era-descent__earth {
  opacity: 0;
  transform: translateY(55%) scale(1.12);
  background: linear-gradient(180deg, rgba(241,233,214,0) 0%, rgba(241,233,214,.85) 50%, #f1e9d6 100%);
  will-change: transform, opacity;
}
.era-descent__thread {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.era-descent__flow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(201,163,91,.15) 8%, rgba(233,217,176,.9) 50%, rgba(201,163,91,.15) 92%, transparent);
  background-size: 100% 560px;
  animation: threadFlow 7s linear infinite;
  box-shadow: 0 0 18px rgba(201,163,91,.6), 0 0 42px rgba(201,163,91,.3);
}
.era-descent__comet {
  position: absolute;
  left: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #fff, rgba(233,217,176,.9) 40%, transparent 70%);
  box-shadow: 0 0 22px 6px rgba(233,217,176,.7);
  animation: cometFall 6.5s ease-in-out infinite;
}
.era-descent__vignette {
  background: radial-gradient(ellipse 70% 60% at 50% 40%, transparent 52%, rgba(4,6,14,.55) 100%);
}

/* hero que se disuelve en su lugar (mismos textos/estilos del hero actual) */
.era-descent__hero {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(90px, 12vh, 150px) var(--gutter) clamp(120px, 20vh, 200px);
  will-change: transform, opacity;
}
.era-descent__lockup {
  max-width: 760px;
  color: #f8f1df;
}
.era-descent__hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  font-size: clamp(58px, 10vw, 132px);
  letter-spacing: -.025em;
  text-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.era-descent__hero p {
  max-width: 580px;
  margin: 24px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.45;
  color: rgba(248,241,223,.88);
}

/* frases del viaje (mismos textos), controladas por scroll */
.era-descent__phrases {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
  pointer-events: none;
}
.era-descent__phrase {
  position: absolute;
  opacity: 0;
  max-width: 760px;
  will-change: transform, opacity;
}
.era-descent__phrase p {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 78px);
  line-height: 1.04;
  color: #fff4e2;
  text-shadow: 0 18px 58px rgba(0,0,0,.45);
}
.era-descent__phrase--land p {
  color: #1d2430;
  text-shadow: 0 8px 44px rgba(255,236,196,.35);
}

/* caja + CTA al aterrizar (misma imagen y texto) */
.era-descent__box {
  position: absolute;
  left: 50%;
  bottom: 19vh;
  z-index: 6;
  width: clamp(210px, 26vw, 360px);
  opacity: 0;
  transform: translateX(-50%) translateY(70px);
  will-change: transform, opacity;
}
.era-descent__box img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 64px rgba(0,0,0,.5));
}
.era-descent__cta {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 7vh;
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: #1d2430;
  color: #fff7e7;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 22px 46px rgba(0,0,0,.34);
  transition: background .3s, color .3s;
}
.era-descent__cta::after { content: "↓"; font-size: 15px; }
.era-descent__cta.show { pointer-events: auto; }
.era-descent__cta:hover { background: var(--oro); color: #1d2430; }

/* indicador de scroll (mismo texto "Atraviesa la ventana") */
.era-descent__cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(240,230,210,.6);
}

@keyframes threadFlow { 0% { background-position: 0 0; } 100% { background-position: 0 -560px; } }
@keyframes cometFall { 0% { top: -14%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 112%; opacity: 0; } }
@keyframes cloudDrift { 0% { transform: translateX(-3%); } 100% { transform: translateX(3%); } }

@media (prefers-reduced-motion: reduce) {
  .era-descent__flow, .era-descent__comet,
  .era-descent__clouds--a > div, .era-descent__clouds--b > div { animation: none; }
}

/* =========================================================================
   MANIFIESTO ERA — sobre el crema, dorado serif con símbolos celestes
   (continúa con la sección de polaroids; mismo fondo #f1e9d6)
   ========================================================================= */
.manifiesto-era {
  position: relative;
  z-index: 12;
  background: #f1e9d6;
  color: #7d5f2a;
  padding: clamp(40px, 7vh, 80px) var(--gutter) clamp(80px, 13vh, 140px);
  text-align: center;
}
.manifiesto-era__inner { max-width: 720px; margin: 0 auto; }
.manifiesto-era__ornament {
  font-family: var(--serif);
  color: var(--oro);
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: .4em;
  opacity: .85;
}
.manifiesto-era__title {
  font-family: var(--serif);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: clamp(28px, 5vw, 52px);
  color: var(--oro);
  margin: clamp(22px, 4vh, 40px) 0 clamp(28px, 5vh, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
}
.manifiesto-era__title::before,
.manifiesto-era__title::after { content: "✦"; font-size: .4em; opacity: .75; }
.manifiesto-era p {
  font-family: var(--serif);
  font-size: clamp(17px, 2.1vw, 23px);
  line-height: 1.6;
  margin: 0 auto clamp(20px, 3.4vh, 32px);
  max-width: 58ch;
}
.manifiesto-era__creed {
  margin: clamp(26px, 5vh, 46px) auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.3vw, 26px);
  color: var(--oro);
}
.manifiesto-era__creed span { display: inline-flex; align-items: baseline; justify-content: center; gap: .5em; }
.manifiesto-era__creed b { font-style: normal; font-weight: 400; color: var(--oro-soft); }
.manifiesto-era__flourish {
  margin-top: clamp(18px, 4vh, 36px);
  color: var(--oro);
  font-size: clamp(15px, 1.8vw, 20px);
  letter-spacing: .4em;
  opacity: .85;
}
