/* =============================================================
   FEDERICO GARCÍA BERRO — Editorial premium redesign v2
   Same brand tokens (colors/fonts), entirely new layout language:
   oversized editorial type, sticky narrative, mosaic proof wall,
   fullscreen nav, ghost numerals, asymmetric chapters.
   1. Tokens  2. Reset  3. Utilities  4. Typography  5. Components
   6. Sections  7. Nav  8. Effects  9. Responsive  10. Reduced-motion
   ============================================================= */

/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  --bg: #0d0d0d;
  --bg2: #111111;
  --bg3: #181818;
  --bg-elevated: #141311;
  --cream: #f5f0e8;
  --gold: #C2A57B;
  --gold-soft: rgba(194, 165, 123, 0.13);
  --gold-line: rgba(194, 165, 123, 0.25);
  --text: #d4cfc7;
  --text-muted: #C4C4C4;
  --text-dim: #8a8680;
  --border: #2a2825;
  --white: #ffffff;
  --whatsapp: #25D366;

  --serif: 'Bitter', 'Georgia', serif;
  --serif-display: 'Cormorant Garamond', 'Bitter', serif;
  --sans: 'Bitter', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1440px;
  --edge: 1.4rem;
  --radius: 4px;
  --nav-h: 76px;

  --shadow-gold: 0 30px 70px -25px rgba(194, 165, 123, 0.25);
  --shadow-deep: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
}
@media (min-width: 720px)  { :root { --edge: 3vw; } }
@media (min-width: 1280px) { :root { --edge: 4.5vw; --nav-h: 92px; } }

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; tab-size: 2; }
body {
  background: var(--bg); color: var(--text); font-family: var(--sans);
  font-weight: 300; line-height: 1.7; overflow-x: clip; font-size: 17px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
@media (min-width: 720px)  { body { font-size: 18px; } }
@media (min-width: 1280px) { body { font-size: 20px; } }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; }
ol, ul { list-style: none; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* =============================================================
   3. UTILITIES
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 10001;
  padding: .7rem 1.2rem; background: var(--cream); color: var(--bg);
  border-radius: 6px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }
.split-word, .split-char { display: inline-block; will-change: transform, opacity; }

.eyebrow {
  font-size: 0.82rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; font-weight: 500;
}

/* =============================================================
   4. TYPOGRAPHY
   ============================================================= */
.h-title {
  font-family: var(--serif); font-weight: 300; color: var(--cream);
  line-height: 1.08; letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  margin-bottom: 1.4rem;
}
.h-title em { font-style: italic; color: var(--gold); }
.h-title--xl { font-size: clamp(2.6rem, 7vw, 5rem); }
.h-title--hero { font-size: clamp(3.2rem, 9vw, 7.5rem); text-align: center; margin-bottom: 0; }

/* =============================================================
   5. COMPONENTS — buttons
   ============================================================= */
.btn-primary, .btn-outline, .btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1.05rem 2.2rem; font-size: 0.98rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; border-radius: 2px;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background .3s, color .3s;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--bg); box-shadow: 0 4px 18px rgba(194,165,123,0.18); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--bg); transform: translateY(-3px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,0.2); }
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-3px); box-shadow: 0 22px 50px -12px rgba(37,211,102,0.4); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* =============================================================
   6. SPLASH / PROGRESS / CURSOR
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: grid; place-items: center; gap: 1rem;
  transition: opacity .8s ease, clip-path 1s var(--ease-soft);
  animation: splashSafety .01s 3.2s forwards;
}
.splash-mark { font-family: var(--serif-display); font-style: italic; font-size: 3.2rem; color: var(--gold); }
.splash-line { width: 60px; height: 1px; background: var(--gold-line); position: relative; overflow: hidden; }
.splash-line::after { content: ''; position: absolute; inset: 0; background: var(--gold); animation: splashLine 1.4s var(--ease-soft) infinite; }
@keyframes splashLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 999; background: rgba(255,255,255,0.05); pointer-events: none; }
.scroll-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--cream)); transform-origin: 0 0; transform: scaleX(0); }

.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; display: none; mix-blend-mode: difference; opacity: 0; transition: opacity .3s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; border-radius: 50%; }
.cursor-dot { width: 6px; height: 6px; margin: -3px; background: var(--cream); }
.cursor-ring { width: 34px; height: 34px; margin: -17px; border: 1px solid var(--cream); transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out), border-color .3s; }
.cursor.is-interactive .cursor-ring { width: 56px; height: 56px; margin: -28px; border-color: var(--gold); }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   7. NAV — minimal bar + fullscreen menu
   ============================================================= */
nav[data-nav] {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--edge); height: var(--nav-h);
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .4s var(--ease-out), backdrop-filter .4s var(--ease-out), border-color .4s var(--ease-out);
}
nav[data-nav].is-scrolled { background: rgba(13,13,13,0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--border); }

.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo-mark {
  font-family: var(--serif-display); font-style: italic; font-size: 1.4rem; color: var(--gold);
  border: 1px solid var(--gold-line); border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-text { font-family: var(--serif); font-size: 0.82rem; line-height: 1.3; letter-spacing: 0.06em; color: var(--cream); text-transform: uppercase; display: none; }
@media (min-width: 640px) { .nav-logo-text { display: block; } }

.nav-menu-btn { display: flex; align-items: center; gap: 0.9rem; }
.nav-menu-btn-label { font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); }
.nav-menu-btn-lines { display: flex; flex-direction: column; gap: 5px; width: 26px; }
.nav-menu-btn-lines span { display: block; height: 1.5px; background: var(--cream); transition: transform .4s var(--ease-out), width .4s, opacity .3s; }
.nav-menu-btn-lines span:last-child { width: 65%; margin-left: auto; }
.nav-menu-btn[aria-expanded="true"] .nav-menu-btn-lines span { width: 100%; }
.nav-menu-btn[aria-expanded="true"] .nav-menu-btn-lines span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-menu-btn[aria-expanded="true"] .nav-menu-btn-lines span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.nav-menu {
  position: fixed; inset: 0; z-index: 590;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  clip-path: inset(0 0 100% 0); transition: clip-path .75s var(--ease-soft);
  padding: calc(var(--nav-h) + 2rem) var(--edge) 3rem;
}
.nav-menu[data-open] { clip-path: inset(0); }
.nav-menu-grid { width: 100%; max-width: 1100px; display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 860px) { .nav-menu-grid { flex-direction: row; justify-content: space-between; align-items: flex-end; } }

.nav-menu-list { display: flex; flex-direction: column; gap: 0.3rem; }
.nav-menu-list a {
  display: flex; align-items: baseline; gap: 1.2rem;
  font-family: var(--serif); font-size: clamp(1.8rem, 6vw, 3.4rem); font-weight: 300; font-style: italic;
  color: var(--cream); padding: 0.35rem 0; transition: color .3s;
}
.nav-menu-list a span { font-family: var(--sans); font-style: normal; font-size: 0.9rem; color: var(--gold); letter-spacing: 0.08em; }
.nav-menu-list a:hover { color: var(--gold); }

.nav-menu-side { display: flex; flex-direction: column; gap: 0.7rem; }
.nav-menu-eyebrow { font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.3rem; }
.nav-menu-link { font-size: 1.1rem; color: var(--text-muted); transition: color .3s; }
.nav-menu-link:hover { color: var(--gold); }

/* =============================================================
   8. HERO
   ============================================================= */
.hero { min-height: 100svh; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: calc(var(--nav-h) + 2rem) var(--edge) 4rem; }
.hero-bg-image { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transform: scale(1.06); }
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.62) 50%, rgba(13,13,13,0.3) 100%),
    linear-gradient(to top, rgba(13,13,13,1) 0%, rgba(13,13,13,0.2) 55%, rgba(13,13,13,0.5) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-content { position: relative; z-index: 3; max-width: 980px; }
.hero-tag { display: inline-block; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-line); border-radius: 999px; padding: 0.42rem 1.05rem; margin-bottom: 1.8rem; background: rgba(194,165,123,0.06); }
.hero h1 { font-family: var(--serif); font-size: clamp(2.8rem, 9.5vw, 8rem); font-weight: 300; line-height: 1.02; color: var(--cream); margin-bottom: 1.6rem; letter-spacing: -0.015em; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: clamp(1.02rem, 1.9vw, 1.35rem); color: var(--text-muted); max-width: 600px; margin-bottom: 2.2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-float-card {
  position: absolute; z-index: 3; right: var(--edge); bottom: 4rem;
  display: none; flex-direction: column; gap: 1rem; padding: 1.5rem 1.7rem;
  background: rgba(20,19,17,0.55); border: 1px solid var(--gold-line); border-radius: 8px;
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: var(--shadow-deep); min-width: 220px;
}
@supports not (backdrop-filter: blur(1px)) { .hero-float-card { background: rgba(15,14,13,0.92); } }
@media (min-width: 960px) { .hero-float-card { display: flex; } }
.hero-float-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.hero-float-num { font-family: var(--serif-display); font-size: 2.6rem; color: var(--cream); line-height: 1; }
.hero-float-num em { font-style: normal; color: var(--gold); }
.hero-float-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); text-align: right; line-height: 1.4; }
.hero-float-divider { height: 1px; background: var(--border); }
.hero-float-mini { display: flex; justify-content: space-between; gap: 1rem; }
.hero-float-mini div { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-float-mini strong { font-family: var(--serif); font-size: 1.05rem; color: var(--cream); font-weight: 400; }
.hero-float-mini span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }

.hero-scroll-cue { position: absolute; bottom: 1.4rem; left: var(--edge); z-index: 3; display: none; flex-direction: column; align-items: flex-start; gap: 0.5rem; color: var(--text-dim); }
@media (min-width: 720px) { .hero-scroll-cue { display: flex; } }
.hero-scroll-cue span { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--gold), transparent); position: relative; overflow: hidden; }
.hero-scroll-cue span::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--cream); animation: scrollCue 2s var(--ease-soft) infinite; }
@keyframes scrollCue { 0% { top: -100%; } 60%, 100% { top: 100%; } }
.hero-scroll-cue em { font-style: normal; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; }

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee { overflow: hidden; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.marquee-track { display: inline-flex; gap: 0.8rem; white-space: nowrap; animation: marqueeScroll 34s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--text-muted); letter-spacing: 0.02em; }
.marquee-track .dot { color: var(--gold); font-style: normal; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   9. SECTIONS — shared rhythm
   ============================================================= */
section { padding: 4.5rem var(--edge); position: relative; }
@media (min-width: 720px)  { section { padding: 6.5rem var(--edge); } }
@media (min-width: 1280px) { section { padding: 8rem var(--edge); } }

/* ---- Video (split) ---- */
.video-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.video-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .video-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; } }
.video-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 480px; }
.video-wrapper { position: relative; width: 100%; padding-top: 62%; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-deep); }
.video-wrapper img#videoThumb { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 1s var(--ease-soft); }
.video-wrapper:hover img#videoThumb { transform: scale(1.04); }
.video-overlay { position: absolute; inset: 0; background: rgba(13,13,13,0.45); transition: background .3s; }
.video-wrapper:hover .video-overlay { background: rgba(13,13,13,0.3); }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 80px; height: 80px; border: 2px solid #FF0033; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .4s var(--ease-bounce), background .3s; background: rgba(13,13,13,0.65); }
.video-wrapper:hover .video-play-btn { transform: translate(-50%,-50%) scale(1.1); background: rgba(255,0,51,0.15); }
.video-frame-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: none; }
.video-wrapper.is-playing .video-frame-embed { display: block; }
.video-wrapper.is-playing .video-play-btn, .video-wrapper.is-playing .video-overlay, .video-wrapper.is-playing img#videoThumb { display: none; }

/* ---- Qualify list (para quién) ---- */
.qualify-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); max-width: var(--container); margin: 0 auto; }
.qualify-header { margin-bottom: 3rem; }
.qualify-list { display: flex; flex-direction: column; }
.qualify-row {
  display: grid;
  grid-template-columns: 34px 32px 1fr;
  grid-template-areas:
    "num icon title"
    "desc desc desc";
  column-gap: 1rem; row-gap: 0.9rem; align-items: center;
  padding: 1.8rem 0; border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.qualify-row:first-child { border-top: 1px solid var(--border); }
.qualify-row::before { content: ''; position: absolute; inset: 0; background: var(--gold-soft); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); z-index: 0; }
.qualify-row:hover::before { transform: scaleX(1); }
.qualify-num { grid-area: num; font-family: var(--serif); font-size: 1.1rem; color: var(--gold); opacity: 0.65; position: relative; z-index: 1; align-self: center; }
.qualify-icon { grid-area: icon; width: 26px; height: 26px; opacity: 0.7; position: relative; z-index: 1; align-self: center; }
.qualify-title { grid-area: title; font-family: var(--serif); font-size: 1.22rem; font-weight: 400; color: var(--cream); line-height: 1.35; position: relative; z-index: 1; align-self: center; }
.qualify-desc { grid-area: desc; font-size: 1rem; color: var(--text-muted); line-height: 1.6; max-width: 640px; position: relative; z-index: 1; }
@media (min-width: 720px) {
  .qualify-row {
    grid-template-columns: 56px 40px minmax(220px, 340px) 1fr;
    grid-template-areas: "num icon title desc";
    column-gap: 1.8rem; row-gap: 0;
  }
  .qualify-desc { align-self: center; }
}

/* ---- Story (sticky narrative) ---- */
.story-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.story-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 960px) { .story-grid { grid-template-columns: 0.9fr 1.1fr; gap: 5rem; } }
.story-sticky { display: flex; flex-direction: column; }
@media (min-width: 960px) { .story-sticky { position: sticky; top: calc(var(--nav-h) + 3rem); align-self: start; height: fit-content; } }
.story-lead { font-size: 1.1rem; color: var(--text-muted); max-width: 460px; line-height: 1.75; margin-top: 0.5rem; }
.story-rail { display: none; flex-direction: column; gap: 0.6rem; margin-top: 2.5rem; }
@media (min-width: 960px) { .story-rail { display: flex; } }
.story-rail span { width: 40px; height: 2px; background: var(--gold-line); }

.story-items { display: flex; flex-direction: column; gap: 0; }
.story-item { padding: 2.2rem 0; border-top: 1px solid var(--border); transition: padding-left .4s var(--ease-out); }
.story-items .story-item:last-of-type { border-bottom: 1px solid var(--border); }
.story-item:hover { padding-left: 1rem; }
.story-item-era { font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.story-item-title { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.2rem); font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 0.9rem; }
.story-item--highlight .story-item-title { color: var(--gold); }
.story-item-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.story-item-pills li { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-line); padding: 0.22rem 0.6rem; border-radius: 999px; }
.story-item-desc { font-size: 1.02rem; color: var(--text-muted); line-height: 1.7; max-width: 560px; }
.story-footer-text { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); font-size: 1.08rem; color: var(--text-muted); line-height: 1.85; }
.story-footer-text strong { color: var(--cream); font-weight: 500; }

/* ---- Offer (programa) — asymmetric chapters ---- */
.offer-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.offer-intro { max-width: 780px; margin: 0 auto 5rem; text-align: center; }
.offer-intro-body { max-width: 680px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 1.1rem; }
.offer-intro-lead { font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-style: italic; color: var(--cream); }
.offer-intro-body p:not(.offer-intro-lead) { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; }

.offer-chapters { max-width: var(--container); margin: 0 auto; display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.offer-chapter {
  background: var(--bg); position: relative; padding: 3rem var(--edge);
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; overflow: hidden;
}
@media (min-width: 860px) { .offer-chapter { grid-template-columns: 1fr 1fr; align-items: center; padding: 4.5rem 3rem; } }
.offer-chapter-ghost {
  font-family: var(--serif-display); font-size: clamp(6rem, 16vw, 13rem); font-weight: 300; color: var(--bg3);
  line-height: 0.8; position: absolute; top: 50%; left: 1rem; transform: translateY(-50%); z-index: 0; user-select: none; pointer-events: none;
}
@media (min-width: 860px) { .offer-chapter--reverse .offer-chapter-ghost { left: auto; right: 1rem; } .offer-chapter--reverse .offer-chapter-body { order: -1; } }
.offer-chapter-body { position: relative; z-index: 1; max-width: 640px; }
.offer-chapter-tag { font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; opacity: 0.9; }
.offer-chapter-title { font-family: var(--serif); font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 0.8rem; }
.offer-chapter-focus { font-size: 1.02rem; color: var(--gold); margin-bottom: 1.2rem; }
.offer-chapter-list li { font-size: 1rem; color: var(--text-muted); padding: 0.5rem 0; border-bottom: 1px solid var(--border); display: flex; gap: 0.7rem; }
.offer-chapter-list li:last-child { border-bottom: none; }
.offer-chapter-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.offer-weekly { max-width: var(--container); margin: 5rem auto 0; text-align: center; }
.offer-weekly-desc { font-size: 1.02rem; color: var(--text-muted); max-width: 600px; margin: 0.8rem auto 0; line-height: 1.75; }
.offer-weekly-list { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 3rem; }
@media (min-width: 640px) { .offer-weekly-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .offer-weekly-list { grid-template-columns: repeat(5, 1fr); } }
.offer-weekly-list li { background: var(--bg2); padding: 2rem 1.3rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; transition: background .3s; }
.offer-weekly-list li:hover { background: var(--bg3); }
.offer-weekly-icon { width: 30px; height: 30px; opacity: 0.75; }
.offer-weekly-list li span:last-child { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }

.offer-zoom { max-width: 900px; margin: 5rem auto 0; text-align: center; border: 1px solid var(--border); border-radius: var(--radius); padding: 3rem var(--edge); background: var(--bg2); }
.offer-zoom-body { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 620px; margin: 1rem auto 0; }
.offer-zoom-tags { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.8rem; padding-top: 1.8rem; border-top: 1px solid var(--border); }
.offer-zoom-tags span:not(.sep) { font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.offer-zoom-tags .sep { opacity: 0.3; }

.offer-pullquote {
  font-family: var(--serif); font-size: clamp(1.4rem, 3.2vw, 2.2rem); font-style: italic; font-weight: 300;
  color: var(--cream); text-align: center; max-width: 900px; margin: 5rem auto 0; line-height: 1.6; opacity: 0.92;
}

/* ---- Outcomes (contenido del programa) ---- */
.outcomes-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); max-width: var(--container); margin: 0 auto; }
.outcomes-list { display: grid; grid-template-columns: 1fr; margin-top: 3rem; }
@media (min-width: 860px) { .outcomes-list { grid-template-columns: 1fr 1fr; column-gap: 4rem; } }
.outcomes-list li { position: relative; padding: 1.6rem 0 1.6rem 3.4rem; border-bottom: 1px solid var(--border); overflow: hidden; }
.outcomes-ghost { position: absolute; left: -0.4rem; top: 50%; transform: translateY(-50%); font-family: var(--serif-display); font-size: 3.2rem; color: var(--border); line-height: 1; z-index: 0; transition: color .4s; }
.outcomes-list li:hover .outcomes-ghost { color: var(--gold-line); }
.outcomes-list li h3 { position: relative; z-index: 1; font-family: var(--serif); font-size: 1.18rem; font-weight: 400; color: var(--cream); line-height: 1.4; }
.outcomes-footer { max-width: 700px; margin: 3rem auto 0; text-align: center; display: flex; flex-direction: column; gap: 0.8rem; }
.outcomes-footer p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; font-style: italic; }
.outcomes-footer strong { color: var(--gold); font-weight: 600; font-style: normal; }

/* ---- Bio (editorial split, bled image) ---- */
.bio-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0 !important; display: grid; grid-template-columns: 1fr; }
@media (min-width: 960px) { .bio-section { grid-template-columns: 0.9fr 1.1fr; min-height: 90vh; } }
.bio-media { position: relative; }
.bio-img-frame { position: relative; height: 52vh; min-height: 340px; overflow: hidden; }
@media (min-width: 960px) { .bio-img-frame { height: 100%; position: sticky; top: 0; } }
.bio-img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; filter: contrast(1.04) brightness(0.94); }
.bio-img-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.85), transparent 45%); pointer-events: none; }
.bio-img-caption { position: absolute; left: var(--edge); bottom: 1.6rem; z-index: 2; display: flex; flex-direction: column; gap: 0.3rem; border-left: 2px solid var(--gold); padding-left: 1rem; }
.bio-img-name { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); }
.bio-img-role { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.bio-content { padding: 3.5rem var(--edge); display: flex; flex-direction: column; justify-content: center; }
.bio-eyebrow { font-size: 0.82rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; opacity: 0.85; }
.bio-title { font-family: var(--serif-display); font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 300; color: var(--cream); line-height: 1.25; margin-bottom: 2rem; max-width: 640px; }
.bio-title em { display: block; font-style: italic; color: var(--gold); margin-top: 0.6rem; }
.bio-body { display: flex; flex-direction: column; gap: 1.1rem; max-width: 620px; }
.bio-body p { font-size: 1.02rem; color: var(--text-muted); line-height: 1.85; }
.bio-metrics { display: flex; flex-wrap: wrap; gap: 0; margin-top: 2.8rem; padding-top: 2rem; border-top: 1px solid var(--border); max-width: 640px; }
.bio-metrics div { display: flex; flex-direction: column; gap: 0.3rem; padding: 0.3rem 1.4rem 0.3rem 0; flex: 1; min-width: 90px; }
.bio-metrics strong { font-family: var(--serif-display); font-size: 1.5rem; font-weight: 400; color: var(--cream); }
.bio-metrics strong em { font-style: normal; color: var(--gold); }
.bio-metrics span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }

/* ---- CTA band ---- */
.cta-band { text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; background: var(--bg2); }
.cta-band::before { content: ''; position: absolute; inset: -20% -10% -50% -10%; background: radial-gradient(45% 45% at 50% 30%, rgba(194,165,123,0.08), transparent 70%); pointer-events: none; filter: blur(40px); }
.cta-band-sub { color: var(--text-muted); font-size: 1.15rem; max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; position: relative; z-index: 1; }
.cta-band-note { font-size: 0.95rem; color: var(--text-muted); margin-top: 1.2rem; opacity: 0.8; position: relative; z-index: 1; }

/* ---- Proof video ---- */
.proof-video-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-video-header { max-width: var(--container); margin: 0 auto 2.5rem; text-align: center; }
.proof-video-frame { max-width: var(--container); margin: 0 auto; position: relative; width: 100%; padding-top: 56.25%; background: #070707; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-deep); }
.proof-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ---- Proof mosaic (testimonials) ---- */
.proof-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.proof-mosaic { max-width: var(--container); margin: 3rem auto 0; column-count: 1; column-gap: 1rem; text-align: left; }
@media (min-width: 640px)  { .proof-mosaic { column-count: 2; } }
@media (min-width: 1080px) { .proof-mosaic { column-count: 3; } }
.proof-card { position: relative; break-inside: avoid; margin-bottom: 1rem; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); transition: border-color .35s, transform .35s, box-shadow .35s; }
.proof-card:hover { border-color: var(--gold-line); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.proof-card img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; object-position: center 22%; transition: transform .7s var(--ease-soft); }
.proof-card--lg img { aspect-ratio: 4/5; }
@media (min-width: 640px) { .proof-card--lg img { aspect-ratio: 3/4; } }
.proof-card:hover img { transform: scale(1.06); }
.proof-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.15) 55%, transparent 75%); pointer-events: none; }
.proof-card figcaption { position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1rem; display: flex; flex-direction: column; gap: 0.15rem; }
.proof-card figcaption strong { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); font-weight: 400; }
.proof-card figcaption span { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

/* ---- Asyxma ---- */
.asyxma-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.asyxma-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 620px; margin: 0 auto 2rem; line-height: 1.8; }

/* ---- FAQ ---- */
.faq-section { max-width: 1050px; margin: 0 auto; text-align: center; }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; text-align: left; }
.faq-item { border-top: 1px solid var(--border); transition: background .3s; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; gap: 1.2rem; padding: 1.5rem 0.4rem; text-align: left; }
.faq-question:hover { color: var(--gold); }
.faq-q-num { font-family: var(--serif); font-size: 0.95rem; color: var(--gold); opacity: 0.7; flex-shrink: 0; }
.faq-q-text { flex: 1; font-size: 1.12rem; color: var(--cream); font-weight: 400; }
.faq-icon { color: var(--gold); font-size: 1.6rem; flex-shrink: 0; transition: transform .35s var(--ease-out); font-family: var(--serif); line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease-out); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; padding: 0 0.4rem; font-size: 1.02rem; color: var(--text-muted); line-height: 1.7; max-width: 720px; }
.faq-item.open .faq-answer-inner { padding: 0 0.4rem 1.6rem; }

/* ---- Contact ---- */
.contact-section { background: var(--bg2); border-top: 1px solid var(--border); max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 960px) { .contact-section { grid-template-columns: 0.9fr 1.1fr; gap: 5rem; align-items: center; } }
.contact-intro-text { font-size: 1.1rem; color: var(--text-muted); margin-top: 0.5rem; max-width: 460px; }
.contact-note { font-size: 0.92rem; color: var(--text-dim); margin-top: 1.5rem; }
.cform { display: flex; flex-direction: column; gap: 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.cform-group { display: flex; flex-direction: column; gap: 0.4rem; }
.cform label { font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); opacity: 0.85; }
.cform input, .cform textarea, .cform select {
  background: var(--bg2); border: 1px solid var(--border); color: var(--cream); font-family: var(--sans);
  font-size: 1rem; padding: 0.85rem 1.1rem; outline: none; transition: border-color .25s, box-shadow .25s; width: 100%; border-radius: 2px;
}
.cform input:focus, .cform textarea:focus, .cform select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.cform textarea { resize: vertical; min-height: 100px; }
.cform select option { background: var(--bg2); }
.cform-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 560px) { .cform-row { grid-template-columns: 1fr 1fr; } }
.cform-submit { margin-top: 0.5rem; }
.cform-submit .btn-whatsapp { width: 100%; }

/* ---- Footer ---- */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 4rem var(--edge) 2rem; text-align: center; }
.footer-cta { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.footer-cta-mark { font-family: var(--serif-display); font-style: italic; font-size: 2.4rem; color: var(--gold); border: 1px solid var(--gold-line); border-radius: 50%; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.footer-cta p { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); letter-spacing: 0.04em; }
.footer-bottom { font-size: 0.92rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-bottom a { color: var(--text-muted); transition: color .25s; }
.footer-bottom a:hover { color: var(--gold); }

/* ---- Floating WhatsApp FAB ---- */
.fab-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 400; width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.35); transition: transform .4s var(--ease-bounce), box-shadow .4s;
  transform: scale(0); opacity: 0;
}
.fab-whatsapp.is-visible { transform: scale(1); opacity: 1; }
.fab-whatsapp:hover { transform: scale(1.08); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }

/* =============================================================
   TILT
   ============================================================= */
.has-tilt { --rx: 0deg; --ry: 0deg; transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)); transform-style: preserve-3d; }

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .splash-line::after, .hero-scroll-cue span::after, .marquee-track { animation: none; }
}
