/* ═══════════════════════════════════════════════════════════════════
   LILAFKEN · PROGRAMA REFUGIO INVIERNO 2026
   Design System: "Editorial Retreat · Ryokan Costero"
   ─────────────────────────────────────────────────────────────────── */

/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Ink & Paper */
  --ink: #06100A;
  --ink-soft: #0E1A14;
  --ink-line: rgba(6,16,10,0.12);
  --paper: #F5EFE3;
  --paper-raw: #E8DFC9;
  --paper-shadow: rgba(6,16,10,0.08);

  /* Metals & Stones */
  --gold: #C9A040;
  --gold-deep: #8A6E2E;
  --gold-line: rgba(201,160,64,0.30);
  --copper: #B87651;
  --amatista: #A68FCF;
  --amatista-deep: #6B4E8C;
  --amatista-soft: rgba(166,143,207,0.18);
  --ceramic: #D4A084;
  --mar-gris: #3D4F4A;
  --mar-foam: #E6E2D7;

  /* Serif pairing */
  --f-display: 'Playfair Display', 'Times New Roman', serif;
  --f-italic: 'Cormorant Garamond', 'Georgia', serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Ryokan-scale spacing */
  --step-xxxl: clamp(80px, 10vw, 160px);
  --step-xxl: clamp(56px, 7vw, 100px);
  --step-xl: clamp(40px, 5vw, 72px);
  --step-lg: 32px;
  --step-md: 20px;
  --step-sm: 12px;

  /* Radii */
  --r-card: 2px;
  --r-pill: 999px;
  --r-soft: 18px;

  /* Transitions */
  --ease-ryokan: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── PAPER TEXTURE / GRAIN OVERLAY ───────────────────────────────── */
.paper-bg {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201,160,64,0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 80%, rgba(166,143,207,0.06) 0%, transparent 40%),
    var(--paper);
  position: relative;
  isolation: isolate;
}
.paper-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.28 0 0 0 0.4 0'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.16'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.paper-bg > * { position: relative; z-index: 1; }

.ink-bg {
  background: var(--ink);
  position: relative;
  isolation: isolate;
  color: var(--paper);
}
.ink-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.75 0 0 0 0 0.6 0 0 0 0.18 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.ink-bg > * { position: relative; z-index: 1; }

/* ── EDITORIAL TYPE ──────────────────────────────────────────────── */
.editorial-eyebrow {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.editorial-eyebrow::before,
.editorial-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.editorial-eyebrow--dark { color: var(--gold-deep); }
.editorial-eyebrow--amatista { color: var(--amatista-deep); }

.editorial-title {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  margin: 0;
}
.editorial-title--light { color: var(--paper); }

.editorial-italic {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  color: var(--gold-deep);
}
.editorial-italic--paper { color: var(--gold); }

.editorial-body {
  font-family: var(--f-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(6,16,10,0.75);
  max-width: 48ch;
}
.editorial-body--light { color: rgba(245,239,227,0.82); }

/* ── RULE / DECORATIVE DIVIDERS ──────────────────────────────────── */
.rule-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin: var(--step-md) 0;
}
.rule-diamond::before,
.rule-diamond::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.28;
  max-width: 120px;
}
.rule-diamond span {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
}

/* ── SECTION PADDING ─────────────────────────────────────────────── */
.retiro-section-pad {
  padding: var(--step-xxl) 0;
}
.retiro-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.retiro-container--narrow {
  max-width: 960px;
}

/* ═══════════════════════════════════════════════════════════════════
   0. STICKY RESERVATION BAR (debajo de la nav, aparece al scroll)
   Solo botón XL "Reservar ahora" → Cloudbeds
   ─────────────────────────────────────────────────────────────────── */
.booking-sticky {
  display: flex;
  justify-content: center;
  max-height: 0;
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid rgba(201,160,64,0.28);
  border-bottom: 1px solid rgba(201,160,64,0.18);
  transition: max-height 0.45s var(--ease-ryokan), padding 0.45s var(--ease-ryokan);
  padding: 0;
}
body.scrolled-past-hero .booking-sticky,
.nav.scrolled .booking-sticky {
  max-height: 90px;
  padding: 12px clamp(16px, 3vw, 40px);
}
.booking-sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 720px;
  padding: 14px 28px;
  background: linear-gradient(180deg, var(--gold) 0%, #B89030 100%);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(201,160,64,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.3s var(--ease-ryokan), box-shadow 0.3s, background 0.3s;
}
.booking-sticky-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #D4B057 0%, #C9A040 100%);
  box-shadow: 0 16px 40px rgba(201,160,64,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
}
.booking-sticky-btn svg { flex-shrink: 0; }
.booking-sticky-btn span { letter-spacing: 0.08em; }

@media (max-width: 640px) {
  body.scrolled-past-hero .booking-sticky,
  .nav.scrolled .booking-sticky { max-height: 72px; padding: 10px 14px; }
  .booking-sticky-btn { font-size: 0.9rem; padding: 12px 18px; gap: 10px; }
  .booking-sticky-btn span { letter-spacing: 0.06em; }
}

/* ═══════════════════════════════════════════════════════════════════
   0b. CLOUDBEDS HERO PANEL
   ─────────────────────────────────────────────────────────────────── */
.cloudbeds-panel {
  background:
    linear-gradient(180deg, rgba(245,239,227,0.06) 0%, rgba(6,16,10,0.4) 100%),
    rgba(14,26,20,0.78);
  border: 1px solid rgba(201,160,64,0.3);
  border-radius: var(--r-soft);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cloudbeds-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--amatista-soft) 0%, transparent 70%);
  pointer-events: none;
}
.cloudbeds-panel-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.cloudbeds-panel-title {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--paper);
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: -4px 0 8px;
}
.cloudbeds-row {
  display: flex;
  gap: 10px;
}
.cloudbeds-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.cloudbeds-field--grow { flex: 1; }
.cloudbeds-field > span {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.6);
}
.cloudbeds-field input,
.cloudbeds-field select {
  background: rgba(245,239,227,0.05);
  border: 1px solid rgba(201,160,64,0.25);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--paper);
  color-scheme: dark;
  width: 100%;
}
.cloudbeds-field input:focus,
.cloudbeds-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,160,64,0.1);
}
.cloudbeds-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  margin-top: 6px;
  box-shadow: 0 12px 30px rgba(201,160,64,0.35);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.cloudbeds-cta:hover {
  transform: translateY(-2px);
  background: #D6B05A;
  box-shadow: 0 18px 44px rgba(201,160,64,0.52);
}
.cloudbeds-tagline {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245,239,227,0.7);
  text-align: center;
  margin-top: 2px;
}
.cloudbeds-tagline strong {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}

.cloudbeds-panel-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 2px;
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.5);
}
.cloudbeds-panel-divider::before,
.cloudbeds-panel-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,160,64,0.22);
}

.cloudbeds-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(166,143,207,0.32);
  border-radius: 10px;
  background: rgba(166,143,207,0.06);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.cloudbeds-secondary:hover {
  background: rgba(166,143,207,0.14);
  transform: translateX(2px);
}
.cloudbeds-secondary-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--paper);
  line-height: 1.2;
}
.cloudbeds-secondary-title small {
  display: block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(245,239,227,0.6);
  margin-top: 3px;
}
.cloudbeds-secondary-arrow {
  font-size: 1.3rem;
  color: var(--amatista);
  flex-shrink: 0;
}
.cloudbeds-micro {
  font-family: var(--f-body);
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(245,239,227,0.52);
  text-align: center;
  margin: 4px 0 0;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════════
   1. HERO ENHANCEMENTS (overrides on existing .hero-panel)
   ─────────────────────────────────────────────────────────────────── */
.refugio-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: rgba(166,143,207,0.08);
  border: 1px solid rgba(166,143,207,0.35);
  color: var(--amatista);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.refugio-badge::before {
  content: '◊';
  color: var(--amatista);
  font-size: 1rem;
  animation: refugio-pulse 2.6s ease-in-out infinite;
}
@keyframes refugio-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-dates-strip {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-top: 14px;
  letter-spacing: 0.02em;
}
.hero-dates-strip strong {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
  font-family: var(--f-body);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* Refugio pricing panel (replaces .hero-panel content) */
.refugio-panel {
  background:
    linear-gradient(180deg, rgba(245,239,227,0.06) 0%, rgba(6,16,10,0.4) 100%),
    rgba(14,26,20,0.72);
  border: 1px solid rgba(201,160,64,0.25);
  border-radius: var(--r-soft);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}
.refugio-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--amatista-soft) 0%, transparent 70%);
  pointer-events: none;
}
.refugio-panel-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 6px;
}
.refugio-panel-title {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--paper);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.refugio-tier {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(201,160,64,0.25);
}
.refugio-tier:last-of-type { border-bottom: none; }
.refugio-tier-name {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.refugio-tier-name small {
  display: block;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(245,239,227,0.52);
  text-transform: uppercase;
  margin-top: 4px;
}
.refugio-tier-price {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.refugio-tier--primary {
  border-bottom: none;
  padding-top: 8px;
  padding-bottom: 4px;
}
.refugio-tier--primary .refugio-tier-price {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  text-align: right;
  gap: 2px;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(245,239,227,0.6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.refugio-tier--primary .refugio-tier-price span {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 4px;
}
.refugio-tier--primary .refugio-tier-price em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: rgba(245,239,227,0.55);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.82rem;
}

/* Divider between primary and secondary in hero panel */
.refugio-panel-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 14px;
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.5);
}
.refugio-panel-divider::before,
.refugio-panel-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,160,64,0.22);
}

/* Secondary upsell link to refugio program */
.refugio-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(166,143,207,0.32);
  border-radius: 10px;
  background: rgba(166,143,207,0.06);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.refugio-secondary:hover {
  background: rgba(166,143,207,0.14);
  border-color: rgba(166,143,207,0.55);
  transform: translateX(2px);
}
.refugio-secondary-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--paper);
  line-height: 1.2;
}
.refugio-secondary-title small {
  display: block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(245,239,227,0.6);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.refugio-secondary-arrow {
  font-size: 1.4rem;
  color: var(--amatista);
  line-height: 1;
  flex-shrink: 0;
}
.refugio-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 22px;
  padding: 16px 20px;
  background: linear-gradient(180deg, #25D366 0%, #1FA855 100%);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.4s var(--ease-ryokan), box-shadow 0.4s var(--ease-ryokan);
}
.refugio-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(37,211,102,0.48), inset 0 1px 0 rgba(255,255,255,0.3);
}
.refugio-cta svg { width: 22px; height: 22px; flex-shrink: 0; }
.refugio-micro {
  font-family: var(--f-body);
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(245,239,227,0.55);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* Hero trust strip — refined */
.trust-strip-refugio {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,239,227,0.12);
}
.trust-item-refugio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: rgba(245,239,227,0.8);
  letter-spacing: 0.02em;
}
.trust-item-refugio .glyph {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--amatista);
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════════════
   1b. UBICACIÓN STRIP — compact map + distance chips
   ─────────────────────────────────────────────────────────────────── */
.ubicacion-strip {
  background: var(--paper-raw);
  padding: clamp(32px, 5vw, 56px) 0;
  position: relative;
  isolation: isolate;
}
.ubicacion-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.36 0 0 0 0 0.25 0 0 0 0.28 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.ubicacion-strip > * { position: relative; z-index: 1; }

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.ubicacion-map {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--ink-line);
  box-shadow: 0 18px 40px rgba(6,16,10,0.15);
}
.ubicacion-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(0.95) sepia(0.08);
  transition: filter 0.6s var(--ease-ryokan);
}
.ubicacion-map:hover iframe { filter: grayscale(0) contrast(1) sepia(0); }

.ubicacion-map-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(6,16,10,0.3);
}
.ubicacion-pin {
  color: var(--amatista);
  font-size: 0.9rem;
  animation: refugio-pulse 2.4s ease-in-out infinite;
}

.ubicacion-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}
.ubicacion-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 24px;
}
.ubicacion-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}

.ubicacion-chips {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ubicacion-chips li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: rgba(6,16,10,0.78);
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--ink-line);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s var(--ease-ryokan);
}
.ubicacion-chips li:hover {
  transform: translateX(3px);
  border-left-color: var(--amatista-deep);
}
.ubicacion-chips li strong {
  color: var(--ink);
  font-weight: 700;
}
.ubicacion-chip-glyph {
  color: var(--copper);
  font-size: 1.1rem;
  line-height: 1;
  font-family: var(--f-display);
}

.ubicacion-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  align-self: flex-start;
  transition: background 0.3s, transform 0.3s;
}
.ubicacion-cta:hover {
  background: var(--copper);
  transform: translateY(-2px);
}

@media (max-width: 820px) {
  .ubicacion-grid { grid-template-columns: 1fr; }
  .ubicacion-map { min-height: 240px; }
  .ubicacion-chips { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   1c. ARRIENDO DIARIO — primary product section
   ─────────────────────────────────────────────────────────────────── */
.diario-section {
  background: var(--paper);
  padding: var(--step-xxl) 0;
  position: relative;
  isolation: isolate;
}
.diario-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='8'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.36 0 0 0 0 0.25 0 0 0 0.28 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.diario-section > * { position: relative; z-index: 1; }

.diario-hero-photo {
  position: relative;
  margin: 0 0 var(--step-xl);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--ink);
  box-shadow: 0 30px 60px rgba(6,16,10,0.18);
}
.diario-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-ryokan);
}
.diario-hero-photo:hover img { transform: scale(1.03); }
.diario-hero-caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  background: rgba(6,16,10,0.78);
  color: var(--paper);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}
@media (max-width: 640px) {
  .diario-hero-photo { aspect-ratio: 4/3; }
  .diario-hero-caption { font-size: 0.7rem; left: 14px; bottom: 14px; padding: 6px 12px; }
}

.diario-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.diario-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
  box-shadow: 0 28px 60px rgba(6,16,10,0.18);
  order: 99;
}
.diario-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-ryokan);
}
.diario-photo:hover img { transform: scale(1.04); }
.diario-photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
@media (max-width: 900px) {
  .diario-photo { aspect-ratio: 16/10; order: 0; }
}

.diario-content .editorial-title {
  margin-top: 16px;
  max-width: 16ch;
}
.diario-content .editorial-italic {
  color: var(--gold-deep);
  margin-top: 14px;
  max-width: 44ch;
}

.diario-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 28px 0 20px;
  padding: 22px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.diario-price-from {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-deep);
}
.diario-price-amount {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.diario-price-unit {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(6,16,10,0.55);
}
.diario-price-note {
  font-family: var(--f-body);
  font-size: 0.76rem;
  color: rgba(6,16,10,0.58);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.diario-capacidad {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--paper-raw);
  border-radius: 4px;
}
.diario-capacidad-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--ink);
}
.diario-capacidad-glyph {
  font-size: 1.3rem;
  color: var(--copper);
  line-height: 1;
  font-family: var(--f-display);
}
.diario-capacidad-item strong { font-weight: 700; }

.diario-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}
.diario-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(180deg, #25D366, #1FA855);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 32px rgba(37,211,102,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.diario-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(37,211,102,0.45);
}
.diario-cta-primary svg { width: 20px; height: 20px; }

.diario-cta-secondary {
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.3s;
}
.diario-cta-secondary:hover { color: var(--copper); }

/* Right side: amenities card */
.diario-amenities {
  padding: clamp(28px, 3vw, 40px);
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.diario-amenities::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,160,64,0.16) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(166,143,207,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.diario-amenities > * { position: relative; z-index: 1; }

.diario-amenities-label {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.diario-amenities-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--paper);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.diario-amenities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}
.diario-amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: rgba(245,239,227,0.88);
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(245,239,227,0.1);
}
.diario-amenities-list li:last-child,
.diario-amenities-list li:nth-last-child(2) { border-bottom: none; padding-bottom: 0; }
.diario-amenities-list li::before {
  content: '◦';
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  font-family: var(--f-display);
}

.diario-sustainable {
  padding: 14px 18px;
  background: rgba(166,143,207,0.1);
  border: 1px solid rgba(166,143,207,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.diario-sustainable-glyph {
  font-size: 1.6rem;
  color: var(--amatista);
  line-height: 1;
}
.diario-sustainable-text {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(245,239,227,0.88);
}
.diario-sustainable-text strong {
  color: var(--amatista);
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.diario-see-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 22px;
  background: linear-gradient(180deg, var(--gold) 0%, #B89030 100%);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 28px rgba(201,160,64,0.28), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.35s var(--ease-ryokan), box-shadow 0.35s, background 0.35s;
}
.diario-see-all:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #D4B057 0%, var(--gold) 100%);
  box-shadow: 0 18px 40px rgba(201,160,64,0.42), inset 0 1px 0 rgba(255,255,255,0.35);
}
.diario-see-all svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .diario-grid { grid-template-columns: 1fr; gap: 32px; }
  .diario-amenities-list { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   2. MANIFIESTO (NEW) — Editorial contract
   ─────────────────────────────────────────────────────────────────── */
.manifiesto-section {
  padding: var(--step-xxl) 0 var(--step-xl);
  background: var(--paper);
  position: relative;
  isolation: isolate;
}
.manifiesto-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.36 0 0 0 0 0.25 0 0 0 0.3 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.manifiesto-section > * { position: relative; z-index: 1; }

.manifiesto-head {
  text-align: center;
  margin-bottom: var(--step-xl);
}
.manifiesto-head .editorial-title {
  max-width: 16ch;
  margin: 18px auto 24px;
}
.manifiesto-head .editorial-italic {
  max-width: 38ch;
  margin: 0 auto;
  color: var(--ink);
  opacity: 0.7;
}

.manifiesto-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: stretch;
  position: relative;
}
.manifiesto-col {
  padding: 32px 8px;
}
.manifiesto-col-label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.manifiesto-col-label::before {
  font-family: var(--f-display);
  font-size: 1.4rem;
  line-height: 1;
}
.manifiesto-col--yes .manifiesto-col-label {
  color: var(--gold-deep);
}
.manifiesto-col--yes .manifiesto-col-label::before { content: '✓'; color: var(--gold); font-size: 1.2rem; }
.manifiesto-col--no .manifiesto-col-label { color: #9B2F2F; }
.manifiesto-col--no .manifiesto-col-label::before { content: '×'; color: #9B2F2F; font-size: 1.6rem; }

/* Two-path manifesto: daily (gold) and refugio (copper/amatista) */
.manifiesto-col--daily .manifiesto-col-label {
  color: var(--gold-deep);
}
.manifiesto-col--daily .manifiesto-col-label::before {
  content: '☾';
  color: var(--gold-deep);
  font-size: 1.2rem;
}
.manifiesto-col--couples .manifiesto-col-label {
  color: var(--amatista-deep);
}
.manifiesto-col--couples .manifiesto-col-label::before {
  content: '◊';
  color: var(--amatista-deep);
  font-size: 1.2rem;
}
.manifiesto-col-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.manifiesto-col-cta:hover {
  background: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(184,118,81,0.3);
}

.manifiesto-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.manifiesto-list li {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink);
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--ink-line);
  letter-spacing: 0.005em;
  position: relative;
}
.manifiesto-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  line-height: 1.45;
}
.manifiesto-col--couples .manifiesto-list li::before { color: var(--amatista-deep); }
.manifiesto-list li:last-child { border-bottom: none; }

.manifiesto-divider {
  width: 1px;
  background:
    linear-gradient(180deg, transparent 0%, var(--gold-line) 20%, var(--gold-line) 80%, transparent 100%);
  position: relative;
}
.manifiesto-divider::before {
  content: '◊';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 1rem;
  background: var(--paper);
  padding: 8px 0;
  line-height: 1;
}

.manifiesto-footnote {
  margin-top: var(--step-xl);
  text-align: center;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(6,16,10,0.62);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.manifiesto-footnote a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.manifiesto-footnote a:hover { color: var(--ink); }

@media (max-width: 820px) {
  .manifiesto-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .manifiesto-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-line) 20%, var(--gold-line) 80%, transparent 100%);
  }
  .manifiesto-divider::before {
    padding: 0 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   3. PROGRAMA REFUGIO INVIERNO — price cards + cabin numbers
   ─────────────────────────────────────────────────────────────────── */
.refugio-section {
  background: var(--ink);
  color: var(--paper);
  padding: var(--step-xxl) 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.refugio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(166,143,207,0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 90%, rgba(201,160,64,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.refugio-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.75 0 0 0 0 0.6 0 0 0 0.12 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
}
.refugio-section > * { position: relative; z-index: 1; }

.refugio-head {
  text-align: center;
  margin-bottom: var(--step-xl);
}
.refugio-head .editorial-title {
  color: var(--paper);
  max-width: 16ch;
  margin: 20px auto 24px;
}
.refugio-head .editorial-italic {
  color: var(--amatista);
  max-width: 44ch;
  margin: 0 auto;
}

.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: var(--step-xl) 0 var(--step-lg);
}
.price-card {
  border: 1px solid rgba(245,239,227,0.14);
  background: linear-gradient(180deg, rgba(245,239,227,0.025) 0%, rgba(245,239,227,0) 100%);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-ryokan), border-color 0.4s;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(245,239,227,0.05);
  pointer-events: none;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,160,64,0.35);
}
.price-card--featured {
  background:
    linear-gradient(180deg, rgba(166,143,207,0.08) 0%, rgba(6,16,10,0) 100%),
    rgba(14,26,20,0.6);
  border-color: rgba(166,143,207,0.35);
}
.price-card--featured::after {
  content: 'RECOMENDADO';
  position: absolute;
  top: 20px;
  right: -36px;
  padding: 4px 40px;
  background: var(--amatista);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  transform: rotate(38deg);
  box-shadow: 0 4px 14px rgba(166,143,207,0.4);
  font-family: var(--f-body);
}
.price-card-label {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.price-card--featured .price-card-label { color: var(--amatista); }

.price-card-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 6px;
}
.price-card-meta {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,239,227,0.62);
  margin-bottom: 28px;
}
.price-card-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(201,160,64,0.3);
}
.price-card-currency {
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.price-card-amount-value {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  font-weight: 900;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-card-amount-unit {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245,239,227,0.55);
}
.price-card-phrase {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  color: rgba(245,239,227,0.85);
  margin-bottom: 28px;
  max-width: 28ch;
}
.price-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25D366;
  color: #fff;
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
  transition: transform 0.3s var(--ease-ryokan), box-shadow 0.3s;
}
.price-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.45);
}
.price-card-cta svg { width: 18px; height: 18px; }

@media (max-width: 820px) {
  .price-cards { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Cabin numbers (hand-rendered style) ─────────────────────────── */
.cabin-roster {
  margin-top: var(--step-xl);
  padding: var(--step-lg) 0;
  border-top: 1px solid rgba(245,239,227,0.12);
  border-bottom: 1px solid rgba(245,239,227,0.12);
  text-align: center;
}
.cabin-roster-label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amatista);
  margin-bottom: 18px;
}
.cabin-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.cabin-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--paper);
  border: 1px solid var(--amatista);
  background:
    radial-gradient(circle at 30% 30%, rgba(166,143,207,0.25) 0%, rgba(166,143,207,0.08) 60%, transparent 100%);
  position: relative;
  transition: transform 0.4s var(--ease-ryokan), background 0.3s;
  cursor: default;
}
.cabin-number:hover {
  transform: translateY(-3px) rotate(-4deg);
  background: radial-gradient(circle at 30% 30%, rgba(166,143,207,0.45) 0%, rgba(166,143,207,0.15) 60%, transparent 100%);
}
.cabin-number--missing {
  opacity: 0.35;
  color: rgba(245,239,227,0.35);
  border-color: rgba(245,239,227,0.2);
  background: none;
  position: relative;
}
.cabin-number--missing::after {
  content: '';
  position: absolute;
  inset: 15%;
  background: currentColor;
  opacity: 0.4;
  clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
  transform: rotate(45deg);
}
.cabin-roster-note {
  margin-top: 18px;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(245,239,227,0.55);
}

/* ── Legal footnote ──────────────────────────────────────────────── */
.refugio-legal {
  margin-top: var(--step-lg);
  text-align: center;
  font-family: var(--f-body);
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(245,239,227,0.5);
  letter-spacing: 0.04em;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.refugio-legal strong { color: var(--gold); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════
   4. QUÉ INCLUYE — feature grid with SVG line icons
   ─────────────────────────────────────────────────────────────────── */
.incluye-section {
  padding: var(--step-xxl) 0;
  background: var(--paper);
  position: relative;
  isolation: isolate;
}
.incluye-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.88' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0.28 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.incluye-section > * { position: relative; z-index: 1; }

.incluye-head {
  text-align: center;
  margin-bottom: var(--step-xl);
}
.incluye-head .editorial-title {
  max-width: 14ch;
  margin: 20px auto 16px;
}

.incluye-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
}
.incluye-item {
  background: var(--paper);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.4s var(--ease-ryokan);
  position: relative;
  isolation: isolate;
}
.incluye-item:hover {
  background: var(--paper-raw);
}
.incluye-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence baseFrequency='0.9' seed='2'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0.2 0'/></filter><rect width='100' height='100' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
.incluye-icon {
  width: 44px;
  height: 44px;
  color: var(--gold-deep);
}
.incluye-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.incluye-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.incluye-desc {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(6,16,10,0.68);
}

@media (max-width: 1024px) {
  .incluye-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .incluye-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   5. ESPACIO DE RECONEXIÓN — atmospheric photo + poetic quote
   ─────────────────────────────────────────────────────────────────── */
.reconexion-section {
  padding: var(--step-xxl) 0;
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
/* No-photo variant: rich gradient + grain, 0 riesgo de geografía */
.reconexion-section--no-photo {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(166,143,207,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(201,160,64,0.14) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(184,118,81,0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0A1810 0%, #06100A 100%);
}
.reconexion-section--no-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='15'/><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.78 0 0 0 0 0.62 0 0 0 0.14 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.reconexion-section--no-photo .retiro-container {
  position: relative;
  z-index: 2;
}
.reconexion-section .reconexion-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.35) saturate(0.8);
  z-index: 0;
}
.reconexion-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(166,143,207,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201,160,64,0.12) 0%, transparent 55%),
    linear-gradient(180deg, rgba(6,16,10,0.35) 0%, rgba(6,16,10,0.75) 100%);
  pointer-events: none;
  z-index: 1;
}
.reconexion-section > .retiro-container { position: relative; z-index: 2; }

.reconexion-quote {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--paper);
  text-align: center;
  max-width: 20ch;
  margin: 0 auto var(--step-xl);
  letter-spacing: -0.01em;
  position: relative;
}
.reconexion-quote::before,
.reconexion-quote::after {
  font-family: var(--f-display);
  color: var(--amatista);
  opacity: 0.55;
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.2em;
}
.reconexion-quote::before { content: '“'; margin-right: 0.05em; }
.reconexion-quote::after { content: '”'; margin-left: 0.05em; }

.reconexion-attribution {
  text-align: center;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amatista);
  margin-bottom: var(--step-xl);
}

.reconexion-micro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: var(--step-lg);
}
.reconexion-micro {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid rgba(245,239,227,0.1);
  background: rgba(6,16,10,0.3);
  backdrop-filter: blur(8px);
  transition: transform 0.5s var(--ease-ryokan), border-color 0.3s;
}
.reconexion-micro:hover {
  transform: translateY(-4px);
  border-color: rgba(166,143,207,0.4);
}
.reconexion-micro-glyph {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--amatista);
  margin-bottom: 10px;
  line-height: 1;
}
.reconexion-micro-title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.reconexion-micro-desc {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245,239,227,0.7);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .reconexion-micro-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   6. LILAFKEN EXPERIENCE — upsell strip
   ─────────────────────────────────────────────────────────────────── */
.experience-section {
  padding: var(--step-xl) 0;
  background: var(--paper-raw);
  position: relative;
  isolation: isolate;
}
.experience-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='11'/><feColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.36 0 0 0 0 0.22 0 0 0 0.35 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
}
.experience-section > * { position: relative; z-index: 1; }

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--step-xl);
  align-items: center;
}
.experience-head .editorial-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 14ch;
  margin-top: 16px;
}
.experience-head .editorial-body {
  margin-top: 20px;
}

.experience-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.experience-inner:has(.experience-items .experience-item:nth-child(4)) .experience-items {
  grid-template-columns: repeat(2, 1fr);
}
.experience-disclaimer {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(184,118,81,0.08);
  border-left: 3px solid var(--copper);
  font-family: var(--f-body);
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(6,16,10,0.72);
  border-radius: 2px;
}
.experience-disclaimer strong { color: var(--copper); font-weight: 700; }
.experience-cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.experience-cta-ghost {
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.3s;
}
.experience-cta-ghost:hover { color: var(--copper); }

/* Each item as link with photo background */
a.experience-item {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: 4px;
  isolation: isolate;
}
a.experience-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.7s var(--ease-ryokan);
}
a.experience-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,16,10,0.2) 0%, rgba(6,16,10,0.78) 100%);
  z-index: -1;
  transition: background 0.4s;
}
a.experience-item:hover::before { transform: scale(1.06); }
a.experience-item:hover::after { background: linear-gradient(180deg, rgba(6,16,10,0.15) 0%, rgba(6,16,10,0.65) 100%); }
a.experience-item .experience-item-num,
a.experience-item .experience-item-title,
a.experience-item .experience-item-desc { color: var(--paper); }
a.experience-item .experience-item-num { color: var(--gold); }
a.experience-item .experience-item-title { color: var(--paper); text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
a.experience-item .experience-item-desc { color: rgba(245,239,227,0.85); text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
/* Per-card backgrounds */
a.experience-item[href*="#surf"]::before { background-image: url('../img/experiences/surf.jpg'); }
a.experience-item[href*="#kayak"]::before { background-image: url('../img/experiences/kayak.jpg'); }
a.experience-item[href*="#cabalgatas"]::before { background-image: url('../img/experiences/cabalgatas.jpg'); }
a.experience-item[href*="#ruta-del-vino"]::before { background-image: url('../img/experiences/vino.jpg'); }
a.experience-item[href*="#ciclismo"]::before { background-image: url('../img/experiences/ciclismo.jpg'); }
a.experience-item[href*="#ruta-cerveza"]::before { background-image: url('../img/experiences/cerveza.jpg'); }
.experience-item {
  background: var(--paper);
  padding: 22px 18px;
  border: 1px solid var(--ink-line);
  border-left: 3px solid var(--copper);
  transition: transform 0.4s var(--ease-ryokan), border-left-color 0.3s;
}
.experience-item:hover {
  transform: translateY(-4px);
  border-left-color: var(--gold);
}
.experience-item-num {
  font-family: var(--f-display);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 8px;
}
.experience-item-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.experience-item-desc {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(6,16,10,0.65);
}
.experience-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  transition: background 0.3s, transform 0.3s;
}
.experience-cta:hover {
  background: var(--copper);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .experience-inner { grid-template-columns: 1fr; gap: var(--step-lg); }
  .experience-items { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   7. REGLAS DEL REFUGIO — editorial rules card
   ─────────────────────────────────────────────────────────────────── */
.reglas-section {
  padding: var(--step-xxl) 0;
  background: var(--paper);
  position: relative;
  isolation: isolate;
}
.reglas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.88' seed='6'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0.25 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.reglas-section > * { position: relative; z-index: 1; }

.reglas-head {
  text-align: center;
  margin-bottom: var(--step-xl);
}
.reglas-head .editorial-title {
  max-width: 14ch;
  margin: 20px auto 18px;
}

.reglas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: rule-counter;
}
.regla-item {
  counter-increment: rule-counter;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--ink-line);
  position: relative;
  transition: transform 0.4s var(--ease-ryokan), border-color 0.3s;
}
.regla-item::before {
  content: counter(rule-counter, decimal-leading-zero);
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: -0.03em;
}
.regla-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold-line);
}
.regla-glyph {
  font-size: 1.4rem;
  color: var(--gold-deep);
  margin-bottom: 16px;
  line-height: 1;
}
.regla-title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.regla-desc {
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(6,16,10,0.7);
}

.reglas-disclaimer {
  margin-top: var(--step-xl);
  padding: 28px 32px;
  background: rgba(166,143,207,0.08);
  border: 1px solid rgba(166,143,207,0.3);
  border-left: 4px solid var(--amatista-deep);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.reglas-disclaimer-title {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amatista-deep);
  margin-bottom: 10px;
}
.reglas-disclaimer-body {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(6,16,10,0.72);
}

@media (max-width: 900px) {
  .reglas-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .reglas-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   7b. PET FRIENDLY · big editorial card
   ─────────────────────────────────────────────────────────────────── */
.petfriendly-section {
  padding: var(--step-xxl) 0;
  background: linear-gradient(180deg, var(--paper-raw) 0%, var(--paper) 100%);
  position: relative;
  isolation: isolate;
}
.petfriendly-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='13'/><feColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.36 0 0 0 0 0.22 0 0 0 0.32 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.petfriendly-section > * { position: relative; z-index: 1; }

.petfriendly-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(6,16,10,0.18);
  border: 1px solid var(--ink-line);
}

/* Photo column */
.petfriendly-photo {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.petfriendly-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-ryokan);
}
.petfriendly-photo:hover img { transform: scale(1.04); }
.petfriendly-photo-stamp {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--ink);
  color: var(--gold);
  padding: 12px 20px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.petfriendly-photo-stamp span:first-child {
  font-size: 1.4rem;
  letter-spacing: 0;
}

/* Content column */
.petfriendly-content {
  padding: clamp(36px, 5vw, 64px) clamp(32px, 4.5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.petfriendly-glyphs {
  display: flex;
  gap: 10px;
  font-size: 2rem;
  margin-bottom: -6px;
}
.petfriendly-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 8px 0 0;
}
.petfriendly-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}
.petfriendly-lede {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(6,16,10,0.78);
  margin: 8px 0 12px;
  max-width: 50ch;
}

.petfriendly-rules {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.petfriendly-rules li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-line);
  font-family: var(--f-body);
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(6,16,10,0.78);
}
.petfriendly-rules li:last-child { border-bottom: none; }
.petfriendly-rule-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--copper);
  letter-spacing: -0.02em;
  line-height: 1;
}
.petfriendly-rules strong {
  color: var(--ink);
  font-weight: 700;
}
.petfriendly-rules em {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
}

.petfriendly-legal {
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(166,143,207,0.08);
  border-left: 3px solid var(--amatista-deep);
  border-radius: 2px;
}
.petfriendly-legal-label {
  display: block;
  font-family: var(--f-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amatista-deep);
  margin-bottom: 8px;
}
.petfriendly-legal p {
  font-family: var(--f-body);
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(6,16,10,0.7);
  margin: 0;
}
.petfriendly-legal strong {
  color: var(--amatista-deep);
  font-weight: 700;
}

@media (max-width: 900px) {
  .petfriendly-card { grid-template-columns: 1fr; }
  .petfriendly-photo { min-height: 320px; max-height: 400px; }
  .petfriendly-photo-stamp { bottom: 16px; left: 16px; padding: 10px 16px; font-size: 0.72rem; }
}
@media (max-width: 520px) {
  .petfriendly-rules li { grid-template-columns: 44px 1fr; gap: 12px; }
  .petfriendly-rule-num { font-size: 1.3rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   8c. REVIEWS / TESTIMONIOS REALES + badges de plataformas
   ─────────────────────────────────────────────────────────────────── */
.reviews-section {
  padding: var(--step-xxl) 0;
  background: var(--paper);
  position: relative;
  isolation: isolate;
}
.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.88' numOctaves='2' seed='17'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.36 0 0 0 0 0.25 0 0 0 0.25 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.reviews-section > * { position: relative; z-index: 1; }

.reviews-head {
  text-align: center;
  margin-bottom: var(--step-lg);
}
.reviews-head-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 16px auto 0;
  max-width: 18ch;
}
.reviews-head-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}

/* Badges row */
.reviews-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: var(--step-lg) 0 var(--step-xl);
}
.review-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 14px;
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s var(--ease-ryokan), box-shadow 0.3s, border-color 0.3s;
  color: var(--ink);
}
.review-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(6,16,10,0.08);
  border-color: var(--gold);
}
.review-badge-logo {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #003580; /* Booking blue */
}
.review-badge--airbnb .review-badge-logo { color: #FF5A5F; }
.review-badge--tripadvisor .review-badge-logo { color: #00AF87; }
.review-badge--fb .review-badge-logo { color: #1877F2; }
.review-badge-score {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 4px;
}
.review-badge-score small {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(6,16,10,0.5);
  letter-spacing: 0.02em;
}
.review-badge-count {
  font-family: var(--f-body);
  font-size: 0.72rem;
  color: rgba(6,16,10,0.55);
  letter-spacing: 0.01em;
  text-align: center;
}

/* Reviews grid (6 cards) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-left: 3px solid var(--gold);
  padding: 24px 26px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease-ryokan), box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(6,16,10,0.1);
}
.review-card--feature {
  grid-column: span 2;
  background: linear-gradient(180deg, #FFFDF8 0%, #F5EFE3 100%);
  border-left-color: var(--copper);
}
.review-card-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.review-card-text {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(6,16,10,0.82);
  margin: 0;
  flex: 1;
}
.review-card--feature .review-card-text {
  font-size: 1.28rem;
  line-height: 1.5;
}
.review-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--ink-line);
}
.review-card-author {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.review-card-platform {
  font-family: var(--f-body);
  font-size: 0.76rem;
  color: rgba(6,16,10,0.55);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.reviews-cta-row {
  text-align: center;
  margin-top: var(--step-lg);
}
.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  transition: background 0.3s, color 0.3s;
}
.reviews-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 1000px) {
  .reviews-badges { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card--feature { grid-column: span 2; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card--feature { grid-column: span 1; }
  .review-card--feature .review-card-text { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   1d. MIDWEEK STRIP — oferta 3 noches $60.000
   ─────────────────────────────────────────────────────────────────── */
.midweek-strip {
  padding: var(--step-xl) 0;
  background: linear-gradient(135deg, #0D2137 0%, #06100A 50%, #1A3C2E 100%);
  color: var(--paper);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.midweek-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201,160,64,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(166,143,207,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.midweek-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.92' numOctaves='2' seed='21'/><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.78 0 0 0 0 0.62 0 0 0 0.14 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
}
.midweek-strip > * { position: relative; z-index: 1; }

.midweek-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.midweek-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201,160,64,0.12);
  border: 1px solid rgba(201,160,64,0.35);
  border-radius: var(--r-pill);
  color: var(--gold);
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.midweek-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0 0 16px;
}
.midweek-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.midweek-copy {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(245,239,227,0.82);
  max-width: 46ch;
  margin: 0 0 20px;
}
.midweek-fine {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.midweek-fine li {
  font-family: var(--f-body);
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(245,239,227,0.72);
  letter-spacing: 0.01em;
}
.midweek-fine li strong {
  color: var(--gold);
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.midweek-price-card {
  background: rgba(245,239,227,0.05);
  border: 1px solid rgba(201,160,64,0.35);
  border-radius: 4px;
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.midweek-price-label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.midweek-price-value {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 6px;
}
.midweek-price-unit {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245,239,227,0.6);
  margin-bottom: 24px;
}
.midweek-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(180deg, #25D366, #1FA855);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 30px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.midweek-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(37,211,102,0.5);
}

@media (max-width: 820px) {
  .midweek-inner { grid-template-columns: 1fr; gap: 28px; }
  .midweek-price-card { padding: 24px 20px; }
}

/* Coming-soon experience card */
.experience-item--soon {
  background: linear-gradient(135deg, rgba(201,160,64,0.12), rgba(184,118,81,0.08)) !important;
  border-left-color: var(--amatista-deep) !important;
  position: relative;
}
.experience-item--soon::after {
  content: '◇';
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--amatista);
  font-size: 1rem;
  animation: refugio-pulse 2.6s ease-in-out infinite;
}
.experience-item--soon .experience-item-num { color: var(--amatista-deep); }

/* ═══════════════════════════════════════════════════════════════════
   9a. GALERIA PICHILEMU — grid masonry con mix drone/costa/interior
   ─────────────────────────────────────────────────────────────────── */
.gallery-section {
  padding: var(--step-xxl) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(201,160,64,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(166,143,207,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.gallery-section > * { position: relative; z-index: 1; }

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: var(--step-lg);
  flex-wrap: wrap;
}
.gallery-head-left { flex: 1; min-width: 260px; }
.gallery-head .editorial-eyebrow { color: var(--amatista); margin-bottom: 14px; }
.gallery-head-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0;
  max-width: 18ch;
}
.gallery-head-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--amatista);
}
.gallery-head-caption {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,239,227,0.68);
  max-width: 38ch;
  line-height: 1.5;
}

/* Masonry via CSS grid with explicit spans */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 10px;
}
.gal-tile {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #0D1A13;
}
.gal-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-ryokan), filter 0.5s;
  display: block;
}
.gal-tile:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}
.gal-tile-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(6,16,10,0.85) 100%);
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.gal-tile:hover .gal-tile-caption { opacity: 1; }
/* Spans for masonry layout - 12 tiles */
.gal-1  { grid-column: span 5; grid-row: span 3; }
.gal-2  { grid-column: span 4; grid-row: span 2; }
.gal-3  { grid-column: span 3; grid-row: span 2; }
.gal-4  { grid-column: span 4; grid-row: span 2; }
.gal-5  { grid-column: span 3; grid-row: span 3; }
.gal-6  { grid-column: span 4; grid-row: span 2; }
.gal-7  { grid-column: span 3; grid-row: span 2; }
.gal-8  { grid-column: span 5; grid-row: span 3; }
.gal-9  { grid-column: span 4; grid-row: span 2; }
.gal-10 { grid-column: span 3; grid-row: span 2; }
.gal-11 { grid-column: span 4; grid-row: span 2; }
.gal-12 { grid-column: span 5; grid-row: span 3; }

@media (max-width: 1024px) {
  .gallery-masonry { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .gal-1,.gal-8,.gal-12 { grid-column: span 6; grid-row: span 3; }
  .gal-2,.gal-4,.gal-6,.gal-9,.gal-11 { grid-column: span 4; grid-row: span 2; }
  .gal-3,.gal-5,.gal-7,.gal-10 { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 640px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 6px; }
  .gal-tile { grid-column: span 1; grid-row: span 2; }
  .gal-1,.gal-8,.gal-12 { grid-column: span 2; grid-row: span 3; }
  .gallery-head { flex-direction: column; align-items: flex-start; }
  .gal-tile-caption { opacity: 1; font-size: 0.82rem; padding: 10px 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   9b. INSTAGRAM FEED — social proof
   ─────────────────────────────────────────────────────────────────── */
.ig-section {
  padding: var(--step-xxl) 0;
  background: var(--paper);
  position: relative;
  isolation: isolate;
}
.ig-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.88' numOctaves='2' seed='14'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0.22 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.ig-section > * { position: relative; z-index: 1; }

.ig-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: var(--step-lg);
  flex-wrap: wrap;
}
.ig-head-left {
  flex: 1;
  min-width: 260px;
}
.ig-head .editorial-eyebrow { margin-bottom: 14px; }
.ig-head-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.ig-head-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}
.ig-head-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--f-body);
  color: rgba(6,16,10,0.72);
  font-size: 0.92rem;
}
.ig-head-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.ig-head-stat-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ig-head-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(6,16,10,0.55);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: var(--step-lg);
}
.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  background: var(--ink);
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-ryokan), filter 0.5s;
}
.ig-tile:hover img {
  transform: scale(1.06);
  filter: brightness(0.55);
}
.ig-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
  color: #fff;
  pointer-events: none;
}
.ig-tile:hover .ig-tile-overlay { opacity: 1; }
.ig-tile-overlay svg { width: 30px; height: 30px; }

.ig-tile--reel::after {
  content: '▶';
  position: absolute;
  top: 10px;
  right: 14px;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.9;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

.ig-cta-row {
  text-align: center;
}
.ig-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 32px rgba(225,48,108,0.32);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ig-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(225,48,108,0.45);
}
.ig-cta svg { width: 22px; height: 22px; fill: currentColor; }

@media (max-width: 820px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .ig-head { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════
   10. CTA FINAL — mega whatsapp invocation
   ─────────────────────────────────────────────────────────────────── */
.cta-final-section {
  padding: var(--step-xxl) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.cta-final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(166,143,207,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(201,160,64,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-final-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.92' seed='12'/><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.78 0 0 0 0 0.62 0 0 0 0.12 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
}
.cta-final-section > * { position: relative; z-index: 1; }

.cta-final-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 18ch;
  margin: 0 auto 22px;
}
.cta-final-sub {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(245,239,227,0.72);
  max-width: 42ch;
  margin: 0 auto var(--step-lg);
}

.cta-mega {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 44px;
  background: linear-gradient(180deg, #25D366 0%, #1FA855 100%);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  box-shadow: 0 20px 60px rgba(37,211,102,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.4s var(--ease-ryokan), box-shadow 0.4s;
}
.cta-mega:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 28px 80px rgba(37,211,102,0.6), inset 0 1px 0 rgba(255,255,255,0.4);
}
.cta-mega svg { width: 28px; height: 28px; }
.cta-mega-number {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: none;
  opacity: 0.9;
  margin-top: 12px;
}

.cta-keyword {
  display: inline-block;
  padding: 4px 14px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.18em;
  border-radius: 4px;
  margin: 0 2px;
}

.cta-final-proof {
  margin-top: var(--step-lg);
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: rgba(245,239,227,0.55);
  letter-spacing: 0.04em;
}
.cta-final-proof a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.cta-final-proof a:hover { color: var(--paper); }
.cta-final-proof-sep {
  width: 4px;
  height: 4px;
  background: var(--amatista);
  border-radius: 50%;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS (ryokan-slow)
   ─────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .retiro-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.1s var(--ease-ryokan), transform 1.1s var(--ease-ryokan);
    will-change: opacity, transform;
  }
  .retiro-reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .retiro-reveal.delay-1 { transition-delay: 0.12s; }
  .retiro-reveal.delay-2 { transition-delay: 0.24s; }
  .retiro-reveal.delay-3 { transition-delay: 0.36s; }
  .retiro-reveal.delay-4 { transition-delay: 0.48s; }
  .retiro-reveal.delay-5 { transition-delay: 0.60s; }
  .retiro-reveal.delay-6 { transition-delay: 0.72s; }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE REFINEMENTS
   ─────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .refugio-section,
  .manifiesto-section,
  .incluye-section,
  .reconexion-section,
  .reglas-section,
  .cta-final-section {
    padding: 72px 0;
  }
  .refugio-panel { padding: 24px 20px; }
  .refugio-tier-price { font-size: 1.3rem; }
  .price-card--featured::after {
    font-size: 0.55rem;
    top: 14px;
    right: -44px;
    padding: 3px 44px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO OVERRIDES — disable scroll-scrub, embed YouTube background
   ─────────────────────────────────────────────────────────────────── */
.hero-video-section {
  overflow: hidden !important;
}
.hero-video-wrapper {
  height: auto !important;
  min-height: 100vh;
}
.hero-sticky {
  position: relative !important;
  height: auto !important;
  min-height: 100vh;
}
/* Local video autoplay loop muted, fills hero completamente */
.hero-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  background: #06100A url('../video/hero-poster.jpg') center/cover no-repeat;
  pointer-events: none;
}
/* Respect reduced-motion — show poster only */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-sticky {
    background: #06100A url('../video/hero-poster.jpg') center/cover no-repeat;
  }
}
