/* ═══════════════════════════════════════════════════════════
   MYTHOS — styles.css
   ═══════════════════════════════════════════════════════════ */

:root {
  --verde: #1c2e1a;
  --verde2: #263d24;
  --verde3: #142313;
  --dorado: #957328;
  --dorado-pale: #d4b05a;
  --cream: #f5f0e8;
  --warm: #ede8de;
  --negro: #0f0f0f;
  --gris: #5a5248;
  --rojo: #8b2a1f;
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--negro);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none !important; }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Custom Cursor ─────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-dot {
  position: absolute; top: -3px; left: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: #d4b05a;
  transition: opacity 0.2s, transform 0.2s;
}
.cursor-ring {
  position: absolute; top: -18px; left: -18px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(212, 176, 90, 0.5);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1),
              height 0.3s cubic-bezier(0.16,1,0.3,1),
              top 0.3s cubic-bezier(0.16,1,0.3,1),
              left 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              background 0.3s ease;
}
.cursor-label {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; color: #fff;
  white-space: nowrap;
  opacity: 0; transition: opacity 0.2s;
  text-transform: uppercase;
}
.cursor.is-cta .cursor-ring {
  width: 80px; height: 80px; top: -40px; left: -40px;
  background: rgba(212, 176, 90, 0.9);
  border-color: transparent;
  mix-blend-mode: normal;
}
.cursor.is-cta { mix-blend-mode: normal; }
.cursor.is-cta .cursor-dot { opacity: 0; }
.cursor.is-link .cursor-ring {
  width: 12px; height: 12px; top: -6px; left: -6px;
  background: #d4b05a; border-color: transparent;
}
.cursor.is-view .cursor-ring {
  width: 100px; height: 100px; top: -50px; left: -50px;
  background: rgba(212, 176, 90, 0.85);
  border-color: transparent; mix-blend-mode: normal;
}
.cursor.is-view { mix-blend-mode: normal; }
.cursor.is-view .cursor-label { opacity: 1; color: var(--verde3); top: -4px; left: -16px; font-weight: 600; }
.cursor.is-view .cursor-dot { opacity: 0; }

/* ── Preloader ─────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--verde3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.preloader-inner {
  text-align: center;
  position: relative; z-index: 2;
}
.preloader-counter {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--dorado-pale); opacity: 0.6;
  margin-bottom: 32px;
}
.preloader-counter .preloader-pct { margin-left: 2px; }
.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 120px); letter-spacing: 0.06em;
  color: #fff; font-weight: 500;
  display: flex; gap: 0.04em; justify-content: center;
}
.preloader-logo span {
  display: inline-block;
  opacity: 0; transform: translateY(110%);
}
.preloader-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.4em; color: rgba(212,176,90, 0.5);
  margin-top: 28px;
  opacity: 0;
}
.preloader-curtain {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 100%;
  pointer-events: none; z-index: 3;
}
.preloader-curtain span {
  background: var(--verde3);
  height: 100%; width: 100%;
  transform: translateY(0);
  will-change: transform;
}

/* ── Navigation ────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(20, 35, 19, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom-color: rgba(212, 176, 90, 0.15);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: 0.05em; color: #fff;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.65);
}
.nav-links a {
  position: relative; padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--dorado-pale);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: #fff;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-cta:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.6); }

/* ── Reveal animation system ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* ── Eyebrow ───────────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
  font-family: var(--font-body); font-size: 10.5px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--dorado); font-weight: 600;
}
.eyebrow-light { color: var(--dorado-pale); }
.eyebrow-line {
  width: 28px; height: 1px; background: currentColor; opacity: 0.7;
  flex-shrink: 0;
}

/* ── CTA ───────────────────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  cursor: pointer; border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.cta-large { padding: 18px 32px; font-size: 12px; }
.cta-dorado {
  background: var(--dorado); color: #fff;
  box-shadow: 0 4px 16px rgba(149, 115, 40, 0.25);
}
.cta-dorado:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(149, 115, 40, 0.4);
}
.cta-dorado:active { transform: translateY(0); }
.cta svg { transition: transform 0.2s ease; }
.cta:hover svg { transform: translateX(2px); }

/* ── Section title primitives ─────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.title-green { color: var(--verde); }
.title-white { color: #fff; }
.section-title em.accent { color: var(--dorado); font-style: italic; font-weight: 600; }
.section-title em.accent-light { color: var(--dorado-pale); font-style: italic; font-weight: 600; }
.section-title em { font-family: var(--font-display); }
.section-body {
  font-family: var(--font-body); font-size: 16px; line-height: 1.7;
  color: var(--gris); max-width: 440px;
}
.section-body em { color: var(--verde); font-style: italic; }
.section-body-white { color: rgba(255, 255, 255, 0.72); max-width: 360px; }
.section-body-white em { color: #fff; }
.right-align { justify-self: end; }

/* ═══ HERO ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at center, var(--verde2) 0%, var(--verde3) 60%, #0a1509 100%);
  color: #fff;
  padding: 140px 80px 80px;
  position: relative; overflow: hidden;
}
.hero-halo {
  position: absolute;
  width: 600px; height: 600px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 176, 90, 0.18) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  animation: haloPulse 6s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.hero-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 360px 1.5fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 220px);
  position: relative;
  z-index: 1;
}
.hero-data-list { display: flex; flex-direction: column; gap: 32px; }
.hero-data-item {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in .hero-data-item { opacity: 1; transform: none; }
.reveal.in .hero-data-item:nth-child(1) { transition-delay: 0.1s; }
.reveal.in .hero-data-item:nth-child(2) { transition-delay: 0.25s; }
.reveal.in .hero-data-item:nth-child(3) { transition-delay: 0.4s; }
.hero-data-number {
  font-family: var(--font-mono); font-size: 32px; font-weight: 500;
  color: var(--dorado-pale); line-height: 1; margin-bottom: 6px;
}
.hero-data-label {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255, 255, 255, 0.55); line-height: 1.5; max-width: 200px;
}

.hero-center {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.bottle-wrapper {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.bottle-img {
  max-height: 620px; width: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bottle-wrapper:hover .bottle-img { transform: rotate(-2deg) scale(1.02); }
.bottle-floor {
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 24px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  filter: blur(8px);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.6vw, 52px);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: #fff;
}
.hero-headline .line-mask {
  display: block; overflow: hidden;
  padding-bottom: 0.05em;
}
.hero-headline .line-inner {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}
.hero-headline em.line-accent {
  font-style: italic; color: var(--dorado-pale); font-weight: 500;
}
.hero-sub {
  font-family: var(--font-body); font-size: 15px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.7); margin-bottom: 36px; max-width: 340px;
}
.hero-small-note {
  margin-top: 18px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255, 255, 255, 0.4); letter-spacing: 0.12em;
}
.hero-location {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.3em; color: rgba(212, 176, 90, 0.5);
}

/* ═══ RIESGOS ════════════════════════════════════════════ */
.riesgos {
  background: var(--verde3); color: #fff;
  padding: 100px 80px;
  border-top: 1px solid rgba(212, 176, 90, 0.15);
  border-bottom: 1px solid rgba(212, 176, 90, 0.15);
}
.riesgos-inner { max-width: 1040px; margin: 0 auto; }
.riesgos-list { list-style: none; }
.riesgo-item {
  border-top: 1px solid rgba(212, 176, 90, 0.15);
}
.riesgo-item:last-child { border-bottom: 1px solid rgba(212, 176, 90, 0.15); }
.riesgo-btn {
  width: 100%; padding: 36px 0;
  background: transparent; border: none;
  cursor: pointer;
  display: grid; grid-template-columns: 80px 1fr 32px;
  gap: 28px; align-items: start; text-align: left;
  color: inherit;
}
.riesgo-n {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--dorado-pale); font-weight: 500; padding-top: 6px;
}
.riesgo-content { display: block; }
.riesgo-title {
  display: block;
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  color: #fff; line-height: 1.3; letter-spacing: -0.005em;
  transition: color 0.2s ease;
}
.riesgo-btn:hover .riesgo-title { color: var(--dorado-pale); }
.riesgo-detail {
  display: block; max-height: 0; overflow: hidden; opacity: 0;
  font-family: var(--font-body); font-size: 16px;
  color: rgba(255, 255, 255, 0.62); line-height: 1.7; max-width: 640px;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}
.riesgo-item.open .riesgo-detail {
  max-height: 400px; opacity: 1; margin-top: 16px;
}
.riesgo-plus {
  font-family: var(--font-mono); font-size: 20px;
  color: var(--dorado-pale); text-align: right; padding-top: 4px;
  transition: transform 0.3s ease;
}
.riesgo-item.open .riesgo-plus { transform: rotate(45deg); }

/* ═══ DETALLE ════════════════════════════════════════════ */
.detalle {
  background: var(--verde3); color: #fff;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 540px;
  border-bottom: 1px solid rgba(212, 176, 90, 0.15);
}
.detalle-image {
  background: linear-gradient(135deg, #3a4a28 0%, #1f2a15 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.detalle-image::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg,
    transparent 0, transparent 18px,
    rgba(212, 176, 90, 0.05) 18px, rgba(212, 176, 90, 0.05) 19px);
}
.detalle-copy { padding: 90px 80px; display: flex; flex-direction: column; justify-content: center; }
.detalle-datos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding-top: 32px; margin-top: 48px;
  border-top: 1px solid rgba(212, 176, 90, 0.2);
}
.detalle-num {
  font-family: var(--font-mono); font-size: 34px; font-weight: 500;
  color: var(--dorado-pale); line-height: 1; margin-bottom: 10px;
}
.detalle-label {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255, 255, 255, 0.55); line-height: 1.55;
}
.detalle .section-title { color: #fff; }
.detalle .section-body { color: rgba(255, 255, 255, 0.72); max-width: 440px; }
.detalle .section-body em { color: #fff; }

/* ── Placeholders ─────────────────────────────────────── */
.placeholder-stripe { text-align: center; position: relative; z-index: 1; }
.placeholder-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em;
  color: var(--dorado-pale); text-transform: uppercase; margin-bottom: 12px;
}
.placeholder-desc {
  font-family: var(--font-mono); font-size: 13px;
  color: rgba(255, 255, 255, 0.7); letter-spacing: 0.08em; line-height: 1.6;
}

/* ═══ GUÍA ═══════════════════════════════════════════════ */
.guia { background: var(--cream); color: var(--negro); padding: 120px 80px; }
.guia-inner { max-width: 1040px; margin: 0 auto; }
.guia-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-bottom: 72px; align-items: end;
}
.datos-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(28, 46, 26, 0.12);
  margin-bottom: 80px;
}
.dato-cell {
  padding: 36px 28px;
  border-right: 1px solid rgba(28, 46, 26, 0.08);
}
.dato-cell:last-child { border-right: none; }
.dato-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.dato-n {
  font-family: var(--font-display); font-size: 52px; font-weight: 700;
  color: var(--verde); line-height: 0.9; letter-spacing: -0.02em;
}
.dato-unit {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--dorado); text-transform: uppercase; letter-spacing: 0.1em;
}
.dato-label {
  font-family: var(--font-body); font-size: 13px; line-height: 1.55;
  color: var(--gris); max-width: 180px;
}

.guia-bottom { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: stretch; }
.guia-photo {
  background: linear-gradient(135deg, #2a3b20 0%, #1a2612 100%);
  min-height: 380px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 32px;
}
.guia-photo::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg,
    transparent 0, transparent 22px,
    rgba(212, 176, 90, 0.06) 22px, rgba(212, 176, 90, 0.06) 23px);
}
.placeholder-stripe-light { position: relative; z-index: 1; }
.placeholder-label-light {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em;
  color: var(--dorado-pale); text-transform: uppercase; margin-bottom: 8px;
}
.placeholder-desc-light {
  font-family: var(--font-mono); font-size: 13px;
  color: rgba(255, 255, 255, 0.7); letter-spacing: 0.05em; line-height: 1.6;
}
.guia-photo-caption {
  position: absolute; top: 32px; left: 32px; right: 32px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; color: rgba(212, 176, 90, 0.7);
  text-transform: uppercase; z-index: 1;
}
.guia-quote {
  background: var(--warm); padding: 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(28, 46, 26, 0.08);
}
.quote-body {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  line-height: 1.4; color: var(--verde); letter-spacing: -0.005em;
}
.quote-body em { font-style: italic; }
.quote-body em.accent { color: var(--dorado); }
.quote-author {
  display: flex; align-items: center; gap: 16px; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid rgba(28, 46, 26, 0.12);
}
.quote-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #4a5a38 0%, #2a3a22 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; color: var(--dorado-pale);
  font-weight: 600; flex-shrink: 0;
}
.quote-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--negro);
}
.quote-role {
  font-family: var(--font-mono); font-size: 11px; color: var(--gris);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px;
}

/* ═══ PLAN ═══════════════════════════════════════════════ */
.plan { background: var(--verde); color: #fff; padding: 120px 80px; }
.plan-inner { max-width: 1040px; margin: 0 auto; }
.plan-header { margin-bottom: 80px; max-width: 560px; }
.plan-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; position: relative;
}
.plan-connector {
  position: absolute; top: 38px; left: 16%; right: 16%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(212, 176, 90, 0.4) 20%,
    rgba(212, 176, 90, 0.4) 80%, transparent 100%);
}
.plan-circle {
  width: 76px; height: 76px;
  border: 1px solid var(--dorado-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--verde); position: relative; z-index: 1;
  margin-bottom: 32px;
  font-family: var(--font-mono); font-size: 14px;
  color: var(--dorado-pale); letter-spacing: 0.05em; font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}
.plan-step:hover .plan-circle {
  transform: scale(1.06); background: var(--verde2);
}
.plan-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 600;
  line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 16px;
}
.plan-body {
  font-family: var(--font-body); font-size: 15px; line-height: 1.7;
  color: rgba(255, 255, 255, 0.68); max-width: 280px;
}
.plan-footer {
  margin-top: 72px; padding-top: 32px;
  border-top: 1px solid rgba(212, 176, 90, 0.2);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.plan-footer-note {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(212, 176, 90, 0.8);
}

/* ═══ FORMATOS ═══════════════════════════════════════════ */
.formatos { background: var(--verde); color: #fff; padding: 100px 80px; border-top: 1px solid rgba(212, 176, 90, 0.15); }
.formatos-inner { max-width: 1040px; margin: 0 auto; }
.formatos-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 56px;
}
.formatos-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(212, 176, 90, 0.25);
}
.formato-cell {
  padding: 32px 24px;
  border-right: 1px solid rgba(212, 176, 90, 0.15);
  position: relative;
  transition: background 0.2s ease;
}
.formato-cell:last-child { border-right: none; }
.formato-cell:hover { background: rgba(212, 176, 90, 0.04); }
.formato-cell.formato-featured { background: rgba(212, 176, 90, 0.05); }
.formato-cell.formato-featured::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px;
  height: 2px; background: var(--dorado-pale);
}
.formato-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dorado-pale);
  margin-bottom: 16px; min-height: 14px;
}
.formato-name {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  line-height: 1.1; margin-bottom: 4px;
}
.formato-sub {
  font-family: var(--font-body); font-size: 13px; font-style: italic;
  color: rgba(255, 255, 255, 0.55); margin-bottom: 28px;
}
.formato-price {
  font-family: var(--font-mono); font-size: 20px; font-weight: 500;
  color: #fff; margin-bottom: 4px;
}
.formato-note {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(255, 255, 255, 0.45); letter-spacing: 0.05em;
}
.formatos-cta { text-align: center; margin-top: 56px; }
.formatos-cta-note {
  margin-top: 20px;
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255, 255, 255, 0.5); letter-spacing: 0.04em;
}

/* ═══ LEAD MAGNET ════════════════════════════════════════ */
.leadmagnet {
  background: var(--warm); padding: 120px 80px;
  border-top: 1px solid rgba(28, 46, 26, 0.08);
  border-bottom: 1px solid rgba(28, 46, 26, 0.08);
}
.leadmagnet-inner {
  max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
}
.leadmagnet-pdf {
  position: relative; aspect-ratio: 4 / 3;
  background: var(--cream);
  border: 1px solid rgba(28, 46, 26, 0.12);
  padding: 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 40px -20px rgba(20, 35, 19, 0.3);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.leadmagnet-pdf:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 30px 60px -20px rgba(20, 35, 19, 0.4);
}
.leadmagnet-pdf-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em;
  color: var(--dorado); text-transform: uppercase; margin-bottom: 32px;
}
.leadmagnet-pdf-title {
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
  line-height: 1.1; letter-spacing: -0.015em;
  color: var(--verde); margin-bottom: 28px;
}
.leadmagnet-pdf-title em.accent { color: var(--dorado); font-style: italic; font-weight: 600; }
.leadmagnet-pdf-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.leadmagnet-pdf-list li {
  display: flex; gap: 12px; align-items: flex-start;
}
.leadmagnet-pdf-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--dorado);
  width: 20px; flex-shrink: 0; padding-top: 3px;
}
.leadmagnet-pdf-list li span:last-child {
  font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--negro);
}
.leadmagnet-pdf-foot {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em;
  color: var(--gris); text-transform: uppercase;
}
.leadmagnet-form {
  display: flex; max-width: 480px;
  border: 1px solid rgba(28, 46, 26, 0.4);
  margin-top: 16px;
  transition: border-color 0.2s ease;
}
.leadmagnet-form:focus-within { border-color: var(--verde); }
.leadmagnet-form input {
  flex: 1; padding: 18px 20px;
  border: none; outline: none;
  font-family: var(--font-body); font-size: 15px;
  background: transparent; color: var(--negro);
}
.leadmagnet-form button {
  padding: 0 28px; background: var(--verde); color: #fff;
  border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  transition: background 0.2s ease;
}
.leadmagnet-form button:hover { background: var(--verde2); }
.leadmagnet-success {
  padding: 24px; background: var(--verde); color: #fff;
  font-family: var(--font-body); font-size: 15px; max-width: 480px;
  margin-top: 16px;
}
.leadmagnet-success-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--dorado-pale); text-transform: uppercase; margin-bottom: 8px;
}
.leadmagnet-disclaimer {
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em;
  color: var(--gris); text-transform: uppercase;
}

/* ═══ FAQ ════════════════════════════════════════════════ */
.faq { background: var(--cream); padding: 120px 80px; }
.faq-inner {
  max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.faq-sidebar { position: sticky; top: 100px; }
.certs { padding-top: 32px; border-top: 1px solid rgba(28, 46, 26, 0.12); margin-top: 24px; }
.certs-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em;
  color: var(--dorado); text-transform: uppercase; margin-bottom: 20px;
}
.certs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.cert {
  padding: 14px 12px;
  border: 1px solid rgba(28, 46, 26, 0.15);
  background: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--verde); text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cert:hover { background: rgba(255, 255, 255, 0.7); border-color: var(--dorado); }
.certs-disclaimer {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em;
  color: var(--gris); margin-top: 12px;
}

.faq-list { list-style: none; }
.faq-item { border-top: 1px solid rgba(28, 46, 26, 0.12); }
.faq-item:last-child { border-bottom: 1px solid rgba(28, 46, 26, 0.12); }
.faq-btn {
  width: 100%; padding: 28px 0;
  background: transparent; border: none; cursor: pointer;
  display: grid; grid-template-columns: 1fr 32px;
  gap: 20px; align-items: start; text-align: left;
  color: inherit;
}
.faq-content { display: block; }
.faq-q {
  display: block;
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--verde); line-height: 1.3; letter-spacing: -0.005em;
  transition: color 0.2s ease;
}
.faq-btn:hover .faq-q { color: var(--dorado); }
.faq-a {
  display: block; max-height: 0; overflow: hidden; opacity: 0;
  font-family: var(--font-body); font-size: 15px; color: var(--gris);
  line-height: 1.7; max-width: 540px;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; opacity: 1; margin-top: 16px; }
.faq-plus {
  font-family: var(--font-mono); font-size: 20px; color: var(--dorado);
  text-align: right; padding-top: 2px;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }

/* ═══ FOOTER ═════════════════════════════════════════════ */
.footer { background: var(--negro); color: rgba(255, 255, 255, 0.65); padding: 72px 80px 40px; }
.footer-inner { max-width: 1040px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  letter-spacing: 0.05em; color: #fff; margin-bottom: 16px;
}
.footer-brand p {
  font-family: var(--font-body); font-size: 13px; line-height: 1.7;
  color: rgba(255, 255, 255, 0.5); max-width: 280px;
}
.footer-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dorado-pale); margin-bottom: 18px;
}
.footer-line {
  font-family: var(--font-body); font-size: 13px; line-height: 2;
  color: rgba(255, 255, 255, 0.7);
}
.footer-mono { font-family: var(--font-mono); font-size: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(212, 176, 90, 0.15);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══ RESPONSIVE ═════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { padding: 120px 40px 60px; }
  .hero-inner { grid-template-columns: 1fr 320px 1fr; gap: 32px; }
  .bottle-img { max-height: 480px; }
  .nav-inner { padding: 0 40px; }
  .riesgos, .detalle-copy, .guia, .plan, .formatos, .leadmagnet, .faq, .footer { padding-left: 40px; padding-right: 40px; }
  .hero-headline, .section-title, .leadmagnet-pdf-title { font-size: clamp(28px, 4vw, 42px); }
}

@media (max-width: 860px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 16px; font-size: 10px; }

  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr; gap: 48px;
    min-height: auto;
  }
  .hero-left { order: 2; }
  .hero-center { order: 1; }
  .hero-right { order: 3; text-align: left; }
  .bottle-img { max-height: 380px; }
  .hero-data-list { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .hero-data-item { flex: 1 1 140px; }
  .hero-headline { font-size: 36px; }
  .hero-location { display: none; }

  .riesgos, .leadmagnet, .faq, .guia, .plan, .formatos { padding: 70px 24px; }
  .riesgo-btn { grid-template-columns: 40px 1fr 24px; gap: 16px; padding: 28px 0; }
  .riesgo-title { font-size: 19px; }
  .riesgo-detail { font-size: 14px; }

  .detalle { grid-template-columns: 1fr; }
  .detalle-image { min-height: 280px; }
  .detalle-copy { padding: 60px 24px; }
  .detalle-datos { grid-template-columns: 1fr; gap: 24px; }

  .guia-header { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .right-align { justify-self: start; }
  .datos-grid { grid-template-columns: 1fr 1fr; }
  .dato-cell:nth-child(odd) { border-right: 1px solid rgba(28, 46, 26, 0.08); }
  .dato-cell:nth-child(even) { border-right: none; }
  .dato-cell:nth-child(1), .dato-cell:nth-child(2) { border-bottom: 1px solid rgba(28, 46, 26, 0.08); }
  .dato-n { font-size: 38px; }
  .guia-bottom { grid-template-columns: 1fr; gap: 24px; }
  .quote-body { font-size: 18px; }

  .plan-steps { grid-template-columns: 1fr; gap: 40px; }
  .plan-connector { display: none; }
  .plan-footer { flex-direction: column; align-items: flex-start; gap: 20px; }

  .formatos-header { grid-template-columns: 1fr; gap: 24px; }
  .formatos-grid { grid-template-columns: 1fr 1fr; }
  .formato-cell:nth-child(2) { border-right: none; }
  .formato-cell:nth-child(1), .formato-cell:nth-child(2) { border-bottom: 1px solid rgba(212, 176, 90, 0.15); }

  .leadmagnet-inner { grid-template-columns: 1fr; gap: 48px; }
  .leadmagnet-pdf { aspect-ratio: auto; padding: 28px; }
  .leadmagnet-pdf-title { font-size: 24px; }

  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: static; }
  .faq-q { font-size: 17px; }

  .footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════════════════════
   PREMIUM LAYER — watermark, particles, scroll, timeline,
   numerals, prefooter, seal, signature
   ═══════════════════════════════════════════════════════════ */

/* ── Hero watermark ─────────────────────────────────────── */
.hero-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; overflow: hidden;
  z-index: 0;
}
.hero-watermark span {
  font-family: var(--font-display);
  font-size: clamp(180px, 26vw, 380px);
  font-weight: 500; letter-spacing: -0.02em;
  color: rgba(212, 176, 90, 0.035);
  white-space: nowrap;
  will-change: transform;
  user-select: none;
}

/* ── Hero particles (golden motes) ──────────────────────── */
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
  z-index: 1; overflow: hidden;
}
.hero-particle {
  position: absolute; width: 3px; height: 3px;
  background: var(--dorado-pale); border-radius: 50%;
  opacity: 0; filter: blur(0.5px);
  box-shadow: 0 0 8px rgba(212, 176, 90, 0.5);
}

/* ── Hero scroll indicator ──────────────────────────────── */
.hero-scroll {
  position: absolute; bottom: 32px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  z-index: 5;
}
.hero-scroll-label {
  font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.4em; color: rgba(255,255,255, 0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero-scroll-track {
  width: 1px; height: 70px;
  background: rgba(255,255,255, 0.15);
  position: relative; overflow: hidden;
}
.hero-scroll-dot {
  position: absolute; top: -8px; left: -1.5px;
  width: 4px; height: 8px; background: var(--dorado-pale);
  animation: scrollDot 2s cubic-bezier(0.65,0,0.35,1) infinite;
}
@keyframes scrollDot {
  0% { top: -8px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 70px; opacity: 0; }
}

/* ── Section eyebrow band (new) ─────────────────────────── */
.section-eyebrow-band {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--dorado);
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(149, 115, 40, 0.15);
}
.section-eyebrow-band .eyebrow-line {
  width: 28px; height: 1px; background: currentColor; opacity: 0.7;
}

/* ── Roman numeral decoration ───────────────────────────── */
.section-numeral {
  position: absolute; top: 60px; left: 40px;
  font-family: var(--font-display);
  font-size: clamp(180px, 22vw, 360px);
  font-weight: 400; line-height: 0.85;
  color: rgba(149, 115, 40, 0.04);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-style: italic;
}
.section-numeral-light {
  color: rgba(212, 176, 90, 0.05);
}

/* Make sure section content sits above numeral */
.riesgos-inner, .timeline-inner, .detalle, .guia-inner,
.plan-inner, .formatos-inner, .leadmagnet-inner, .faq-inner,
.prefooter-inner {
  position: relative; z-index: 1;
}

/* ── Timeline section ───────────────────────────────────── */
.timeline-section {
  background: var(--verde3);
  color: #fff;
  padding: 140px 80px 160px;
  position: relative; overflow: hidden;
}
.timeline-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(212,176,90,0.06), transparent 50%);
  pointer-events: none;
}
.timeline-inner {
  max-width: 1280px; margin: 0 auto;
  position: relative;
}
.timeline-header { margin-bottom: 100px; max-width: 700px; }
.timeline-header .section-title { color: #fff; }
.timeline-track {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 60px;
}
.timeline-line {
  position: absolute; top: 88px; left: 8%; right: 8%;
  height: 1px; background: rgba(212,176,90, 0.2);
  overflow: hidden;
}
.timeline-line-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--dorado-pale), var(--dorado-pale));
  box-shadow: 0 0 8px rgba(212,176,90, 0.4);
}
.timeline-step {
  position: relative;
  cursor: default;
}
.timeline-step-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.3em; color: var(--dorado-pale); opacity: 0.5;
  margin-bottom: 38px;
}
.timeline-step-dot {
  position: absolute; top: 56px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--verde3);
  border: 1px solid rgba(212,176,90, 0.4);
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.timeline-step-dot-active {
  background: var(--dorado-pale);
  border-color: var(--dorado-pale);
  box-shadow: 0 0 0 4px rgba(212,176,90, 0.15), 0 0 16px rgba(212,176,90, 0.6);
}
.timeline-step-title {
  font-family: var(--font-display); font-size: 28px;
  font-weight: 500; color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.timeline-step-meta {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.18em; color: var(--dorado-pale);
  text-transform: uppercase; margin-bottom: 18px;
}
.timeline-step-detail {
  font-family: var(--font-body); font-size: 13.5px; line-height: 1.65;
  color: rgba(255,255,255, 0.55);
  max-width: 240px;
}
.timeline-step:hover .timeline-step-dot {
  transform: translateX(-50%) scale(1.4);
  background: var(--dorado-pale);
  border-color: var(--dorado-pale);
}
@media (max-width: 900px) {
  .timeline-track { grid-template-columns: 1fr; gap: 56px; padding-top: 0; }
  .timeline-line { display: none; }
  .timeline-step-dot { position: relative; top: 0; left: 0; transform: none; margin-bottom: 16px; }
  .timeline-step:hover .timeline-step-dot { transform: scale(1.4); }
}

/* ── Pre-footer giant CTA ───────────────────────────────── */
.prefooter {
  background: var(--cream);
  padding: 140px 80px 140px;
  position: relative; overflow: hidden;
}
.prefooter::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 79px, rgba(149,115,40,0.04) 79px, rgba(149,115,40,0.04) 80px);
  pointer-events: none;
}
.prefooter-inner {
  max-width: 1320px; margin: 0 auto;
  text-align: center;
  position: relative;
}
.prefooter-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em;
  color: var(--dorado); text-transform: uppercase; font-weight: 500;
  margin-bottom: 80px;
}
.prefooter-eyebrow .eyebrow-line {
  width: 28px; height: 1px; background: currentColor; opacity: 0.6;
}
.prefooter-cta {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.18em 0.5em;
  font-family: var(--font-display);
  font-size: clamp(64px, 14vw, 200px);
  font-weight: 400; line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--verde);
  margin: 0 auto 80px;
  cursor: pointer; user-select: none;
}
.prefooter-word {
  display: inline-flex; gap: 0.01em;
  position: relative;
  white-space: nowrap;
}
.prefooter-word span {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), color 0.4s ease;
  will-change: transform;
}
.prefooter-word-accent { font-style: italic; color: var(--dorado); font-weight: 500; }
.prefooter-cta:hover .prefooter-word span { color: var(--dorado); }
.prefooter-foot {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; color: var(--gris);
  text-transform: uppercase;
}
.prefooter-arrow svg { stroke: var(--gris); }

/* ── Cert seal ──────────────────────────────────────────── */
.cert-seal {
  margin-top: 56px;
  width: 200px; height: 200px;
  position: relative;
  color: var(--verde);
}
.cert-seal-svg {
  width: 100%; height: 100%;
  animation: sealRotate 60s linear infinite;
}
@keyframes sealRotate { to { transform: rotate(360deg); } }
.cert-seal-text {
  fill: var(--verde);
  font-family: var(--font-mono);
  font-weight: 500;
}
.cert-seal-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.cert-seal-num {
  font-family: var(--font-display); font-size: 48px;
  font-weight: 500; color: var(--verde);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cert-seal-num span {
  font-family: var(--font-mono); font-size: 14px;
  vertical-align: super;
  margin-left: 2px;
  color: var(--dorado);
}
.cert-seal-label {
  font-family: var(--font-mono); font-size: 8.5px;
  letter-spacing: 0.22em; color: var(--gris);
  margin-top: 6px;
  text-transform: uppercase;
}

/* ── Signature SVG ──────────────────────────────────────── */
.quote-signature {
  display: block; width: 180px; height: auto;
  margin: 28px 0 16px;
  color: var(--verde);
  opacity: 0.75;
}
.quote-signature path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}
.reveal.in .quote-signature path {
  animation: drawSig 2.4s cubic-bezier(0.65,0,0.35,1) 0.4s forwards;
}
@keyframes drawSig { to { stroke-dashoffset: 0; } }

/* ── Bottle tooltip (easter egg) ────────────────────────── */
.bottle-tooltip {
  position: absolute; top: 30%; left: 100%;
  margin-left: 24px;
  background: rgba(20, 35, 19, 0.95);
  border: 1px solid rgba(212,176,90, 0.3);
  padding: 14px 18px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.16em; color: var(--dorado-pale);
  white-space: nowrap;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 10;
}
.bottle-tooltip.show { opacity: 1; transform: translateX(0); }
.bottle-tooltip::before {
  content: ''; position: absolute; right: 100%; top: 50%;
  width: 16px; height: 1px; background: rgba(212,176,90, 0.4);
}

/* ── Hero data with cursor blink ────────────────────────── */
.hero-data-number {
  position: relative;
}
.hero-data-number.counting::after,
.detalle-num.counting::after,
.dato-n.counting::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: var(--dorado-pale);
  animation: blinkCursor 0.6s steps(2) infinite;
  font-family: var(--font-mono);
}
@keyframes blinkCursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ── Magnetic CTA ripple ────────────────────────────────── */
.cta { position: relative; overflow: hidden; }
.cta-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255, 0.4);
  pointer-events: none;
  transform: scale(0);
  animation: rippleOut 0.7s ease-out forwards;
}
@keyframes rippleOut {
  to { transform: scale(8); opacity: 0; }
}

/* ── Bottle subtle shine ────────────────────────────────── */
.bottle-wrapper {
  position: relative;
}
.bottle-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(212,176,90,0.18) 48%, transparent 65%);
  mix-blend-mode: screen;
  animation: bottleShine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bottleShine {
  0%, 100% { transform: translateX(-30%); opacity: 0; }
  50% { transform: translateX(30%); opacity: 1; }
}

/* ── Reduce motion fallback ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-headline .line-inner { transform: none !important; }
  .preloader-logo span { opacity: 1 !important; transform: none !important; }
}

/* ── Mobile adjustments for new elements ────────────────── */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .hero-watermark span { font-size: 200px; }
  .section-numeral { font-size: 140px; top: 24px; left: 16px; }
  .hero-scroll { display: none; }
  .timeline-section { padding: 90px 24px 100px; }
  .prefooter { padding: 100px 24px; }
  .prefooter-cta { font-size: 64px; gap: 0.1em 0.3em; }
  .cert-seal { width: 160px; height: 160px; margin-top: 32px; }
  .cert-seal-num { font-size: 38px; }
  .quote-signature { width: 140px; }
}
