/* ============================================================
   DUMA EXPEDITIONS — Design System
   Rewrite: warm dark-brown palette matching johnxsafaris.com
   ============================================================ */

/* Exact fonts extracted from johnxsafaris.com source */
@import url('https://fonts.googleapis.com/css2?family=Neuton:ital,wght@0,400;0,700;1,400&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,700;1,6..96,400;1,6..96,500&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* EXACT johnxsafaris.com colors extracted from live CSS */
  --dark:        #322f31;   /* Nav + dark sections (rgba(50,47,49,1)) */
  --dark-deep:   #1a1718;   /* Deeper hover / footer */
  --dark-mid:    #2a2628;   /* Mid dark */
  --gold:        #ffffff;   /* PRIMARY accent — white */
  --gold-light:  #ffffff;   /* Gold lighter */
  --white:       #ffffff;   /* Body background — exact from site */
  --light:       #f7f7f7;   /* Light section bg — exact from site */
  --text:        #626262;   /* Body text — exact from site */
  --text-dark:   #322f31;   /* Heading text on white */
  --mid:         #5b595a;   /* Mid-tone gray */

  /* Legacy aliases for compatibility */
  --brass:       #ffffff;
  --brass-light: #ffffff;
  --ivory:       #f7f7f7;
  --cream:       #ffffff;
  --earth:       #8a5b20;

  /* Exact fonts from johnxsafaris.com */
  --font-display: 'Bodoni Moda', Georgia, serif;   /* h1-h6: Bodoni SvtyTwo ITC TT on site */
  --font-body:    'Neuton', Georgia, serif;         /* body: Neuton on site */
  --font-cap:     'Neuton', Georgia, serif;         /* nav/labels: Neuton uppercase on site */

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--dark); /* dark bg for page transitions */
}

body {
  background-color: var(--white); /* exact johnxsafaris.com: white body */
  color: var(--text);             /* exact: #626262 */
  font-family: var(--font-body);  /* exact: Neuton */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ── Typography — exact johnxsafaris.com ───────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bodoni Moda', Georgia, serif; /* Bodoni SvtyTwo ITC TT on johnxsafaris.com */
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--text-dark);
}

.display-xl {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

.display-lg {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.0;
}

.display-md {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
}

.label-cap {
  font-family: var(--font-cap);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.label-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.label-rule::before,
.label-rule::after {
  content: '';
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.25;
}
.label-rule::after { display: none; }
.label-rule.centered::before { display: block; }
.label-rule.centered::after  { display: block; }

/* ── Shared divider ────────────────────────────────────────── */
.divider-brass {
  width: 2.5rem;
  height: 1px;
  background: var(--brass);
  opacity: 0.6;
}

/* ── Section padding helper ────────────────────────────────── */
.section-pad {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
  max-width: 1440px;
  margin: 0 auto;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-cap);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: transparent;
  border: 1px solid var(--gold);   /* exact: #ffffff */
  color: var(--gold);
  padding: 13px 30px;
  font-family: 'Neuton', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--gold);
  padding: 13px 30px;
  font-family: 'Neuton', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: var(--earth);
  padding: 0;
  border: none;
  border-bottom: 1px solid transparent;
}
.btn-ghost:hover {
  border-bottom-color: var(--brass);
  color: var(--brass);
}

.btn-arrow::after {
  content: '→';
  font-family: serif;
  letter-spacing: 0;
  transition: transform 0.3s var(--ease-out-expo);
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ── Swup Page Transitions ─────────────────────────────────── */
.transition-main {
  transition: opacity 0.4s ease;
}
.is-animating .transition-main {
  opacity: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 148px;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#nav.at-top {
  background: transparent;
}
#nav.scrolled {
  background: var(--dark);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
  gap: 1.5rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 128px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.8; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-item > a,
.nav-drop-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.45rem;
  height: 148px;
  font-family: 'Neuton', Georgia, serif;  /* exact: Neuton on johnxsafaris.com */
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s;
}
.nav-item > a:hover,
.nav-drop-trigger:hover,
.nav-item.drop-open .nav-drop-trigger {
  color: var(--gold);
}

/* Nav chevron */
.nav-chevron {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s;
  margin-top: 1px;
}
.nav-item.drop-open .nav-chevron {
  transform: rotate(-135deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  padding: 0.5rem 0;
  margin-top: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-item.drop-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown ul { list-style: none; }
.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-family: 'Neuton', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown a:hover {
  color: #d9b676;
  background: rgba(255,255,255,0.06);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile Menu ───────────────────────────────────────────── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--dark-mid);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out-expo);
}
#mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.mobile-menu-logo-img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
}
.mobile-menu-close:hover { opacity: 1; }

.mobile-nav-links {
  list-style: none;
  padding: 1rem 0;
  flex: 1;
}
.mobile-nav-links > li > a,
.mobile-drop-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-cap);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,232,212,0.75);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-nav-links > li > a:hover,
.mobile-drop-trigger:hover { color: var(--brass-light); }

.mobile-chevron {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
li.drop-open .mobile-chevron { transform: rotate(-135deg); }

.mobile-sub-links {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
  background: rgba(0,0,0,0.2);
}
li.drop-open .mobile-sub-links { max-height: 400px; }
.mobile-sub-links a {
  display: block;
  padding: 0.6rem 2rem;
  font-family: var(--font-cap);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,232,212,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-sub-links a:hover { color: var(--brass-light); }

.mobile-cta-block {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.mobile-contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.mobile-contact-label {
  display: block;
  font-family: var(--font-cap);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 0.25rem;
}
.mobile-contact-value {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(240,232,212,0.6);
}

/* Responsive nav */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Swiper */
.hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet {
  background: rgba(240,232,212,0.5);
  opacity: 1;
  width: 6px;
  height: 6px;
  transition: background 0.3s, width 0.3s;
  border-radius: 3px;
}
.swiper-pagination-bullet-active {
  background: var(--brass);
  width: 24px;
}

.hero-swiper-pagination {
  bottom: 2rem !important;
  left: auto !important;
  right: clamp(1.5rem, 5vw, 6rem) !important;
  width: auto !important;
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,10,6,0.75) 0%,
    rgba(13,10,6,0.4) 60%,
    rgba(13,10,6,0.2) 100%
  );
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* Hero content */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(1.5rem, 6vw, 8rem);
  padding-top: 58px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Neuton', Georgia, serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brass);
  opacity: 0.5;
}

.hero-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(3.8rem, 9vw, 9rem);
  font-weight: 400;
  line-height: 0.92;
  color: var(--ivory);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);           /* exact: #ffffff */
}

.hero-subtitle {
  font-family: 'Neuton', Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: rgba(240,232,212,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Impala logo in hero */
.hero-impala {
  margin: 1.5rem auto 0.5rem;
  display: flex;
  justify-content: center;
}
.hero-impala-img {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Hero video button */
.hero-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/* ── VIDEO SECTION ─────────────────────────────────────────── */
.video-section {
  background: var(--dark-deep);
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
}
.video-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* ── Entradilla sobre el vídeo ─────────────────────────────── */
.video-intro {
  max-width: 620px;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.video-intro-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.video-intro-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: rgba(240,232,212,0.75);
  line-height: 1.7;
}
.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.video-embed-wrap iframe,
.video-embed-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

/* ── MERCHANDISING SECTION ─────────────────────────────────── */
#merchandising {
  background: var(--light);
}
.merch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.merch-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
}
.merch-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 1rem 0 1.5rem;
}
.merch-headline em {
  font-style: italic;
  color: var(--gold);
}
.merch-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.merch-img {
  position: relative;
  overflow: hidden;
}
.merch-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out-expo);
}
.merch-img:hover .merch-img-bg {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .merch-inner {
    grid-template-columns: 1fr;
  }
  .merch-img {
    height: 280px;
    position: relative;
  }
  .merch-img-bg { position: absolute; }
}

/* Feature box subtitle */
.feature-box-sub {
  font-family: var(--font-cap);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
}

/* Stats bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13,10,6,0.72);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.2);
  height: 70px;
}
.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
  gap: 2px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brass-light);
  line-height: 1;
}
.hero-stat-num sup { font-size: 0.6em; }
.hero-stat-label {
  font-family: var(--font-cap);
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,232,212,0.45);
  white-space: nowrap;
}
.hero-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 88px;
  right: clamp(1.5rem, 5vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--brass);
  opacity: 0.4;
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-family: var(--font-cap);
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  color: rgba(240,232,212,0.35);
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

@media (max-width: 768px) {
  .hero-stats-bar { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-swiper-pagination { right: 1rem !important; bottom: 1.5rem !important; }
  .hero-title { font-size: clamp(3rem, 11vw, 5rem); }
}

/* ============================================================
   DUMA EXPERIENCE (split section)
   ============================================================ */
#duma-experience {
  background: var(--cream);
  color: var(--dark);
}
.duma-exp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.duma-exp-img {
  position: relative;
  overflow: hidden;
}
.duma-exp-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out-expo);
}
.duma-exp-img:hover .duma-exp-img-bg {
  transform: scale(1.04);
}
.duma-exp-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem);
}
.duma-exp-text .label-cap { color: var(--earth); }
.duma-exp-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--dark-mid);
  line-height: 1.05;
  margin: 1.25rem 0 1.5rem;
}
.duma-exp-headline em { font-style: italic; }
.duma-exp-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.duma-exp-link {
  font-family: var(--font-cap);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
  border-bottom: 1px solid var(--earth);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
  align-self: flex-start;
}
.duma-exp-link:hover {
  color: var(--brass);
  border-color: var(--brass);
}

@media (max-width: 768px) {
  .duma-exp-inner {
    grid-template-columns: 1fr;
  }
  .duma-exp-img {
    height: 320px;
    position: relative;
  }
}

/* ============================================================
   THREE FEATURE BOXES
   ============================================================ */
#feature-boxes {
  background: var(--dark);
}
.feature-boxes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.feature-box {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  cursor: pointer;
}
.feature-box-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out-expo);
}
.feature-box:hover .feature-box-img {
  transform: scale(1.06);
}
.feature-box-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,10,6,0.90) 0%,
    rgba(13,10,6,0.45) 50%,
    rgba(13,10,6,0.25) 100%
  );
  transition: background 0.5s;
}
.feature-box:hover .feature-box-overlay {
  background: linear-gradient(
    to top,
    rgba(13,10,6,0.95) 0%,
    rgba(13,10,6,0.6) 50%,
    rgba(13,10,6,0.35) 100%
  );
}
.feature-box-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  gap: 1rem;
}
.feature-box-title {
  font-family: var(--font-cap);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}
.feature-box-rule {
  width: 2rem;
  height: 1px;
  background: var(--brass);
  transition: width 0.4s var(--ease-out-expo);
}
.feature-box:hover .feature-box-rule {
  width: 3.5rem;
}
.feature-box-link {
  font-family: var(--font-cap);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.feature-box:hover .feature-box-link { gap: 0.75rem; }
.feature-box-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}

@media (max-width: 768px) {
  .feature-boxes-inner { grid-template-columns: 1fr; }
  .feature-box { min-height: 320px; }
  .feature-box-divider { display: none; }
}

/* ============================================================
   HUNT REPORTS
   ============================================================ */
#hunt-reports {
  background: var(--cream);
  padding: var(--section-pad) 0;
}
.hunt-reports-header {
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  max-width: 1440px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hunt-reports-title-block .label-cap { color: var(--gold); }
.hunt-reports-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--dark-mid);
  margin-top: 0.75rem;
  line-height: 1.05;
}
.hunt-reports-title em { font-style: italic; }

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(91,89,90,0.18);
}
.report-card {
  border-right: 1px solid rgba(91,89,90,0.18);
  display: flex;
  flex-direction: column;
}
.report-card:last-child { border-right: none; }

.report-card-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.report-card-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out-expo);
}
.report-card:hover .report-card-img-inner {
  transform: scale(1.05);
}
.report-card-body {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(91,89,90,0.18);
}
.report-card-date {
  font-family: 'Neuton', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);            /* exact johnxsafaris.com: #ffffff */
  margin-bottom: 0.75rem;
}
.report-card-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);       /* exact: #322f31 */
  line-height: 1.2;
  margin-bottom: 1rem;
  flex: 1;
}
.report-card-excerpt {
  font-family: 'Neuton', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);            /* exact: #626262 */
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.report-card-link {
  font-family: 'Neuton', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s, border-color 0.25s;
}
.report-card-link:hover {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

@media (max-width: 900px) {
  .reports-grid { grid-template-columns: 1fr; }
  .report-card { border-right: none; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--dark);    /* exact: #322f31 */
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
}
.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.testimonials-header .label-cap { color: var(--gold); }
.testimonials-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--ivory);
  margin-top: 1rem;
  line-height: 1.1;
}
.testimonials-headline em { font-style: italic; color: var(--brass-light); }

/* Simple carousel */
.testimonial-carousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.testimonial-slide {
  display: none;
  text-align: center;
  animation: fadeInTest 0.6s ease;
}
.testimonial-slide.active { display: block; }
@keyframes fadeInTest {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-quote-mark {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--brass);
  opacity: 0.25;
  display: block;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.testimonial-author-name {
  font-family: var(--font-cap);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.25rem;
}
.testimonial-author-meta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(240,232,212,0.45);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem;
}
.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.testimonial-dot.active {
  background: var(--brass);
  width: 22px;
}

/* ============================================================
   PARTNERS STRIP
   ============================================================ */
#partners {
  background: var(--cream);
  padding: 4rem clamp(1.5rem, 5vw, 6rem);
  border-top: 1px solid rgba(91,89,90,0.18);
  border-bottom: 1px solid rgba(91,89,90,0.18);
}
.partners-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.partners-header .label-cap { color: var(--stone); }

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
}
.partner-logo {
  font-family: var(--font-cap);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(107,78,44,0.5);
  text-align: center;
  transition: color 0.25s;
  cursor: default;
  user-select: none;
}
.partner-logo:hover { color: var(--earth); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);        /* exact: #322f31 */
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-body {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 6rem) 0;
}
.footer-body-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem 4rem;
}

.footer-brand-col {}
.footer-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 1.25rem;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(240,232,212,0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-social-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(240,232,212,0.4);
  transition: border-color 0.25s, color 0.25s;
}
.footer-social-link:hover {
  border-color: var(--brass);
  color: var(--brass);
}
.footer-social-link svg { width: 14px; height: 14px; }

.footer-certs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-cert-badge {
  font-family: var(--font-cap);
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 8px;
}

.footer-col-title {
  font-family: var(--font-cap);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
}
.footer-links li + li { margin-top: 0.6rem; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(240,232,212,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--stone-light); }

.footer-contact-item {
  margin-bottom: 1.1rem;
}
.footer-contact-label {
  display: block;
  font-family: var(--font-cap);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.3rem;
}
.footer-contact-addr,
.footer-contact-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(240,232,212,0.4);
  font-style: normal;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--stone-light); }

.footer-cta-btn {
  margin-top: 1.75rem;
  display: inline-flex;
}

.footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem clamp(1.5rem, 5vw, 6rem);
}
.footer-bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal {
  font-family: var(--font-cap);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: rgba(240,232,212,0.25);
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-legal-links a {
  font-family: var(--font-cap);
  font-size: 0.48rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,232,212,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(240,232,212,0.55); }

/* Footer newsletter strip */
.footer-newsletter {
  background: var(--dark-deep);   /* slightly darker: #1a1718 */
  padding: 3rem clamp(1.5rem, 5vw, 6rem);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-newsletter-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}
.footer-newsletter-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(240,232,212,0.4);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer-newsletter-form { flex-shrink: 0; }
.newsletter-input-wrap {
  display: flex;
  gap: 0;
  max-width: 420px;
  width: 100%;
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.25);
  border-right: none;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.25s;
}
.newsletter-input::placeholder { color: rgba(240,232,212,0.3); }
.newsletter-input:focus { border-color: var(--brass); }
.newsletter-btn {
  background: var(--brass);
  border: 1px solid var(--brass);
  color: var(--dark);
  font-family: var(--font-cap);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s;
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--brass-light); }
.newsletter-btn-icon { width: 12px; height: 12px; }
.newsletter-privacy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(240,232,212,0.25);
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .footer-body-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-body-inner { grid-template-columns: 1fr; }
  .footer-newsletter-inner { flex-direction: column; }
  .newsletter-input-wrap { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; }
}

/* ============================================================
   BOOKING CTA & FORM (retained)
   ============================================================ */
#booking-cta {
  position: relative;
  overflow: hidden;
  background: var(--dark-mid);
}
.booking-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('https://images.unsplash.com/photo-1560743641-3914f2c45636?w=1920&q=85');
  opacity: 0.15;
}
.booking-cta-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-mid);
  opacity: 0.85;
}
.booking-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}
.booking-cta-title {
  color: var(--ivory);
  margin: 1rem 0;
}
.booking-cta-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(240,232,212,0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.booking-form-panel {
  background: rgba(13,10,6,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2.5rem;
}
.booking-form-title {
  font-family: var(--font-cap);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-family: var(--font-cap);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,232,212,0.5);
  margin-bottom: 0.4rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(240,232,212,0.25); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--brass); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select option { background: var(--dark-mid); }

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}
.form-radio-option,
.form-checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(240,232,212,0.8);
}
.form-radio-option input[type="radio"],
.form-checkbox-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--brass);
  cursor: pointer;
  flex-shrink: 0;
}

.trofeo-card {
  border: 1px solid rgba(255,255,255,0.14);
  padding: 1.5rem 1.5rem 0.5rem;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.02);
}
.trofeo-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.trofeo-card-title {
  font-family: var(--font-display, serif);
  font-size: 1.25rem;
  color: var(--ivory);
}
.trofeo-remove-btn {
  background: none;
  border: 1px solid rgba(201,138,138,0.5);
  color: #c98a8a;
  font-family: var(--font-cap);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.trofeo-remove-btn:hover { background: rgba(201,138,138,0.15); }

@media (max-width: 900px) {
  .booking-cta-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL — reset for non-.reveal-delay classes
   ============================================================ */
.reveal { will-change: transform, opacity; }

/* ============================================================
   INNER PAGES — shared styles
   ============================================================ */

/* Page hero banner (shorter than full-screen hero) */
.page-hero {
  position: relative;
  height: clamp(360px, 55vw, 580px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(50,47,49,0.85) 0%, rgba(50,47,49,0.4) 50%, rgba(50,47,49,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 6rem) clamp(2.5rem, 5vw, 4rem);
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-family: var(--font-cap);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.05;
  margin: 0;
}
.page-hero-title em { font-style: italic; color: var(--gold); }

/* Content wrapper for inner pages */
.page-content {
  background: var(--white);
}

/* Standard text section */
.content-section {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
  max-width: 1440px;
  margin: 0 auto;
}
.content-section-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
}
.section-eyebrow {
  font-family: var(--font-cap);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
/* En fondos oscuros el eyebrow vuelve a ser claro */
.content-dark .section-eyebrow,
[style*="background:var(--dark)"] .section-eyebrow,
[style*="background:#322f31"] .section-eyebrow {
  color: rgba(255,255,255,0.55);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: inherit; }
.section-title-white {
  color: #ffffff;
}
.section-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.section-body:last-child { margin-bottom: 0; }

/* Dark content section */
.content-dark {
  background: var(--dark);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
}
.content-dark-inner {
  max-width: 860px;
  margin: 0 auto;
}
.content-dark .section-body {
  color: rgba(247,242,232,0.75);
}

/* Split section (like duma-experience) */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-img {
  position: relative;
  overflow: hidden;
}
.split-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out-expo);
}
.split-img:hover .split-img-bg { transform: scale(1.04); }
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  background: var(--white);
}
.split-text-dark {
  background: var(--dark);
}
.split-text-light {
  background: var(--light);
}
@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; }
  .split-img { height: 320px; position: relative; }
  .split-img-bg { position: absolute; }
}

/* Travel time boxes */
.travel-boxes {
  background: var(--dark);
  padding: 4rem clamp(1.5rem, 5vw, 6rem);
}
.travel-boxes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.travel-box {
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 2rem 1.5rem;
}
.travel-time {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.travel-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(247,242,232,0.65);
  line-height: 1.6;
}

/* Hunt type cards grid */
.hunt-cards {
  background: var(--light);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
}
.hunt-cards-title-block {
  max-width: 1440px;
  margin: 0 auto 3rem;
}
.hunt-cards-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(91,89,90,0.2);
}
.hunt-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark);
}
.hunt-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out-expo);
}
.hunt-card:hover .hunt-card-img { transform: scale(1.06); }
.hunt-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(50,47,49,0.85) 0%, rgba(50,47,49,0.1) 60%);
}
.hunt-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  z-index: 2;
}
.hunt-card-tag {
  font-family: var(--font-cap);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.hunt-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.hunt-card-link {
  font-family: var(--font-cap);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.25s;
}
.hunt-card:hover .hunt-card-link { color: var(--gold); }

/* Rates table */
.rates-section {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
  max-width: 1440px;
  margin: 0 auto;
}
.rates-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}
.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.rates-table thead tr {
  background: var(--dark);
}
.rates-table thead th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--font-cap);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.rates-table tbody tr {
  border-bottom: 1px solid rgba(91,89,90,0.15);
  transition: background 0.2s;
}
.rates-table tbody tr:hover { background: rgba(255,255,255,0.05); }
.rates-table tbody td {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  color: var(--text);
}
.rates-table tbody td:last-child {
  color: var(--dark);
  font-weight: 600;
}
.rates-table tbody td.consult {
  color: var(--mid);
  font-style: italic;
}

/* Includes/excludes */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.includes-box {
  background: var(--light);
  padding: 2.5rem 2.5rem 1.5rem;
  border-top: 2px solid var(--gold);
  box-shadow: 0 12px 30px rgba(50,47,49,0.06);
  transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s ease;
}
.includes-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(50,47,49,0.09);
}
/* En planning.html la caja va dentro de un fondo --light: pasa a blanco para que contraste */
.plan-pad .includes-box { background: var(--white); }
.excludes-box { border-top-color: rgba(91,89,90,0.35); }
.includes-box-title {
  font-family: var(--font-cap);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.excludes-box-title { color: var(--mid); }
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.includes-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(91,89,90,0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.includes-list li:last-child { border-bottom: none; }
.includes-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.excludes-list li::before {
  content: '×';
  color: var(--mid);
  font-weight: 400;
}
@media (max-width: 768px) {
  .includes-grid { grid-template-columns: 1fr; }
}

/* T&C accordion */
.terms-section {
  background: var(--light);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
}
.terms-inner {
  max-width: 900px;
  margin: 0 auto;
}
.terms-block {
  border-bottom: 1px solid rgba(91,89,90,0.2);
  padding: 1.5rem 0;
}
.terms-block-title {
  font-family: var(--font-cap);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.terms-block p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

/* Species CITES list */
.cites-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.cites-tag {
  background: var(--dark);
  color: var(--gold);
  font-family: var(--font-cap);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Quote block */
.quote-block {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(255,255,255,0.04);
}
.quote-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}
.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-cap);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* Highlight callout */
.callout-box {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 2.5rem 3rem;
  text-align: center;
  margin: 3rem 0;
}
.callout-box p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
}
.callout-box .label-cap { color: var(--gold); }

/* Responsive inline grids (hunts page) */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Note text */
.note-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.7;
  margin-top: 1rem;
  font-style: italic;
}

/* ── PAGE TAB SYSTEM ─────────────────────────────────────────── */
.page-tab-bar {
  background: var(--dark);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 68px;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.page-tab-bar::-webkit-scrollbar { display: none; }
.page-tab-btn {
  font-family: var(--font-cap);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.48);
  padding: 1.1rem 1.5rem;
  white-space: nowrap;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.page-tab-btn:hover {
  color: rgba(247,242,232,0.82);
  border-bottom-color: rgba(255,255,255,0.35);
}
.page-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tab-section { display: none !important; }
.tab-section.active { display: block !important; }

/* ── TIRO PERFECTO — page-specific styles (here so Swup loads them) ── */
.tiro-intro { background: var(--white); }
.tiro-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-pad) clamp(1.5rem,5vw,6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,7rem);
  align-items: start;
}
.tiro-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.tiro-pillar { position: relative; height: 220px; overflow: hidden; }
.tiro-pillar-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--dark);
  transition: transform 0.5s ease;
}
.tiro-pillar:hover .tiro-pillar-img { transform: scale(1.04); }
.tiro-pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(50,47,49,0.88) 0%, rgba(50,47,49,0.3) 55%, transparent 100%);
}
.tiro-pillar-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.1rem; }
.tiro-pillar-num {
  font-family: var(--font-cap);
  font-size: 0.45rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.tiro-pillar-title { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; color: #fff; line-height: 1.3; margin: 0 0 0.3rem; }
.tiro-pillar-text { font-family: var(--font-body); font-size: 0.75rem; color: rgba(247,242,232,0.72); line-height: 1.5; margin: 0; }
.tiro-species-header { background: var(--dark); padding: 3rem clamp(1.5rem,5vw,6rem); max-width: 100%; }
.tiro-species-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.tiro-category-tag {
  font-family: var(--font-cap);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.4rem 1rem;
}
.tiro-animal-list { background: var(--white); padding: 0 clamp(1.5rem,5vw,6rem) 0; max-width: 1200px; margin: 0 auto; }
.tiro-animal {
  display: grid;
  grid-template-columns: 72px 1fr 340px;
  gap: 2.5rem;
  align-items: start;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.tiro-animal:last-child { border-bottom: none; }
.tiro-animal-num { font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4rem); color: rgba(255,255,255,0.15); font-style: italic; line-height: 1; padding-top: 0.15rem; }
.tiro-animal-name { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); color: var(--dark); font-weight: 400; margin: 0 0 1.25rem; line-height: 1.1; }
.tiro-animal-name em { color: var(--gold); }
.tiro-animal-text { font-family: var(--font-body); font-size: 1rem; color: var(--text); line-height: 1.75; margin: 0 0 0.9rem; }
.tiro-animal-text:last-child { margin-bottom: 0; }
.tiro-animal-img { position: relative; height: 260px; overflow: hidden; background: var(--light); }
.tiro-animal-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.tiro-animal:hover .tiro-animal-img-bg { transform: scale(1.04); }
.tiro-danger-section { background: var(--dark); padding: 0 clamp(1.5rem,5vw,6rem); }
.tiro-danger-inner { max-width: 1200px; margin: 0 auto; }
.tiro-animal-danger {
  display: grid;
  grid-template-columns: 72px 1fr 340px;
  gap: 2.5rem;
  align-items: start;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tiro-animal-danger:last-child { border-bottom: none; }
.tiro-animal-num-danger { font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4rem); color: rgba(255,255,255,0.12); font-style: italic; line-height: 1; padding-top: 0.15rem; }
.tiro-animal-name-danger { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); color: var(--white); font-weight: 400; margin: 0 0 1.25rem; line-height: 1.1; }
.tiro-animal-name-danger em { color: var(--gold); }
.tiro-animal-text-danger { font-family: var(--font-body); font-size: 1rem; color: rgba(247,242,232,0.72); line-height: 1.75; margin: 0 0 0.9rem; }
.tiro-animal-text-danger:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .tiro-intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .tiro-animal, .tiro-animal-danger { grid-template-columns: 48px 1fr; grid-template-rows: auto auto; }
  .tiro-animal-img { grid-column: 1 / -1; height: 200px; }
}
@media (max-width: 600px) {
  .tiro-animal-num, .tiro-animal-num-danger { font-size: 2rem; }
}

/* ═══ PLANNING PAGE ═══════════════════════════════════════════════ */
.plan-pad { padding: 5rem clamp(1.5rem,5vw,6rem); }
.plan-inner { max-width: 1200px; margin: 0 auto; }
.plan-narrow { max-width: 820px; margin: 0 auto; }

/* Season cards */
.plan-seasons {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.plan-season {
  background: var(--dark);
  padding: 2rem 1.25rem;
  border-top: 2px solid var(--gold);
}
.plan-season-period {
  font-family: var(--font-cap);
  font-size: 0.44rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.plan-season-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 0.75rem;
  font-style: italic;
}
.plan-season-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(247,242,232,0.62);
  line-height: 1.65;
  margin: 0;
}
.weather-live-card {
  position: relative;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 2rem clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 2.5rem;
}
.weather-live-badge {
  position: absolute;
  top: 1.5rem;
  right: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cap);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.55);
}
.weather-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ea87e;
  box-shadow: 0 0 0 0 rgba(126,168,126,0.6);
  animation: weather-pulse 2.2s infinite;
}
@keyframes weather-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(126,168,126,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(126,168,126,0); }
  100% { box-shadow: 0 0 0 0 rgba(126,168,126,0); }
}
.weather-live-body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.weather-live-main {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.weather-live-icon { font-size: 2.75rem; line-height: 1; }
.weather-live-temp {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.weather-live-loc {
  font-family: var(--font-cap);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
}
.weather-live-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(247,242,232,0.75);
  margin: 0;
}
.weather-live-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.weather-live-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.weather-live-stat span {
  font-family: var(--font-cap);
  font-size: 0.44rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.45);
}
.weather-live-stat strong {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
}
.weather-live-updated {
  font-family: var(--font-cap);
  font-size: 0.42rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.32);
  margin: 1rem 0 0;
}
@media (max-width: 480px) {
  .weather-live-badge { position: static; margin-bottom: 1rem; }
  .weather-live-temp { font-size: 2.4rem; }
}

.plan-season-temp {
  font-family: var(--font-cap);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 1rem;
  display: block;
  opacity: 0.75;
}

/* Pack / equipaje grid */
.plan-pack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.plan-pack-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--earth);
  border-left: 1px solid rgba(50,47,49,0.08);
  border-right: 1px solid rgba(50,47,49,0.08);
  border-bottom: 1px solid rgba(50,47,49,0.08);
  box-shadow: 0 12px 30px rgba(50,47,49,0.06);
  transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s ease;
}
.plan-pack-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(50,47,49,0.1);
}
.plan-pack-label {
  font-family: var(--font-cap);
  font-size: 0.44rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  display: block;
  margin-bottom: 1.25rem;
}
.plan-pack-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-pack-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  padding: 0.55rem 0 0.55rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.plan-pack-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.7rem;
}
.plan-pack-list li:last-child { border-bottom: none; }
.plan-pack-list li strong { color: var(--dark); }

/* Health tip rows */
.plan-tip-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.plan-tip-col-title {
  font-family: var(--font-cap);
  font-size: 0.44rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.plan-tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-tip-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(247,242,232,0.72);
  line-height: 1.7;
  padding: 0.5rem 0 0.5rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.plan-tip-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.65rem;
}
.plan-tip-list li:last-child { border-bottom: none; }

/* Alert / callout */
.plan-alert {
  border-left: 3px solid var(--earth);
  padding: 1.25rem 1.5rem;
  background: rgba(138,91,32,0.06);
  margin: 2rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}
.plan-alert-dark {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  margin: 2rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(247,242,232,0.72);
}

/* Product links */
.plan-products { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.25rem; }
.plan-product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  font-family: var(--font-cap);
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background 0.2s, border-color 0.2s;
}
.plan-product-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* Planning body text */
.plan-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
}
.plan-body-dark {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(247,242,232,0.72);
  line-height: 1.8;
}
.plan-body p + p { margin-top: 0.9rem; }
.plan-body strong { color: var(--dark); }
.plan-body-dark strong { color: var(--gold); }

/* Terms blocks */
.plan-terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(50,47,49,0.12);
}
.plan-term {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid rgba(50,47,49,0.12);
  border-right: 1px solid rgba(50,47,49,0.12);
  transition: background 0.25s ease;
}
.plan-term:hover { background: rgba(138,91,32,0.03); }
.plan-term:nth-child(even) { border-right: none; }
.plan-term-title {
  font-family: var(--font-cap);
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  margin: 0 0 0.75rem;
}
.plan-term p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}
.plan-term p + p { margin-top: 0.75rem; }
.plan-term strong { color: var(--dark); }

@media (max-width: 960px) {
  .plan-seasons { grid-template-columns: 1fr 1fr; }
  .plan-pack-grid { grid-template-columns: 1fr; }
  .plan-tip-cols { grid-template-columns: 1fr; }
  .plan-terms-grid { grid-template-columns: 1fr; }
  .plan-term { border-right: none; }
}
@media (max-width: 560px) {
  .plan-seasons { grid-template-columns: 1fr; }
}

/* ═══ MERCH PAGE ══════════════════════════════════════════════════ */
.merch-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem,4vw,3rem) 4rem;
  gap: 2rem;
}
.merch-product-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(91,89,90,0.12);
  transition: box-shadow 0.3s;
}
.merch-product-card:hover {
  box-shadow: 0 8px 32px rgba(50,47,49,0.1);
}
.merch-product-img {
  position: relative;
  overflow: hidden;
  background: #f5f2ee;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}
.merch-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.merch-product-card:hover .merch-product-img img {
  transform: scale(1.04);
}
.merch-product-body {
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(91,89,90,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.merch-product-brand {
  font-family: var(--font-cap);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(91,89,90,0.55);
  margin: 0;
}
.merch-product-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 0.1rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.merch-product-price {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0.4rem 0 0.5rem;
}
.merch-color-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.merch-color-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 1.1rem;
  border: 1.5px solid var(--dark);
  cursor: pointer;
  background: var(--white);
  color: var(--dark);
  transition: background 0.15s, color 0.15s;
}
.merch-color-btn.active {
  background: var(--dark);
  color: #fff;
}
.merch-color-btn:hover:not(.active) {
  background: rgba(50,47,49,0.06);
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(50,47,49,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
#lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  font-family: var(--font-body);
}
#lightbox-close:hover { color: #fff; }

@media (max-width: 640px) {
  .merch-page-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================================
   DUMA ASSISTANT — floating FAQ chat widget
   ============================================================ */
#duma-chat-fab {
  position: fixed;
  bottom: clamp(1.1rem, 3vw, 2rem);
  right: clamp(1.1rem, 3vw, 2rem);
  z-index: 1200;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: var(--dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(138,91,32,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, background .3s ease;
  animation: duma-fab-pulse 3.2s ease-out infinite;
}
#duma-chat-fab:hover { transform: translateY(-3px) scale(1.04); background: var(--dark-deep); }
#duma-chat-fab img {
  width: 40px; height: 40px; object-fit: contain;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
#duma-chat-fab .duma-fab-close { display: none; color: var(--gold); font-size: 1.7rem; line-height: 1; font-family: var(--font-body); }
#duma-chat-fab.open .duma-fab-close { display: block; }
#duma-chat-fab.open img { display: none; }
#duma-chat-fab.open { animation: none; }
@keyframes duma-fab-pulse {
  0%   { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(138,91,32,0.55); }
  70%  { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 14px rgba(138,91,32,0); }
  100% { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(138,91,32,0); }
}

#duma-chat-panel {
  position: fixed;
  bottom: calc(clamp(1.1rem, 3vw, 2rem) + 74px);
  right: clamp(1.1rem, 3vw, 2rem);
  z-index: 1200;
  width: min(380px, calc(100vw - 2rem));
  height: min(560px, calc(100vh - 130px));
  background: #23201f;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  pointer-events: none;
  transition: opacity .3s ease, transform .34s cubic-bezier(.16,1,.3,1);
}
#duma-chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.duma-chat-head {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.15rem;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.duma-chat-head-logo {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.duma-chat-head-logo img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1); }
.duma-chat-head-txt { line-height: 1.2; }
.duma-chat-head-txt strong { color: #fff; font-size: .98rem; letter-spacing: .04em; display: block; font-family: var(--font-display, serif); }
.duma-chat-head-txt span { color: rgba(255,255,255,0.5); font-size: .72rem; letter-spacing: .02em; }
.duma-chat-head-txt span::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #6fbf73; margin-right: 5px; vertical-align: middle; }

.duma-chat-body {
  flex: 1; overflow-y: auto;
  padding: 1.15rem;
  display: flex; flex-direction: column; gap: .7rem;
  scroll-behavior: smooth;
  background: linear-gradient(180deg, #23201f 0%, #1d1a19 100%);
}
.duma-chat-body::-webkit-scrollbar { width: 6px; }
.duma-chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }

.duma-msg {
  max-width: 82%;
  padding: .6rem .85rem;
  border-radius: 14px;
  font-size: .88rem;
  line-height: 1.5;
  animation: duma-msg-in .32s cubic-bezier(.16,1,.3,1);
}
.duma-msg a { color: #cf9b4e; text-decoration: underline; }
.duma-msg.bot {
  align-self: flex-start;
  background: #322f31;
  color: rgba(255,255,255,0.92);
  border-bottom-left-radius: 4px;
}
.duma-msg.user {
  align-self: flex-end;
  background: var(--earth);
  color: #fff;
  border-bottom-right-radius: 4px;
}
@keyframes duma-msg-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.duma-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .2rem; }
.duma-chip {
  background: transparent;
  border: 1px solid rgba(207,155,78,0.55);
  color: #d9b676;
  padding: .4rem .75rem;
  border-radius: 20px;
  font-size: .78rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  line-height: 1.2;
}
.duma-chip:hover { background: var(--earth); color: #fff; border-color: var(--earth); }

.duma-typing { display: flex; gap: 4px; align-self: flex-start; padding: .7rem .9rem; background: #322f31; border-radius: 14px; border-bottom-left-radius: 4px; }
.duma-typing span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5); animation: duma-blink 1.2s infinite; }
.duma-typing span:nth-child(2) { animation-delay: .2s; }
.duma-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes duma-blink { 0%,60%,100% { opacity: .3; } 30% { opacity: 1; } }

.duma-chat-foot {
  display: flex; gap: .5rem;
  padding: .75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--dark);
  flex-shrink: 0;
}
.duma-chat-foot input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: .6rem .95rem;
  color: #fff;
  font-size: .86rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s ease;
}
.duma-chat-foot input::placeholder { color: rgba(255,255,255,0.4); }
.duma-chat-foot input:focus { border-color: rgba(207,155,78,0.6); }
.duma-chat-foot button {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: var(--earth);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.duma-chat-foot button:hover { background: #a06b2a; transform: scale(1.05); }
.duma-chat-foot button svg { width: 18px; height: 18px; }

@media (prefers-reduced-motion: reduce) {
  #duma-chat-fab { animation: none; }
}

/* ============================================================
   TEXTO JUSTIFICADO — "modo TFG" (párrafos de contenido)
   Alinea ambos márgenes + guionado español para evitar huecos.
   Se excluyen botones, menús, etiquetas y cabeceras.
   ============================================================ */
.section-body,
.tiro-animal-body,
.tiro-animal-text,
.tiro-pillar-text,
.tiro-intro-inner,
.exc-activity-desc,
.plan-body,
.plan-body-dark,
.plan-season-desc,
.lodge-feature-desc,
.duma-exp-body,
.hunt-card-content p,
.report-card-body,
.ybx-desc,
.feature-box-content p,
.content-section p,
.content-dark-inner p,
.split-text,
.note-text,
.merch-text,
.merch-product-body,
.page-content p,
.blog-article p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* ============================================================
   LISTA DE ESPECIES — cuadrícula de siluetas
   ============================================================ */
.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: clamp(0.85rem, 1.6vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.species-card {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.4rem 0.75rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(50,47,49,0.10);
  border-radius: 4px;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.species-card:hover,
.species-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  border-color: var(--earth);
  outline: none;
}
.species-card img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.species-card:hover img,
.species-card:focus-visible img { transform: scale(1.07); }
.species-name {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--font-cap);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color .3s ease;
}
.species-card:hover .species-name,
.species-card:focus-visible .species-name { color: var(--earth); }
@media (max-width: 480px) {
  .species-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .species-card img { height: 74px; }
}

/* ── Modal de especie (popup con descripción) ── */
.species-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.species-modal.open { opacity: 1; visibility: visible; }
.species-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,23,24,0.72);
  backdrop-filter: blur(3px);
  cursor: pointer;
}
.species-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  width: min(760px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 6px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  transform: translateY(18px) scale(.98);
  transition: transform .34s cubic-bezier(.16,1,.3,1);
}
.species-modal.open .species-modal-panel { transform: translateY(0) scale(1); }
.species-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--mid);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color .2s ease;
}
.species-modal-close:hover { color: var(--earth); }
.species-modal-figure {
  background: var(--light);
  border-radius: 4px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.species-modal-figure img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.species-modal-eyebrow {
  font-family: var(--font-cap);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.6rem;
}
.species-modal-name {
  font-family: var(--font-display, serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.species-modal-desc {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text);
  text-align: justify;
  hyphens: auto;
  margin-bottom: 1.5rem;
}
.species-modal-link {
  font-family: var(--font-cap);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
  border-bottom: 1px solid var(--earth);
  padding-bottom: 2px;
  transition: opacity .2s ease;
}
.species-modal-link:hover { opacity: 0.7; }
@media (max-width: 620px) {
  .species-modal-panel { grid-template-columns: 1fr; gap: 1.25rem; text-align: center; }
  .species-modal-figure img { height: 150px; }
  .species-modal-desc { text-align: left; }
}

/* ============================================================
   CAZA DE MONTAÑA — franja de paisajes
   ============================================================ */
.montana-gallery-band {
  background: var(--dark);
  padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1.5rem, 5vw, 6rem);
}
.montana-gallery-label {
  text-align: center;
  font-family: var(--font-cap);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.montana-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.6rem, 1.2vw, 1rem);
  max-width: 720px;
  margin: 0 auto;
}
.montana-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  width: clamp(150px, 30%, 220px);
  aspect-ratio: 3 / 2;
  background: #1a1718;
}
.montana-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out-expo);
}
.montana-shot:hover img { transform: scale(1.06); }
@media (max-width: 560px) {
  .montana-shot { width: clamp(130px, 44%, 180px); }
}
