/* ====================================================================
   TUL - DÁ — Sistema de diseño
   Brandbook: Obsidian + Ritual Gold · Cormorant Garamond + Montserrat
   ==================================================================== */

:root {
  --obsidian:   #0A0A0A;
  --deep-night: #111111;
  --gold:       #C9973A;
  --pale-gold:  #E8D5A3;
  --moonlight:  #D4CFC8;
  --teal:       #1A4A47;
  --text:       #EDE6D8;
  --text-soft:  #D4CFC8;
  --text-mute:  #8C867C;
  --text-faint: #6F6A61;
  --line:       rgba(201,151,58,0.22);
  --line-soft:  rgba(201,151,58,0.14);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  --maxw: 1240px;
  --pad:  6vw;
  --ease: cubic-bezier(.4,0,.2,1);
}

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

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

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--obsidian); }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--obsidian); padding: 12px 20px;
  font-size: 13px; letter-spacing: .1em;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--pale-gold); outline-offset: 3px; }

/* ─── Tipografía base ─────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #F4EEE0;
  margin: 0;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--pale-gold); }

.eyebrow {
  display: block;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin: 0 0 24px;
}
.eyebrow--gold { color: var(--gold); }

.label {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pale-gold); font-weight: 600; margin: 0;
}
.label--gold { color: var(--gold); }

.footnote, .pkg-note {
  font-size: 12px; color: var(--text-faint); letter-spacing: .04em; font-weight: 300;
}

/* ─── Layout ──────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.container--narrow { max-width: 1040px; }

.section { padding: clamp(86px,13vh,168px) 0; }
.section--deep { background: var(--deep-night); }

.section-head { margin-bottom: clamp(48px,7vh,72px); }
.section-head--center { text-align: center; }

/* ─── Botón ───────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; color: var(--pale-gold);
  padding: 17px 40px; border: 1px solid var(--gold); background: transparent;
  transition: background .4s var(--ease), color .4s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--gold); color: var(--obsidian); }
.btn--block { display: block; text-align: center; padding: 15px; }

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand__logo { height: 78px; width: auto; }
@media (max-width: 560px) { .brand__logo { height: 60px; } }
.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-soft); transition: color .3s var(--ease);
}
.nav__links a:hover { color: var(--pale-gold); }
.nav__right { display: flex; align-items: center; gap: 20px; }

.lang-toggle {
  background: none; border: none; cursor: pointer; padding: 4px;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.14em;
  color: var(--text-mute); display: flex; gap: 6px; align-items: center;
}
.lang-toggle__opt { transition: color .3s var(--ease); }
.lang-toggle__opt.is-active { color: var(--pale-gold); }
.lang-toggle__sep { color: var(--text-faint); }

.nav-cta {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pale-gold); padding: 11px 22px; border: 1px solid var(--gold);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--obsidian); }

.nav__toggle { display: none; background: none; border: none; color: var(--pale-gold); cursor: pointer; padding: 4px; }

/* Drawer móvil */
.nav__backdrop {
  position: fixed; inset: 0; z-index: 110; background: rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.nav__backdrop.open { opacity: 1; visibility: visible; }
.nav__drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 120; width: min(80vw, 320px);
  background: var(--deep-night); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column; gap: 8px; padding: 92px 32px 32px;
}
.nav__drawer.open { transform: translateX(0); }
.nav__drawer a {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-soft); padding: 14px 0; border-bottom: 1px solid var(--line-soft);
}
.nav__drawer .nav-cta { border-bottom: none; margin-top: 20px; text-align: center; }
.nav__drawer-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--pale-gold); cursor: pointer; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--obsidian); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* VEIL — firma visual de la marca */
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 28%, rgba(10,10,10,0.25) 52%, var(--obsidian) 100%),
    rgba(10,10,10,0.30);
}
.hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 72% 32%, rgba(201,151,58,0.13) 0%, transparent 60%);
}
.moon {
  position: absolute; top: 8vh; right: 7vw;
  width: clamp(84px,10vw,150px); height: clamp(84px,10vw,150px); border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #E8D5A3 0%, #C9973A 44%, #7a5a22 78%, #3a2c12 100%);
  box-shadow: 0 0 64px 12px rgba(201,151,58,0.20),
              inset -14px -12px 34px rgba(10,10,10,0.55),
              inset 9px 11px 24px rgba(232,213,163,0.22);
  animation: moonglow 7s ease-in-out infinite; will-change: transform;
}
@keyframes moonglow { 0%,100% { opacity:.82; filter:brightness(1);} 50% { opacity:1; filter:brightness(1.08);} }

.hero__content { position: relative; z-index: 2; max-width: 1100px; }
.hero .display { font-size: clamp(46px,7.2vw,102px); margin-bottom: 30px; }
.hero__sub {
  font-size: clamp(13px,1.3vw,17px); letter-spacing: 0.06em; color: var(--text-soft);
  margin: 0 0 44px; max-width: 520px;
}
.hero__cue { position: absolute; bottom: 34px; left: 0; right: 0; z-index: 2; display: flex; justify-content: center; }
.hero__cue span { width: 1px; height: 46px; background: linear-gradient(to bottom, var(--gold), transparent); animation: floatcue 3s ease-in-out infinite; }
@keyframes floatcue { 0%,100% { transform: translateY(0); opacity:.45;} 50% { transform: translateY(8px); opacity:1;} }

/* ─── TRÍO (propuesta) ────────────────────────────── */
.trio { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(30px,4vw,64px); margin-top: clamp(48px,7vh,70px); }
.trio__item { border-top: 1px solid var(--line); padding-top: 30px; }
.trio__item svg { margin-bottom: 22px; }
.trio__item .label { margin-bottom: 16px; }
.trio__item p { font-size: 15px; color: var(--text-soft); margin: 0; }

/* ─── PAQUETES ────────────────────────────────────── */
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,2.2vw,34px); align-items: stretch; }
.pkg { display: flex; flex-direction: column; background: var(--deep-night); border: 1px solid var(--line); }
.pkg--featured { border-color: rgba(201,151,58,0.5); box-shadow: 0 0 0 1px rgba(201,151,58,0.12), 0 30px 80px -40px rgba(201,151,58,0.25); }
.pkg__media { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.pkg__media img { width: 100%; height: 100%; object-fit: cover; }
.pkg__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.25) 0%, transparent 32%, transparent 52%, var(--deep-night) 100%); }
.pkg__name { position: absolute; top: 22px; left: 24px; z-index: 1; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pale-gold); font-weight: 600; }
.pkg__body { padding: 30px 30px 36px; display: flex; flex-direction: column; flex: 1; }
.pkg__price { display: flex; align-items: baseline; gap: 8px; }
.pkg__amount { font-family: var(--font-display); font-weight: 600; font-size: 42px; color: var(--gold); line-height: 1; }
.pkg__cur { font-size: 12px; color: var(--text-soft); letter-spacing: .05em; }
.pkg__per { font-size: 11px; letter-spacing: .12em; color: var(--text-mute); margin: 6px 0 26px; }
.pkg__tagline { font-family: var(--font-display); font-style: italic; font-size: 21px; line-height: 1.3; color: var(--text); margin: 0 0 28px; }
.pkg__exps { list-style: none; margin: 16px 0 30px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.pkg__exps li { font-size: 14px; color: var(--text-soft); position: relative; padding-left: 22px; }
.pkg__exps li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 11px; top: 2px; }
.pkg__foot { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.pkg__inc { font-size: 12.5px; line-height: 1.7; color: var(--text-mute); margin: 0 0 24px; }
.pkg-note { text-align: center; margin-top: 42px; }

/* ─── EXPERIENCIAS ────────────────────────────────── */
.exp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(12px,1.4vw,20px); }
.exp { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #141414; border: 1px solid var(--line-soft); margin: 0; }
.exp img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.exp:hover img { transform: scale(1.07); }
.exp::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 45%, rgba(10,10,10,0.9) 100%); pointer-events: none; }
.exp figcaption { position: absolute; left: 18px; bottom: 16px; right: 14px; z-index: 1; }
.exp__num { display: block; font-size: 10px; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 5px; }
.exp__name { font-family: var(--font-display); font-size: 22px; color: #F4EEE0; line-height: 1.05; }

/* ─── STEPS ───────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(30px,4vw,60px); margin-top: clamp(48px,7vh,70px); }
.step__num { font-family: var(--font-display); font-weight: 600; font-size: 64px; color: var(--gold); line-height: 1; display: block; margin-bottom: 24px; opacity: .9; }
.step .label { margin-bottom: 18px; }
.step p { font-size: 15px; color: var(--text-soft); margin: 0; }
.footnote { margin-top: 56px; }

/* ─── FECHAS ──────────────────────────────────────── */
.dates { margin-top: clamp(40px,6vh,56px); }
.dates__head, .dates__row { display: grid; grid-template-columns: 24% 1fr 24%; gap: 24px; align-items: center; }
.dates__head { padding-bottom: 16px; border-bottom: 1px solid rgba(201,151,58,0.4); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); }
.dates__head span:last-child, .dates__spots { text-align: right; }
.dates__row { padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.dates__date { font-family: var(--font-display); font-size: 24px; color: #F4EEE0; }
.dates__pkg { font-size: 14px; color: var(--text-soft); }
.dates__spots b { font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.dates__spots i { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); font-style: normal; }
.dates__spots--low b { color: var(--pale-gold); }
/* --- Selector dinámico de fechas --- */
.dates__body { min-height: 60px; }
.dates__state { padding: 26px 0; font-size: 14px; color: var(--text-mute); }
.dates__state--err { color: var(--pale-gold); }
.dates__row--link { text-decoration: none; color: inherit; cursor: pointer; transition: border-color .25s ease, padding-left .25s ease; }
.dates__row--link:hover { border-bottom-color: rgba(201,151,58,0.6); padding-left: 8px; }
.dates__reserve { display: block; margin-top: 6px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity .25s ease; }
.dates__row--link:hover .dates__reserve { opacity: 1; }
.dates__last { display: block; margin-top: 6px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--pale-gold); font-style: normal; }
.dates__row--sold { opacity: .42; }
.dates__spots--sold { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); }
.dates__testnote { margin-top: 22px; font-size: 12px; letter-spacing: .04em; color: var(--text-mute); font-style: italic; }
@media (hover: none) { .dates__reserve { opacity: 1; } }
.dates__cta { margin-top: 46px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.dates__ask { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--text-soft); }

/* ─── GURU DAVAR ──────────────────────────────────── */
.guru { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px,5vw,80px); align-items: center; }
.guru__photo { margin: 0; position: relative; aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--line); }
.guru__photo img { width: 100%; height: 100%; object-fit: cover; }
.guru__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, rgba(10,10,10,0.6) 100%); }
.guru__role { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); margin: 0 0 26px; }
.guru .display { font-size: clamp(40px,5.5vw,72px); margin-bottom: 30px; }
.guru__bio { font-size: 16px; line-height: 1.85; color: var(--text-soft); margin: 0 0 40px; max-width: 440px; }

/* ─── FOOTER ──────────────────────────────────────── */
.footer { background: var(--obsidian); border-top: 1px solid var(--line-soft); padding: clamp(80px,11vh,128px) 0 56px; }
.footer__inner { text-align: center; }
.footer__logo { height: 86px; width: auto; margin: 0 auto 14px; }
.footer__route { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--text-mute); margin: 0 0 40px; }
.footer__social { display: flex; gap: 30px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.footer__social a { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-soft); transition: color .3s var(--ease); }
.footer__social a:hover { color: var(--pale-gold); }
.footer__email { display: inline-block; font-size: 14px; color: var(--text-soft); letter-spacing: .06em; margin-bottom: 36px; }
.footer__divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 34px; }
.footer__divider span { width: 60px; height: 1px; background: rgba(201,151,58,0.4); }
.footer__legal { font-size: 11.5px; line-height: 1.9; color: var(--text-faint); margin: 0; }
.footer__legal a { color: var(--text-faint); transition: color .3s var(--ease); }
.footer__legal a:hover { color: var(--text-soft); }

/* ─── Reveal on scroll ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav-cta { display: none; }
  .nav__toggle { display: block; }
  .trio, .steps { grid-template-columns: 1fr; gap: 36px; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .guru { grid-template-columns: 1fr; }
  .guru__text { text-align: left; }
}
@media (max-width: 560px) {
  :root { --pad: 7vw; }
  .dates__head, .dates__row { grid-template-columns: 1fr auto; gap: 6px 16px; }
  .dates__pkg { grid-column: 1 / -1; order: 3; font-size: 13px; color: var(--text-mute); }
  .dates__head span:nth-child(2) { display: none; }
  .moon { top: 6vh; right: 8vw; }
}

/* ─── Reduced motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .moon, .hero__cue span { animation: none; }
  .hero__video { display: none; }
}

/* ═══ MODAL DE RESERVA (carrito) ═══════════════════════════ */
.rmodal[hidden] { display: none; }
.rmodal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.rmodal__overlay { position: absolute; inset: 0; background: rgba(5,5,5,.82); backdrop-filter: blur(4px); }
.rmodal__panel { position: relative; width: min(880px, 100%); max-height: 90vh; overflow: hidden; background: var(--deep-night);
  border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.6); display: flex; flex-direction: column;
  animation: rmodalIn .3s var(--ease); }
@keyframes rmodalIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.rmodal__x { position: absolute; top: 14px; right: 16px; z-index: 3; background: none; border: none; color: var(--text-mute); font-size: 30px; line-height: 1; cursor: pointer; transition: color .2s; }
.rmodal__x:hover { color: var(--gold); }
.rmodal__head { flex-shrink: 0; padding: 26px 30px 16px; border-bottom: 1px solid var(--line-soft); }
.rmodal__title { font-family: var(--font-display); font-size: 26px; color: #F4EEE0; margin: 0 0 14px; font-weight: 500; }
.rmodal__steps { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; flex-wrap: wrap; }
.rmodal__step { display: flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.rmodal__step:not(:last-child)::after { content: ''; width: 14px; height: 1px; background: var(--line-soft); margin-left: 4px; }
.rmodal__step span { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid var(--line); border-radius: 50%; font-size: 11px; flex-shrink: 0; }
.rmodal__step.is-active { color: var(--pale-gold); }
.rmodal__step.is-active span { border-color: var(--gold); color: var(--gold); }
.rmodal__step.is-done span { background: var(--gold); border-color: var(--gold); color: var(--obsidian); }
/* Cuerpo en 2 columnas: wizard | resumen */
.rmodal__body { flex: 1; min-height: 0; display: grid; grid-template-columns: 1fr 258px; }
.rmodal__main { display: flex; flex-direction: column; min-height: 0; min-width: 0; }
.rmodal__content { flex: 1; overflow-y: auto; padding: 24px 30px; min-height: 0; }
.rmodal__h { font-family: var(--font-display); font-size: 22px; color: #F4EEE0; margin: 0 0 4px; font-weight: 500; }
.rmodal__sub { font-size: 13px; color: var(--text-mute); margin: 0 0 16px; }
.rmodal__sub--c { text-align: center; margin-top: 14px; }
.rmodal__state { padding: 30px 0; text-align: center; color: var(--text-mute); font-size: 14px; }
/* Paquetes */
.rmodal__pkgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.rmodal__pkg { display: flex; flex-direction: column; gap: 3px; padding: 18px 14px; text-align: left; background: rgba(255,255,255,.02); border: 1px solid var(--line-soft); border-radius: 3px; cursor: pointer; transition: border-color .2s, background .2s; }
.rmodal__pkg:hover { border-color: var(--line); }
.rmodal__pkg.is-sel { border-color: var(--gold); background: rgba(201,151,58,.08); }
.rmodal__pkgname { font-family: var(--font-display); font-size: 20px; color: #F4EEE0; }
.rmodal__pkgprice { font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.rmodal__pkgper { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); }
.rmodal__pkgtag { font-size: 12px; color: var(--text-soft); margin-top: 5px; }
/* Calendario (compacto y centrado) */
.rmodal__cal { max-width: 360px; margin: 6px auto 0; }
.rmodal__calhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.rmodal__calmonth { font-family: var(--font-display); font-size: 18px; color: var(--pale-gold); }
.rmodal__calnav { background: none; border: 1px solid var(--line-soft); color: var(--text-soft); width: 32px; height: 32px; border-radius: 50%; font-size: 17px; cursor: pointer; transition: border-color .2s, color .2s; }
.rmodal__calnav:hover:not([disabled]) { border-color: var(--gold); color: var(--gold); }
.rmodal__calnav[disabled] { opacity: .3; cursor: default; }
.rmodal__wd, .rmodal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.rmodal__wd { margin-bottom: 4px; }
.rmodal__wd span { text-align: center; font-size: 10px; letter-spacing: .06em; color: var(--text-faint); }
.rmodal__day { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 3px; font-size: 13px; color: var(--text-faint); background: none; padding: 0; }
.rmodal__day--pad { border: none; }
.rmodal__day--off { color: var(--text-faint); opacity: .4; }
.rmodal__day--sold { color: var(--text-faint); text-decoration: line-through; opacity: .45; }
.rmodal__day--open { color: var(--text); border-color: var(--line-soft); cursor: pointer; transition: border-color .2s, background .2s; }
.rmodal__day--open:hover { border-color: var(--gold); background: rgba(201,151,58,.08); }
.rmodal__day--open i { font-style: normal; font-size: 9px; letter-spacing: .02em; color: var(--gold); margin-top: 1px; line-height: 1; }
.rmodal__day--low i { color: var(--pale-gold); }
.rmodal__day.is-sel { background: var(--gold); border-color: var(--gold); color: var(--obsidian); }
.rmodal__day.is-sel i { color: var(--obsidian); }
.rmodal__callegend { max-width: 360px; margin: 14px auto 0; font-size: 11px; color: var(--text-mute); display: flex; align-items: center; justify-content: center; }
.lg { display: inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: 6px; }
.lg--open { background: var(--gold); } .lg--sold { background: var(--text-faint); }
/* Stepper de boletos */
.rmodal__stepper { display: flex; align-items: center; justify-content: center; gap: 26px; margin: 24px 0 8px; }
.rmodal__pm { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: none; color: var(--gold); font-size: 24px; cursor: pointer; transition: border-color .2s, background .2s; }
.rmodal__pm:hover { border-color: var(--gold); background: rgba(201,151,58,.08); }
.rmodal__qty { font-family: var(--font-display); font-size: 42px; color: #F4EEE0; min-width: 54px; text-align: center; }
/* Formulario */
.rmodal__form { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.rmodal__field { display: flex; flex-direction: column; gap: 6px; }
.rmodal__field span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); }
.rmodal__field input { background: rgba(255,255,255,.03); border: 1px solid var(--line-soft); border-radius: 3px; padding: 12px 14px; color: var(--text); font-family: var(--font-body); font-size: 15px; transition: border-color .2s; }
.rmodal__field input:focus { outline: none; border-color: var(--gold); }
.rmodal__err { color: #E4A0A0; font-size: 13px; margin: 0; }
.rmodal__test { font-size: 12px; color: var(--text-mute); font-style: italic; margin: 4px 0 0; }
/* Aside / resumen (carrito) */
.rmodal__aside { min-width: 0; border-left: 1px solid var(--line-soft); background: rgba(0,0,0,.22); padding: 24px 22px; overflow-y: auto; }
.rmodal__carthead { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); margin-bottom: 4px; }
.rmodal__cartempty { font-size: 13px; color: var(--text-faint); font-style: italic; margin: 14px 0 0; }
.rmodal__cartrow { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 11px 0; font-size: 13px; color: var(--text-mute); border-bottom: 1px solid var(--line-soft); }
.rmodal__cartrow b { color: var(--text-soft); font-weight: 500; text-align: right; }
.rmodal__cartrow--total { border-bottom: none; margin-top: 6px; padding-top: 14px; }
.rmodal__cartrow--total b { font-family: var(--font-display); font-size: 24px; color: var(--gold); }
.rmodal__cartnote { margin: 14px 0 0; font-size: 11px; color: var(--text-mute); font-style: italic; line-height: 1.5; }
/* Footer de acciones (ancho completo) */
.rmodal__actions { flex-shrink: 0; display: flex; gap: 12px; align-items: center; padding: 16px 30px; border-top: 1px solid var(--line-soft); background: rgba(0,0,0,.2); }
.rmodal__btn { padding: 13px 28px; border-radius: 2px; font-family: var(--font-body); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; transition: all .2s; border: 1px solid var(--gold); }
.rmodal__btn--ghost { background: none; color: var(--text-soft); border-color: var(--line); }
.rmodal__btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.rmodal__btn--gold { background: var(--gold); color: var(--obsidian); font-weight: 600; margin-left: auto; }
.rmodal__btn--gold:hover { background: var(--pale-gold); }
.rmodal__btn[disabled] { opacity: .6; cursor: default; }
/* Tablet: resumen más angosto */
@media (max-width: 820px) {
  .rmodal__body { grid-template-columns: 1fr 220px; }
}
/* Móvil: una columna, resumen bajo el wizard, panel a pantalla completa */
@media (max-width: 680px) {
  .rmodal { padding: 0; }
  .rmodal__panel { width: 100%; height: 100%; max-height: 100%; border: none; border-radius: 0; }
  .rmodal__body { grid-template-columns: 1fr; }
  .rmodal__content { overflow-y: visible; }
  .rmodal__body { overflow-y: auto; }
  .rmodal__aside { border-left: none; border-top: 1px solid var(--line-soft); }
  .rmodal__head, .rmodal__content, .rmodal__actions, .rmodal__aside { padding-left: 20px; padding-right: 20px; }
  .rmodal__pkgs { grid-template-columns: 1fr; }
  .rmodal__pkg { flex-direction: row; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; }
  .rmodal__pkgtag { width: 100%; margin-top: 2px; }
  .rmodal__title { font-size: 23px; }
  .rmodal__step:not(.is-active):not(.is-done) { display: none; }
  .rmodal__step.is-active::after { display: none; }
}
