/* ──────────────────────────────────────────────────────
   MALU PEREZ — REDISEÑO PREMIUM
   Video persistente como fondo (canvas fixed) + secciones flotantes
   ────────────────────────────────────────────────────── */

:root {
  --bone:        #F5F1EA;
  --bone-warm:   #EDE6DA;
  --sand:        #E1D5BF;
  --ink:         #0E0E10;
  --ink-soft:    #2B2A2C;
  --muted:       #7B7770;
  --muted-light: rgba(245,241,234,0.7);
  --line:        rgba(14,14,16,0.12);
  --line-light:  rgba(245,241,234,0.18);
  --wine:        #6B2638;
  --wine-deep:   #4A1825;

  --font-serif:  'Fraunces', 'Times New Roman', serif;
  --font-sans:   'Inter Tight', -apple-system, sans-serif;

  --max:         1280px;
  --gutter:      clamp(20px, 4vw, 56px);
  --card-radius: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--bone);
  background: var(--ink);
  overflow-x: hidden;
}
img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em { font-style: italic; }

/* ── INTRO LOADER ──────────────────────────────────── */
/* Sits on top of the canvas. Locks scroll until "Entrar" is clicked. */
html.is-loading, html.is-loading body { overflow: hidden; height: 100%; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 56px);
  color: var(--bone);
  pointer-events: auto;
  /* fade out when .is-out is set */
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.intro.is-out {
  opacity: 0;
  pointer-events: none;
}
.intro__frosted {
  position: absolute;
  inset: 0;
  background: rgba(14,14,16,0.55);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
}
.intro__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.4vw, 32px);
  max-width: 760px;
  width: 100%;
  text-align: center;
}

.intro__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.95;
}
.intro__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
}
.intro__brand {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--bone);
}

.intro__headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  color: var(--bone);
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.intro__headline em { font-style: italic; font-weight: 300; opacity: 0.85; }

.intro__sub {
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(245,241,234,0.78);
  max-width: 520px;
  line-height: 1.5;
}

.intro__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 560px;
  margin-top: 4px;
}
.intro-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(245,241,234,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245,241,234,0.16);
  text-align: left;
  overflow: hidden;
  /* gentle pulse so the cards feel alive while loading */
  animation: introPulse 3s ease-in-out infinite;
}
.intro-card:nth-child(2) { animation-delay: 0.4s; }
.intro-card:nth-child(3) { animation-delay: 0.8s; }
.intro-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: rgba(245,241,234,0.65);
  letter-spacing: 0.04em;
}
.intro-card__lbl {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: -0.012em;
  color: var(--bone);
}
@keyframes introPulse {
  0%, 100% { background: rgba(245,241,234,0.10); }
  50%      { background: rgba(245,241,234,0.16); }
}

.intro__progress {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.intro__bar {
  position: relative;
  height: 2px;
  width: 100%;
  background: rgba(245,241,234,0.18);
  border-radius: 999px;
  overflow: hidden;
}
.intro__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--bone);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.intro__progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.6);
}

.intro__cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 999px;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--bone);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    color 0.3s ease;
}
.intro__cta.is-ready {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.intro__cta:hover {
  background: var(--wine);
  color: var(--bone);
  border-color: var(--wine);
}
.intro__arrow {
  transition: transform 0.3s ease;
}
.intro__cta:hover .intro__arrow { transform: translateX(4px); }

@media (max-width: 600px) {
  .intro__cards { grid-template-columns: 1fr; max-width: 360px; }
  .intro-card { padding: 14px 16px; flex-direction: row; align-items: center; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .intro-card { animation: none; }
}

/* ── REVEAL-ON-SCROLL ──────────────────────────────── */
/* Anything with [data-reveal] starts hidden + slightly lifted
   and animates in once the IntersectionObserver flips .is-in.
   Children with [data-reveal-child] inherit the same animation
   but stagger by their --i index. */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-child] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(120ms * var(--i, 0));
  will-change: opacity, transform;
}
[data-reveal].is-in [data-reveal-child] {
  opacity: 1;
  transform: translateY(0);
}
/* For long display titles split into lines, optional blur-in feel. */
[data-reveal-blur] {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal-blur].is-in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-child], [data-reveal-blur] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ── PERSISTENT BACKGROUND ──────────────────────────── */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}
.bg__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Keep the look natural — almost no filter, only a touch of contrast. */
  filter: contrast(1.02) brightness(1.01);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ── GLASS / REFRACTION STACK ─────────────────────────────
   The video sits behind a layered light system: drifting color
   pools, a sweeping diagonal sheen, an animated turbulence
   distortion (the "glass" feel), and faint moving grain. */

/* ── LIQUID-GLASS LAYER ───────────────────────────────────
   No more harsh white sheen. Two large color pools made from
   the SAME palette as the video (sea-blue, mountain-green,
   sand-warm, sky) drift around constantly with a wave-like
   ease, like watching the scene through a fluid lens. */

/* Layer 1 — sea / sky color pools, SOFT-LIGHT (subtle, no glare) */
.bg__bloom {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 30% 35%, rgba(255,200,150,0.85), transparent 70%),
    radial-gradient(closest-side at 75% 70%, rgba(140,200,230,0.80), transparent 70%);
  mix-blend-mode: soft-light;
  filter: blur(60px);
  animation: liquidA 14s ease-in-out infinite alternate;
  will-change: transform;
}

/* Layer 2 — counter-flowing pool, opposite tones — SOFT-LIGHT */
.bg__sheen {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 65% 30%, rgba(180,220,180,0.80), transparent 72%),
    radial-gradient(closest-side at 25% 80%, rgba(255,180,200,0.75), transparent 72%);
  mix-blend-mode: soft-light;
  filter: blur(70px);
  animation: liquidB 17s ease-in-out infinite alternate;
  will-change: transform;
}

/* Layer 3 — slow waving "liquid lens" — colored, SOFT-LIGHT */
.bg__glass {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  opacity: 0.85;
  mix-blend-mode: soft-light;
  background:
    radial-gradient(60% 80% at 20% 50%, rgba(200,230,255,0.75), transparent 70%),
    radial-gradient(60% 80% at 80% 50%, rgba(255,210,170,0.70), transparent 70%);
  filter: blur(50px);
  animation: liquidFlow 12s ease-in-out infinite alternate;
  will-change: transform;
}

/* Layer 4 — subtle film grain */
.bg__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
  background-size: 220px 220px;
  animation: grainShift 5s steps(8) infinite;
}

@keyframes liquidA {
  0%   { transform: translate3d(-5%, -3%, 0) scale(1.05); }
  33%  { transform: translate3d(3%, 4%, 0) scale(1.12); }
  66%  { transform: translate3d(-2%, 5%, 0) scale(1.08); }
  100% { transform: translate3d(4%, -2%, 0) scale(1.10); }
}
@keyframes liquidB {
  0%   { transform: translate3d(4%, 3%, 0) scale(1.08); }
  33%  { transform: translate3d(-3%, -4%, 0) scale(1.05); }
  66%  { transform: translate3d(2%, -2%, 0) scale(1.12); }
  100% { transform: translate3d(-4%, 4%, 0) scale(1.06); }
}
@keyframes liquidFlow {
  0%   { transform: translate3d(-8%, 0, 0) scale(1.05); }
  50%  { transform: translate3d(6%, -3%, 0) scale(1.10); }
  100% { transform: translate3d(-4%, 4%, 0) scale(1.07); }
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-6%, 4%); }
  40%  { transform: translate(4%, -6%); }
  60%  { transform: translate(-4%, -2%); }
  80%  { transform: translate(6%, 6%); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .bg__bloom, .bg__sheen, .bg__glass, .bg__grain { animation: none; }
}
.bg__tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Subtle vignette only — keeps the original video color visible. */
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 55%, rgba(0,0,0,0.18) 100%);
  transition: background 0.6s ease, opacity 0.6s ease;
}

/* ── CONTENT LAYER ──────────────────────────────────── */
.content {
  position: relative;
  z-index: 1;
}

/* ── TYPOGRAPHY HELPERS ─────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.kicker--light { color: var(--muted-light); }
.kicker .icon { width: 18px; height: 18px; opacity: 0.85; }

/* Reusable icon helper */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
}
.icon--lg { width: 28px; height: 28px; }
.icon--xl { width: 40px; height: 40px; }

.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  color: var(--bone);
  text-shadow: 0 4px 40px rgba(0,0,0,0.35);
}
.display em { font-style: italic; font-weight: 300; opacity: 0.85; }
.display--small { font-size: clamp(40px, 6.5vw, 96px); }

.lead {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  max-width: 540px;
  margin-top: 28px;
}
.lead--light { color: var(--muted-light); }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 20px 36px; font-size: 15px; }
.btn--ink           { background: var(--ink); color: var(--bone); }
.btn--ink:hover     { background: var(--wine); }
.btn--bone          { background: var(--bone); color: var(--ink); }
.btn--bone:hover    { background: #fff; }
.btn--ink-outline   { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ink-outline:hover { background: var(--ink); color: var(--bone); }
.btn--ghost-light       { background: transparent; color: var(--bone); border-color: rgba(245,241,234,0.55); }
.btn--ghost-light:hover { background: rgba(245,241,234,0.12); border-color: var(--bone); }

/* Hero CTA cluster — sits directly under the lead. */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 720px) {
  .hero__cta { gap: 10px; }
  .hero__cta .btn { padding: 14px 22px; font-size: 13px; }
  .hero__cta .btn--lg { padding: 16px 26px; font-size: 14px; }
}

/* ── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 18px var(--gutter);
  background: rgba(14,14,16,0.35);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(245,241,234,0.06);
  color: var(--bone);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bone); color: var(--ink);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: -0.01em;
  font-weight: 500;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: "";
  position: absolute;
  inset: auto 50% 0 50%;
  height: 1px; background: currentColor;
  transition: inset 0.3s ease;
}
.nav__links a:hover::after { inset: auto 0 0 0; }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__signin { font-size: 14px; font-weight: 500; opacity: 0.78; }
.nav__signin:hover { opacity: 1; }
@media (max-width: 860px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 12px; padding: 14px 18px; }
  .nav__links { display: none; }
  .nav__cta { gap: 10px; }
  .nav__signin { display: none; }
  .btn { padding: 12px 18px; font-size: 13px; }
  .nav__logo-text { font-size: 15px; }
  .nav__logo-mark { width: 28px; height: 28px; font-size: 16px; }
}

/* ── SCENE LAYOUT ───────────────────────────────────── */
/* Each scene takes ~100vh+ so the bg video has time to advance.
   They float over the fixed canvas — no own background. */
.scene {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
}
.scene__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.scene--full { justify-content: center; }
.scene--full > * { max-width: var(--max); width: 100%; margin: 0 auto; }
.scene--center { justify-content: center; text-align: center; }
.scene--left  { justify-content: flex-start; }
.scene--right { justify-content: flex-end; }

.scene--hero { min-height: 100vh; padding-top: 0; }
.scene--hero .scene__inner { padding-top: 12vh; }

/* ── SCROLL HINT ───────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(245,241,234,0.6);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scroll-hint__line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(245,241,234,0.6), transparent);
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%      { transform: scaleY(0.4); transform-origin: top; }
}

/* ── CARDS (frosted, sit over the video) ───────────── */
.card {
  max-width: 560px;
  width: 100%;
  padding: 48px clamp(28px, 4vw, 56px);
  border-radius: var(--card-radius);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(245,241,234,0.18);
}
.card--wide { max-width: 720px; }
.card--bone {
  background: rgba(245,241,234,0.94);
  color: var(--ink);
  border-color: rgba(14,14,16,0.08);
}
.card--dark {
  background: rgba(14,14,16,0.55);
  color: var(--bone);
  border-color: rgba(245,241,234,0.14);
}
.card__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.85;
}
.card__kicker .icon { width: 18px; height: 18px; opacity: 0.9; }
.card__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.card__title em { font-style: italic; font-weight: 300; color: var(--wine); }
.card--dark .card__title em { color: var(--bone); opacity: 0.78; }
.card__text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.card__text em { color: var(--wine); }
.card--dark .card__text em { color: var(--bone); }
.card__signature {
  margin-top: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  opacity: 0.6;
}
/* Scoped CTAs sitting at the bottom of cards/sections */
.card > .btn,
.disc-list + .btn,
.stores + .btn { margin-top: 28px; }
.quote > .btn  { margin-top: 32px; }

/* ── METRICS BAND ──────────────────────────────────── */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 56px clamp(28px, 4vw, 56px);
  background: rgba(245,241,234,0.92);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-radius: var(--card-radius);
  color: var(--ink);
  border: 1px solid rgba(14,14,16,0.06);
}
.metric { display: flex; flex-direction: column; gap: 8px; }
.metric__icon { color: var(--wine); margin-bottom: 6px; }
.metric__num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.metric__lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ── JOURNEY · MOUNTAIN RANGE OF 4 STEPS ───────────── */
/* Outer wrapper is tall — its height is what gets "spent"
   while the inner sticky pane is pinned to the viewport.
   Total height ≈ 360vh: ~60vh of intro travel + 300vh
   to reveal the 4 peaks (75vh each). */
.journey-pin {
  position: relative;
  width: 100%;
  height: 360vh;
}
.journey-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;          /* vertical center of the whole block */
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) var(--gutter);
  overflow: hidden;
}
/* Mobile: drop the pin entirely. Cards stack vertically and reveal
   on scroll like everything else. Mountains stay as a small visual. */
@media (max-width: 720px) {
  .journey-pin { height: auto; min-height: 100vh; padding: 80px 0 40px; }
  .journey-pin__sticky {
    position: static;
    height: auto;
    padding: 0 18px;
  }
  .journey { gap: 24px; }
  .journey__head { margin-bottom: 0; }
  .journey__svg { height: 100px; }
  .journey__steps { grid-template-columns: 1fr; }
  /* On mobile, all peaks and steps appear immediately when section enters,
     not gated by scroll progress (since we don't have a pin). */
  .journey__path { stroke-dashoffset: 0 !important; }
  .journey__peak { opacity: 1 !important; transform: scale(1) !important; }
  .jstep { opacity: 1 !important; transform: none !important; }
  .journey__head { transform: none !important; }
}
.journey {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Tight gap between title and the mountain so they read as one block. */
.journey__head  { margin-bottom: clamp(-20px, -1vw, 0px); }
/* Keep the original distance between mountain and step cards. */
.journey__map   { margin-bottom: clamp(8px, 1.4vw, 20px); }
.journey__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  /* --shrink ranges 1 → 0.5, set from JS by scroll progress.
     Drives the title size and pulls the steps grid upward. */
  --shrink: 1;
  transform: scale(var(--shrink));
  transform-origin: top center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.journey__head .kicker {
  opacity: var(--shrink);
  transition: opacity 0.25s ease;
}
.journey__map {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-self: center;
  /* The whole map ramps in once it enters the viewport */
  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);
}
.journey__map.is-in { opacity: 1; transform: translateY(0); }

.journey__svg {
  display: block;
  width: 100%;
  height: clamp(120px, 16vw, 200px);
  overflow: visible;
}
.journey__ground {
  stroke: rgba(245,241,234,0.18);
  stroke-width: 1;
  stroke-dasharray: 2 6;
}
.journey__path {
  fill: none;
  stroke: var(--bone);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.35));
  /* Drawn-on-scroll via stroke-dashoffset, set in JS */
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.journey__peak {
  fill: var(--bone);
  stroke: var(--wine);
  stroke-width: 2;
  opacity: 0;
  transform-origin: center;
  transform: scale(0);
  transition:
    opacity 0.45s ease-out,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.journey__peak.is-on {
  opacity: 1;
  transform: scale(1);
}

/* Step cards under each peak */
.journey__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.jstep {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 22px;
  border-radius: 18px;
  background: rgba(14,14,16,0.58);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(245,241,234,0.14);
  color: var(--bone);
  opacity: 0;
  transform: scale(0.86) translateY(20px);
  transform-origin: top center;
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.jstep.is-on {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.jstep__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--bone);
  opacity: 0.55;
}
.jstep__icon {
  width: 28px;
  height: 28px;
  color: var(--bone);
  opacity: 0.95;
  margin-bottom: 4px;
}
.jstep__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.018em;
  line-height: 1.05;
}
.jstep__copy {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245,241,234,0.78);
}

@media (max-width: 880px) {
  .journey__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .journey__steps { grid-template-columns: 1fr; gap: 16px; }
  .journey__svg { height: 140px; }
}
@media (prefers-reduced-motion: reduce) {
  .journey__map, .jstep, .journey__peak {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .journey__path { stroke-dasharray: none; stroke-dashoffset: 0; }
}

/* ── METHOD STEPS ──────────────────────────────────── */
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateX(var(--from, -40px));
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms);
  will-change: opacity, transform;
}
.step[data-step-from="left"]  { --from: -64px; }
.step[data-step-from="right"] { --from:  64px; }
.step.is-in {
  opacity: 1;
  transform: translateX(0);
}
.step:last-child { border-bottom: 1px solid var(--line); }
@media (prefers-reduced-motion: reduce) {
  .step { opacity: 1; transform: none; transition: none; }
}
.step__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--wine);
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.step h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ── DISCIPLINES LIST INSIDE CARD ──────────────────── */
.disc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.disc-list li {
  display: grid;
  grid-template-columns: 36px 22px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line-light);
}
.disc-list__icon { width: 22px; height: 22px; opacity: 0.85; }
.disc-list li:last-child { border-bottom: 1px solid var(--line-light); }
.disc-list span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  opacity: 0.5;
}
.disc-list p {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -0.018em;
  font-weight: 400;
  line-height: 1.05;
}
.disc-list em {
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  opacity: 0.7;
  text-align: right;
  max-width: 280px;
}
@media (max-width: 640px) {
  .disc-list li { grid-template-columns: 28px 22px 1fr; }
  .disc-list em { grid-column: 2 / -1; text-align: left; max-width: none; }
}

/* ── PROGRAM STATS ─────────────────────────────────── */
.program-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.program-stats > div { display: flex; flex-direction: column; gap: 4px; }
.program-stats span {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.program-stats p {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── QUOTE / TESTIMONIAL ───────────────────────────── */
.quote {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.quote p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--bone);
  text-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.quote em { font-style: italic; font-weight: 300; opacity: 0.78; }
.quote footer {
  margin-top: 32px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted-light);
}

/* ── PRICING ──────────────────────────────────────── */
.pricing { width: 100%; }
.pricing__head {
  text-align: center;
  margin-bottom: 56px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 40px;
  border-radius: var(--card-radius);
  border: 1px solid;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  transition: transform 0.4s ease;
}
.plan:hover { transform: translateY(-4px); }
.plan--bone {
  background: rgba(245,241,234,0.96);
  color: var(--ink);
  border-color: rgba(14,14,16,0.06);
}
.plan--ink {
  background: rgba(14,14,16,0.78);
  color: var(--bone);
  border-color: rgba(245,241,234,0.12);
}
.plan__badge {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--wine);
  color: var(--bone);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.plan__head h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.plan__head p { font-size: 14px; opacity: 0.7; }
.plan__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.plan--bone .plan__price { border-color: rgba(14,14,16,0.1); }
.plan--ink  .plan__price { border-color: rgba(245,241,234,0.14); }
.plan__amount {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.plan__period { font-size: 13px; letter-spacing: 0.06em; opacity: 0.7; }
.plan__total  { font-size: 12px; margin-top: 8px; opacity: 0.6; letter-spacing: 0.04em; }
.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
}
.plan__features li {
  position: relative;
  padding-left: 22px;
  opacity: 0.88;
}
.plan__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.plan .btn { align-self: flex-start; }
.pricing__note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .pricing__grid { grid-template-columns: 1fr; }
}

/* ── STORES ────────────────────────────────────────── */
.stores { display: flex; gap: 20px; margin-top: 24px; }
.stores a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.stores a:hover { opacity: 1; }

/* ── FINALE ───────────────────────────────────────── */
.finale {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(14,14,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--bone);
  padding: clamp(60px, 8vw, 100px) var(--gutter) 32px;
  border-top: 1px solid rgba(245,241,234,0.08);
}
.footer__cols {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.5);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}
.footer__cols a:hover { opacity: 1; }
.footer__bottom {
  max-width: var(--max);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(245,241,234,0.12);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(245,241,234,0.5);
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
