/* ═══════════════════════════════════════════════════════════
   CÓDIGO 7 — Enalma
   Rediseño de landing page
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Color — paleta Enalma */
  --ink:        #2A2A2A;
  --ink-soft:   #4A4A4A;
  --paper:      #E8DCC6;
  --paper-warm: #E5D4C1;
  --clay:       #C85A47;
  --clay-deep:  #4B1D1D;
  --moss:       #D6A6A3;
  --muted:      #7C5A5A;
  --line:       rgba(42, 42, 42, .12);
  --line-soft:  rgba(42, 42, 42, .07);

  /* Type */
  --serif: 'Cormorant Garamond', serif;
  --sans:  'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Space */
  --gut:  clamp(1.25rem, 5vw, 3rem);
  --sec:  clamp(5rem, 12vw, 10.5rem);
  --maxw: 1240px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, .95rem + .2vw, 1.075rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol, dl, dd, dt { margin: 0; padding: 0; }
li { list-style: none; }
img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--clay); color: var(--paper); }

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* ── Grain ──────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Typography primitives ──────────────────────────────── */
.display {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 1.35rem + 3.6vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -.022em;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--clay); }

.eyebrow,
.section-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.prose { max-width: 46ch; color: var(--muted); display: grid; gap: 1.05em; }
.prose p { font-size: 1.0625rem; line-height: 1.72; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose a { color: var(--clay); text-decoration: underline; text-underline-offset: 3px; }

.sec-head { display: grid; gap: 1.1rem; margin-bottom: clamp(2.75rem, 6vw, 4.75rem); }
.sec-head--center { justify-items: center; text-align: center; }
.sec-head__note { font-size: .9rem; color: var(--muted); }

/* ── Buttons & links ────────────────────────────────────── */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.05rem 2rem;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 999px;
  font: inherit;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .045em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { --bg: var(--clay); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--sm  { padding: .68rem 1.3rem; font-size: .74rem; }
.btn--lg  { padding: 1.2rem 2.6rem; font-size: .92rem; }
.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { --bg: var(--ink); --fg: var(--paper); border-color: var(--ink); }
.btn--light { --bg: var(--paper); --fg: var(--ink); }
.btn--light:hover { --bg: var(--clay); --fg: var(--paper); }

.link-quiet {
  font-size: .875rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.link-quiet:hover { color: var(--clay); border-color: var(--clay); }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  transition: background .4s var(--ease), border-color .4s var(--ease),
              backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(232, 220, 198, .88);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-soft);
}

.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1rem var(--gut);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__brand { display: flex; align-items: center; margin-right: auto; }
.nav__logo { height: 24px; width: auto; display: block; }

.nav__mark {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1;
  padding-top: 1px;
}

.nav__links { display: flex; gap: 1.9rem; }
.nav__links a {
  position: relative;
  font-size: .82rem;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--ink); }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  place-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

.nav__mobile {
  display: grid;
  gap: .35rem;
  padding: .5rem var(--gut) 1.75rem;
  background: rgba(232, 220, 198, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a {
  font-family: var(--serif);
  font-size: 1.6rem;
  padding: .3rem 0;
  border-bottom: 1px solid var(--line-soft);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 8%,  rgba(200, 90, 71, .17) 0%, transparent 58%),
    radial-gradient(90% 70% at 12% 96%, rgba(214, 166, 163, .18) 0%, transparent 60%),
    var(--paper-warm);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  justify-items: start;
}
.hero__inner .eyebrow {
  width: 100%;
  text-align: center;
}

.hero__mandala {
  position: absolute;
  z-index: 1;
  top: 50%; right: -14vw;
  translate: 0 -50%;
  width: min(72vw, 720px);
  aspect-ratio: 1;
  opacity: .3;
  pointer-events: none;
}
.hero__mandala svg { width: 100%; height: 100%; }
.hero__mandala circle,
.hero__mandala ellipse {
  fill: none;
  stroke: var(--clay-deep);
  stroke-width: 1;
}
.hero__mandala ellipse { stroke: var(--moss); opacity: .75; }
.mandala__spin { animation: spin 160s linear infinite; transform-origin: center; }
.mandala__petals { animation: spin 220s linear infinite reverse; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__title { display: block; }
.hero__title img {
  display: block;
  width: clamp(230px, 32vw, 480px);
  height: auto;
}

.hero__lead {
  font-size: clamp(1.05rem, .95rem + .55vw, 1.4rem);
  line-height: 1.55;
  max-width: 34ch;
  color: var(--ink-soft);
}
.hero__lead em { font-family: var(--serif); font-size: 1.12em; color: var(--muted); }

.hero__actions { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  width: 100%;
  max-width: 100%;
  margin-top: clamp(1rem, 3vw, 2.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.hero__meta > div {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1rem;
}
.hero__metaIcon {
  display: block;
  flex: none;
  width: 34px;
  height: 34px;
  color: var(--clay);
}
.hero__metaIcon svg { width: 100%; height: 100%; }

.hero__meta dt {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.hero__meta dd { font-family: var(--serif); font-size: 1.2rem; line-height: 1.25; white-space: nowrap; }

/* ── Manifiesto ─────────────────────────────────────────── */
.manifesto { padding: var(--sec) 0; }
.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.manifesto__image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  box-shadow: 0 30px 70px -35px rgba(42, 42, 42, .5);
}
.manifesto__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.manifesto__body { display: grid; gap: clamp(1.75rem, 4vw, 2.75rem); }

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.pillars li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  color: var(--muted);
}
.pillars__icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--clay);
}
.pillars__icon svg { width: 100%; height: 100%; }
.pillars span {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--clay);
}

/* ── Dimensiones ────────────────────────────────────────── */
.dims { padding: var(--sec) 0; }

.dims__grid {
  --dim-rgap: clamp(1.75rem, 3.5vw, 2.5rem);
  --dim-cgap: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--dim-rgap) var(--dim-cgap);
}

.dim-card {
  flex: 0 1 calc(25% - (3 * var(--dim-cgap) / 4));
  min-width: 150px;
}

.dim-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: .2rem;
}

.dim-card__imgWrap {
  position: relative;
  width: 100%;
  margin-bottom: 3.25rem;
}

.dim-card__img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  border-radius: 999px 999px 14px 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px -26px rgba(42, 42, 42, .45);
}

.dim-card__img--mente     { background-color: #200a09; background-image: url("images/dimensiones/mente.jpeg"); }
.dim-card__img--espiritu  { background-color: #2c2130; background-image: url("images/dimensiones/espiritu.jpeg"); }
.dim-card__img--corazon   { background-color: #8a6249; background-image: url("images/dimensiones/corazon.jpeg"); }
.dim-card__img--cuerpo    { background-color: #1f3a1f; background-image: url("images/dimensiones/cuerpo.jpeg"); }
.dim-card__img--vocacion  { background-color: #1b2350; background-image: url("images/dimensiones/vocacion.jpeg"); }
.dim-card__img--deseo     { background-color: #37453a; background-image: url("images/dimensiones/deseo.jpeg"); }
.dim-card__img--imagen    { background-color: #a9825c; background-image: url("images/dimensiones/imagen.jpeg"); }

.dim-card__icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  display: grid;
  place-items: center;
  width: clamp(76px, 12vw, 92px);
  height: clamp(76px, 12vw, 92px);
  border-radius: 50%;
  background: var(--paper-warm);
  color: var(--clay);
}
.dim-card__icon svg { width: 48%; height: 48%; }

.dim-card__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clay-deep);
}

.dim-card__desc {
  max-width: 22ch;
  font-size: .875rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ── Lo que vas a vivir ─────────────────────────────────── */
.live { padding: var(--sec) 0; background: var(--paper-warm); }

.live__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
}

.live__item {
  flex: 0 1 calc(20% - 1.75rem);
  min-width: 150px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: .5rem;
}

.live__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: .35rem;
  color: var(--clay);
}
.live__icon svg { width: 34px; height: 34px; }

.live__name {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}

.live__desc {
  max-width: 24ch;
  font-size: .875rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ── Incluye ────────────────────────────────────────────── */
.includes { padding: var(--sec) 0; }
.includes__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.includes__aside {
  display: grid;
  gap: 1.4rem;
  justify-items: start;
  position: sticky;
  top: 7rem;
}

.includes__list { display: grid; gap: 0; }
.includes__list li {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.includes__list li:first-child { border-top: 1px solid var(--line); }
.includes__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--clay);
  background: var(--paper);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.includes__icon svg { width: 19px; height: 19px; }
.includes__list li:hover .includes__icon {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--paper);
  transform: translateY(-2px);
}
.includes__list h3 { font-family: var(--serif); font-size: 1.4rem; line-height: 1.2; margin-bottom: .3rem; }
.includes__list p { font-size: .9375rem; color: var(--muted); }

/* ── Expertas ───────────────────────────────────────────── */
.experts { padding: var(--sec) 0; background: var(--paper-warm); }
.experts__grid {
  --exp-rgap: clamp(1.75rem, 3.5vw, 2.5rem);
  --exp-cgap: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--exp-rgap) var(--exp-cgap);
}
.expert {
  flex: 0 1 calc(25% - (3 * var(--exp-cgap) / 4));
  min-width: 200px;
  display: grid;
  align-content: start;
  align-items: start;
  gap: .4rem;
  text-align: left;
  transition: transform .4s var(--ease);
}
.expert:hover { transform: translateY(-5px); }

.expert__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: .6rem;
  display: grid;
  place-items: center;
  color: rgba(232, 220, 198, .6);
  background: linear-gradient(155deg, #D6A6A3, #7C5A5A);
  box-shadow: 0 20px 40px -26px rgba(42, 42, 42, .45);
}
.expert__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.expert__photoPlaceholder svg { width: 40%; height: 40%; }

.expert__dim {
  justify-self: center;
  padding: .3rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay);
  background: var(--paper);
}
.expert__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; line-height: 1.15; color: var(--ink); margin-top: .15rem; text-align: center; }
.expert__bio { font-size: .85rem; color: var(--muted); line-height: 1.55; }

.expert__ig {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .3rem;
  color: var(--muted);
  font-size: .82rem;
  transition: color .3s var(--ease);
}
.expert__ig svg { width: 18px; height: 18px; flex: none; }
.expert__ig:hover { color: var(--clay); }
.expert__ig--pending { opacity: .55; font-style: italic; }

/* ── Aliados ────────────────────────────────────────────── */
.allies { padding: var(--sec) 0; background: var(--paper-warm); }
.allies .sec-head { margin-bottom: clamp(2rem, 5vw, 3rem); }

.allies__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.allies__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(3rem, 7vw, 5.5rem);
  animation: allies-scroll 30s linear infinite;
}
.allies__marquee:hover .allies__track { animation-play-state: paused; }

.allies__logo {
  flex: none;
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .5;
  transition: opacity .3s var(--ease), filter .3s var(--ease);
}
.allies__logo:hover { opacity: 1; filter: grayscale(0); }

@keyframes allies-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Lugar ──────────────────────────────────────────────── */
.venue { padding: var(--sec) 0; }
.venue__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.venue__copy { display: grid; gap: 1.35rem; }
.venue__addr {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.venue__timeline {
  display: flex;
  gap: 1.25rem;
}
.venue__timeline li {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: .4rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line);
}
.venue__tIcon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--clay);
}
.venue__tIcon svg { width: 13px; height: 13px; }

.venue__tVal {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--clay);
}
.venue__tVal span {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: .3rem;
}
.venue__tVal--place {
  font-size: 1rem;
  font-style: italic;
}

.venue__timeline h3 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: -.005em;
}
.venue__timeline li > div {
  display: grid;
  gap: .3rem;
}
.venue__timeline li > div > p:last-child {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}

.venue__mapBtns { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.25rem; }

.venue__mapBtn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1.5rem .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 500;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.venue__mapBtn:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -18px rgba(42, 42, 42, .4);
}

.venue__mapIcon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
}
.venue__mapIcon svg { width: 28px; height: 28px; }

.venue__galleryMain {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  margin-bottom: 1rem;
  box-shadow: 0 30px 70px -35px rgba(42, 42, 42, .5);
}
.venue__galleryMain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .35s var(--ease);
}
.venue__galleryMain.is-loading img { opacity: 0; }

.venue__galleryThumbs {
  display: flex;
  gap: .6rem;
  overflow-x: auto;
  padding-bottom: .3rem;
  scrollbar-width: thin;
}
.venue__thumb {
  flex: 1 1 0;
  min-width: 60px;
  max-width: 96px;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  background: none;
  cursor: pointer;
  opacity: .55;
  transition: opacity .3s var(--ease), border-color .3s var(--ease);
}
.venue__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.venue__thumb:hover { opacity: .85; }
.venue__thumb.is-active { opacity: 1; border-color: var(--clay); }

/* ── Inversión ──────────────────────────────────────────── */
.invest { padding: var(--sec) 0; background: var(--paper-warm); }

.ticket {
  max-width: 620px;
  margin-inline: auto;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 90px -50px rgba(42, 42, 42, .4);
}
.ticket__top { padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 3rem) 2.5rem; text-align: center; }
.ticket__badge {
  display: inline-block;
  padding: .42rem 1rem;
  border: 1px solid rgba(200, 90, 71, .35);
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 1rem;
}
.ticket__regular {
  font-family: var(--serif);
  font-size: clamp(1.3rem, .9rem + 1.4vw, 1.75rem);
  color: var(--muted);
  margin-bottom: .4rem;
}
.ticket__regular span {
  text-decoration: line-through;
  text-decoration-color: var(--clay);
  text-decoration-thickness: 1.5px;
}
.ticket__priceLabel {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: .3rem;
}
.ticket__price {
  font-family: var(--serif);
  font-size: clamp(3rem, 1.5rem + 7vw, 5.25rem);
  line-height: .95;
  letter-spacing: -.03em;
}
.ticket__cur {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--muted);
  margin-bottom: .7rem;
}
.ticket__save {
  display: inline-block;
  margin-top: .9rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  background: rgba(200, 90, 71, .12);
  font-size: .78rem;
  font-weight: 600;
  color: var(--clay-deep);
}
.ticket__note {
  max-width: 40ch;
  margin: 1.25rem auto 0;
  font-size: .9rem;
  color: var(--muted);
}

.ticket__perf {
  height: 1px;
  background: repeating-linear-gradient(to right,
    var(--line) 0 9px, transparent 9px 18px);
  position: relative;
}
.ticket__perf::before,
.ticket__perf::after {
  content: "";
  position: absolute;
  top: 50%; translate: 0 -50%;
  width: 22px; height: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.ticket__perf::before { left: -12px; }
.ticket__perf::after  { right: -12px; }

.ticket__bottom {
  display: grid;
  gap: 1.6rem;
  justify-items: center;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vw, 2.75rem);
}
.ticket__facts { display: grid; gap: .7rem; width: 100%; max-width: 380px; }
.ticket__facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line-soft);
}
.ticket__facts span {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: .22rem;
}
.ticket__small { font-size: .8rem; color: var(--muted); text-align: center; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { padding: var(--sec) 0; }
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.faq__aside { display: grid; gap: 1.4rem; position: sticky; top: 7rem; }

.faq__waBtn {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1.6rem .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: .875rem;
  font-weight: 500;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__waBtn:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -18px rgba(42, 42, 42, .4);
}

.faq__waIcon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
}
.faq__waIcon svg { width: 28px; height: 28px; }

.faq__list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.0625rem;
  font-weight: 400;
  transition: color .3s var(--ease);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--clay); }
.qa summary i {
  position: relative;
  flex: none;
  width: 13px; height: 13px;
  margin-top: .5rem;
}
.qa summary i::before,
.qa summary i::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease);
}
.qa summary i::after { rotate: 90deg; }
.qa[open] summary i::after { transform: scaleX(0); }
.qa[open] summary { color: var(--clay); }

.qa__body {
  padding: 0 3rem 1.75rem 0;
  animation: fadeUp .45s var(--ease) both;
}
.qa__body p { max-width: 62ch; font-size: .9875rem; color: var(--muted); line-height: 1.72; }
.qa__body a { color: var(--clay); text-decoration: underline; text-underline-offset: 3px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ── Cierre ─────────────────────────────────────────────── */
.closing {
  padding: clamp(6rem, 14vw, 11rem) 0;
  background:
    radial-gradient(90% 120% at 50% -10%, rgba(200, 90, 71, .35) 0%, transparent 60%),
    var(--ink);
  color: var(--paper);
  text-align: center;
}
.closing .eyebrow { color: rgba(232, 220, 198, .55); }
.closing__inner { display: grid; gap: 1.75rem; justify-items: center; }
.closing__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 1.2rem + 5.5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -.028em;
}
.closing__title em { font-style: italic; color: #DB9487; }

/* ── Footer ─────────────────────────────────────────────── */
.foot { background: var(--ink); color: var(--paper); padding: clamp(3rem, 7vw, 5rem) 0 2rem; }
.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232, 220, 198, .14);
}
.foot__brand { display: flex; gap: 1rem; align-items: start; }
.foot .nav__mark { border-color: rgba(232, 220, 198, .4); flex: none; }
.foot__brand p { font-size: .9rem; line-height: 1.6; }
.foot__brand span { color: rgba(232, 220, 198, .55); }

.foot__links, .foot__contact { display: grid; gap: .6rem; align-content: start; }
.foot__links a, .foot__contact a {
  font-size: .875rem;
  color: rgba(232, 220, 198, .62);
  transition: color .3s var(--ease);
  justify-self: start;
}
.foot__links a:hover, .foot__contact a:hover { color: var(--paper); }

.foot__igLink { display: inline-flex; align-items: center; gap: .55rem; }
.foot__igIcon { display: grid; place-items: center; width: 20px; height: 20px; flex: none; }
.foot__igIcon svg { width: 100%; height: 100%; }

.foot__legal {
  max-width: var(--maxw);
  margin: 1.75rem auto 0;
  padding-inline: var(--gut);
  font-size: .75rem;
  letter-spacing: .06em;
  color: rgba(232, 220, 198, .38);
}
.foot__legal a {
  color: rgba(232, 220, 198, .62);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .3s var(--ease);
}
.foot__legal a:hover { color: var(--paper); }

/* ── Sticky dock (mobile) ───────────────────────────────── */
.dock {
  position: fixed;
  z-index: 400;
  inset: auto 0 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem var(--gut);
  background: rgba(232, 220, 198, .95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .45s var(--ease);
}
.dock.is-visible { transform: none; }
.dock strong { display: block; font-size: .8rem; font-weight: 500; }
.dock span { font-size: .75rem; color: var(--muted); }

/* ── Modal de inscripción ───────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.modal.is-open { visibility: visible; opacity: 1; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 42, .55);
  backdrop-filter: blur(3px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 2.75rem);
  box-shadow: 0 40px 90px -30px rgba(42, 42, 42, .5);
  transform: translateY(16px) scale(.98);
  transition: transform .35s var(--ease);
}
.modal.is-open .modal__panel { transform: none; }

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.modal__close svg { width: 14px; height: 14px; }
.modal__close:hover { border-color: var(--clay); color: var(--clay); }

.modal__title {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1.05;
  margin: .5rem 0 .5rem;
}
.modal__lead {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.modal__form { display: grid; gap: 1.1rem; }
.modal__form[hidden] { display: none; }
.modal__field { display: grid; gap: .4rem; }
.modal__field span {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.modal__field input {
  font: inherit;
  font-size: .95rem;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-warm);
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.modal__field input:focus { outline: none; border-color: var(--clay); }

.modal__phoneRow { display: flex; gap: .5rem; }
.modal__phoneCode {
  flex: 0 0 auto;
  width: 6.5rem;
  font: inherit;
  font-size: .95rem;
  padding: .75rem .5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-warm);
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.modal__phoneCode:focus { outline: none; border-color: var(--clay); }
.modal__phoneRow input { flex: 1; min-width: 0; }

.modal__consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
}
.modal__consent input {
  margin-top: .2rem;
  width: 16px;
  height: 16px;
  flex: none;
  accent-color: var(--clay);
  cursor: pointer;
}
.modal__consent span {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--muted);
}
.modal__consent a { color: var(--clay); text-decoration: underline; text-underline-offset: 2px; }

.modal__submit { width: 100%; margin-top: .5rem; }
.modal__submit[disabled] { opacity: .6; cursor: default; }

.modal__error {
  font-size: .82rem;
  color: #b3261e;
  text-align: center;
}

.modal__success {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: .6rem;
  padding: 1rem 0 .5rem;
  animation: modal-success-in .5s var(--ease) both;
}
.modal__success[hidden] { display: none; }
.modal__successIcon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: .5rem;
  border-radius: 50%;
  background: var(--paper-warm);
  color: var(--clay);
}
.modal__successIcon svg { width: 26px; height: 26px; }
.modal__successTitle { font-family: var(--serif); font-size: 1.6rem; color: var(--clay-deep); }
.modal__success .btn { margin-top: .75rem; }

@keyframes modal-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

body.no-scroll { overflow: hidden; }

/* ── Reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__inner > .btn { display: none; }
  .nav__toggle { display: grid; }

  .manifesto__grid,
  .includes__grid,
  .venue__grid,
  .faq__grid { grid-template-columns: 1fr; }

  .includes__aside, .faq__aside { position: static; }
  .venue__grid { grid-template-areas: "a" "b"; }
  .venue__copy { grid-area: a; }
  .venue__gallery { grid-area: b; }
  .venue__galleryMain { aspect-ratio: 16 / 10; }

  .hero__mandala { right: -32vw; opacity: .22; }
  .dock { display: flex; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }

  .dim-card { flex-basis: calc(33.333% - (2 * var(--dim-cgap) / 3)); }
  .expert { flex-basis: calc(33.333% - (2 * var(--exp-cgap) / 3)); }
  .live__item { flex-basis: calc(33.333% - 1.5rem); }
}

@media (max-width: 620px) {
  .dim-card { flex-basis: calc(50% - (var(--dim-cgap) / 2)); }
  .expert { flex-basis: 100%; max-width: 340px; }
  .live__item { flex-basis: calc(50% - .75rem); }

  .hero__meta > div { flex-basis: 100%; }
  .venue__timeline { display: none; }

  .venue__thumb { min-width: 52px; }
  .qa__body { padding-right: 0; }
  .foot__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 7rem; }
}

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

@media print {
  .nav, .dock, .grain, .hero__mandala { display: none !important; }
  body { background: #fff; color: #000; }
  .dims, .closing, .foot { background: #fff; color: #000; }
}

/* ── Dimensión: botón "ver más" ─────────────────────────── */
.dim-card__more {
  margin-top: .35rem;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--clay);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.dim-card__more:hover { gap: .55rem; color: var(--clay-deep); }

/* ── Modal de detalle de dimensión ──────────────────────── */
.modal__panel--dim { max-width: 640px; text-align: left; }
.dimModal__title { margin: .5rem 0 .35rem; }
.dimModal__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--clay);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.dimModal__tagline[hidden] { display: none; }
.dimModal__prose { display: grid; gap: 1em; margin-bottom: 1.5rem; }
.dimModal__prose p { font-size: .95rem; line-height: 1.65; color: var(--ink-soft); }
.dimModal__quote {
  margin: 0 0 1.75rem;
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--clay);
  background: var(--paper-warm);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--clay-deep);
}
.dimModal__quote[hidden] { display: none; }
.dimModal__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.dimModal__colTitle {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .9rem;
}
.dimModal__list { display: grid; gap: .7rem; counter-reset: dimwork; }
.dimModal__list li {
  counter-increment: dimwork;
  padding-left: 1.6rem;
  position: relative;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.dimModal__list li::before {
  content: counter(dimwork);
  position: absolute;
  left: 0; top: 0;
  width: 1.15rem; height: 1.15rem;
  display: grid; place-items: center;
  font-size: .68rem;
  font-weight: 600;
  color: var(--clay);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.dimModal__list--check li::before {
  content: "✓";
  border: none;
  color: var(--clay);
  font-size: .85rem;
}
@media (max-width: 620px) {
  .dimModal__cols { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── Scrollbar de paneles de modal ───────────────────────── */
.modal__panel {
  scrollbar-width: thin;
  scrollbar-color: var(--clay) var(--paper-warm);
}
.modal__panel::-webkit-scrollbar { width: 8px; }
.modal__panel::-webkit-scrollbar-track { background: var(--paper-warm); border-radius: 999px; }
.modal__panel::-webkit-scrollbar-thumb { background: var(--clay); border-radius: 999px; }
.modal__panel::-webkit-scrollbar-thumb:hover { background: var(--clay-deep); }
