@font-face {
  font-family: 'Glacial Indifference';
  src: url('https://cdn.jsdelivr.net/npm/typeface-glacial-indifference@0.0.72/files/glacial-indifference-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('https://cdn.jsdelivr.net/npm/typeface-glacial-indifference@0.0.72/files/glacial-indifference-bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('https://cdn.jsdelivr.net/npm/typeface-glacial-indifference@0.0.72/files/glacial-indifference-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}

/* ─── RESET & TOKENS ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* ── PALETA PRIMARIA · PDF ── */
  /* Tonos cálidos · Sabana & Especias */
  --terra:        #C17A3A;   /* siena tostado */
  --gold:         #D4A055;   /* sunset amber */
  --gold-light:   #D4A84B;   /* dorado claro */
  --amber:        #A0522D;   /* ámbar especias */

  /* Tonos fríos · Océano Índico */
  --ocean:        #2A5F6F;   /* turquesa índico */
  --ocean-light:  #3D7A8A;   /* azul agua */

  /* Neutros · Arena & Sombra */
  --ink:          #2E2820;   /* obsidian (texto) */
  --ink-soft:     #3D3830;   /* tinta suave (texto secundario) */
  --ink-bg:       #EDE8DF;   /* arena media — fondos secundarios */
  --ink-bg-text:  #2E2820;   /* texto sobre fondo arena */
  --parchment:    #EBE3D5;   /* pergamino — sección media */
  --linen:        #F7F3EE;   /* lino claro — sección clara */
  --sand:         #D9CFBF;   /* arena clara */
  --sand-light:   #EDE8DF;   /* arena muy clara */
  --cream:        #F4F0EA;   /* crema */
  --cream-dark:   #EAE4DA;   /* crema oscura */
  --white:        #FDFAF6;   /* blanco cálido */

  /* ── TIPOGRAFÍA · OPCIÓN A (PDF) ── */
  --font-display: 'Cormorant', Georgia, serif;           /* display serif */
  --font-body:    'Glacial Indifference', 'Gill Sans', sans-serif; /* geométrica */

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--ink); overflow-x: hidden; }

/* ── GLACIAL INDIFFERENCE: letra espaciada en mayúsculas ── */
.section-label,
.hero-eyebrow,
.nav-links a,
.nav-cta,
.btn-primary,
.btn-dark,
.producto-type,
.dia-tag,
.precio-info .label,
.footer-links-col h4,
.section-label,
.contacto-detail-text .label,
.wo-desc,
.wizard-step-label,
.wizard-btn-next,
.wf-group label,
.form-submit,
.summary-item-label {
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

/* Cormorant para todo display */
h1, h2, h3, h4,
.section-title,
.wizard-question,
.budget-display,
.wizard-step-count,
.footer-brand .logo,
.producto-name,
.porque-title,
.valor-title,
.incluye-col h3,
.precio-info h2,
.nosotros-quote,
.summary-item-value {
  font-family: var(--font-display);
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── PAGES ─── */
.page { display: block; min-height: 100vh; overflow: visible; }

/* ─── NAV · estilo editorial Mara Camps: 3 columnas, mayúsculas espaciadas ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  height: 72px;
  background: rgba(245,242,238,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,24,20,0.14);
  transition: all 0.3s var(--ease);
}
nav.dark {
  background: rgba(26,24,20,0.94);
  border-bottom-color: rgba(255,255,255,0.07);
}

.nav-logo {
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  height: 52px;
}
.nav-logo:hover { opacity: 0.8; }

.logo-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cream);
}
nav:not(.dark) .logo-text { color: var(--ink); }

.nav-links {
  display: flex; align-items: center; justify-content: flex-end; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
  cursor: pointer;
}
nav.dark .nav-links a { color: rgba(244,240,234,0.6); }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 11px 22px;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: 0;
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; border-color: var(--gold); }
nav.dark .nav-cta { background: var(--gold); color: var(--ink) !important; border-color: var(--gold); }

/* ─── HERO ─── */
.hero .btn-primary { background: var(--gold); color: var(--ink); }
.hero .btn-primary:hover { background: var(--gold-light); }
.hero {
  height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,137,42,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(42,95,111,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(181,82,30,0.08) 0%, transparent 40%);
}

/* Decorative silhouette */

.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px;
  max-width: 820px;
  display: flex; gap: 48px; align-items: flex-start;
}

.hero-accent-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  flex-shrink: 0;
  margin-top: 8px;
  animation: growLine 1.2s var(--ease-out) 0.4s forwards;
}
@keyframes growLine { from { height: 0; } to { height: 160px; } }

.hero-text { flex: 1; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 600;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}
.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  color: var(--gold-light);
  letter-spacing: 0;
  margin-top: 4px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(244,240,234,0.6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 16px 36px;
  background: var(--terra);
  color: var(--cream);
  border-radius: 0;
  border: 1.5px solid var(--terra);
  transition: all 0.3s var(--ease);
}
.btn-primary:hover { background: transparent; color: var(--terra); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 400;
  color: rgba(244,240,234,0.65);
  transition: color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--cream); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }


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

/* ─── SECTION BASE ─── */
section { padding: 100px 80px; }
@media (max-width: 768px) { section { padding: 64px 24px; } }
.section-label {
  font-size: 9px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--terra); flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -1px;
  color: var(--ink);
}
.section-title em { font-style: italic; font-weight: 400; color: var(--gold); }

/* ─── HOME: INTRO ─── */
.intro {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.intro-text p {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* ─── INTRO CAROUSEL ─── */
.intro-carousel {
  overflow: hidden;
  position: relative;
  height: 560px;
  display: block;
}
.intro-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.intro-slide.active { opacity: 1; pointer-events: auto; }
/* Object-position por slide para centrar personas */
.intro-slide[data-index="0"] img { object-position: center 38%; }
.intro-slide[data-index="1"] img { object-position: center 12%; }
.intro-slide[data-index="2"] img { object-position: center 28%; }
.intro-slide[data-index="3"] img { object-position: center 18%; }
.intro-slide[data-index="4"] img { object-position: center 35%; }
.intro-slide[data-index="5"] img { object-position: center 30%; }
.intro-slide img {
  border-radius: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.intro-dots {
  position: absolute; bottom: 16px; right: 20px;
  display: flex; gap: 6px; z-index: 2;
}
/* Per-slide focus point to show people */
.intro-slide[data-index="0"] img { object-position: center 40%; }  /* jeep+jirafa landscape */
.intro-slide[data-index="1"] img { object-position: center 15%; }  /* Raquel retrato */
.intro-slide[data-index="2"] img { object-position: center 30%; }  /* Serengeti landscape */
.intro-slide[data-index="3"] img { object-position: center 18%; }  /* Raquel jeep retrato */
.intro-slide[data-index="4"] img { object-position: center 35%; }  /* foto5 landscape */
.intro-slide[data-index="5"] img { object-position: center 30%; }  /* foto6 landscape */
.intro-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(244,240,234,0.35); border: none; cursor: pointer;
  padding: 0; transition: background 0.3s, transform 0.3s;
}
.intro-dot.active { background: var(--cream); transform: scale(1.3); }

.intro-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,24,20,0.35);
  border: none; border-radius: 50%;
  color: var(--cream);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s var(--ease), background 0.2s;
}
.intro-carousel:hover .intro-arrow { opacity: 1; }
.intro-arrow:hover { background: rgba(26,24,20,0.6); }
.intro-arrow-prev { left: 14px; }
.intro-arrow-next { right: 14px; }
@media (hover: none) {
  .intro-arrow { opacity: 1; background: rgba(26,24,20,0.4); }
}
@media (max-width: 640px) {
  .intro-arrow { width: 34px; height: 34px; font-size: 14px; }
}

.intro-image {
  position: relative;
  height: 560px;
  background: var(--sand);
  border-radius: 0;
  overflow: hidden;
}
.intro-image-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(244,240,234,0.4);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  z-index: 1;
}
.intro-image-placeholder span {
  font-size: 48px; margin-bottom: 12px; opacity: 0.3;
}
.intro-badge {
  position: absolute; bottom: -20px; left: -20px;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 2;
}
.intro-badge span:first-child {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  letter-spacing: -1px;
  color: var(--ink);
}
.intro-badge span:last-child {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(26,24,20,0.7);
}

/* ─── HOME: PRODUCTOS ─── */
.productos {
  background: var(--parchment);
  padding: 100px 80px;
}
.productos .section-title { color: var(--ink); }
.productos .section-label { color: var(--terra); }
.productos .section-title em { color: var(--terra); }
.productos-intro {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; gap: 40px;
}
.productos-intro p {
  max-width: 420px;
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(46,40,32,0.6);
}

.productos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}

.producto-card {
  position: relative;
  height: 560px;
  background: var(--ink-soft);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.producto-card:hover { flex: 1.3; }

.producto-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease);
}
.producto-card:hover .producto-card-bg { transform: scale(1.05); }

.producto-card-bg-1 {
  background: linear-gradient(160deg, #B45A3C 0%, #4A3826 45%, #2E2218 100%);
}
.producto-card-bg-2 {
  background: linear-gradient(160deg, #8C4A36 0%, #4A3826 45%, #2E2218 100%);
}

.producto-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,34,24,0.95) 0%, transparent 60%);
}

.producto-card-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.08;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--cream);
}

.producto-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--terra);
  transition: width 0.5s var(--ease);
  z-index: 3;
}
.producto-card:hover::before { width: 100%; }

.producto-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px;
  z-index: 2;
}
.producto-type {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.producto-name {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 700;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.0;
}
.producto-desc {
  font-size: 13px; font-weight: 300; line-height: 1.6;
  color: rgba(244,240,234,0.55);
  margin-bottom: 24px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.4s;
  opacity: 0;
}
.producto-card:hover .producto-desc { max-height: 80px; opacity: 1; }

.producto-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease) 0.1s;
}
.producto-card:hover .producto-cta { opacity: 1; transform: none; }
.producto-cta::after { content: '→'; }

/* ─── HOME: POR QUÉ ─── */
.porque {
  background: var(--linen);
}
.porque-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 64px;
}
.porque-item {
  background: var(--white);
  padding: 48px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.porque-item:hover {
  border-top-color: var(--terra);
  background: var(--linen);
  transform: translateY(-3px);
}
.porque-num {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 24px;
}
.porque-title {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 12px;
}
.porque-text {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: var(--ink-soft);
}

/* ─── HOME: CTA BAND ─── */
.cta-band {
  background: var(--cream-dark);
  padding: 100px 80px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'SPANZANIA';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 700;
  color: rgba(46,40,32,0.04);
  letter-spacing: -4px;
  pointer-events: none;
  white-space: nowrap;
}
.cta-band-text .label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px); font-weight: 300;
  color: var(--ink); line-height: 1.05;
  letter-spacing: -1px;
  position: relative; z-index: 1;
}
.cta-band-text h2 em { font-style: italic; color: var(--terra); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 18px 48px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative; z-index: 1;
}
.btn-dark:hover { background: var(--ink); color: var(--cream); }

/* ─── INNER PAGE HERO ─── */
.inner-hero {
  height: 50vh; min-height: 400px;
  background: var(--ink);
  display: flex; align-items: flex-end;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.inner-hero-bg {
  position: absolute; inset: 0;
}
.inner-hero-bg-safari {
  background: radial-gradient(ellipse at 30% 60%, rgba(184,137,42,0.2) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(42,95,111,0.2) 0%, transparent 50%),
              var(--ink);
}
.inner-hero-bg-honeymoon {
  background: radial-gradient(ellipse at 70% 60%, rgba(181,82,30,0.18) 0%, transparent 50%),
              radial-gradient(ellipse at 30% 30%, rgba(184,137,42,0.15) 0%, transparent 50%),
              var(--ink);
}
.inner-hero-bg-nosotros {
  background: radial-gradient(ellipse at 50% 50%, rgba(42,95,111,0.2) 0%, transparent 60%),
              var(--ink);
}
.inner-hero-bg-contacto {
  background: radial-gradient(ellipse at 20% 80%, rgba(184,137,42,0.15) 0%, transparent 50%),
              var(--ink);
}
.inner-hero-content { position: relative; z-index: 1; }
.inner-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px); font-weight: 700;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--cream); line-height: 0.95;
  margin-top: 12px;
}
.inner-hero h1 em { font-style: italic; font-weight: 400; text-transform: none; color: var(--gold-light); }

/* ─── SAFARI PAGE ─── */
.safari-intro {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start;
}
.safari-intro-text p {
  font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--ink-soft);
  margin-bottom: 20px;
}

.itinerario {
  background: var(--parchment);
  padding: 80px;
}
.itinerario .section-title { color: var(--ink-bg-text); margin-bottom: 48px; }
.itinerario .section-label { color: var(--terra); }

.dias-grid {
  display: flex; flex-direction: column; gap: 0;
}
.dia-item {
  display: grid; grid-template-columns: 80px 1fr;
  border-top: 1px solid rgba(46,40,32,0.1);
  padding: 24px 0;
  transition: background 0.2s;
}
.dia-item:hover { background: rgba(46,40,32,0.025); }
.dia-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 300;
  color: var(--terra); padding-top: 2px;
  letter-spacing: 1px;
}
.dia-content h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400; color: var(--ink-bg-text);
  margin-bottom: 4px;
}
.dia-content p { font-size: 13px; font-weight: 300; color: rgba(46,40,32,0.6); }
.dia-tag {
  display: inline-block;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px;
  background: rgba(193,122,58,0.15);
  color: var(--terra);
  border-radius: 2px;
  margin-bottom: 8px;
}

.incluye-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  padding: 80px;
  background: var(--cream-dark);
}
.incluye-col h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400; color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26,24,20,0.18);
}
.incluye-list { list-style: none; }
.incluye-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 14px; font-weight: 300; color: var(--ink-soft);
  border-bottom: 1px solid rgba(217,207,191,0.4);
}
.incluye-list li::before {
  content: '✓';
  color: var(--gold); font-size: 12px;
  flex-shrink: 0; margin-top: 2px;
}
.no-incluye li::before { content: '–'; color: var(--terra); }

.precio-box {
  background: var(--linen);
  border: 1px solid rgba(46,40,32,0.08);
  margin: 0 80px 80px;
  padding: 48px 56px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.precio-info .label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 8px;
}
.precio-info h2 {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 300; color: var(--ink-bg-text);
}
.precio-info h2 span {
  font-size: 18px; color: rgba(46,40,32,0.55);
}
.precio-note {
  font-size: 12px; color: rgba(46,40,32,0.5);
  margin-top: 6px;
}

/* ─── NOSOTROS PAGE ─── */
.nosotros-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.nosotros-story p {
  font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--ink-soft);
  margin-bottom: 20px;
}
.nosotros-image {
  height: 560px; background: var(--sand);
  position: relative; overflow: hidden; border-radius: 0;
}
.nosotros-image-inner {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--ocean) 0%, var(--ink) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(244,240,234,0.3);
  font-family: var(--font-display);
  font-size: 16px; font-style: italic;
}
.nosotros-image-inner span { font-size: 64px; margin-bottom: 16px; opacity: 0.2; }

.valores {
  background: var(--linen);
  padding: 80px;
}
.valores .section-title { color: var(--ink-bg-text); }
.valores .section-label { color: var(--terra); }
.valores-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  margin-top: 48px;
}
.valor-item {
  padding: 40px;
  background: rgba(46,40,32,0.025);
  border-left: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.valor-item:hover { border-left-color: var(--terra); background: rgba(46,40,32,0.05); }
.valor-title {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.5px;
  color: var(--ink-bg-text);
  margin-bottom: 10px;
}
.valor-text { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(46,40,32,0.6); }

/* ─── CONTACTO PAGE ─── */
.contacto-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.contacto-info .section-label { margin-bottom: 8px; }
.contacto-info .section-title { margin-bottom: 28px; }
.contacto-info p {
  font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--ink-soft);
  margin-bottom: 40px;
}
.contacto-detail {
  display: flex; flex-direction: column; gap: 20px;
}
.contacto-detail-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-left: 2px solid var(--sand);
  transition: border-color 0.2s;
}
.contacto-detail-item:hover { border-left-color: var(--gold); }
.contacto-detail-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contacto-detail-text .label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 3px;
}
.contacto-detail-text p { font-size: 14px; color: var(--ink); margin: 0; }

/* ─── WIZARD FORM ─── */
.wizard-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,24,20,0.08);
}

/* Progress bar */
.wizard-progress {
  height: 3px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.wizard-progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
}

/* Step counter */
.wizard-header {
  padding: 36px 48px 28px;
  border-bottom: 1px solid var(--sand-light);
  display: flex; align-items: baseline; justify-content: space-between;
}
.wizard-step-count {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 300;
  color: var(--ink); line-height: 1;
}
.wizard-step-count span { font-size: 22px; color: var(--sand); }
.wizard-step-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--terra);
}

/* Step body */
.wizard-body {
  padding: 36px 48px 40px;
  min-height: 320px;
}
.wizard-step { display: none; }
.wizard-step.active { display: block; }

.wizard-question {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 300;
  color: var(--ink); line-height: 1.25;
  margin-bottom: 28px;
}
.wizard-question em { font-style: italic; color: var(--gold); }

/* Option cards grid */
.wizard-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.wizard-options.three-col { grid-template-columns: 1fr 1fr 1fr; }
.wizard-options.one-col { grid-template-columns: 1fr; }

.wizard-option {
  padding: 18px 20px;
  border: 1.5px solid var(--sand);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  background: var(--cream);
  text-align: center;
  user-select: none;
}
.wizard-option:hover {
  border-color: var(--gold-light);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184,137,42,0.12);
}
.wizard-option.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.wo-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 400; color: inherit;
  margin-bottom: 4px;
}
.wo-desc {
  font-size: 11px; font-weight: 300; color: var(--ink-soft);
  letter-spacing: 0.3px;
}
.wizard-option.selected .wo-desc { color: rgba(244,240,234,0.55); }

/* Add-on chips */
.wizard-addons {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 8px;
}
.wizard-addon {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--sand);
  border-radius: 100px;
  cursor: pointer;
  font-size: 13px; font-weight: 400; color: var(--ink);
  background: var(--cream);
  transition: all 0.2s var(--ease);
  user-select: none;
}
.wizard-addon:hover { border-color: var(--gold-light); background: var(--white); }
.wizard-addon.selected {
  border-color: var(--ocean);
  background: var(--ocean);
  color: var(--white);
}
.wizard-addon .addon-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
  transition: background 0.15s;
}
.wizard-addon.selected .addon-check { background: rgba(255,255,255,0.25); }

/* Budget slider */
.budget-display {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 300;
  color: var(--ink); line-height: 1;
  margin-bottom: 8px;
}
.budget-display span { font-size: 26px; color: var(--gold); }
.budget-package-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600; color: var(--terra);
  margin-bottom: 8px; letter-spacing: 0.2px;
}
.budget-hint { font-size: 12px; color: var(--ink-soft); margin-bottom: 24px; letter-spacing: 0.3px; line-height: 1.6; }

.wizard-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--sand);
  border-radius: 2px; outline: none;
  margin-bottom: 12px;
}
.wizard-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(26,24,20,0.25);
  transition: background 0.2s;
}
.wizard-slider::-webkit-slider-thumb:hover { background: var(--gold); }
.budget-range {
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(61,56,48,0.45); letter-spacing: 0.5px;
}

/* Input fields */
.wf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.wizard-validation-msg {
  display: none;
  font-size: 13px; color: #b23b3b;
  text-align: center;
  padding: 10px 16px; margin-top: 4px;
  background: rgba(178,59,59,0.08);
  border: 1px solid rgba(178,59,59,0.25);
  border-radius: 4px;
}
.wizard-validation-msg.show { display: block; animation: fadeIn 0.25s var(--ease); }

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}
.field-error {
  border-color: #b23b3b !important;
  animation: shakeError 0.35s var(--ease);
}
.wizard-options.field-error,
.wizard-addons.field-error {
  border: 1px solid #b23b3b;
  border-radius: 4px;
  padding: 8px;
  margin: -8px -8px 8px -8px;
}

/* ─── CALENDARIO DE FECHAS ─── */
.date-range-trigger {
  display: flex; align-items: center;
  border: 1px solid var(--sand);
  background: var(--cream);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}
.date-range-trigger:hover { border-color: var(--terra); }
.date-range-field {
  flex: 1; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.date-range-field:first-child { border-right: 1px solid var(--sand); }
.date-range-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terra);
}
.date-range-value {
  font-size: 14px; font-weight: 300; color: var(--ink);
}
.date-range-arrow {
  display: none;
}
.date-range-duration {
  position: absolute; top: -9px; right: 16px;
  background: var(--terra); color: var(--cream);
  font-size: 10px; font-weight: 500; letter-spacing: 0.5px;
  padding: 2px 10px; border-radius: 10px;
}
.date-range-duration:empty { display: none; }

.calendar-panel {
  display: none;
  margin-top: 10px;
  border: 1px solid var(--sand);
  background: var(--white);
  border-radius: 4px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(46,40,32,0.08);
}
.calendar-panel.open { display: block; }
.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.calendar-nav {
  background: none; border: 1px solid var(--sand);
  width: 30px; height: 30px; border-radius: 50%;
  font-size: 13px; color: var(--ink);
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.calendar-nav:hover { border-color: var(--terra); color: var(--terra); }
.calendar-month-label {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500; text-transform: capitalize;
  color: var(--ink);
}
.calendar-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.calendar-weekdays span {
  text-align: center;
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(46,40,32,0.4);
}
.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  position: relative;
  height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 300; color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.cal-day:hover:not(.cal-disabled):not(.cal-empty) { background: rgba(193,122,58,0.12); }
.cal-day.cal-empty { cursor: default; }
.cal-day.cal-disabled { color: rgba(46,40,32,0.22); cursor: default; }
.cal-day.cal-start, .cal-day.cal-end {
  background: var(--terra); color: var(--cream); font-weight: 500;
}
.cal-day.cal-in-range { background: rgba(193,122,58,0.15); border-radius: 0; }
.cal-day.cal-start { border-radius: 50% 0 0 50%; }
.cal-day.cal-end { border-radius: 0 50% 50% 0; }
.cal-day.cal-start.cal-end { border-radius: 50%; }
.calendar-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--sand);
}
.calendar-hint {
  font-size: 12px; color: rgba(46,40,32,0.5); font-style: italic;
  font-family: var(--font-display);
}
.calendar-clear {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--terra); cursor: pointer;
}
.calendar-clear:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .date-range-field:first-child { border-right: none; }
  .calendar-panel { padding: 14px; }
}
.wf-group { margin-bottom: 16px; }
.wf-group label {
  display: block;
  font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.wf-group input,
.wf-group select {
  width: 100%; padding: 13px 16px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; font-weight: 300;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.wf-group input:focus,
.wf-group select:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.wf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233D3830' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Date flexibility toggle */
.flex-toggle {
  display: flex; gap: 8px; margin-top: 8px;
}
.flex-btn {
  flex: 1; padding: 10px;
  border: 1.5px solid var(--sand);
  border-radius: 4px;
  font-size: 12px; font-weight: 400; letter-spacing: 0.5px;
  color: var(--ink); background: var(--cream);
  cursor: pointer; text-align: center;
  transition: all 0.2s var(--ease);
}
.flex-btn:hover { border-color: var(--gold-light); }
.flex-btn.selected { border-color: var(--ink); background: var(--ink); color: var(--cream); }

/* Summary step */
.summary-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 24px;
}
.summary-item {
  padding: 14px 16px;
  background: var(--cream);
  border-radius: 4px;
  border-left: 2px solid var(--sand);
}
.summary-item-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 4px;
}
.summary-item-value {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 400; color: var(--ink);
}

/* Wizard footer nav */
.wizard-nav {
  padding: 24px 48px;
  border-top: 1px solid var(--sand-light);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.wizard-btn-back {
  padding: 13px 28px;
  border: 1.5px solid var(--sand);
  border-radius: 100px;
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  color: var(--ink-soft); background: transparent;
  cursor: pointer; transition: all 0.2s var(--ease);
}
.wizard-btn-back:hover { border-color: var(--ink); color: var(--ink); }
.wizard-btn-back:disabled { opacity: 0.3; cursor: default; }

.wizard-btn-next {
  flex: 1; padding: 15px 32px;
  background: var(--ink); color: var(--cream);
  border: none; border-radius: 100px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s var(--ease);
}
.wizard-btn-next:hover { background: var(--gold); color: var(--ink); }

/* Success state */
.wizard-success {
  display: none;
  padding: 60px 48px;
  text-align: center;
}
.wizard-success.show { display: block; }
.wizard-success-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
}
.wizard-success h3 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 300; color: var(--ink);
  margin-bottom: 12px;
}
.wizard-success p {
  font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.7;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .wizard-header { padding: 24px; }
  .wizard-body { padding: 24px; min-height: 280px; }
  .wizard-nav { padding: 20px 24px; }
  .wizard-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .wizard-options.three-col { grid-template-columns: 1fr 1fr; }
  .wf-row { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr; }
  .budget-display { font-size: 40px; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--parchment);
  padding: 60px 80px 40px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(46,40,32,0.12);
  margin-bottom: 32px;
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; color: rgba(46,40,32,0.5);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.footer-brand .tagline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic; font-weight: 300;
  letter-spacing: -0.5px;
  color: var(--ink-bg-text);
  line-height: 1.1;
}
.footer-links { display: flex; gap: 60px; }
.footer-links-col h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 20px;
}
.footer-links-col ul { list-style: none; }
.footer-links-col li {
  font-size: 13px; font-weight: 300; color: rgba(46,40,32,0.65);
  margin-bottom: 10px; cursor: pointer;
  transition: color 0.2s;
}
.footer-links-col li:hover { color: var(--ink-bg-text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-legal { font-size: 11px; color: rgba(46,40,32,0.4); }
.footer-legal-links { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(46,40,32,0.4); }
.footer-link { cursor: pointer; transition: color 0.2s; }
.footer-link:hover { color: var(--terra); }

/* ─── PÁGINAS LEGALES ─── */
.legal-page { max-width: 800px; margin: 0 auto; padding: 140px 80px 100px; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; letter-spacing: -1px; text-transform: uppercase;
  color: var(--ink); margin-bottom: 12px;
}
.legal-page .legal-date {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 48px;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; color: var(--ink);
  margin: 40px 0 12px; letter-spacing: -0.3px;
}
.legal-page p, .legal-page li {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: var(--ink-soft); margin-bottom: 12px;
}
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page a { color: var(--terra); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }
.legal-divider {
  border: none; border-top: 1px solid rgba(46,40,32,0.1);
  margin: 48px 0;
}

/* ─── UTILS ─── */
.mt-48 { margin-top: 48px; }
.text-gold { color: var(--gold); }

/* ─── MOBILE ─── */
/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, border-color 0.2s;
  z-index: 200;
}
.nav-hamburger:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}
/* Light nav pages: dark hamburger */
.nav-hamburger.light {
  border-color: rgba(26,24,20,0.7);
  background: rgba(26,24,20,0.12);
}
.nav-hamburger.light:hover {
  background: rgba(26,24,20,0.14);
  border-color: rgba(26,24,20,0.7);
}
.nav-hamburger.light span { background: var(--ink); }

/* Animated X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE DRAWER ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: var(--linen);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(184,137,42,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(42,95,111,0.12) 0%, transparent 50%);
}

.mobile-menu-links {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  list-style: none;
  width: 100%;
}

.mobile-menu-links li {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.mobile-menu-links a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 10vw, 52px);
  font-weight: 300;
  color: rgba(46,40,32,0.55);
  padding: 12px 40px;
  transition: color 0.2s;
  cursor: pointer;
  transform: translateY(30px);
  opacity: 0;
  transition: color 0.2s, transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.mobile-menu.open .mobile-menu-links a {
  transform: none;
  opacity: 1;
}
.mobile-menu.open .mobile-menu-links li:nth-child(1) a { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-links li:nth-child(2) a { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-links li:nth-child(3) a { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-links li:nth-child(4) a { transition-delay: 0.2s; }

.mobile-menu-links a:hover,
.mobile-menu-links a:active { color: var(--terra); }

.mobile-menu-cta {
  position: relative; z-index: 1;
  margin-top: 40px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out) 0.25s, opacity 0.5s var(--ease-out) 0.25s;
}
.mobile-menu.open .mobile-menu-cta {
  transform: none;
  opacity: 1;
}
.mobile-menu-cta a {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 40px;
  background: var(--ink-bg-text);
  color: var(--cream);
  border-radius: 2px;
  cursor: pointer;
}

.mobile-menu-tagline {
  position: absolute;
  bottom: 40px;
  font-family: var(--font-display);
  font-size: 13px; font-style: italic;
  color: rgba(46,40,32,0.35);
  z-index: 1;
}

@media (max-width: 768px) {
  nav { padding: 0 20px; background: rgba(26,24,20,0.97) !important; border-bottom-color: rgba(255,255,255,0.08) !important; }
  .logo-text { color: var(--cream) !important; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex !important; border-color: rgba(255,255,255,0.35) !important; background: rgba(255,255,255,0.08) !important; }
  .nav-hamburger span { background: var(--cream) !important; }
  .nav-hamburger:hover { background: rgba(255,255,255,0.15) !important; }
  .mobile-menu { display: flex; }

  section { padding: 64px 24px; }
  .hero-content { padding: 0 24px 60px; }
  .hero h1 { font-size: 48px; }
  .intro, .nosotros-story, .safari-intro, .contacto-grid { grid-template-columns: 1fr; }
  .intro-image, .nosotros-image { height: 300px; }
  .productos-grid, .porque-grid, .valores-grid { grid-template-columns: 1fr; }
  .incluye-grid, .form-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; padding: 60px 24px; }
  .itinerario, .valores, footer { padding: 60px 24px; }
  .precio-box { margin: 0 24px 60px; padding: 32px 24px; flex-direction: column; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .inner-hero { padding: 72px 24px 40px; }
  .productos { padding: 60px 24px; }
  .porque { padding: 60px 24px; }
  .incluye-grid { padding: 60px 24px; }
  .form-card { padding: 32px 24px; }
}

.cookie-banner {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 999;
  width: min(680px, calc(100vw - 48px));
  background: var(--white);
  border: 1px solid rgba(46,40,32,0.1);
  box-shadow: 0 8px 48px rgba(46,40,32,0.12);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 32px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-banner.hidden {
  transform: translateX(-50%) translateY(140px);
  opacity: 0;
  pointer-events: none;
}
.cookie-text { flex: 1; }
.cookie-text p {
  font-size: 13px; font-weight: 300; line-height: 1.6;
  color: var(--ink-soft); margin: 0;
}
.cookie-text p strong {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--ink); display: block; margin-bottom: 4px;
}
.cookie-text a {
  color: var(--terra); text-decoration: none; font-size: 12px;
}
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex; flex-direction: column; gap: 8px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  background: var(--terra); color: var(--cream);
  border: none; cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cookie-btn-accept:hover { background: var(--amber); }
.cookie-btn-reject {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: transparent; color: rgba(46,40,32,0.45);
  border: 1px solid rgba(46,40,32,0.15); cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-reject:hover { border-color: rgba(46,40,32,0.35); color: var(--ink); }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column; gap: 20px;
    bottom: 16px;
    padding: 24px 20px;
  }
  .cookie-actions { flex-direction: row; width: 100%; }
  .cookie-btn-accept, .cookie-btn-reject { flex: 1; text-align: center; }
}
