/* =============================================================
   MOHAVENTURA — Elsa & Moha · Erg Chebbi, Marruecos
   Editorial cálido, formato storytelling largo · Poiret One + Montserrat
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Palette — desierto al atardecer */
  --cream:      #FBF1E8;
  --cream-2:    #F3E1CE;
  --paper:      #FFFFFF;
  --ink:        #241C15;
  --ink-soft:   #3A2E22;
  --ink-mute:   #7C6C5A;

  --peach:      #EFB188;
  --ochre:      #D59862;
  --terracotta: #D37657;
  --blue:       #435587;
  --taupe:      #DDC1A9;

  --accent:      var(--terracotta);
  --accent-rgb:  211, 118, 87;
  --accent-hover: var(--ochre);
  --accent-2:   var(--blue);
  --line:       rgba(36, 28, 21, 0.14);
  --line-soft:  rgba(36, 28, 21, 0.08);

  --display: "Poiret One", cursive;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --fs-hero:  clamp(2.2rem, 3vw + 1.4rem, 4rem);
  --fs-h2:    clamp(2rem, 2.2vw + 1.3rem, 3.1rem);
  --fs-h3:    clamp(1.3rem, 0.8vw + 1.05rem, 1.7rem);
  --fs-quote: clamp(1.7rem, 2vw + 1rem, 2.9rem);
  --fs-lead:  clamp(1.05rem, 0.4vw + 0.95rem, 1.25rem);

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

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 22px;
  --nav-h: 84px;

  color-scheme: light;
}

/* --- Theme variants (misma paleta, cambia el color protagonista) --- */
body.theme-route {
  --accent: var(--ochre);
  --accent-rgb: 213, 152, 98;
  --accent-hover: var(--peach);
  --route-bg-2: #2E3A5E;
  --route-band-dark: #1B2338;
  --route-text: var(--cream);
  --route-text-mute: rgba(251, 241, 232, .82);
  --route-text-soft: rgba(251, 241, 232, .68);
  background: var(--blue);
  color: var(--route-text-mute);
}
body.theme-dune {
  --accent: var(--blue);
  --accent-rgb: 67, 85, 135;
  --accent-hover: #57699E;
  --ink-soft: #2A2015;
  --ink-mute: #453824;
  --dune-bg: #DC9E6C;
  background: var(--dune-bg);
}
body.theme-dune .nav.is-scrolled { background: rgba(220, 158, 108, .88); }
body.theme-dune .ways-story {
  background: rgba(251, 241, 232, .55);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
}
body.theme-dune .route-day {
  background: rgba(251, 241, 232, .55);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.8rem 4.6rem;
}
body.theme-dune .route-day-num { left: 1.8rem; top: 1.7rem; }

body.theme-dune .statement,
body.theme-dune .ways-head h2,
body.theme-dune .route-days-head h2,
body.theme-dune .gallery-head h2 {
  color: var(--cream);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--cream); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.kicker {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.kicker.is-centered { justify-content: center; }
.kicker-light { color: var(--peach); }
.kicker-light::before { background: var(--peach); }

/* =============================================================
   4. Typography
   ============================================================= */
h2, .h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--fs-h2);
  letter-spacing: .005em;
  color: var(--ink);
}
h3, .h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--fs-h3);
  color: var(--ink);
}
.pull-quote {
  font-family: var(--display);
  font-size: var(--fs-quote);
  line-height: 1.28;
  color: var(--ink);
}
.pull-quote::before { content: "\201C"; color: var(--accent); }
.pull-quote::after { content: "\201D"; color: var(--accent); }

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

/* --- Buttons (one CTA per landing) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1.15rem 2.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .01em;
  transition: transform .5s var(--ease-out), background-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: var(--cream);
  box-shadow: 0 14px 34px -10px rgba(var(--accent-rgb),.55);
}
.btn-accent:hover { background: var(--accent-hover); }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color .5s var(--ease-out), box-shadow .5s var(--ease-out), height .4s var(--ease-out);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-brand {
  font-family: var(--display);
  font-size: clamp(1.15rem, 3.2vw + .6rem, 1.5rem);
  color: var(--ink);
  letter-spacing: .01em;
  white-space: nowrap;
}
.nav.is-scrolled {
  background: rgba(251, 241, 232, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 var(--line-soft);
  height: 72px;
}
@supports not (backdrop-filter: blur(1px)) {
  .nav.is-scrolled { background: rgba(251, 241, 232, 0.98); }
}

/* --- Cursor --- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

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

/* --- Hero full-bleed --- */
.hero-full {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
}
.hero-full-bg { position: absolute; inset: 0; z-index: 0; }
.hero-full-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-full-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30,17,10,.55) 0%, rgba(30,17,10,.32) 38%, rgba(30,17,10,.68) 100%);
}
.hero-full-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: calc(var(--nav-h) + 2rem) 4rem;
}
.hero-full-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--fs-hero);
  color: var(--cream);
  line-height: 1.18;
  max-width: 20ch;
  margin: 1.1rem auto 0;
}
.hero-full-rule {
  color: var(--peach);
  letter-spacing: .3em;
  font-size: .7rem;
  margin: 1.6rem 0;
}
.hero-full-sub {
  color: rgba(251,241,232,.9);
  font-size: var(--fs-lead);
  max-width: 46ch;
  margin-inline: auto;
}

/* --- Statement band --- */
.statement-band {
  padding-block: clamp(3rem, 6vw, 5rem);
}
.statement {
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.6vw + 1rem, 1.9rem);
  color: var(--ink-soft);
  text-align: center;
  max-width: 42ch;
  margin-inline: auto;
  line-height: 1.4;
}

/* --- Intro: Me llamo Elsa --- */
.intro { padding-block: clamp(2rem, 6vw, 5rem); }
.intro-inner {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
.intro-media { display: flex; justify-content: center; }
.polaroid {
  background: var(--paper);
  padding: 14px 14px 0;
  border-radius: 4px;
  box-shadow: 0 30px 60px -24px rgba(36,28,21,.35);
  transform: rotate(-3deg);
  max-width: 380px;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.polaroid::after {
  content: "";
  display: block;
  height: 46px;
}
.intro-text { max-width: 56ch; }
.intro-text h2 { margin-bottom: 1.3rem; }
.intro-text p + p { margin-top: 1rem; }

/* --- Checklist band --- */
.checklist-band {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: clip;
}
.checklist-band::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 80%;
  background: radial-gradient(ellipse at 20% 20%, rgba(211,118,87,.35) 0%, transparent 60%),
              radial-gradient(ellipse at 85% 60%, rgba(67,85,135,.3) 0%, transparent 55%);
  filter: blur(70px);
  pointer-events: none;
}
.checklist-title {
  position: relative;
  color: var(--cream);
  text-align: center;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}
.checklist {
  position: relative;
  max-width: 62ch;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.2rem);
}
.checklist li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 1.02rem;
}
.checklist-mark {
  font-family: var(--display);
  color: var(--peach);
  font-size: 1rem;
  flex-shrink: 0;
}
.checklist strong { color: var(--peach); font-weight: 600; }
.checklist-close {
  position: relative;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.4vw + .9rem, 1.7rem);
  text-align: center;
  max-width: 34ch;
  margin-inline: auto;
  color: var(--cream);
}

/* --- Rhetorical band --- */
.rhetorical-band {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--cream-2);
}
.rhetorical {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw + 1rem, 2.4rem);
  text-align: center;
  color: var(--ink);
  max-width: 24ch;
  margin-inline: auto;
  line-height: 1.3;
}

/* --- Collage section --- */
.collage-section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.collage-inner {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
.collage {
  position: relative;
  height: clamp(340px, 40vw, 460px);
}
.collage-photo {
  position: absolute;
  background: var(--paper);
  padding: 10px 10px 0;
  border-radius: 4px;
  box-shadow: 0 26px 50px -22px rgba(36,28,21,.35);
  transition: transform .5s var(--ease-out);
}
.collage-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.collage-photo::after { content: ""; display: block; height: 34px; }
.collage-photo-1 { width: 62%; left: 0; top: 6%; transform: rotate(-4deg); z-index: 2; }
.collage-photo-2 { width: 46%; right: 0; top: 0; transform: rotate(5deg); z-index: 1; }
.collage-photo-3 { width: 42%; right: 6%; bottom: -4%; transform: rotate(-3deg); z-index: 3; }
.collage-photo:hover { transform: rotate(0deg) scale(1.03); }
.collage-text { max-width: 56ch; }
.collage-text h2 { margin: .9rem 0 1.3rem; }
.collage-text p + p { margin-top: 1rem; }

.collage-text-centered {
  max-width: 62ch;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  text-align: center;
}
.collage-text-centered p + p { margin-top: 1rem; }

/* --- Route trio (waypoints a lo largo de la ruta) --- */
.route-trio {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.route-trio-track {
  position: absolute;
  top: 5px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: rgba(36, 28, 21, .14);
}
.route-trio-item { position: relative; text-align: center; }
.route-trio-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 12px; height: 12px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--cream);
}
.route-trio-photo {
  border-radius: var(--radius);
  overflow: clip;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 46px -24px rgba(36,28,21,.35);
  transition: transform .5s var(--ease-out);
}
.route-trio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.route-trio-photo:hover { transform: translateY(-6px); }
.route-trio-caption {
  margin-top: .8rem;
  font-size: .85rem;
  color: var(--ink-mute);
}

@media (max-width: 719px) {
  .route-trio { grid-template-columns: 1fr; gap: 2.4rem; }
  .route-trio-track { display: none; }
}

/* --- Divider band --- */
.divider-band {
  position: relative;
  height: clamp(280px, 46vw, 480px);
  overflow: clip;
}
.divider-band img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.divider-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30,17,10,.82) 0%, rgba(30,17,10,.25) 55%, rgba(30,17,10,0) 80%);
}
.divider-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 3rem) var(--gutter);
}
.divider-caption.is-mid {
  top: 50%; bottom: auto;
  transform: translateY(-50%);
}
.divider-caption p {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw + .8rem, 1.7rem);
  color: var(--cream);
  max-width: 34ch;
  margin-inline: auto;
  text-align: center;
}

/* --- Stats band --- */
.stats-band { padding-block: clamp(3.5rem, 7vw, 6rem); }
.stats-grid {
  display: grid;
  gap: 1.8rem;
  max-width: 780px;
  margin: 2rem auto 0;
}
.stat-card {
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 20px 44px -26px rgba(36,28,21,.28);
}
.stat-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  font-family: var(--display);
  font-size: 1.9rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.stat-circle-text { font-size: 1.6rem; }
.stat-card p { color: var(--ink-mute); max-width: 32ch; margin-inline: auto; }

/* --- Philosophy card --- */
.philosophy { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.philosophy-card {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(4.5rem, 9vw, 5.5rem) clamp(1.5rem, 5vw, 3.5rem) clamp(2.5rem, 6vw, 4rem);
  background: var(--cream-2);
}
.philosophy-card p:not(.pull-quote) { color: var(--ink-mute); margin-top: 1rem; }
.philosophy-stamp {
  position: absolute;
  top: -2.6rem; right: 1.5rem;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1.5px dashed var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  background: var(--cream);
  font-family: var(--sans);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--accent);
  text-align: center;
  transform: rotate(8deg);
}
.philosophy-stamp-dot { opacity: .5; }

/* --- Ways / Viajes — narrativa --- */
.ways { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.ways-head { max-width: 62ch; margin-inline: auto; text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.ways-head h2 { margin-top: .9rem; }
.ways-story {
  max-width: 62ch;
  margin-inline: auto;
}
.ways-story p { color: var(--ink-soft); }
.ways-story p:first-child { color: var(--ink-mute); font-size: var(--fs-lead); }
.ways-story p + p { margin-top: 1.1rem; }
.ways-story strong { color: var(--accent); font-weight: 600; }
.ways-close {
  margin-top: 2.6rem;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.4vw + 1rem, 1.8rem);
  color: var(--ink);
}

/* --- Closing quote panel --- */
.quote-panel {
  position: relative;
  min-height: 60svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
}
.quote-panel-bg { position: absolute; inset: 0; z-index: 0; }
.quote-panel-bg img { width: 100%; height: 100%; object-fit: cover; }
.quote-panel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,20,12,.55) 0%, rgba(36,20,12,.35) 40%, rgba(36,20,12,.75) 100%);
}
.quote-panel-inner { position: relative; z-index: 1; text-align: center; padding-block: 5rem; }
.big-quote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw + 1rem, 3.4rem);
  line-height: 1.25;
  color: var(--cream);
  max-width: 18ch;
  margin-inline: auto;
}

/* --- Route days (itinerario día a día) --- */
.route-days { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.route-days-head { max-width: 62ch; margin-inline: auto; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.route-days-head h2 { margin-top: .9rem; }
.route-days-list {
  max-width: 68ch;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.8rem);
}
.route-day { position: relative; padding-left: 3.4rem; transition: background-color .4s var(--ease-out); }
.route-day-num {
  position: absolute;
  left: 0; top: -.15rem;
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--accent);
}
.route-day h3 { margin-bottom: .5rem; }
.route-day p { color: var(--ink-mute); }

/* --- Pricing tiers --- */
.pricing { padding-block: clamp(3.5rem, 7vw, 6.5rem); background: var(--cream-2); }
.pricing-head { max-width: 62ch; margin-inline: auto; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.pricing-head h2 { margin-top: .9rem; }
.pricing-grid { display: grid; gap: 1.8rem; align-items: stretch; }
.pricing-single { max-width: 460px; margin-inline: auto; }
.pricing-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  border-top: 5px solid var(--taupe);
  padding: clamp(2rem, 3vw, 2.6rem) clamp(1.5rem, 3vw, 2rem) clamp(1.8rem, 3vw, 2.2rem);
  box-shadow: 0 20px 44px -26px rgba(36,28,21,.28);
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 34px 60px -24px rgba(36,28,21,.3); }
.pricing-card:nth-child(1) { border-top-color: #465D91; }
.pricing-card:nth-child(3) { border-top-color: #D59A62; }
.pricing-card.is-featured {
  border-top-color: #DCC2A8;
  box-shadow: 0 30px 64px -18px rgba(220,194,168,.5);
}
.pricing-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--cream);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .42rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 22px -8px rgba(var(--accent-rgb),.6);
  white-space: nowrap;
}
.pricing-num {
  font-family: var(--display);
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: .5rem;
  display: block;
}
.pricing-card h3 { margin-bottom: .25rem; }
.pricing-meta { font-size: .8rem; color: var(--ink-mute); margin-bottom: 1.1rem; }
.pricing-price {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.pricing-card.is-featured .pricing-price { color: var(--accent); }
.pricing-desc { color: var(--ink-mute); margin-bottom: 1.3rem; font-size: .92rem; }
.pricing-list { display: flex; flex-direction: column; gap: .6rem; padding-top: 1rem; border-top: 1px solid var(--line-soft); }
.pricing-list li { font-size: .86rem; color: var(--ink-soft); padding-left: 1.1rem; position: relative; }
.pricing-list li::before { content: "\2014"; position: absolute; left: 0; color: var(--accent); }
.pricing-cta { margin-top: auto; padding-top: 1.6rem; }
.pricing-cta .btn {
  width: 100%;
  justify-content: center;
  padding: .85rem 1.4rem;
  font-size: .92rem;
}
.pricing-close {
  margin-top: 2.6rem;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.4vw + 1rem, 1.6rem);
  color: var(--ink);
}

/* --- CTA final / contacto (único botón) --- */
.cta-final {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  text-align: center;
}
.cta-inner { max-width: 60ch; margin-inline: auto; }
.cta-inner h2 { margin-top: 1rem; margin-bottom: 1.4rem; }
.cta-note { margin-top: 1.6rem; font-size: .88rem; color: var(--ink-mute); }

/* --- Gallery (carrusel deslizable) --- */
.gallery-section { padding-block: clamp(3.5rem, 7vw, 6.5rem); overflow: hidden; }
.gallery-head { max-width: 62ch; margin-inline: auto; text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.gallery-head h2 { margin-top: .9rem; }
.gallery-track {
  display: flex;
  gap: 1.2rem;
  max-width: 1180px;
  margin-inline: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .5rem clamp(1.25rem, 4vw, 3rem) 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 auto;
  width: clamp(200px, 32vw, 300px);
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: clip;
  scroll-snap-align: center;
  box-shadow: 0 24px 46px -24px rgba(36,28,21,.4);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1.6rem; }
.gallery-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px -12px rgba(36,28,21,.35);
  transition: background .35s var(--ease-out), color .35s var(--ease-out), transform .35s var(--ease-out);
}
.gallery-btn:hover { background: var(--accent); color: var(--cream); transform: scale(1.06); }

/* --- Botones del carrusel de reseñas: solo en móvil/tablet --- */
#resenas .gallery-nav { display: none; }
@media (max-width: 959px) {
  #resenas .gallery-nav { display: flex; }
}
.gallery-btn svg { width: 20px; height: 20px; }

/* --- Review cards (carrusel de reseñas) --- */
.review-card {
  flex: 0 0 auto;
  width: clamp(260px, 78vw, 360px);
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2rem);
  box-shadow: 0 24px 46px -24px rgba(36,28,21,.4);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--accent); font-size: .85rem; letter-spacing: .12em; margin-bottom: .8rem; }
.review-title { font-size: 1.02rem; margin-bottom: .6rem; color: var(--ink); }
.review-quote {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 1.2rem;
}
.review-foot { padding-top: 1rem; border-top: 1px solid var(--line-soft); }
.review-author { display: block; font-weight: 600; font-size: .86rem; color: var(--ink); }
.review-meta { display: block; font-size: .76rem; color: var(--ink-mute); margin-top: .15rem; }

/* --- Footer --- */
.footer { border-top: 1px solid var(--line); padding-block: 2.6rem; }
.footer-inner { display: flex; flex-direction: column; gap: 1.6rem; align-items: flex-start; }
.footer-brand { font-family: var(--display); font-size: 1.3rem; color: var(--ink); }
.footer-tagline { font-size: .85rem; color: var(--ink-mute); max-width: 42ch; margin-top: .4rem; }
.footer-bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  justify-content: space-between;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
  font-size: .74rem;
  color: var(--ink-mute);
}
.footer-bottom a { color: var(--ink-mute); }
.footer-bottom a:hover { color: var(--accent); }

/* =============================================================
   7. Effects
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.tilt-target { transition: transform .5s var(--ease-out); transform-style: preserve-3d; will-change: transform; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 720px) {
  .checklist li { font-size: 1.08rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .intro-inner { grid-template-columns: .8fr 1.2fr; }
  .collage-inner { grid-template-columns: 1fr 1fr; }
  .collage-inner.is-media-right .collage { order: 2; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-card.is-featured { margin-top: -1.2rem; padding-top: clamp(2.6rem, 3.6vw, 3.2rem); }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

@media (min-width: 1280px) {
  .container { padding-inline: clamp(2rem, 4vw, 4rem); }
}

/* =============================================================
   9. Reduced motion — only genuinely intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .quote-panel-bg img { transform: none; }
}

/* =============================================================
   10. Theme: route (azul como fondo protagonista)
   ============================================================= */
body.theme-route h2,
body.theme-route .h2,
body.theme-route h3,
body.theme-route .h3 {
  color: var(--route-text);
}
body.theme-route .pricing-card h3,
body.theme-route .review-card h3 { color: var(--ink); }

body.theme-route .statement,
body.theme-route .rhetorical,
body.theme-route .pricing-close {
  color: var(--route-text);
}
body.theme-route .route-day p { color: var(--route-text-mute); }
body.theme-route .route-trio-dot { box-shadow: 0 0 0 4px var(--blue); }
body.theme-route .route-trio-track { background: rgba(251, 241, 232, .22); }
body.theme-route .route-trio-caption { color: var(--route-text-soft); }

body.theme-route .rhetorical-band,
body.theme-route .pricing,
body.theme-route .philosophy-card {
  background: var(--route-bg-2);
}
body.theme-route .philosophy-card { border-color: rgba(251, 241, 232, .22); }
body.theme-route .philosophy-card .pull-quote { color: var(--route-text); }
body.theme-route .philosophy-card p:not(.pull-quote) { color: var(--route-text-mute); }

body.theme-route .checklist-band { background: var(--route-band-dark); }

/* --- Framed text blocks (evitar planos sobre el azul) --- */
body.theme-route .intro-text {
  background: rgba(251, 241, 232, .07);
  border: 1px solid rgba(251, 241, 232, .18);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}

body.theme-route .collage-text {
  border-left: 3px solid var(--accent);
  padding-left: clamp(1.4rem, 3vw, 2rem);
}

body.theme-route .ways-story {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(2.2rem, 4vw, 3.2rem);
  box-shadow: 0 30px 60px -28px rgba(15, 20, 35, .55);
}
body.theme-route .ways-story p { color: var(--ink-soft); }
body.theme-route .ways-story p:first-child { color: var(--ink-mute); }
body.theme-route .ways-close { color: var(--ink); }

body.theme-route .route-day {
  background: rgba(251, 241, 232, .07);
  border: 1px solid rgba(251, 241, 232, .18);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.8rem 4.6rem;
}
body.theme-route .route-day-num { left: 1.8rem; top: 1.7rem; }
body.theme-route .route-day:hover {
  background: rgba(251, 241, 232, .11);
}

body.theme-route .nav.is-scrolled { background: rgba(67, 85, 135, .88); }
body.theme-route .nav-brand { color: var(--route-text); }

body.theme-route .footer-brand { color: var(--route-text); }
body.theme-route .footer-tagline,
body.theme-route .footer-bottom,
body.theme-route .footer-bottom a {
  color: var(--route-text-soft);
}
body.theme-route .footer-bottom a:hover { color: var(--accent); }
body.theme-route .footer,
body.theme-route .footer-bottom {
  border-top-color: rgba(251, 241, 232, .16);
}
