/* ==========================================================================
   OW EVENTOS — Rediseño premium nocturno
   Ver DESIGN.md para el sistema de diseño.
   ========================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  --ink: #0B2833;
  --ink-2: #10303C;
  --ink-3: #16404F;
  --photo-black: #04141B;
  --cream: #F5F2EC;
  --cream-2: #ECE8DE;
  --cream-card: #FBFAF5;
  --wine: #3E1526;
  --wine-deep: #250B16;
  --celeste: #E9F1F7;
  --celeste-2: #DCEAF3;
  --celeste-line: rgba(18, 59, 74, 0.14);
  --celeste-deco: #a9c8dc;
  --navy: #123B4A;
  --navy-2: #0B2833;
  --gold: #C6A15B;
  --gold-bright: #D9BC82;
  --gold-grad: linear-gradient(135deg, #D9BC82, #C6A15B);
  --on-dark: #F3EFE8;
  --on-dark-muted: #B4ADA1;
  --on-dark-faint: #7E7970;
  --on-cream: #211E19;
  --on-cream-muted: #6B6459;
  --wa-green: #25D366;
  --line-dark: rgba(255, 255, 255, 0.10);
  --line-dark-soft: rgba(255, 255, 255, 0.06);
  --line-cream: rgba(0, 0, 0, 0.09);

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

  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 26px;
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-cream: 0 14px 34px rgba(30, 20, 10, 0.10);
  --container: 1200px;
  --header-h: 76px;
  --bottom-nav-h: 64px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------------- Reset ----------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.6;
  background: var(--cream); color: var(--on-cream);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; }
ul { list-style: none; }
[hidden] { display: none !important; }
::selection { background: var(--gold); color: #17130a; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* ----------------------------- Typography ----------------------------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold);
  display: inline-block;
}
.section { padding: 96px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-title { font-size: clamp(2rem, 4.4vw, 2.9rem); margin-top: 14px; }
.section-sub { color: var(--on-cream-muted); font-size: 1.02rem; margin-top: 16px; line-height: 1.7; }
.on-dark .section-sub, .section--dark .section-sub { color: var(--on-dark-muted); }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 26px; border-radius: 999px;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--gold-grad); color: #201704; box-shadow: 0 10px 26px rgba(198, 161, 91, 0.30); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201, 162, 39, 0.38); }
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.4); color: var(--on-dark); }
.btn-outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.on-cream .btn-outline, .btn-outline--dark { border-color: rgba(0, 0, 0, 0.25); color: var(--on-cream); }
.on-cream .btn-outline:hover, .btn-outline--dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: 0.85rem; }

/* ----------------------------- Header ----------------------------- */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.hdr-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hdr.scrolled, .hdr--solid {
  background: rgba(11, 40, 51, 0.88); backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
.hdr-logo img { height: 52px; width: auto; transition: transform 0.4s var(--ease); }
.hdr-logo:hover img { transform: scale(1.04); }
.hdr-nav { display: flex; align-items: center; gap: 30px; }
.hdr-nav a { font-size: 0.9rem; font-weight: 400; color: var(--on-dark-muted); transition: color 0.3s; position: relative; }
.hdr-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold-bright); transition: width 0.3s var(--ease); }
.hdr-nav a:hover, .hdr-nav a.active { color: var(--on-dark); }
.hdr-nav a.active::after, .hdr-nav a:hover::after { width: 100%; }
.hdr-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch { display: inline-flex; gap: 2px; border: 1px solid var(--line-dark); border-radius: 999px; padding: 3px; }
.lang-switch button { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em; color: var(--on-dark-muted); padding: 5px 9px; border-radius: 999px; transition: all 0.25s; }
.lang-switch button.active { background: var(--gold); color: #17130a; }

.hdr-menu { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.hdr-menu span { display: block; width: 24px; height: 2px; background: var(--on-dark); position: relative; }
.hdr-menu span::before, .hdr-menu span::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: var(--on-dark); }
.hdr-menu span::before { top: -7px; } .hdr-menu span::after { top: 7px; }

/* full-screen menu overlay (mobile) */
.menu-overlay { position: fixed; inset: 0; z-index: 200; background: var(--ink); opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0.45s; }
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-panel { height: 100%; display: flex; flex-direction: column; padding: 22px 0 40px; }
.menu-top { display: flex; align-items: center; justify-content: space-between; }
.menu-top img { height: 48px; }
.menu-close { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--on-dark-muted); }
.menu-close .x { font-size: 1.8rem; line-height: 1; }
.menu-body { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 30px; }
.menu-nav { display: flex; flex-direction: column; gap: 6px; }
.menu-nav a { font-family: var(--serif); font-size: 2.4rem; color: var(--on-dark); opacity: 0; transform: translateY(16px); }
.menu-overlay.open .menu-nav a { animation: menuIn 0.5s var(--ease) forwards; }
.menu-overlay.open .menu-nav a:nth-child(1) { animation-delay: 0.08s; }
.menu-overlay.open .menu-nav a:nth-child(2) { animation-delay: 0.14s; }
.menu-overlay.open .menu-nav a:nth-child(3) { animation-delay: 0.20s; }
.menu-overlay.open .menu-nav a:nth-child(4) { animation-delay: 0.26s; }
.menu-overlay.open .menu-nav a:nth-child(5) { animation-delay: 0.32s; }
@keyframes menuIn { to { opacity: 1; transform: none; } }
.menu-nav a.menu-cta { color: var(--gold-bright); }
.menu-meta { display: flex; flex-direction: column; gap: 14px; border-top: 1px solid var(--line-dark); padding-top: 24px; }
.menu-meta a { color: var(--on-dark-muted); font-size: 0.95rem; }
.menu-lang { align-self: flex-start; }

/* ----------------------------- Hero ----------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,14,16,0.55) 0%, rgba(14,14,16,0.15) 38%, rgba(14,14,16,0.75) 82%, var(--ink) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 0 clamp(64px, 12vh, 130px); max-width: 760px; }
.hero-title { font-size: clamp(2.6rem, 7vw, 5rem); margin: 18px 0 22px; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--on-dark-muted); max-width: 540px; line-height: 1.7; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* hero split (editorial, sin video) */
.hero-split { display: grid; grid-template-columns: 1.02fr 0.98fr; min-height: 100svh; background: var(--cream); }
.hero-copy2 { display: flex; flex-direction: column; justify-content: center; gap: 20px; padding: calc(var(--header-h) + 24px) clamp(28px, 5vw, 84px) 48px; }
.hero-copy2 .eyebrow { color: #9A7B3C; }
.hero-copy2 .hero-title { font-size: clamp(2.3rem, 4.4vw, 4rem); margin: 6px 0 4px; color: var(--on-cream); }
.hero-copy2 .hero-sub { color: var(--on-cream-muted); max-width: 44ch; margin-bottom: 12px; }
.hero-visual { position: relative; overflow: hidden; background: var(--photo-black); }
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--cream), transparent 12%); }

/* ----------------------------- Cream sections ----------------------------- */
.on-cream { background: var(--cream); color: var(--on-cream); }
.on-cream h1, .on-cream h2, .on-cream h3 { color: var(--on-cream); }
.on-cream .eyebrow { color: #9A7B3C; }

/* categories */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.cat-tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  background: var(--cream-card); border: 1px solid var(--line-cream); border-radius: var(--radius);
  padding: 32px 28px; text-align: left; transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-cream); border-color: rgba(201,162,39,0.4); }
.cat-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: rgba(201,162,39,0.12); color: #a5851f; margin-bottom: 6px; }
.cat-ico svg { width: 30px; height: 30px; }
.cat-tile h3 { font-size: 1.6rem; }
.cat-tile p { color: var(--on-cream-muted); font-size: 0.95rem; line-height: 1.6; }
.cat-more { margin-top: auto; padding-top: 12px; color: #9A7B3C; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.cat-more svg { width: 15px; height: 15px; transition: transform 0.3s; }
.cat-tile:hover .cat-more svg { transform: translateX(4px); }

/* diff rows (alternating) */
.diff-rows { display: flex; flex-direction: column; gap: 28px; margin-top: 44px; }
.diff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  background: var(--cream-card); border: 1px solid var(--line-cream); border-radius: var(--radius-lg); overflow: hidden; }
.diff-row:nth-child(even) .diff-media { order: 2; }
.diff-media { position: relative; min-height: 300px; background: var(--photo-black); overflow: hidden; }
.diff-media img, .diff-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.diff-media.contain img { object-fit: contain; padding: 18px; }
.diff-energy { display: grid; place-items: center; background: radial-gradient(circle at 50% 40%, #2a2a2e, var(--ink)); }
.diff-energy .bolt { width: 90px; height: 90px; color: var(--gold-bright); opacity: 0.9; }
.diff-content { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; }
.diff-content .eyebrow { color: #9A7B3C; }
.diff-content h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.diff-content p { color: var(--on-cream-muted); line-height: 1.7; max-width: 42ch; }
.diff-content .btn { margin-top: 10px; }

/* ----------------------------- Spotlight (dark) ----------------------------- */
/* ---------------- Cinta de texto (ticker continuo) ---------------- */
.ticker { background: var(--navy); overflow: hidden; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.ticker-track { display: flex; align-items: center; width: max-content; white-space: nowrap; will-change: transform; animation: tmarquee 34s linear infinite; }
@keyframes tmarquee { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }
.ticker-item { color: #f3ecdd; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 0 6px; }
.ticker-star { color: var(--gold-bright); font-size: 0.85rem; padding: 0 22px; opacity: 0.9; }
@media (prefers-reduced-motion: reduce) { .ticker-track, .featured-track { animation: none; } }

/* ---------------- Productos destacados (carrusel continuo) ---------------- */
.featured { background: var(--cream-2); overflow: hidden; }
.featured-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; margin-bottom: 34px; }
.featured-head .eyebrow { color: #9A7B3C; }
.featured-all { font-size: 0.9rem; letter-spacing: 0.04em; color: var(--on-cream); border-bottom: 1px solid transparent; white-space: nowrap; transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
.featured-all:hover { color: var(--gold); border-color: var(--gold); }

.featured-carousel { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%); }
.featured-track { display: flex; gap: 22px; width: max-content; padding: 6px 0 4px; will-change: transform;
  animation: fmarquee 48s linear infinite; }
@keyframes fmarquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 11px)); } }

.fcard { flex: 0 0 auto; width: 268px; background: var(--cream-card); border: 1px solid var(--line-cream);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-cream);
  display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.fcard:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(30,20,10,0.16); }
.fcard-media { position: relative; aspect-ratio: 4 / 5; background: #ffffff; overflow: hidden; }
.fcard-media img { width: 100%; height: 100%; object-fit: contain; padding: 10%; transition: transform 0.6s var(--ease); }
.fcard:hover .fcard-media img { transform: scale(1.05); }
.fcard-chip { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-cream); background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px); border: 1px solid var(--line-cream); border-radius: 999px; padding: 5px 12px; }
.fcard-body { position: relative; padding: 16px 18px 18px; }
.fcard-body h3 { font-size: 1.2rem; line-height: 1.15; color: var(--on-cream); }
.fcard-dims { color: var(--on-cream-muted); font-size: 0.82rem; margin-top: 4px; padding-right: 40px; }
.fcard-arrow { position: absolute; right: 16px; bottom: 18px; width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 999px; background: var(--gold-grad); color: #201704; font-size: 1rem;
  box-shadow: 0 6px 16px rgba(201,162,39,0.3); transition: transform 0.3s var(--ease); }
.fcard:hover .fcard-arrow { transform: translateX(3px); }

/* ---------------- Editorial story sections (estilo vanderhotel) ---------------- */
.story { overflow: hidden; }
.story-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 0; height: min(46vh, 360px); }
.story--reverse .story-media { order: 2; }
.story-media { position: relative; overflow: hidden; background: var(--photo-black); }
.story-media img, .story-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-media.contain { background: var(--cream-2); }
.story-media.contain img { object-fit: contain; padding: 7% 12%; }
.story-media.energy { display: grid; place-items: center; background: radial-gradient(circle at 50% 40%, #26262b, var(--ink)); }
.story-media.energy .bolt { width: 96px; height: 96px; color: var(--gold-bright); opacity: 0.85; }
.story-body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; padding: clamp(26px, 4.5vw, 60px); }
.story--dark .story-body { background: var(--ink); color: var(--on-dark); }
.story--cream .story-body { background: var(--cream); color: var(--on-cream); }
.story-num { font-family: var(--serif); font-size: 0.95rem; letter-spacing: 0.2em; color: var(--gold); }
.story-body h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.08; }
.story-body p { line-height: 1.65; max-width: 46ch; font-size: 0.96rem; }
.story--dark .story-body p { color: var(--on-dark-muted); }
.story--cream .story-body p { color: var(--on-cream-muted); }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); position: relative; padding-bottom: 5px; }
.link-arrow svg { width: 22px; height: 12px; }
.link-arrow::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0.35); transform-origin: left; transition: transform 0.45s var(--ease); }
.link-arrow:hover::after { transform: scaleX(1); }
.story--dark .link-arrow { color: var(--gold-bright); }

/* manifesto */
.manifesto { text-align: center; background: var(--cream-2); border-top: 1px solid var(--line-cream); border-bottom: 1px solid var(--line-cream); }
.manifesto .container { max-width: 920px; }
.manifesto h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.14; margin: 18px auto 0; }
.manifesto p { color: var(--on-cream-muted); max-width: 60ch; margin: 22px auto 0; line-height: 1.8; }
.highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.highlight { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.highlight .cat-ico { margin: 0; }
.highlight h3 { font-size: 1.15rem; }
.highlight p { font-size: 0.88rem; margin: 0; color: var(--on-cream-muted); line-height: 1.6; }

/* image reveal on scroll + hero zoom */
.media-reveal img, .media-reveal video { transform: scale(1.09); transition: transform 1.5s var(--ease); }
.media-reveal.in img, .media-reveal.in video { transform: scale(1); }
.hero-bg { animation: heroZoom 20s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

/* celeste como detalle: íconos de "por qué" */
.highlight .cat-ico { background: var(--celeste); color: var(--navy); }

/* dibujitos tranquilos (sparkles celeste, con flote suave) */
.deco-sparkle { position: absolute; z-index: 0; color: var(--celeste-deco); pointer-events: none; opacity: 0; }
.manifesto .container, .pledge .container, #equipos .container, .closing-inner { position: relative; z-index: 2; }
.deco-sparkle svg { width: 100%; height: 100%; display: block; }
.deco-sparkle.in { opacity: 0.9; animation: floatY 6s ease-in-out infinite; }
.deco-sparkle.d2.in { animation: floatY 7.5s ease-in-out infinite reverse; }
@keyframes floatY { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(6deg); } }
@keyframes twinkle { 0%,100% { opacity: 0.35; } 50% { opacity: 0.9; } }
.manifesto, .pledge, #equipos, .closing { position: relative; overflow: hidden; }

/* zoom suave de la imagen al pasar el mouse por la tarjeta */
.equip-row-media img { transition: transform 0.7s var(--ease); }
.equip-row:hover .equip-row-media img { transform: scale(1.05); }

/* equipos — filas horizontales escalonadas (zigzag), compactas */
#equipos { padding: 34px 0; }
.equip-head { text-align: center; max-width: 720px; margin: 0 auto; }
.equip-head .section-title { margin-top: 6px; font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.equip-rows { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.equip-row { display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: stretch; width: min(100%, 880px);
  background: var(--cream-card); border: 1px solid var(--line-cream); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-cream); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.equip-row:nth-child(odd) { margin-right: auto; }   /* escalonado: fila 1 y 3 a la izquierda */
.equip-row:nth-child(even) { margin-left: auto; }    /* fila 2 a la derecha */
.equip-row--reverse .equip-row-media { order: 2; }
.equip-row:hover { transform: translateY(-5px); box-shadow: 0 26px 50px rgba(30,20,10,0.15); }
.equip-row-media { position: relative; min-height: 205px; background: #ffffff; overflow: hidden; }
.equip-row-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.equip-row-media--contain img { object-fit: contain; padding: 3%; }
/* Producto centrado + bordes desvanecidos hacia el blanco (sin cuadrado visible) */
.equip-row-media--fade { background: #ffffff; }
.equip-row-media--fade img {
  object-fit: contain; object-position: center; padding: 4%;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
          mask-composite: intersect;
}
.equip-row-body { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 7px; padding: clamp(16px, 2.2vw, 28px); }
.equip-eyebrow { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: #9A7B3C; font-weight: 500; }
.equip-row-body h3 { font-size: clamp(1.2rem, 1.9vw, 1.55rem); line-height: 1.12; color: var(--on-cream); }
.equip-row-body p { color: var(--on-cream-muted); font-size: 0.88rem; line-height: 1.5; max-width: 44ch; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.equip-row-body .btn { margin-top: 4px; }
.btn-wine { background: var(--navy); color: #fff; }
.btn-wine svg { width: 16px; height: 16px; }
.btn-wine:hover { background: var(--navy-2); transform: translateY(-2px); }
.spotlight-body .eyebrow { color: #9A7B3C; }
.spotlight-body h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin: 14px 0 10px; color: var(--on-cream); }
.spotlight-tag { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: #9A7B3C; }
.spotlight-body p { color: var(--on-cream-muted); line-height: 1.8; margin: 18px 0 28px; max-width: 46ch; }
.spotlight-dims { color: var(--on-cream-muted); font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 24px; }

/* ----------------------------- Spaces gallery (dark) ----------------------------- */
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark .section-title { color: var(--on-dark); }
.section--dark .eyebrow { color: var(--gold-bright); }
.spaces-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 44px; }
.spaces-grid figure { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: zoom-in; border: 1px solid var(--line-cream); }
.spaces-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.spaces-grid figure:hover img { transform: scale(1.06); }
.spaces-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(0,0,0,0.5)); opacity: 0; transition: opacity 0.4s; }
.spaces-grid figure:hover::after { opacity: 1; }
.spaces-grid figure:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.spaces-grid figure:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.spaces-grid figure:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.spaces-grid figure:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.spaces-grid figure:nth-child(5) { grid-column: span 3; grid-row: span 1; }
.spaces-grid figure:nth-child(6) { grid-column: span 3; grid-row: span 1; }

/* ----------------------------- Pledge (wine) ----------------------------- */
.pledge { background: var(--cream-2); color: var(--on-cream); padding: 92px 0; text-align: center; border-top: 1px solid var(--line-cream); border-bottom: 1px solid var(--line-cream); }
.pledge .eyebrow { color: #9A7B3C; }
.pledge blockquote { font-family: var(--serif); font-size: clamp(1.6rem, 3.6vw, 2.5rem); line-height: 1.35; max-width: 900px; margin: 22px auto 26px; font-weight: 500; color: var(--on-cream); }
.pledge-stars { color: var(--gold); letter-spacing: 4px; font-size: 1.1rem; margin-bottom: 12px; }
.pledge-author { color: var(--on-cream-muted); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ----------------------------- Closing band ----------------------------- */
.closing { position: relative; background: var(--cream); display: flex; align-items: center; text-align: center; padding: 96px 0; border-top: 1px solid var(--line-cream); }
.closing-inner { margin: 0 auto; max-width: 760px; }
.closing h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; color: var(--on-cream); }
.closing p { color: var(--on-cream-muted); margin-bottom: 30px; font-size: 1.05rem; }
.closing .hero-cta { justify-content: center; }

/* ----------------------------- Catalog page ----------------------------- */
.catalog-page { padding-top: var(--header-h); background: var(--cream); color: var(--on-cream); min-height: 100vh; }
.catalog-hero { padding: 56px 0 24px; }
.catalog-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.catalog-hero p { color: var(--on-cream-muted); margin-top: 12px; max-width: 560px; }
.catalog-main { padding: 12px 0 120px; }
.catalog-controls { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; position: sticky; top: var(--header-h); z-index: 40; padding: 14px 0; background: var(--cream); }
.search-box { display: flex; align-items: center; gap: 10px; flex: 1 1 260px; max-width: 380px; background: var(--cream-card); border: 1px solid var(--line-cream); border-radius: 999px; padding: 11px 18px; }
.search-box svg { width: 18px; height: 18px; color: var(--on-cream-muted); flex-shrink: 0; }
.search-box input { flex: 1; background: none; border: none; color: var(--on-cream); outline: none; font-size: 0.95rem; }
.search-box input::placeholder { color: var(--on-cream-muted); }
.chips { display: flex; gap: 9px; flex-wrap: wrap; }
.chip { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line-cream); font-size: 0.85rem; font-weight: 500; color: var(--on-cream-muted); background: var(--cream-card); transition: all 0.25s var(--ease); min-height: 42px; }
.chip:hover { border-color: rgba(0,0,0,0.25); color: var(--on-cream); }
.chip.active { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.pcard { background: var(--cream-card); border: 1px solid var(--line-cream); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s; position: relative; }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-cream); }
.pcard.selected { border-color: var(--gold); }
.pcard-media { position: relative; aspect-ratio: 4 / 5; background: #ffffff; overflow: hidden; cursor: zoom-in; }
.pcard-media .slides { position: absolute; inset: 0; }
.pcard-media .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s var(--ease); }
.pcard-media .slide.active { opacity: 1; }
.pcard-tag { position: absolute; top: 12px; left: 12px; z-index: 3; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,0.85); border: 1px solid var(--line-cream); color: #8a6d16; backdrop-filter: blur(6px); }
.pcard-check { position: absolute; top: 12px; right: 12px; z-index: 3; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: #17130a; opacity: 0; transform: scale(0.6); transition: all 0.35s var(--ease); }
.pcard.selected .pcard-check { opacity: 1; transform: scale(1); }
.pcard-check svg { width: 16px; height: 16px; }
.slide-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(8,5,26,0.55); border: 1px solid var(--line-dark); color: var(--gold-bright); font-size: 1.3rem; line-height: 1; opacity: 0; transition: opacity 0.3s; }
.slide-btn.prev { left: 8px; } .slide-btn.next { right: 8px; }
.pcard-media:hover .slide-btn { opacity: 1; }
.slide-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 6px; }
.slide-dots .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: all 0.3s; }
.slide-dots .dot.active { background: var(--gold-bright); width: 16px; border-radius: 3px; }
@media (hover: none) { .slide-btn { opacity: 1; } }
.pcard-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pcard-name { font-size: 1.5rem; line-height: 1.1; }
.pcard-sub { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: #9A7B3C; margin-bottom: 4px; }
.pcard-dims { font-size: 0.8rem; color: var(--on-cream-muted); }
.pcard-actions { display: flex; gap: 10px; margin-top: 16px; }
.pcard-actions .btn { flex: 1; min-height: 44px; padding: 0 12px; font-size: 0.82rem; }
.catalog-empty { text-align: center; color: var(--on-cream-muted); padding: 80px 0; font-size: 1.05rem; }

/* ----------------------------- Cotización bar ----------------------------- */
.cart-bar { position: fixed; left: 0; right: 0; bottom: 16px; z-index: 85;
  transform: translateY(200%); opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform 0.45s var(--ease), opacity 0.4s var(--ease), visibility 0.45s; }
.cart-bar.show { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
.cart-inner { width: min(100% - 32px, 560px); margin-inline: auto; display: flex; align-items: center; gap: 14px; justify-content: space-between;
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 999px; padding: 10px 12px 10px 22px; box-shadow: var(--shadow-dark); }
.cart-info { display: flex; flex-direction: column; line-height: 1.15; }
.cart-info b { font-family: var(--serif); font-size: 1.05rem; color: var(--on-dark); }
.cart-info span { font-size: 0.78rem; color: var(--on-dark-muted); }
.cart-clear { font-size: 0.78rem; color: var(--on-dark-faint); text-decoration: underline; text-underline-offset: 3px; }

/* ----------------------------- Bottom nav (mobile) ----------------------------- */
.bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px); display: none;
  background: rgba(14,14,16,0.92); backdrop-filter: blur(14px); border-top: 1px solid var(--line-dark); }
.bottom-nav ul { display: flex; height: var(--bottom-nav-h); }
.bottom-nav li { flex: 1; }
.bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; height: 100%; color: var(--on-dark-faint); font-size: 0.64rem; letter-spacing: 0.02em; transition: color 0.25s; }
.bottom-nav a svg { width: 22px; height: 22px; }
.bottom-nav a.active { color: var(--gold-bright); }

/* ----------------------------- WhatsApp float ----------------------------- */
.wa-float { position: fixed; right: 20px; bottom: 24px; z-index: 95; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--wa-green); color: #fff; box-shadow: 0 12px 28px rgba(37,211,102,0.4); transition: transform 0.3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
body.has-cart .wa-float { bottom: 92px; }

/* ----------------------------- Contact ----------------------------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-copy .section-sub { margin-bottom: 20px; }
.contact-note { color: var(--on-cream-muted); font-size: 0.86rem; margin: 8px 0 22px; }
.contact-direct { display: flex; flex-direction: column; gap: 12px; }
.contact-pill { display: inline-flex; align-items: center; gap: 14px; background: var(--cream-card); border: 1px solid var(--line-cream); border-radius: 999px; padding: 12px 22px; transition: border-color 0.3s, transform 0.3s; }
.contact-pill:hover { border-color: rgba(201,162,39,0.5); transform: translateX(4px); }
.contact-pill svg { width: 24px; height: 24px; color: #a5851f; }
.contact-pill span { display: flex; flex-direction: column; line-height: 1.2; }
.contact-pill b { font-weight: 500; }
.contact-pill em { font-style: normal; color: var(--on-cream-muted); font-size: 0.85rem; }
.contact-form { display: flex; flex-direction: column; gap: 16px; background: var(--cream-card); border: 1px solid var(--line-cream); border-radius: var(--radius); padding: 30px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 0.82rem; color: var(--on-cream-muted); }
.contact-form input, .contact-form textarea { background: #fff; border: 1px solid var(--line-cream); border-radius: 12px; padding: 13px 15px; color: var(--on-cream); outline: none; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark); padding: 70px 0 40px; border-top: 1px solid var(--line-dark); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 66px; margin-bottom: 16px; margin-left: -6px; }
.footer-brand p { color: var(--on-dark-muted); font-size: 0.92rem; max-width: 320px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-dark); color: var(--on-dark-muted); transition: all 0.3s; }
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold-bright); }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 18px; font-weight: 500; }
.footer-col a { display: block; color: var(--on-dark-muted); font-size: 0.92rem; margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: var(--on-dark-faint); font-size: 0.82rem; }
.footer-credit a { color: var(--gold-bright); }

/* ----------------------------- Modals ----------------------------- */
.modal-overlay { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 16px; background: rgba(4,2,10,0.72); backdrop-filter: blur(8px); animation: fade 0.3s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal { position: relative; width: min(100%, 660px); max-height: 92vh; overflow-y: auto; background: var(--cream-card); color: var(--on-cream); border: 1px solid var(--line-cream); border-radius: 22px; box-shadow: 0 30px 70px rgba(30,20,10,0.28); animation: modalIn 0.45s var(--ease); }
.modal .btn-outline { border-color: rgba(0,0,0,0.25); color: var(--on-cream); }
.modal .btn-outline:hover { border-color: var(--gold); color: #9A7B3C; }
@keyframes modalIn { from { transform: translateY(24px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close { position: absolute; top: 14px; right: 16px; font-size: 2rem; line-height: 1; color: var(--on-cream-muted); z-index: 5; width: 40px; height: 40px; }
.modal-close:hover { color: var(--gold-bright); }
.modal-head { padding: 28px 30px 18px; border-bottom: 1px solid var(--line-cream); }
.modal-head h3 { font-size: 1.8rem; color: var(--on-cream); }
.modal-head p { color: var(--on-cream-muted); font-size: 0.92rem; margin-top: 6px; }
.modal-body { padding: 24px 30px; }
.modal-section { margin-bottom: 24px; }
.modal-section h4 { font-family: var(--sans); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 14px; font-weight: 500; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 0.82rem; color: var(--on-dark-muted); }
.field { color: var(--on-cream-muted); }
.field input { background: #fff; border: 1px solid var(--line-cream); border-radius: 10px; padding: 12px 14px; color: var(--on-cream); outline: none; }
.field input:focus { border-color: var(--gold); }
.map-block { margin-top: 6px; }
.map-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.map-btn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line-cream); border-radius: 999px; padding: 10px 16px; font-size: 0.82rem; color: var(--on-cream-muted); transition: all 0.3s; }
.map-btn svg { width: 16px; height: 16px; }
.map-btn:hover { border-color: var(--gold); color: #9A7B3C; }
#mapWrap { margin-top: 14px; }
#pickMap { height: 220px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-cream); }
.map-picked { color: var(--gold-bright); font-size: 0.85rem; margin-top: 10px; }
.quote-items { display: flex; flex-direction: column; gap: 12px; }
.quote-item { display: grid; grid-template-columns: 54px 1fr auto auto; align-items: center; gap: 12px; background: var(--cream); border: 1px solid var(--line-cream); border-radius: 14px; padding: 10px; }
.quote-item img { width: 54px; height: 54px; object-fit: cover; border-radius: 10px; background: #ffffff; }
.quote-item-info b { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.quote-item-info span { display: block; font-size: 0.78rem; color: var(--on-cream-muted); }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line-cream); border-radius: 999px; overflow: hidden; }
.stepper button { width: 32px; height: 34px; color: #9A7B3C; font-size: 1.1rem; }
.stepper input { width: 38px; text-align: center; background: none; border: none; color: var(--on-cream); outline: none; -moz-appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.quote-item-remove { font-size: 0.76rem; color: var(--on-dark-faint); text-decoration: underline; text-underline-offset: 2px; }
.quote-empty { color: var(--on-cream-muted); text-align: center; padding: 24px 0; }
.estimate { margin-top: 18px; padding: 16px 18px; background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.35); border-radius: 14px; }
.estimate-note { color: #8a6d16; font-size: 0.9rem; }
.modal-foot { display: flex; gap: 12px; justify-content: flex-end; padding: 18px 30px 26px; border-top: 1px solid var(--line-cream); position: sticky; bottom: 0; background: var(--cream-card); }

/* product detail modal */
.prod-modal { width: min(100%, 440px); }
.prod-modal-media { height: min(42vh, 340px); background: #ffffff; border-radius: 22px 22px 0 0; overflow: hidden; }
.prod-modal-media img { width: 100%; height: 100%; object-fit: contain; }
.prod-modal-body { padding: 18px 24px 22px; display: flex; flex-direction: column; gap: 7px; }
.prod-modal-badge { align-self: flex-start; font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: rgba(0,0,0,0.05); border: 1px solid var(--line-cream); color: #9A7B3C; }
.prod-modal-body h3 { font-size: 1.8rem; color: var(--on-cream); }
.prod-modal-body .pcard-dims { color: #9A7B3C; font-size: 0.82rem; }
.prod-modal-body .pcard-desc { color: var(--on-cream-muted); line-height: 1.7; margin: 4px 0 8px; }
.prod-modal-foot { margin-top: 8px; }
.prod-modal-foot .btn { width: 100%; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; padding: 20px; background: rgba(3,2,8,0.9); backdrop-filter: blur(6px); }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 12px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; font-size: 2.4rem; color: var(--on-dark); }

/* ----------------------------- Reveal ----------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hdr-nav { display: none; }
  .hdr-menu { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .spotlight { padding: 64px 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .diff-row { grid-template-columns: 1fr; }
  .diff-row:nth-child(even) .diff-media { order: 0; }
  .diff-media { min-height: 220px; }
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 42vh; order: -1; }
  .hero-visual::after { background: linear-gradient(0deg, var(--cream), transparent 18%); }
  .hero-copy2 { padding: 34px 24px 52px; }
  .featured-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
  .fcard { width: 232px; }
  .spotlight-body { text-align: center; align-items: center; }
  .spotlight-body p { text-align: center; }
  .story-inner { grid-template-columns: 1fr; min-height: 0; height: auto; }
  .story--reverse .story-media { order: 0; }
  .story-media { aspect-ratio: 16 / 11; height: auto; }
  .story-media.contain { aspect-ratio: 4 / 3; }
  .equip-rows { gap: 20px; margin-top: 30px; }
  .equip-row { grid-template-columns: 1fr; width: 100%; margin: 0 !important; }
  .equip-row--reverse .equip-row-media { order: 0; }
  .equip-row-media { min-height: 0; height: 200px; aspect-ratio: auto; }
  .highlights { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 30px; }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
  .spaces-grid figure:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .deco-sparkle { display: none; }
  .hdr-actions .lang-switch { display: none; }
  .hdr-actions .hdr-cta { display: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, var(--container)); }
  .hero-cta .btn { flex: 1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pcard-body { padding: 12px 12px 14px; }
  .pcard-name { font-size: 1.15rem; }
  .pcard-actions { flex-direction: column; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .modal-foot { flex-direction: column-reverse; }
  .modal-foot .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
