/* =============================================================
   1. Tokens
   ============================================================= */
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  /* palette — burgundy + cream is the identity. blush is a rare accent only. */
  --cream:        #F7F1E6;
  --cream-2:      #EEE3D1;
  --paper:        #FCFAF5;
  --burgundy:     #500513;
  --burgundy-2:   #34030C;
  --burgundy-3:   #6C1425;
  --blush:        #F2E6EB;
  --blush-line:   #E4CBD3;
  --ink:          #1D1512;
  --ink-soft:     #3A2C27;
  --ink-mute:     #7C6C62;
  --cream-text:   #F6EEE2;
  --cream-mute:   rgba(246,238,226,0.72);
  --line:         rgba(29,21,18,0.13);
  --line-strong:  rgba(29,21,18,0.24);
  --line-on-dark: rgba(246,238,226,0.22);

  --script: 'Pinyon Script', cursive;
  --serif:  'Playfair Display', Georgia, 'Iowan Old Style', serif;
  --head:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --sans:   'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --blush-solid:  #F0E7EB;

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

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --nav-h: 84px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

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; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.22; }

::selection { background: var(--burgundy); color: var(--cream-text); }

:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--burgundy); color: var(--cream-text);
  border-radius: 6px; font-weight: 600; font-size: .9rem;
}
.skip-link:focus { top: 1rem; }

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Mirrored-texture decorative backdrop — adds soft "block" texture behind flat text sections.
   Masked + blurred so it fades into the section color with no visible seam or edge. */
.bg-mirror {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(120% 110% at 50% 50%, #000 45%, transparent 96%);
  mask-image: radial-gradient(120% 110% at 50% 50%, #000 45%, transparent 96%);
}
.bg-mirror::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--bg-mirror-img, url('assets/img/texture-marble.webp'));
  background-size: cover;
  background-position: center;
  filter: blur(6px) saturate(1.05);
}
.bg-mirror.tex-silk-1 { --bg-mirror-img: url('assets/img/texture-silk-1.webp'); }
.bg-mirror.tex-silk-2 { --bg-mirror-img: url('assets/img/texture-silk-2.webp'); }
.bg-mirror.is-subtle::before { opacity: .45; }
.bg-mirror.is-blush { background: var(--blush-solid); }
.bg-mirror.on-dark::before {
  opacity: .28;
  mix-blend-mode: soft-light;
  filter: blur(6px) saturate(1.3);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--head);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .55;
}

.pillars {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6em;
  font-family: var(--head);
  font-size: clamp(.78rem, 1.9vw, 1rem);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.pillars span { opacity: .5; }

/* Pillars as a slow seamless marquee — used in the hero */
.pillars-marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.pillars-marquee-track {
  display: flex; flex-wrap: nowrap; width: max-content;
  gap: .6em;
  font-family: var(--head);
  font-size: clamp(.78rem, 1.9vw, 1rem);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: pillarsMarquee 26s linear infinite;
}
.pillars-marquee-track span { opacity: .55; }
@keyframes pillarsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.divider-hair {
  width: 1px; height: 34px;
  background: currentColor;
  opacity: .3;
  margin-inline: auto;
}

/* =============================================================
   4. Typography
   ============================================================= */
.h-display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.2;
}
.h-script {
  font-family: var(--script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* Brand-name treatment — tracked serif caps, used for "Becoming Club" moments */
.h-brand {
  font-family: var(--serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.kicker-script {
  font-family: var(--script);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--burgundy);
  line-height: 1;
  display: inline-block;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  --btn-bg: var(--burgundy);
  --btn-fg: var(--cream-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 1.05em 2.15em;
  font-family: var(--head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(20,3,8,0.16);
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft),
              background .35s var(--ease-out), color .35s var(--ease-out);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(20,3,8,0.24);
}
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream-text);
  border-color: rgba(246,238,226,0.55);
}
.btn-ghost:hover {
  background: var(--cream-text);
  color: var(--burgundy);
  border-color: var(--cream-text);
}

.btn-outline-dark {
  --btn-bg: transparent;
  --btn-fg: var(--burgundy);
  border-color: var(--burgundy);
  box-shadow: none;
}
.btn-outline-dark:hover {
  background: var(--burgundy);
  color: var(--cream-text);
}

.btn-cream {
  --btn-bg: var(--cream);
  --btn-fg: var(--burgundy);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: var(--burgundy-3);
  color: var(--cream-text);
  border-color: var(--burgundy-3);
}

.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);
}

.btn-caption {
  display: block;
  margin-top: .9rem;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--cream-mute);
}
.btn-caption.on-light { color: var(--ink-mute); }

/* Custom cursor */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .25s 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; }
.cursor-dot { width: 5px; height: 5px; margin: -2.5px; background: var(--cream); border-radius: 50%; }
.cursor-ring {
  width: 30px; height: 30px; margin: -15px; border: 1px solid var(--cream); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* Nav */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-nav.is-solid {
  background: rgba(247,241,230,0.92);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px -20px rgba(20,3,8,0.25);
}
.nav-inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo { display: block; height: 30px; width: auto; transition: opacity .4s; }
.nav-logo img { height: 100%; width: auto; display: block; }
.nav-logo-cream { opacity: 1; }
.nav-logo-burgundy { opacity: 0; position: absolute; top: 0; left: 0; }
.site-nav.is-solid .nav-logo-cream { opacity: 0; }
.site-nav.is-solid .nav-logo-burgundy { opacity: 1; }
.nav-logo-wrap { position: relative; height: 30px; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-family: var(--head);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-text);
  transition: color .4s;
}
.site-nav.is-solid .nav-links { color: var(--ink-soft); }
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-link { position: relative; padding: .3rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-soft);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: none;
}
@media (min-width: 960px) {
  .nav-cta {
    display: inline-flex;
    padding: .7em 1.5em;
    font-size: .7rem;
  }
}

.nav-burger {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: .5rem; margin-right: -.5rem;
  margin-left: auto;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span {
  width: 22px; height: 1.5px; background: var(--cream-text);
  transition: background .4s, transform .4s, opacity .4s;
}
.site-nav.is-solid .nav-burger span { background: var(--ink); }
.mobile-menu.is-open ~ .site-nav .nav-burger span:nth-child(1),
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--burgundy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--cream-text);
}
.mobile-menu .btn { margin-top: 1rem; }

/* Chips */
.chip {
  display: inline-block;
  padding: .5em 1.1em;
  font-family: var(--head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--blush);
  color: var(--burgundy);
  border-radius: 999px;
  border: 1px solid var(--blush-line);
}

/* WhatsApp CTA button */
.btn-whatsapp {
  gap: .55em;
}
.btn-whatsapp svg { flex: none; }

/* =============================================================
   6. Sections — shared
   ============================================================= */
section { position: relative; }
.section-pad { padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.on-dark { background: var(--burgundy); color: var(--cream-text); }
.on-cream { background: var(--cream); color: var(--ink); }
.on-cream-2 { background: var(--blush-solid); color: var(--ink); }
.on-blush { background: var(--blush-solid); color: var(--ink); }

.section-head {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.section-head .h-display { font-size: clamp(1.9rem, 4.6vw, 3.2rem); }
.para-quien-logo { width: clamp(150px, 26vw, 220px); height: auto; margin-inline: auto; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
  color: var(--cream-text);
}
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.06);
  animation: ambientZoom 32s ease-in-out infinite;
}
@keyframes ambientZoom {
  0%, 100% { transform: scale(1.06) translate3d(0,0,0); }
  50%      { transform: scale(1.14) translate3d(-1%, -1%, 0); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(35,2,8,0.72) 0%, rgba(35,2,8,0.4) 24%, rgba(35,2,8,0.54) 48%, rgba(35,2,8,0.99) 100%);
}
.hero-scrim::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 46% at 50% 46%, rgba(20,1,5,0.42) 0%, transparent 72%);
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding-block: calc(var(--nav-h) + 2.5rem) clamp(3rem, 7vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
}

.hero-title { line-height: 0; }
.hero-logo-img {
  width: clamp(240px, 58vw, 480px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 4px 30px rgba(8,0,3,0.5));
}

.hero-tagline {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: .005em;
  line-height: 1.35;
  max-width: 26ch;
  margin-top: -.4rem;
  text-shadow: 0 2px 18px rgba(8,0,3,0.45);
}

.hero-sub {
  max-width: 50ch;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  color: var(--cream-text);
  font-weight: 400;
  line-height: 1.55;
  text-shadow: 0 2px 16px rgba(8,0,3,0.55);
}

@media (max-width: 539px) {
  .hero {
    align-items: center;
  }
  .hero-inner {
    padding-block: calc(var(--nav-h) + 1.25rem) 2.5rem;
    gap: 1.1rem;
  }
  .hero-logo-img {
    width: 68vw;
  }
  .hero-tagline {
    max-width: 22ch;
  }
  .hero-sub {
    max-width: 46ch;
    font-size: .74rem;
  }
}

.hero-pillars-wrap { color: var(--cream-text); width: 100%; margin-top: .1rem; }

.hero-meta {
  font-family: var(--head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-shadow: 0 2px 14px rgba(8,0,3,0.4);
}
.hero-meta .sep { opacity: .5; margin-inline: .5em; }

.hero-cta-wrap { margin-top: .4rem; }

.hero-scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; z-index: 2;
  transform: translateX(-50%);
  width: 1px; height: 46px;
  background: linear-gradient(180deg, rgba(246,238,226,0.9), transparent);
}
.hero-scroll-cue::after {
  content: "";
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cream-text);
  animation: cueMove 2.2s ease-in-out infinite;
}
@keyframes cueMove {
  0%   { top: 0; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

/* =============================================================
   8. "Hay un momento" section
   ============================================================= */
.momento-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 880px;
  margin-inline: auto;
}
.momento-head { text-align: center; }
.momento-head .h-display {
  font-size: clamp(1.7rem, 4.6vw, 3rem);
  color: var(--burgundy);
}

.momento-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  text-align: center;
}
.momento-body p { max-width: 52ch; margin-inline: auto; }

.momento-marquee {
  width: 100%;
  overflow: hidden;
  margin-block: .4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.momento-marquee-track {
  display: flex; flex-wrap: nowrap; width: max-content;
  gap: .7em;
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  letter-spacing: .04em;
  color: var(--burgundy);
  white-space: nowrap;
  animation: pillarsMarquee 22s linear infinite;
}
.momento-marquee-track span:nth-child(even) { opacity: .35; font-weight: 500; }

.momento-distancia {
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(1.8rem, 4.5vw, 2.6rem) clamp(1.6rem, 5vw, 2.4rem);
  border-radius: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  color: var(--cream-text);
  background: rgba(80, 5, 19, 0.88);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .momento-distancia {
    background: rgba(80, 5, 19, 0.72);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
  }
}
.momento-distancia p { font-size: clamp(1rem, 1.6vw, 1.16rem); max-width: 48ch; margin-inline: auto; }

.momento-close {
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line-strong);
  text-align: center;
}
.momento-close .h-display {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  color: var(--ink);
}

/* =============================================================
   9. "Ahí empieza Becoming Club" — pasos
   ============================================================= */
.method-head { text-align: center; }
.method-head .eyebrow { margin-bottom: .6rem; }
.method-brand-img {
  width: clamp(180px, 32vw, 300px);
  height: auto;
  margin-inline: auto;
}

.method-steps {
  max-width: 760px;
  margin: clamp(3rem, 7vw, 4.5rem) auto 0;
  display: flex;
  flex-direction: column;
}
.method-step {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 4vw, 2.5rem);
  padding-block: clamp(1.3rem, 3vw, 1.8rem);
  border-bottom: 1px solid var(--line-on-dark);
}
.method-step:first-child { border-top: 1px solid var(--line-on-dark); }
.method-step-num {
  flex: none;
  font-family: var(--head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--burgundy-3);
  color: #B98A94;
}
.method-step-text h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 600;
  color: var(--cream-text);
}
.method-step-text p {
  margin-top: .25rem;
  color: var(--cream-mute);
  font-size: clamp(.92rem, 1.4vw, 1.05rem);
}

.method-cta { margin-top: clamp(2.5rem, 6vw, 3.5rem); text-align: center; }

/* =============================================================
   9b. "Más que un evento" — video
   ============================================================= */
.momento2 {
  position: relative;
  min-height: 60svh;
  padding-block: clamp(3rem, 8vw, 5rem);
  display: flex;
  align-items: center;
  overflow: clip;
  color: var(--ink);
}
.momento2-bg { position: absolute; inset: 0; }
.momento2-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.momento2-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,241,230,.55) 0%, rgba(247,241,230,.3) 45%, rgba(247,241,230,.6) 100%);
}
.momento2-inner { position: relative; z-index: 1; }
.momento2-card {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2.4rem, 6vw, 3.8rem);
  border-radius: 24px;
  background: rgba(252, 250, 245, 0.4);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 40px 80px -30px rgba(30,4,12,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .momento2-card {
    background: rgba(252, 250, 245, 0.24);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    backdrop-filter: blur(22px) saturate(170%);
  }
}
.momento2-eyebrow {
  display: block;
  font-family: var(--head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: .7;
  margin-bottom: 1rem;
}
.momento2-title {
  color: var(--burgundy);
  font-size: clamp(1.8rem, 4.8vw, 3rem);
}
.momento2-sub {
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(80,5,19,0.15);
  color: var(--ink-soft);
  font-size: clamp(.96rem, 1.6vw, 1.1rem);
  max-width: 42ch;
  margin-inline: auto;
}

/* =============================================================
   10. Qualifier — es para vos si / no es para vos
   ============================================================= */
.qualifier-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 1040px;
  margin-inline: auto;
}
@media (min-width: 860px) { .qualifier-grid { grid-template-columns: 1fr 1fr; } }

/* Glass panels — each column is its own frosted card, clearly separated */
.qualifier-col {
  position: relative;
  padding: clamp(2rem, 4.5vw, 2.8rem);
  border-radius: 20px;
  border: 1px solid rgba(246,238,226,0.22);
  background: rgba(246,238,226,0.06);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .qualifier-col {
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
  }
}
.qualifier-col.is-yes {
  border-color: rgba(246,238,226,0.32);
  background: rgba(246,238,226,0.1);
}
.qualifier-col.is-no { opacity: .82; }

.qualifier-col h3 {
  font-family: var(--head);
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--cream-text);
}
.qualifier-col.is-no h3 { color: var(--cream-mute); }

.qualifier-list { display: flex; flex-direction: column; gap: 1rem; }
.qualifier-list li {
  display: flex; gap: .85rem; align-items: flex-start;
  font-size: 1rem; line-height: 1.55;
  color: var(--cream-mute);
}
.qualifier-col.is-yes li { color: var(--cream-text); }

.qualifier-mark {
  flex: none; margin-top: .5em;
  width: 14px; height: 1px;
  background: currentColor;
  opacity: .6;
}

.qualifier-pull {
  max-width: 640px;
  margin: clamp(3.5rem, 8vw, 6rem) auto 0;
  text-align: center;
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
  border-top: 1px solid var(--line-on-dark);
}
.qualifier-pull p {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--cream-text);
  line-height: 1.3;
}

/* =============================================================
   11. Experience collage
   ============================================================= */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(.6rem, 1.6vw, 1rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
@media (min-width: 720px) { .experience-grid { grid-template-columns: repeat(3, 1fr); } }

.exp-cell {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  isolation: isolate;
}
.exp-cell.is-tall { grid-row: span 1; }
@media (min-width: 720px) {
  .exp-cell.is-wide { grid-column: span 2; aspect-ratio: 16 / 11; }
}

.exp-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-soft), filter .6s var(--ease-soft);
}
.exp-cell:hover img { transform: scale(1.08); filter: saturate(1.1) brightness(1.02); }
.exp-cell img.is-pos-high { object-position: center 42%; }

.exp-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(52,3,12,0) 45%, rgba(52,3,12,0.72) 100%);
  z-index: 1;
  transition: opacity .5s;
}

.exp-label {
  position: absolute; left: 1.2rem; bottom: 1.1rem; z-index: 2;
  font-family: var(--head);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-text);
}

.exp-cell.is-type {
  background: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.exp-cell.is-type.alt {
  background: var(--ink) url('assets/img/texture-marble.webp') center / cover;
  position: relative;
}
.exp-cell.is-type.alt::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(29,21,18,0.72), rgba(80,5,19,0.62));
}
.exp-cell.is-type.alt .exp-type-inner { position: relative; z-index: 1; }
.exp-cell.is-type .exp-type-word {
  font-family: var(--script);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--cream-text);
  text-align: center;
  max-width: 100%;
  padding-inline: .5rem;
}
.exp-cell.is-type .exp-label { position: static; margin-top: 1rem; color: var(--cream-mute); }
.exp-cell.is-type-inner { display: flex; flex-direction: column; align-items: center; }

.experience-quote {
  max-width: 700px;
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.4;
  color: var(--burgundy);
  line-height: 1.35;
}

/* =============================================================
   12. Founder
   ============================================================= */
.founder {
  position: relative;
  color: var(--cream-text);
  overflow: clip;
}
.founder-bg { position: absolute; inset: 0; }
.founder-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 32% 45%; }
.founder-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(52,3,12,0.62) 0%, rgba(52,3,12,0.5) 45%, rgba(52,3,12,0.8) 100%);
}

.founder-inner {
  position: relative; z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.founder-inner .h-display {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  text-shadow: 0 2px 20px rgba(8,0,3,0.65);
}
.founder-body {
  display: flex; flex-direction: column; gap: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: var(--cream-mute);
  text-shadow: 0 2px 16px rgba(8,0,3,0.6);
}
.founder-body .emphasis { color: var(--cream-text); }

/* Full-bleed marquee that breaks out of the narrow founder column */
.founder-marquee {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-block: clamp(2.2rem, 6vw, 3.5rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.founder-marquee-track {
  display: flex; flex-wrap: nowrap; width: max-content;
  gap: 1em;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 4.4vw, 2.8rem);
  color: var(--blush);
  white-space: nowrap;
  animation: pillarsMarquee 34s linear infinite;
}
.founder-marquee-track span:nth-child(even) { opacity: .4; font-style: normal; font-family: var(--head); font-size: .5em; align-self: center; }
.founder-signature {
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--cream-text);
}

/* =============================================================
   13. Event details
   ============================================================= */
.event-envelope-deco {
  display: block;
  width: clamp(90px, 14vw, 130px);
  height: auto;
  margin: 0 auto clamp(1rem, 3vw, 1.5rem);
  filter: drop-shadow(0 18px 26px rgba(30,4,12,0.28));
}

.event-card {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  background: rgba(252, 250, 245, 0.6);
  box-shadow: 0 30px 70px -30px rgba(30,4,12,0.35);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .event-card {
    background: rgba(252, 250, 245, 0.42);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    backdrop-filter: blur(22px) saturate(160%);
  }
}
.event-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.event-logo-img { width: clamp(140px, 24vw, 210px); height: auto; }
.event-card .event-date { font-family: var(--head); font-weight: 700; letter-spacing: .1em; font-size: .95rem; color: var(--ink-mute); }
.event-card .event-desc { max-width: 46ch; color: var(--ink-soft); font-size: 1.05rem; }

.event-card .event-facts {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.6rem;
  font-family: var(--head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-soft);
}
.event-card .event-facts span { display: inline-flex; align-items: center; gap: .5rem; }

.event-includes {
  width: 100%;
  max-width: 440px;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(80,5,19,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.event-includes-eyebrow {
  font-family: var(--head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: .8;
}
.event-includes-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  text-align: left;
}
.event-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .95rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.event-includes-mark {
  flex: none;
  margin-top: .15em;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  color: var(--cream-text);
  background: var(--burgundy);
}

.event-invest {
  font-family: var(--head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.event-cta { margin-top: .5rem; }

/* =============================================================
   14. Reservar (form)
   ============================================================= */
.reservar-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.reservar-head .h-display { font-size: clamp(1.8rem, 4.4vw, 2.8rem); }
.reservar-head p { margin-top: 1rem; color: var(--cream-mute); max-width: 46ch; margin-inline: auto; }

.reservar-whatsapp {
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
}

/* =============================================================
   15. Closing
   ============================================================= */
.closing {
  min-height: 78svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: radial-gradient(120% 100% at 50% 0%, var(--burgundy-3) 0%, var(--burgundy) 46%, var(--burgundy-2) 100%);
  color: var(--cream-text);
}
.closing-inner { max-width: 760px; }
.closing .h-display {
  font-size: clamp(1.7rem, 5.2vw, 3.2rem);
  line-height: 1.12;
}
.closing .h-display + .h-display { margin-top: .2em; color: var(--blush); opacity: .9; }
.closing-date {
  margin-top: 2rem;
  font-family: var(--head);
  font-weight: 600;
  letter-spacing: .12em;
  font-size: clamp(.85rem, 1.6vw, 1.05rem);
  color: var(--cream-mute);
}
.closing-cta { margin-top: 2.2rem; }

/* =============================================================
   16. Footer
   ============================================================= */
.site-footer {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--burgundy-2);
  color: var(--cream-mute);
}
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.footer-logo { height: 26px; width: auto; opacity: .9; }
.footer-meta { font-size: .82rem; letter-spacing: .02em; text-align: right; }
.footer-meta a { border-bottom: 1px solid rgba(246,238,226,0.3); }

/* =============================================================
   17. Responsive tweaks
   ============================================================= */
@media (max-width: 539px) {
  .hero-inner { gap: 1.25rem; }

  .btn {
    white-space: normal;
    text-align: center;
    max-width: 92vw;
    padding: 1em 1.5em;
    font-size: .74rem;
  }

  .event-envelope-deco { width: clamp(70px, 16vw, 90px); margin-bottom: .75rem; }
  .event-card { gap: .9rem; padding: 1.6rem 1.4rem; }
  .event-includes { padding-top: 1.1rem; gap: .8rem; }
  .event-includes-list { gap: .55rem; }
}

/* =============================================================
   18. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
  .hero-scroll-cue::after { animation: none; }
}
