/* ============ Estudio de iluminacion · Casa Patio ============ */
/* Direccion: dark premium tipo lanzamiento de producto. Negro casi puro,
   tipografia nitida, imagenes que brillan, un solo acento calido (ambar). */

:root {
  --bg:        #0a0a0c;
  --bg-2:      #0f0f12;
  --surface:   #141417;
  --surface-2: #1a1a1e;
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.16);

  --text:      #f4f2ee;
  --muted:     rgba(244, 242, 238, 0.58);
  --faint:     rgba(244, 242, 238, 0.38);

  /* Acento calido unico: oro champan */
  --accent:    #d8a86b;
  --accent-2:  #eecaa0;
  --accent-ink:#241708;
  --accent-glow: rgba(216, 168, 107, 0.28);

  --display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r:      16px;
  --r-lg:   22px;
  --pill:   999px;

  --pad-x: clamp(1.15rem, 5vw, 6.5rem);
  --sec-y: clamp(3.25rem, 7vh, 5.5rem);
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Glow calido muy sutil + vineta cinematografica, fijo */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1100px 620px at 80% -10%, rgba(216, 168, 107, 0.1), transparent 60%),
    radial-gradient(900px 720px at 0% 100%, rgba(216, 168, 107, 0.045), transparent 55%),
    radial-gradient(140% 120% at 50% 40%, transparent 62%, rgba(0, 0, 0, 0.55) 100%);
}

/* Grano de pelicula: capa fija muy tenue sobre todo, sin bloquear clics */
.grain {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.03em; line-height: 1.02; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  padding: 0.85rem 1.5rem; border-radius: var(--pill);
  cursor: pointer; white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 10px 30px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 16px 40px var(--accent-glow); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--text); transform: translateY(-2px); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 68px; padding: 0 var(--pad-x);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav-brand { font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.25s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 0.88rem; font-weight: 600; color: var(--text);
  padding: 0.5rem 1.1rem; border-radius: var(--pill);
  border: 1px solid var(--line-2); transition: all 0.25s var(--ease);
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }

/* ============ INTRO OVERLAY (fondo oscuro + texto emisivo) ============ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(2rem, 8vh, 5rem) var(--pad-x);
  /* Casi sólido: la escena apenas se ve mientras “carga” el intro */
  background:
    linear-gradient(105deg,
      rgba(5, 5, 7, 0.97) 0%,
      rgba(6, 6, 8, 0.96) 42%,
      rgba(8, 8, 10, 0.94) 72%,
      rgba(8, 8, 10, 0.92) 100%);
  -webkit-backdrop-filter: blur(8px) saturate(0.85);
  backdrop-filter: blur(8px) saturate(0.85);
  opacity: 0;
  animation: introOverlayIn 0.85s cubic-bezier(0.22, 0.08, 0.18, 1) forwards;
}
@keyframes introOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes introOverlayOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes introCardOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-2px); }
}
.intro-overlay.is-leaving {
  animation: introOverlayOut 2.35s cubic-bezier(0.33, 0, 0.15, 1) forwards;
  pointer-events: none;
}
.intro-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.intro-card {
  position: relative;
  max-width: 640px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.intro-overlay.is-leaving .intro-card {
  animation: introCardOut 2.1s cubic-bezier(0.33, 0, 0.15, 1) forwards;
}

/* Entrada tipo foco / emisivo: se “enciende” la letra */
@keyframes introSpotlight {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: brightness(0.35) blur(4px);
    text-shadow: 0 0 0 transparent;
  }
  45% {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(1.45) blur(0);
    text-shadow:
      0 0 18px rgba(255, 236, 210, 0.85),
      0 0 42px rgba(216, 168, 107, 0.65),
      0 0 80px rgba(216, 168, 107, 0.35),
      0 2px 24px rgba(0, 0, 0, 0.55);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(1) blur(0);
    text-shadow:
      0 0 22px rgba(216, 168, 107, 0.28),
      0 2px 22px rgba(0, 0, 0, 0.6);
  }
}
@keyframes introSpotlightAccent {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: brightness(0.4) blur(3px);
    text-shadow: 0 0 0 transparent;
  }
  45% {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(1.55) blur(0);
    text-shadow:
      0 0 16px rgba(238, 202, 160, 0.9),
      0 0 36px rgba(216, 168, 107, 0.7),
      0 0 64px rgba(216, 168, 107, 0.4);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(1) blur(0);
    text-shadow: 0 0 18px rgba(216, 168, 107, 0.35), 0 1px 14px rgba(0, 0, 0, 0.45);
  }
}
@keyframes introProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes introLineIgnite {
  0% { opacity: 0; transform: scaleX(0); box-shadow: 0 0 0 transparent; }
  50% { opacity: 1; transform: scaleX(1); box-shadow: 0 0 16px rgba(216, 168, 107, 0.85); }
  100% { opacity: 1; transform: scaleX(1); box-shadow: 0 0 10px var(--accent-glow); }
}

.intro-kicker { animation: introSpotlightAccent 1.15s var(--ease) 0.12s both; }
.intro-title  { animation: introSpotlight 1.25s var(--ease) 0.28s both; }
.intro-body   { animation: introSpotlight 1.2s var(--ease) 0.48s both; }
.intro-progress { animation: introSpotlight 0.95s var(--ease) 0.68s both; }

.intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.15rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.intro-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  transform-origin: left center;
  animation: introLineIgnite 1s var(--ease) 0.2s both;
}
.intro-title {
  margin: 0 0 1.05rem;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
}
.intro-body {
  margin: 0 0 1.6rem;
  max-width: 48ch;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(244, 242, 238, 0.88);
}
.intro-progress {
  display: block;
  width: min(180px, 42vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 1px;
  overflow: hidden;
}
.intro-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--accent-glow);
  animation: introProgress 3.2s linear 0.7s both;
}

body:not(.is-live) { overflow: hidden; }
/* Escena detrás del intro: muy atenuada (el overlay ya es casi opaco) */
body:not(.is-live) .nav,
body:not(.is-live) .sec,
body:not(.is-live) .foot,
body:not(.is-live) .stage-foot { visibility: hidden; }
body:not(.is-live) .hero {
  visibility: visible;
  pointer-events: none;
}
/* El data-reveal deja opacity:0 hasta is-live; forzar la escena en el intro */
body:not(.is-live) .stage-wrap[data-reveal] {
  opacity: 1;
  transform: none;
}
body:not(.is-live) .hero .stage {
  transform: scale(1.03);
  filter: brightness(0.42) saturate(0.95);
}
body.is-live .hero .stage {
  transform: none;
  filter: none;
  transition: transform 2.2s cubic-bezier(0.33, 0, 0.15, 1), filter 2.2s cubic-bezier(0.33, 0, 0.15, 1);
}

/* ============ HERO (escena ancha) ============ */
.hero {
  max-width: none; margin: 0;
  /* Bottom kept tighter so it doesn't stack with #ficha top padding */
  padding: clamp(5.2rem, 9vh, 6.8rem) 0 clamp(1.75rem, 3.5vh, 2.75rem);
}
.stage-wrap {
  position: relative;
  width: min(1560px, 100%);
  margin: 0 auto;
  padding: 0 clamp(0.65rem, 2vw, 1.75rem);
}
.stage-foot {
  width: min(var(--maxw), 100%);
  margin: clamp(1.8rem, 3.5vh, 2.6rem) auto 0;
  padding: 0 var(--pad-x);
}
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--line);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 100px rgba(245, 163, 68, 0.12);
}
.hero-media img {
  width: 100%; aspect-ratio: 4 / 4.1; object-fit: cover;
  transform: scale(1.03); animation: kb 28s ease-in-out infinite alternate;
}
@keyframes kb { to { transform: scale(1.12); } }

/* ============ SECTIONS ============ */
.sec { max-width: var(--maxw); margin: 0 auto; padding: var(--sec-y) var(--pad-x); }
#ficha {
  padding-top: clamp(2.25rem, 4.5vh, 3.5rem);
  padding-bottom: clamp(3rem, 6vh, 5rem);
}
.sec-head { max-width: 720px; margin-bottom: clamp(2rem, 4vh, 3rem); }
.sec-head::before {
  content: ""; display: block; width: 46px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), transparent); margin-bottom: 1.6rem;
  transform-origin: left center;
}
.sec-head h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); margin-bottom: 1.2rem; }
.sec-head p { font-size: clamp(1rem, 1.3vw, 1.14rem); color: var(--muted); max-width: 56ch; }

/* Entrada emisiva tenue del encabezado */
@keyframes secHeadLine {
  0%   { opacity: 0; transform: scaleX(0.35); box-shadow: none; }
  45%  { opacity: 1; transform: scaleX(1); box-shadow: 0 0 12px rgba(216, 168, 107, 0.45); }
  100% { opacity: 1; transform: scaleX(1); box-shadow: 0 0 8px rgba(216, 168, 107, 0.2); }
}
@keyframes secHeadGlow {
  0% {
    opacity: 0;
    transform: translateY(16px);
    filter: brightness(0.7);
    text-shadow: 0 0 0 transparent;
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(1.08);
    text-shadow:
      0 0 18px rgba(216, 168, 107, 0.28),
      0 0 40px rgba(216, 168, 107, 0.12);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: 0 0 20px rgba(216, 168, 107, 0.08);
  }
}
@keyframes secHeadBody {
  0% {
    opacity: 0;
    transform: translateY(12px);
    text-shadow: none;
  }
  55% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 16px rgba(216, 168, 107, 0.12);
  }
  100% {
    opacity: 1;
    transform: none;
    text-shadow: none;
  }
}
.sec-head[data-reveal].in::before {
  animation: secHeadLine 1s var(--ease) 0.05s backwards;
}
.sec-head[data-reveal].in h2 {
  animation: secHeadGlow 1.15s var(--ease) 0.12s backwards;
}
.sec-head[data-reveal].in p {
  animation: secHeadBody 1.05s var(--ease) 0.28s backwards;
}

/* ============ ESCENAS (stage) ============ */
.stage {
  position: relative; aspect-ratio: 3 / 2;
  border-radius: clamp(12px, 1.4vw, 20px); overflow: hidden; background: #050506;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--line);
}
.stage-imgs, .stage-fc-imgs { position: absolute; inset: 0; }
.stage-imgs img, .stage-fc-imgs img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.7s var(--ease);
}
.stage-imgs img.on, .stage-fc-imgs img.on { opacity: 1; }
/* Falso color: cuadrito pequeno tipo picture-in-picture (arriba a la izquierda) */
.stage-fc {
  position: absolute; top: 1rem; left: 1rem; z-index: 5;
  width: clamp(150px, 28%, 288px); aspect-ratio: 3 / 2;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
}
.stage-fc-imgs { position: absolute; inset: 0; }
.fc-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.05em; text-align: center;
  color: var(--accent-2); padding: 0.55rem 0.4rem 0.35rem;
  background: linear-gradient(to top, rgba(6, 6, 8, 0.88), transparent);
}
.stage-caption {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 3; font-size: 0.82rem; font-weight: 500;
  padding: 0.4rem 0.9rem; border-radius: var(--pill);
  background: rgba(10, 10, 12, 0.6); backdrop-filter: blur(8px); border: 1px solid var(--line);
}

/* Apagadores: glass centrado sobre el stage en desktop;
   en móvil salen del overlay (ver @media) para no tapar el render */
.stage-ui {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: max-content;
  max-width: min(92%, 420px);
  pointer-events: none;
}
.stage-ui > * { pointer-events: auto; }
.scene-chips {
  position: relative;
  isolation: isolate;
  overflow: visible;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.35rem;
  border-radius: var(--pill);
  background: rgba(10, 10, 12, 0.38);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.scene-chips > *:not(.spec-glow),
.fc-toggle > *:not(.spec-glow) { position: relative; z-index: 1; }
.scene-chips:hover {
  border-color: rgba(216, 168, 107, 0.28);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(216, 168, 107, 0.16);
}
.scene-chip {
  font-family: var(--sans); font-size: 0.86rem; font-weight: 600;
  padding: 0.55rem 1.15rem; border-radius: var(--pill);
  background: transparent;
  border: 1px solid transparent;
  color: rgba(244, 242, 238, 0.72);
  cursor: pointer;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.35s var(--ease),
    text-shadow 0.4s var(--ease);
}
.scene-chip:hover {
  color: var(--text);
  background: rgba(216, 168, 107, 0.16);
  border-color: rgba(216, 168, 107, 0.22);
  text-shadow: 0 0 18px rgba(216, 168, 107, 0.35);
  box-shadow: 0 0 20px rgba(216, 168, 107, 0.18);
}
.scene-chip.on {
  background: rgba(216, 168, 107, 0.92);
  color: var(--accent-ink);
  border-color: transparent;
  box-shadow: 0 6px 20px var(--accent-glow);
}
.scene-chip.on:hover {
  background: rgba(238, 202, 160, 0.98);
  color: var(--accent-ink);
  text-shadow: none;
  box-shadow: 0 8px 28px rgba(216, 168, 107, 0.45), 0 0 24px rgba(238, 202, 160, 0.3);
}
.fc-toggle {
  position: relative;
  isolation: isolate;
  overflow: visible;
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  padding: 0.5rem 1rem; border-radius: var(--pill);
  background: rgba(10, 10, 12, 0.38);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(244, 242, 238, 0.72);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition:
    color 0.35s var(--ease),
    border-color 0.4s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.4s var(--ease),
    text-shadow 0.4s var(--ease);
}
.fc-toggle:hover {
  color: var(--accent-2);
  background: rgba(216, 168, 107, 0.14);
  border-color: rgba(216, 168, 107, 0.35);
  text-shadow: 0 0 16px rgba(216, 168, 107, 0.3);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(216, 168, 107, 0.22);
}
.fc-toggle:hover .fc-dot {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(216, 168, 107, 0.55);
}
.fc-toggle .fc-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--faint); transition: all 0.35s var(--ease); }
.fc-toggle[aria-pressed="true"] {
  color: var(--accent-2);
  border-color: rgba(216, 168, 107, 0.45);
  background: rgba(216, 168, 107, 0.18);
}
.fc-toggle[aria-pressed="true"]:hover {
  background: rgba(216, 168, 107, 0.26);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(216, 168, 107, 0.3);
}
.fc-toggle[aria-pressed="true"] .fc-dot { background: var(--accent); box-shadow: 0 0 12px var(--accent); }

/* Entrada suave y elegante */
@keyframes uiPillIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
    filter: brightness(0.78);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(1.06);
    box-shadow:
      0 12px 36px rgba(0, 0, 0, 0.32),
      0 0 20px rgba(216, 168, 107, 0.14);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
@keyframes uiChipIn {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: none; }
}

.scene-chips[data-reveal],
.fc-toggle[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.scene-chips[data-reveal].in,
.fc-toggle[data-reveal].in {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  animation: uiPillIn 0.95s var(--ease) var(--spec-delay, 0ms) backwards;
}
.scene-chips[data-reveal].in .scene-chip {
  animation: uiChipIn 0.7s var(--ease) calc(var(--spec-delay, 0ms) + 80ms) backwards;
}
.scene-chips[data-reveal].in .scene-chip:nth-child(2) { animation-delay: calc(var(--spec-delay, 0ms) + 50ms); }
.scene-chips[data-reveal].in .scene-chip:nth-child(3) { animation-delay: calc(var(--spec-delay, 0ms) + 100ms); }
.scene-chips[data-reveal].in .scene-chip:nth-child(4) { animation-delay: calc(var(--spec-delay, 0ms) + 150ms); }
.scene-chips[data-reveal].in .spec-glow,
.fc-toggle[data-reveal].in .spec-glow {
  animation: none;
  opacity: 0;
}

.scene-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.scene-meta > div { background: var(--bg-2); padding: 1.15rem 1.25rem; }
.scene-meta .k { font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.35rem; }
.scene-meta .v { font-size: 1.02rem; font-weight: 500; }

/* ============ CAPAS (banner destacado + fila uniforme de 3) ============ */
.layer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
/* Tarjetas 2, 3 y 4: verticales, identicas en tamano y posicion */
.layer-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.layer-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 30px 60px rgba(0, 0, 0, 0.45); }
.layer-card .ph { aspect-ratio: 4 / 3; overflow: hidden; background: #0c0c0e; }
.layer-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.layer-card:hover .ph img { transform: scale(1.05); }
.layer-card .tx { padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
/* Primera capa: banner destacado a todo el ancho (imagen + texto) */
.layer-card:first-child { grid-column: 1 / -1; flex-direction: row; }
.layer-card:first-child .ph { flex: 1.2; aspect-ratio: auto; min-height: 300px; }
.layer-card:first-child .tx { flex: 1; justify-content: center; }
.layer-num { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.layer-card h3 { font-size: 1.4rem; }
.layer-card p { font-size: 0.95rem; color: var(--muted); flex: 1; }
.layer-spec {
  margin-top: 0.4rem; font-size: 0.78rem; font-weight: 500; color: var(--faint);
  border-top: 1px solid var(--line); padding-top: 0.75rem;
}

/* ============ VISOR 3D ============ */
.sec-viewer { position: relative; }
.viewer-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: stretch; }

/* Selector de luminarias + ficha (donde estan las opciones) */
.lum-picker {
  display: flex; flex-direction: column; gap: 1rem; margin-top: 1.25rem;
  padding: 1.1rem 1.2rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.lum-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.lum-tab {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600; color: var(--muted);
  padding: 0.5rem 1rem; border-radius: var(--pill);
  border: 1px solid var(--line); background: transparent; cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.lum-tab:hover { color: var(--text); border-color: var(--line-2); }
.lum-tab.on {
  background: var(--accent); color: var(--accent-ink); border-color: transparent;
  box-shadow: 0 6px 18px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.lum-detail {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem 1.4rem; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 0.95rem;
}
.lum-detail-head { display: flex; flex-direction: column; min-width: 0; }
.lum-info-name { font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--text); }
.lum-info-spec { font-size: 0.84rem; color: var(--muted); }
.lum-price-wrap { display: flex; flex-direction: column; text-align: right; }
.lum-price {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem; line-height: 1;
  color: var(--accent-2); letter-spacing: -0.02em; font-feature-settings: "tnum" 1;
}
.lum-price-note { font-size: 0.7rem; color: var(--faint); letter-spacing: 0.02em; margin-top: 0.25rem; }

.lum-specs { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; }
.lum-specs li {
  font-size: 0.78rem; color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--pill); padding: 0.35rem 0.75rem;
}
.lum-specs li b { color: var(--text); font-weight: 600; margin-right: 0.15rem; }

/* Botones que abren el 3D, dentro de la seccion de escenas */
.lum-launch {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.7rem 1rem;
  margin-top: 0; padding-top: 0; border-top: 0;
  margin-bottom: 1.25rem;
}
.lum-launch-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint);
}
.lum-launch .lum-tab::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent-glow);
  display: inline-block; margin-right: 0.55rem; vertical-align: middle;
}

/* ============ MODAL 3D (ventana emergente) ============ */
body.modal-open { overflow: hidden; }
.model-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.model-modal[hidden] { display: none; }
.mm-backdrop { position: absolute; inset: 0; background: rgba(6, 6, 8, 0.72); backdrop-filter: blur(10px); }
.mm-card {
  position: relative; z-index: 1;
  width: min(1020px, 100%); max-height: 88vh; overflow: hidden;
  display: grid; grid-template-columns: 1.4fr 1fr;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6);
  animation: mm-in 0.35s var(--ease);
}
@keyframes mm-in { from { opacity: 0; transform: translateY(16px) scale(0.985); } to { opacity: 1; transform: none; } }
.mm-close {
  position: absolute; top: 0.7rem; right: 0.7rem; z-index: 4;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-2); background: rgba(10, 10, 12, 0.55); backdrop-filter: blur(8px);
  color: var(--text); font-size: 1.5rem; line-height: 1; cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.mm-close:hover { background: var(--surface-2); transform: rotate(90deg); }
.mm-card .viewer-stage {
  aspect-ratio: auto; height: 100%; min-height: min(62vh, 560px);
  border: 0; border-radius: 0;
}
.mm-info {
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.3rem, 3vw, 1.9rem);
  display: flex; flex-direction: column; gap: 1.1rem; justify-content: center;
  border-left: 1px solid var(--line);
}
.mm-info-head { display: flex; flex-direction: column; gap: 0.3rem; }
.mm-info .lum-info-name { font-size: 1.35rem; }
.mm-info .lum-price-wrap { text-align: left; }
.mm-hint { margin: 0.2rem 0 0; font-size: 0.76rem; color: var(--faint); }

@media (max-width: 760px) {
  .mm-card { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .mm-card .viewer-stage { min-height: 46vh; }
  .mm-info { border-left: 0; border-top: 1px solid var(--line); }
}

/* Foto de la sala con puntos interactivos */
.room-map {
  position: relative; margin: 0; aspect-ratio: 3 / 2; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}
.room-map img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-hint {
  position: absolute; right: 1rem; bottom: 1rem; z-index: 3;
  font-size: 0.78rem; color: var(--text);
  padding: 0.4rem 0.85rem; border-radius: var(--pill);
  background: rgba(10, 10, 12, 0.6); backdrop-filter: blur(8px); border: 1px solid var(--line);
}
.hotspot {
  position: absolute; transform: translate(-50%, -50%); z-index: 4;
  width: 30px; height: 30px; padding: 0; border: 0; background: none; cursor: pointer;
}
.hs-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #fff; background: rgba(245, 163, 68, 0.35);
  box-shadow: 0 0 0 4px rgba(10, 10, 12, 0.35); transition: all 0.25s var(--ease);
}
.hs-ring::after {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid var(--accent); opacity: 0.9;
  animation: hs-pulse 2.4s var(--ease) infinite;
}
@keyframes hs-pulse { 0% { transform: scale(1); opacity: 0.8; } 70% { transform: scale(2.1); opacity: 0; } 100% { opacity: 0; } }
.hotspot:hover .hs-ring { background: var(--accent); transform: scale(1.12); }
.hotspot.on .hs-ring { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 4px rgba(245, 163, 68, 0.3), 0 0 20px var(--accent-glow); }
.hotspot.on .hs-ring::after { animation: none; }
.hs-tip {
  position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%);
  white-space: nowrap; font-size: 0.75rem; font-weight: 600; color: var(--text);
  padding: 0.3rem 0.65rem; border-radius: var(--pill);
  background: rgba(10, 10, 12, 0.82); backdrop-filter: blur(8px); border: 1px solid var(--line);
  opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease);
}
.hotspot:hover .hs-tip, .hotspot.on .hs-tip { opacity: 1; }

.viewer-stage {
  position: relative; aspect-ratio: 3 / 2; border-radius: var(--r-lg); overflow: hidden;
  background: radial-gradient(700px 460px at 50% 28%, rgba(245, 163, 68, 0.08), transparent 60%), linear-gradient(180deg, #121215, #050506);
  border: 1px solid var(--line); box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  transition: background 0.4s var(--ease);
}
.viewer-stage.light { background: radial-gradient(700px 460px at 50% 20%, #ffffff, transparent 70%), linear-gradient(180deg, #edeef1, #d8dbe1); }
.viewer-stage.dragover { outline: 2px dashed var(--accent); outline-offset: -10px; }
.viewer-stage canvas { width: 100%; height: 100%; display: block; }

.viewer-empty {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem; text-align: center; padding: 1.5rem;
}
.viewer-empty-title { font-family: var(--display); font-weight: 700; font-size: 1.25rem; }
.viewer-empty-sub { font-size: 0.88rem; color: var(--muted); max-width: 34ch; }
.viewer-empty .btn { margin-top: 0.9rem; }

.viewer-hud {
  position: absolute; left: 1rem; right: 1rem; top: 1rem; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.viewer-name {
  font-family: var(--display); font-weight: 600; font-size: 0.95rem;
  padding: 0.35rem 0.9rem; border-radius: var(--pill);
  background: rgba(10, 10, 12, 0.6); backdrop-filter: blur(8px); border: 1px solid var(--line);
}
.viewer-actions { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.hud-chip {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  padding: 0.4rem 0.8rem; border-radius: var(--pill);
  background: rgba(10, 10, 12, 0.55); backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--muted); cursor: pointer; transition: all 0.25s var(--ease);
}
.hud-chip:hover { color: var(--text); }
.hud-chip[aria-pressed="true"] { color: var(--accent); border-color: var(--accent-glow); }
.viewer-loading {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%); z-index: 4;
  display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.82rem;
  padding: 0.45rem 0.95rem; border-radius: var(--pill);
  background: rgba(10, 10, 12, 0.7); backdrop-filter: blur(8px); border: 1px solid var(--line);
}
.spin { width: 15px; height: 15px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.22); border-top-color: var(--accent); animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ FICHA ============ */
.spec-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.spec-col {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: default;
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    background 0.45s var(--ease);
}
.spec-col > *:not(.spec-glow) { position: relative; z-index: 1; }

/* Halo emisivo (entrada + hover) */
.spec-glow {
  position: absolute;
  inset: -40%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(216, 168, 107, 0.42), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(238, 202, 160, 0.12), transparent 50%);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease);
}
.spec-col.is-feature {
  background: linear-gradient(160deg, var(--accent-2), var(--accent));
  border-color: transparent;
  color: var(--accent-ink);
  box-shadow: 0 24px 55px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.spec-col.is-feature .spec-glow {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 248, 235, 0.55), transparent 52%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.18), transparent 55%);
}

/* Entrada tipo “encendido” / emisivo */
.spec-col[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  filter: brightness(0.55) saturate(0.7);
  transition:
    opacity 0.85s var(--ease) var(--spec-delay, 0ms),
    transform 0.85s var(--ease) var(--spec-delay, 0ms),
    filter 1s var(--ease) var(--spec-delay, 0ms),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    background 0.45s var(--ease);
}
.spec-col[data-reveal].in {
  opacity: 1;
  transform: none;
  filter: none;
}
.spec-col[data-reveal].in .spec-glow {
  animation: specIgnite 1.35s var(--ease) var(--spec-delay, 0ms) backwards;
}
.spec-col[data-reveal].in .spec-lux b {
  animation: luxBloom 1.2s var(--ease) calc(var(--spec-delay, 0ms) + 180ms) backwards;
}
@keyframes specIgnite {
  0%   { opacity: 0; transform: scale(0.55); }
  35%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.2); }
}
@keyframes luxBloom {
  0%   { text-shadow: 0 0 0 transparent; filter: brightness(1); }
  40%  { text-shadow: 0 0 28px rgba(216, 168, 107, 0.75), 0 0 56px rgba(216, 168, 107, 0.35); filter: brightness(1.15); }
  100% { text-shadow: 0 0 0 transparent; filter: brightness(1); }
}
.spec-col.is-feature[data-reveal].in .spec-lux b {
  animation-name: luxBloomFeature;
}
@keyframes luxBloomFeature {
  0%   { text-shadow: 0 0 0 transparent; filter: brightness(1); }
  40%  { text-shadow: 0 0 24px rgba(255, 255, 255, 0.55), 0 0 40px rgba(255, 240, 210, 0.4); filter: brightness(1.08); }
  100% { text-shadow: 0 0 0 transparent; filter: brightness(1); }
}

/* Hover: se “enciende” la ficha */
.spec-col:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 168, 107, 0.48);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(216, 168, 107, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.spec-col:hover .spec-glow {
  opacity: 0.85;
  transform: scale(1);
}
.spec-col:hover .spec-lux b {
  text-shadow: 0 0 22px rgba(216, 168, 107, 0.55), 0 0 40px rgba(216, 168, 107, 0.25);
  color: var(--accent-2);
  transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease);
}
.spec-col:hover .spec-scene { color: var(--accent-2); }

.spec-col.is-feature:hover {
  transform: translateY(-7px) scale(1.015);
  box-shadow:
    0 28px 64px rgba(216, 168, 107, 0.5),
    0 0 48px rgba(238, 202, 160, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.spec-col.is-feature:hover .spec-glow { opacity: 1; }
.spec-col.is-feature:hover .spec-lux b {
  color: inherit;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.45);
}
.spec-col.is-feature:hover .spec-scene { color: inherit; }

.spec-col:active { transform: translateY(-3px) scale(0.995); }
.spec-col.is-feature:active { transform: translateY(-3px) scale(1); }

.spec-scene {
  font-family: var(--display); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.01em;
  transition: color 0.35s var(--ease);
}
.spec-lux { display: flex; align-items: baseline; gap: 0.3rem; }
.spec-lux b {
  font-family: var(--display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1; letter-spacing: -0.04em; font-feature-settings: "tnum" 1;
  transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease);
}
.spec-lux i { font-style: normal; font-size: 1rem; color: var(--muted); }
.spec-col.is-feature .spec-lux i { color: var(--accent-ink); opacity: 0.7; }
.spec-col dl { display: flex; flex-direction: column; gap: 0.75rem; }
.spec-col dl > div { display: flex; flex-direction: column; gap: 0.15rem; border-top: 1px solid var(--line); padding-top: 0.75rem; }
.spec-col.is-feature dl > div { border-top-color: rgba(36, 23, 8, 0.2); }
.spec-col dt { font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); }
.spec-col.is-feature dt { color: rgba(36, 23, 8, 0.68); }
.spec-col dd { font-size: 0.98rem; font-weight: 500; }
.spec-note { max-width: 70ch; margin: 1.9rem 0 0; font-size: 0.84rem; color: var(--faint); }

/* ============ FOOTER ============ */
.foot {
  max-width: var(--maxw); margin: 0 auto; padding: 2.4rem var(--pad-x) 3rem;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.86rem; color: var(--muted);
}
.foot-brand { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.foot a { color: var(--muted); transition: color 0.25s var(--ease); }
.foot a:hover { color: var(--accent); }

/* ============ REVEAL ============ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 2.4rem; }
  .hero-media { order: -1; }
  .layer-grid { grid-template-columns: 1fr; }
  .layer-card:first-child { flex-direction: column; }
  .layer-card:first-child .ph { flex: none; aspect-ratio: 4 / 3; min-height: 0; }
  .viewer-wrap { grid-template-columns: 1fr; }
  .lum-detail { align-items: flex-start; }
  .lum-price-wrap { text-align: left; }
  .spec-row { grid-template-columns: 1fr; }
  .scene-meta { grid-template-columns: repeat(2, 1fr); }

  /* Controles fuera del render: barra bajo la imagen */
  .stage-ui {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    margin-top: 0.85rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
  }
  .scene-chips {
    flex: 1 1 auto;
    justify-content: center;
    padding: 0.28rem;
    gap: 0.28rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  }
  .scene-chip {
    font-size: 0.78rem;
    padding: 0.42rem 0.8rem;
  }
  .fc-toggle {
    font-size: 0.74rem;
    padding: 0.42rem 0.85rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
  }
  .stage-fc {
    top: 0.55rem;
    left: 0.55rem;
    width: clamp(96px, 32%, 160px);
    border-radius: 8px;
  }
  .fc-label { font-size: 0.55rem; padding: 0.4rem 0.3rem 0.28rem; }
  .stage-caption {
    left: 0.55rem;
    bottom: 0.55rem;
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }
  .room-hint { display: none; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .scene-meta { grid-template-columns: 1fr; }
  .stage { aspect-ratio: 4 / 3; border-radius: 12px; }
  .stage-wrap { padding: 0 0.4rem; }
  .stage-ui { margin-top: 0.7rem; gap: 0.4rem; }
  .scene-chips {
    width: 100%;
    border-radius: 12px;
    padding: 0.22rem;
  }
  .scene-chip {
    flex: 1 1 0;
    font-size: 0.72rem;
    padding: 0.48rem 0.35rem;
    text-align: center;
    min-width: 0;
  }
  .fc-toggle {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    font-size: 0.72rem;
    padding: 0.48rem 0.75rem;
  }
  .lum-launch {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin-bottom: 1rem;
  }
  .lum-launch .lum-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .lum-launch .lum-tab {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.55rem 0.9rem;
  }
  .hero { padding-top: clamp(4.4rem, 8vh, 5.4rem); }
  .stage-foot { margin-top: 1.1rem; }
  .intro-overlay { padding: 1.5rem var(--pad-x); align-items: flex-end; padding-bottom: 18vh; }
  .intro-title { font-size: clamp(1.65rem, 7vw, 2.2rem); }
  .intro-body { font-size: 0.95rem; margin-bottom: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
  .hs-ring::after { animation: none; }
  .intro-overlay { animation: none; opacity: 1; }
  .intro-kicker,
  .intro-title,
  .intro-body,
  .intro-progress,
  .intro-kicker::before { animation: none; }
  .intro-progress i { animation: none; transform: scaleX(1); }
  body:not(.is-live) .hero .stage,
  body.is-live .hero .stage { transform: none; filter: none; transition: none; }
  .spec-col[data-reveal] {
    opacity: 1; transform: none; filter: none; transition: none;
  }
  .spec-col[data-reveal].in .spec-glow,
  .spec-col[data-reveal].in .spec-lux b,
  .scene-chips[data-reveal].in .spec-glow,
  .fc-toggle[data-reveal].in .spec-glow,
  .scene-chips[data-reveal].in .scene-chip.on { animation: none; }
  .scene-chips[data-reveal],
  .fc-toggle[data-reveal] {
    opacity: 1; transform: none; filter: none; animation: none; pointer-events: auto;
  }
  .scene-chips[data-reveal].in,
  .fc-toggle[data-reveal].in,
  .scene-chips[data-reveal].in .scene-chip { animation: none; }
  .sec-head[data-reveal].in::before,
  .sec-head[data-reveal].in h2,
  .sec-head[data-reveal].in p { animation: none; text-shadow: none; }
  .spec-col:hover,
  .spec-col.is-feature:hover { transform: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}
