/* =============================================================
   1. Tokens (custom properties)
   ============================================================= */
:root {
  --bg:           #070E05;
  --bg-2:         #0B1709;
  --bg-3:         #111F0D;
  --bg-4:         #172B12;
  --cream:        #EEE5CC;
  --cream-2:      #C5B89C;
  --cream-3:      #8D8069;
  --leaf:         #7B5EA7;
  --leaf-dark:    #6A4C93;
  --amber:        #CB9C42;
  --amber-bright: #E9B048;
  --water:        #5DAFC6;
  --line:         rgba(238,229,204,0.09);
  --line-soft:    rgba(238,229,204,0.05);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

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

  --nav-h: 70px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --container: 88rem;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; }
ul[role="list"] { list-style: none; padding: 0; }
::selection { background: var(--amber); color: var(--bg); }
:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1.25rem;
  background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 60px;
  font-weight: 500; font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================================
   4. Typography
   ============================================================= */
.deco-num {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 600;
  line-height: 1;
  color: var(--line-soft);
  display: block;
}
.deco-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-3);
  display: block;
}
.section-tag-water {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--water);
  margin-bottom: 1.5rem;
}
.section-tag-muted {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 1.5rem;
}




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

/* --- Reveal system --- */
.reveal {
  opacity: 0;
  transform: translateY(42px);
}
/* Defensive fix: split-text elements must NOT be hidden (A.4.5) */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

/* --- Splash --- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  pointer-events: none;
  /* Safety: auto-hide at 4.5s if JS fails */
  animation: splashSafety 0.01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease-out);
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: splashReveal 0.8s var(--ease-out) 0.2s both;
}
@keyframes splashReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.splash-name {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.06em;
}
.splash-sub {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.splash-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--leaf), var(--amber));
  animation: splashBar 1.2s var(--ease-soft) 0.4s both;
}
@keyframes splashBar {
  from { width: 0; }
  to   { width: 100%; }
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: var(--gutter);
  transition: background 0.45s var(--ease-out), backdrop-filter 0.45s var(--ease-out), border-color 0.45s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7,14,5,0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--leaf); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  display: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--cream-2);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--cream); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 60px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bg);
  background: var(--leaf);
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.nav-cta:hover {
  background: #86CC80;
  transform: translateY(-1px);
}

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.12);
  transform-origin: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(7,14,5,0.45) 0%,
      rgba(7,14,5,0.15) 30%,
      rgba(7,14,5,0.55) 70%,
      rgba(7,14,5,0.98) 100%
    ),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(11,23,9,0.7), transparent 80%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) var(--gutter) 6rem;
  width: 100%;
  max-width: 72rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin-bottom: 2rem;
  opacity: 0;
}
.hero-kicker-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  flex-shrink: 0;
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.65); }
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  text-wrap: balance;
  opacity: 0;
}
.hero-title em {
  font-style: italic;
  color: var(--leaf);
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--cream-2);
  line-height: 1.75;
  max-width: 44rem;
  margin-bottom: 2.5rem;
  opacity: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2.25rem;
  border-radius: 60px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), background 0.2s;
}
.btn-hero:hover { transform: translateY(-3px); }
.btn-hero-amber {
  background: var(--amber);
  color: var(--bg);
  box-shadow: 0 0 35px rgba(203,156,66,0.28);
}
.btn-hero-amber:hover {
  background: var(--amber-bright);
  box-shadow: 0 6px 45px rgba(233,176,72,0.5);
}
.btn-hero-leaf {
  background: transparent;
  color: var(--leaf);
  border: 1.5px solid rgba(111,187,107,0.6);
}
.btn-hero-leaf:hover {
  background: rgba(111,187,107,0.1);
  border-color: var(--leaf);
  box-shadow: 0 0 35px rgba(111,187,107,0.2);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-3);
  opacity: 0;
  z-index: 6;
}
.hero-scroll-bar {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, var(--cream-3));
  animation: scrollBar 2.2s ease-in-out infinite;
}
@keyframes scrollBar {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  90%  { opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Firefly particles */
.firefly {
  position: absolute;
  border-radius: 50%;
  background: var(--amber-bright);
  box-shadow: 0 0 8px 3px rgba(233,176,72,0.5);
  opacity: 0;
  animation: fireflyFloat var(--fw-dur, 7s) var(--fw-del, 0s) infinite ease-in-out;
}
@keyframes fireflyFloat {
  0%   { opacity: 0;   transform: translate(0, 0) scale(0.6); }
  15%  { opacity: 0.8; }
  45%  { opacity: 0.35; transform: translate(var(--fw-dx, 12px), -28px) scale(1.3); }
  75%  { opacity: 0.65; }
  100% { opacity: 0;   transform: translate(0, 0) scale(0.6); }
}

/* --- Intro / Manifiesto --- */
.intro {
  background: var(--bg);
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.intro-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 6rem;
  align-items: center;
}
.intro-eyebrow {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.intro-text-col {
  display: flex;
  flex-direction: column;
}
.intro-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.intro-logo-col img {
  width: min(340px, 100%);
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}
.intro-logo-col img:hover {
  transform: scale(1.04) rotate(-1deg);
  filter: drop-shadow(0 30px 80px rgba(111,187,107,0.25)) drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}
.intro-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 2rem;
}
.intro-title em {
  font-style: italic;
  color: var(--leaf);
}
.intro-body {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-2);
  max-width: 44ch;
}
.intro-image {
  margin-top: 5rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.intro-image img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center 55%;
  border-radius: 10px;
}

/* --- Segment (Parejas / Grupos) --- */
.segment {
  display: grid;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.segment-visual {
  position: relative;
  min-height: 55vw;
  overflow: hidden;
}
.segment-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--ease-soft);
}
.segment:hover .segment-visual img { transform: scale(1.05); }
.segment-visual-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,23,9,0.7) 100%);
  pointer-events: none;
}
.segment-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem var(--gutter);
}
.segment-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 60px;
  margin-bottom: 2rem;
  width: fit-content;
}
.segment-tag.amber {
  color: var(--amber);
  border: 1px solid rgba(203,156,66,0.4);
  background: rgba(203,156,66,0.07);
}
.segment-tag.leaf {
  color: var(--leaf);
  border: 1px solid rgba(111,187,107,0.4);
  background: rgba(111,187,107,0.07);
}
.segment-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 2rem;
}
.segment-title em { font-style: italic; }
[data-segment="parejas"] .segment-title em { color: var(--amber); }
[data-segment="grupos"] .segment-title em { color: var(--leaf); }
.segment-text {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-2);
  max-width: 46ch;
  margin-bottom: 1rem;
}
.btn-segment {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.875rem;
  border-radius: 60px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 1.5rem;
  width: fit-content;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), background 0.2s;
}
.btn-segment:hover { transform: translateY(-3px); }
.btn-segment.amber { background: var(--amber); color: var(--bg); }
.btn-segment.amber:hover { background: var(--amber-bright); box-shadow: 0 10px 45px rgba(203,156,66,0.4); }
.btn-segment.leaf  { background: var(--leaf); color: var(--bg); }
.btn-segment.leaf:hover  { background: #86CC80; box-shadow: 0 10px 45px rgba(111,187,107,0.4); }

/* --- Adventure / Charcos --- */
.adventure {
  position: relative;
  min-height: 85vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.adventure-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.adventure-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.12);
}

/* Overlay base: oscurece toda la imagen de forma pareja */
.adventure-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 6, 0.65) 0%,
    rgba(6, 10, 6, 0.5) 35%,
    rgba(6, 10, 6, 0.72) 100%
  );
}

/* Viñeta extra: un scrim radial centrado justo detrás del bloque de texto */
.adventure-inner::before {
  content: "";
  position: absolute;
  inset: -2rem -3rem;
  z-index: -1;
  background: radial-gradient(
    ellipse 70% 65% at center,
    rgba(4, 8, 4, 0.55) 0%,
    rgba(4, 8, 4, 0.25) 55%,
    transparent 80%
  );
  border-radius: 2rem;
}

.adventure-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem var(--gutter);
  max-width: 60rem;
}

.section-tag-water {
  display: inline-block;
  color: #b9e4ee;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.14em;
  font-weight: 600;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out, ease) forwards 0.1s;
}

.adventure-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.06;
  color: #fdfaf5;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out, ease) forwards 0.25s;
}
.adventure-title em {
  font-style: italic;
  color: #8fd6e8;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.adventure-text {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
  max-width: 46ch;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out, ease) forwards 0.4s;
}

.adventure-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.adventure-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(12, 22, 10, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  min-width: 110px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--ease-out, ease), border-color 0.25s, background 0.25s;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out, ease) forwards;
}
.adventure-step:nth-child(1) { animation-delay: 0.55s; }
.adventure-step:nth-child(2) { animation-delay: 0.65s; }
.adventure-step:nth-child(3) { animation-delay: 0.75s; }
.adventure-step:nth-child(4) { animation-delay: 0.85s; }

.adventure-step:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 214, 232, 0.4);
  background: rgba(12, 22, 10, 0.75);
}
.adventure-step span:first-child { font-size: 1.75rem; }
.adventure-step p {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--cream-2);
  text-align: center;
  line-height: 1.4;
}

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

/* --- Términos y condiciones --- */
.terminos {
  padding: 6rem var(--gutter);
  max-width: 72rem;
  margin: 0 auto;
}
.terminos-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3.5rem;
}
.terminos-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--cream);
  margin: 0.75rem 0 1.25rem;
}
.terminos-title em { font-style: italic; color: var(--water); }
.terminos-intro {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream-2);
}
.terminos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.terminos-item {
  background: rgba(17, 31, 13, 0.5);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem;
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}
.terminos-item:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 175, 198, 0.3);
}
.terminos-icon { font-size: 1.6rem; display: block; margin-bottom: 0.75rem; }
.terminos-item h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.terminos-item p {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--cream-2);
  font-weight: 300;
}
.terminos-legal {
  font-family: var(--sans);
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* --- Incluye / Precios --- */
.incluye {
  background: var(--bg);
  padding: 7rem 0 6rem;
  border-top: 1px solid var(--line);
}
.incluye-header {
  text-align: center;
  padding: 0 var(--gutter) 5rem;
  max-width: 60rem;
  margin-inline: auto;
}
.incluye-claim {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream-2);
  line-height: 1.3;
  margin-bottom: 2.5rem;
}
.incluye-claim em { color: var(--cream); font-style: italic; }
.incluye-price-hero {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.price-desde {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--serif);
  color: var(--amber-bright);
  line-height: 1;
}
.price-sign {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
}
.count-num {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.price-mil {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
}
.price-unit {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--cream-3);
}
.incluye-tagline {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream-3);
}
.incluye-grid {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.incluye-item {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.incluye-item:hover {
  transform: translateY(-5px);
  border-color: rgba(203,156,66,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(203,156,66,0.1);
}
.incluye-icon {
  display: block;
  font-size: 1.875rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.incluye-item h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.incluye-item p {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream-3);
}

/* --- Fogata break --- */
.fogata-break {
  position: relative;
  min-height: 65vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.fogata-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fogata-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.12);
}
.fogata-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,14,5,0.7);
}
.fogata-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem var(--gutter);
}
.fogata-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.28;
  color: var(--cream);
  max-width: 56rem;
  margin-inline: auto;
}
.fogata-quote em {
  font-style: italic;
  color: var(--amber);
}

/* Amber glow pulsante (efecto de brillo de fogata) */
.fogata-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 55% 45% at 50% 58%,
    rgba(203,156,66,0.32) 0%,
    rgba(203,156,66,0.10) 35%,
    transparent 70%
  );
  animation: fogataGlow 3.8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes fogataGlow {
  from { opacity: 0.50; transform: scale(1.00); }
  to   { opacity: 1.00; transform: scale(1.10); }
}

/* Estado inicial de la cita (GSAP la revela al hacer scroll) */
.fogata-quote--hidden {
  opacity: 0;
  transform: scale(0.88) translateY(28px);
}

/* --- Desayuno section --- */
.desayuno-section {
  display: grid;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.desayuno-img {
  overflow: hidden;
  min-height: 55vw;
}
.desayuno-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--ease-soft);
}
.desayuno-section:hover .desayuno-img img { transform: scale(1.04); }
.desayuno-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem var(--gutter);
}
.desayuno-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.desayuno-title em { font-style: italic; color: var(--amber); }
.desayuno-body {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-2);
  max-width: 44ch;
}

/* --- CTA Final --- */
.cta-final {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
}

/* Columna imagen */
.cta-final-img {
  position: relative;
  overflow: hidden;
  min-height: 62vw;
}
.cta-final-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.9s var(--ease-soft);
}
.cta-final:hover .cta-final-img img {
  transform: scale(1.04);
}

/* Columna texto */
.cta-final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem var(--gutter) 6rem;
}

/* Resplandor decorativo — solo en la columna texto */
.cta-final-inner::before {
  content: '';
  position: absolute;
  inset: -30% -20%;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(203,156,66,0.10), transparent 70%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(111,187,107,0.07), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  z-index: -1;
}

.cta-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 1.5rem;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.04;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.cta-title em { font-style: italic; color: var(--amber); }
.cta-body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream-2);
  line-height: 1.75;
  max-width: 42ch;
  margin: 0 auto 3rem;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.btn-final {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1.05rem 2.4rem;
  border-radius: 60px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s, background 0.2s;
}
.btn-final:hover { transform: translateY(-3px); }
.btn-final-amber { background: var(--amber); color: var(--bg); }
.btn-final-amber:hover { background: var(--amber-bright); box-shadow: 0 14px 55px rgba(203,156,66,0.45); }
.btn-final-leaf  { background: var(--leaf); color: var(--bg); }
.btn-final-leaf:hover  { background: #86CC80; box-shadow: 0 14px 55px rgba(111,187,107,0.45); }
.cta-general {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--cream-3);
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(141,128,105,0.4);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.cta-general:hover { color: var(--cream); text-decoration-color: var(--cream-3); }

/* --- Footer --- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 3rem var(--gutter);
}
.footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
}
.footer-tagline {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--cream-2);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--cream-3);
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* =============================================================
   7. Effects / Keyframes (additional)
   ============================================================= */

/* --- Ken Burns + Curtain reveal (sección parejas) --- */

/* Cortina: imagen oculta detrás de un velo que se descorre de izq. a der. */
.segment-visual--ken {
  overflow: hidden;
}
.segment-visual--ken::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  transform: translateX(0%);
  transition: transform 1.3s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 3;
  pointer-events: none;
}
.segment-visual--ken.curtain-done::after {
  transform: translateX(101%);
}

/* Ken Burns: zoom + drift lento en loop, solo para esta imagen */
.segment-visual--ken img {
  transform-origin: center center;
  animation: kenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1.10) translate(0%,    0%);    }
  30%  { transform: scale(1.14) translate(-1.2%, -0.6%); }
  65%  { transform: scale(1.12) translate(0.8%,  -1.2%); }
  100% { transform: scale(1.18) translate(-1.5%, 0.8%);  }
}

/* Cancelar el hover-scale genérico en esta imagen para no pelear con Ken Burns */
.segment-visual--ken:hover img {
  animation-play-state: paused; /* pausa el KB al hacer hover */
}

/* Stagger delays — must include .is-visible to win specificity over .reveal.is-visible */
.incluye-item.is-visible:nth-child(1) { transition-delay: 0.00s; }
.incluye-item.is-visible:nth-child(2) { transition-delay: 0.09s; }
.incluye-item.is-visible:nth-child(3) { transition-delay: 0.18s; }
.incluye-item.is-visible:nth-child(4) { transition-delay: 0.27s; }
.incluye-item.is-visible:nth-child(5) { transition-delay: 0.09s; }
.incluye-item.is-visible:nth-child(6) { transition-delay: 0.18s; }
.incluye-item.is-visible:nth-child(7) { transition-delay: 0.27s; }

.adventure-step.is-visible:nth-child(1) { transition-delay: 0.00s; }
.adventure-step.is-visible:nth-child(2) { transition-delay: 0.10s; }
.adventure-step.is-visible:nth-child(3) { transition-delay: 0.20s; }
.adventure-step.is-visible:nth-child(4) { transition-delay: 0.30s; }

/* =============================================================
   8. Responsive — mobile first
   ============================================================= */
@media (min-width: 540px) {
  .incluye-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .nav-link { display: inline-flex; }

  .intro-container {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .intro-logo-col img { width: min(380px, 42vw); }

  .desayuno-img { min-height: 45vw; }
}

@media (min-width: 960px) {
  .segment {
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
  }
  .segment-visual { min-height: unset; }
  .segment-body { padding: 6rem 4.5rem; }
  .segment-visual-tint {
    background: linear-gradient(270deg, transparent 60%, rgba(11,23,9,0.5) 100%);
  }
  .segment-reverse .segment-visual { order: 2; }
  .segment-reverse .segment-body  { order: 1; }
  .segment-reverse .segment-visual-tint {
    background: linear-gradient(90deg, transparent 60%, rgba(11,23,9,0.5) 100%);
  }

  .desayuno-section {
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }
  .desayuno-img { min-height: unset; }
  .desayuno-text { padding: 6rem 5rem; }

  .incluye-grid { grid-template-columns: repeat(3, 1fr); }

  /* CTA Final: imagen izquierda, texto derecha */
  .cta-final {
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
  }
  .cta-final-img { min-height: unset; }
  .cta-final-inner {
    align-items: flex-start;
    text-align: left;
    padding: 6rem 5rem;
  }
  .cta-body { margin: 0 0 3rem; }
  .cta-btns { justify-content: flex-start; }
}

@media (min-width: 1280px) {
  .incluye-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .firefly { animation: none; opacity: 0; }
  .hero-scroll-bar { animation: none; }
  .splash-bar { animation: none; width: 100%; }
  .dotPulse { animation: none; }
  .fogata-glow { animation: none; opacity: 0.65; }
}
