/* ====================================================================
   Born2Travel — Shared stylesheet
   ==================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #000000;
  --white: #FFFFFF;
  --cream: #F2F2F2;
  --cream-2: #ECE7DF;
  --blue: #845536;
  --blue-dark: #6d4329;
  --beige: #E2CBB8;
  --brown-cta: #845536;
  --muted: #555555;
  --muted-2: #888888;
  --serif: 'Newsreader', Georgia, serif;
  --display: 'Prata', 'Newsreader', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --nav-h: 100px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ───── NAV ───── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 60px);
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled, nav.solid {
  background: rgb(128 104 87 / 80%) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav-logo img { height: 83px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity 0.3s, color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover { opacity: 0.65; }
.nav-links a.active::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  margin-left: 8px;
}

.nav-dropdown > a .chev {
  width: 9px; height: 9px;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  transition: transform 0.3s var(--ease);
}
.nav-dropdown.open > a .chev { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -20px;
  min-width: 320px;
  padding: 16px;
  background: rgba(10,10,10,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu a.dd-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 14px;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--white);
  transition: background 0.25s;
}
.nav-dropdown-menu a.dd-item:hover { background: rgba(255,255,255,0.06); opacity: 1; }
.nav-dropdown-menu .dd-date {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
}
.nav-dropdown-menu .dd-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 6px 4px;
}
.nav-dropdown-menu a.dd-all {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  padding: 12px 14px;
}

/* Language selector */
.flag {
  width: 22px;
  height: 14px;
  border-radius: 3px;
  overflow: hidden;
  display: block;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.nav-lang { position: relative; display: flex; align-items: center; }
.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.3s;
}
.nav-lang-flag { display: inline-flex; align-items: center; }
.nav-lang-flag .flag { width: 20px; height: 13px; }
.nav-lang-btn:hover { opacity: 0.65; }
.nav-lang-btn .chev {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 0.3s var(--ease);
}
.nav-lang.open .nav-lang-btn .chev { transform: rotate(180deg); }
.nav-lang-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 140px;
  padding: 8px;
  background: rgba(10,10,10,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.nav-lang.open .nav-lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-lang-menu .lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: none;
  transition: background 0.25s;
}
.nav-lang-menu .lang-option-flag {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-lang-menu .lang-option-label { flex: 1; }
.nav-lang-menu .lang-option:hover {
  background: rgba(255,255,255,0.06);
  opacity: 1;
}
.nav-lang-menu .lang-tick {
  color: var(--blue);
  font-size: 11px;
  margin-left: 12px;
}
.nav-lang-menu .lang-option:not(.lang-active) .lang-tick { display: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--white);
  color: var(--black) !important;
  border: 1px solid var(--white);
  border-radius: 100px;
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: 1.6px !important;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.nav-cta:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white) !important;
  transform: translateY(-1px);
  opacity: 1 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  z-index: 110;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--white);
  font-weight: 300;
  letter-spacing: 1px;
}
.mobile-menu .mobile-section {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--sans);
  margin-top: 8px;
}
.mobile-menu .mobile-sub a {
  font-size: 16px;
  font-family: var(--sans);
  letter-spacing: 0.5px;
  text-transform: none;
  opacity: 0.85;
}
.mobile-lang {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
}
.mobile-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 4px 6px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.3s, opacity 0.3s;
}
.mobile-lang-btn .flag {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.mobile-lang-btn.active,
.mobile-lang-btn:hover { color: var(--white); }
.mobile-lang-btn.active .flag,
.mobile-lang-btn:hover .flag { opacity: 1; }
.mobile-lang-sep {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.mobile-menu .mobile-cta {
  margin-top: 12px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--black);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ───── HERO HOME ───── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero-video, .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Magazine-cover corners */
.hero-corner {
  position: absolute;
  top: calc(var(--nav-h) + 26px);
  z-index: 3;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero-corner::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.55);
}
.hero-corner.left { left: clamp(24px, 4vw, 60px); }
.hero-corner.right {
  right: clamp(24px, 4vw, 60px);
  flex-direction: row-reverse;
}
@media (max-width: 760px) {
  .hero-corner { font-size: 9.5px; letter-spacing: 3px; gap: 10px; }
  .hero-corner::after { width: 16px; }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.3px;
  opacity: 0;
  animation: fadeUp 1.2s 0.6s var(--ease) forwards;
}
.hero h1 em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.hero-sub {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1.2s 0.9s var(--ease) forwards;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  margin: 32px auto 36px;
  opacity: 0;
  animation: fadeIn 1s 1.1s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  opacity: 0;
  animation: fadeUp 1.2s 1.2s var(--ease) forwards;
}
.hero-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.hero-cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--ease);
}
.hero-cta:hover .hero-cta-arrow { transform: translateX(5px); }
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
}
.scroll-indicator .scroll-text {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.85;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollDown 2.2s infinite var(--ease);
}
.scroll-arrow {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  animation: floatDown 2.2s infinite var(--ease);
}
@keyframes floatDown {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(4px); opacity: 0.9; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 0.7; } }
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }

/* ───── HERO PÁGINAS INTERNAS ───── */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 60px) clamp(24px, 6vw, 100px) clamp(48px, 7vw, 96px);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 2; max-width: 880px; }
.page-hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.page-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.page-hero p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  font-weight: 300;
  max-width: 640px;
  opacity: 0.92;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { opacity: 0.4; }

/* ───── COMUNES ───── */
.manifesto {
  padding: clamp(80px, 12vw, 160px) clamp(24px, 8vw, 120px);
  text-align: center;
  background: var(--black);
  color: var(--white);
}
.manifesto-tag, .section-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}
.section-tag.muted { color: rgba(0,0,0,0.4); margin-bottom: 16px; }
.manifesto h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.3px;
  max-width: 900px;
  margin: 0 auto;
}
.manifesto h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -0.3px;
}

.img-divider { width: 100%; height: clamp(300px, 50vw, 600px); overflow: hidden; }
.img-divider img { width: 100%; height: 100%; object-fit: cover; }

.section-header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
.section-header.dark .section-tag { color: var(--blue); }
.section-header.dark .section-title { color: var(--white); }
.section-title {
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: 0.3px;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.section-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 640px;
  margin: 16px auto 0;
}

/* ───── TRIPS ───── */
.trips-overview {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 60px);
  background: var(--cream);
}
.trips-overview .voyage-grid,
.trips-overview .filter-bar,
.trips-overview .month-search { padding-left: 0; padding-right: 0; }
.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 32px;
  max-width: 1600px;
  margin: 0 auto;
}
.trip-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.5s var(--ease);
}
.trip-card:hover { transform: scale(1.02); }
.trip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.trip-card:hover img { transform: scale(1.05); }
.trip-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.05) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3.5vw, 38px);
  color: var(--white);
}
.trip-card-date {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.trip-card h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 8px;
}
.trip-card-location {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 20px;
}
.trip-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.3s;
}
.trip-card:hover .trip-card-btn { background: var(--white); color: var(--black); }
.trip-card-spots {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
}

.next-trip-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.08);
}
.next-trip-image { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; }
.next-trip-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.next-trip-image:hover img { transform: scale(1.04); }
.next-trip-content .trip-card-date { color: var(--blue-dark); margin-bottom: 14px; }
.next-trip-content h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 18px;
}
.next-trip-content p { font-size: 16px; line-height: 1.8; color: #555; margin-bottom: 26px; }
.next-trip-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.next-trip-meta span {
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
}
.next-trip-btn, .btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: var(--brown-cta);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.3s, background 0.3s;
}
.next-trip-btn:hover, .btn-dark:hover { background: #6d4329; transform: translateY(-2px); }

.all-trips-header { text-align: center; margin: clamp(56px, 7vw, 90px) auto clamp(32px, 5vw, 56px); }
.all-trips-header .section-tag { margin-bottom: 14px; }

.next-trip-divider {
  position: relative;
  width: 100vw;
  height: clamp(420px, 58vw, 720px);
  margin: clamp(70px, 8vw, 110px) calc(50% - 50vw) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.next-trip-divider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.next-trip-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.65));
}
.next-trip-divider-content { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; }
.next-trip-divider-content .section-tag { color: var(--blue); }
.next-trip-divider-content h3 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
}
.next-trip-divider-content p {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.86;
  margin-bottom: 34px;
}
.next-trip-divider-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.next-trip-divider-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.next-trip-divider-btn.primary { background: var(--white); color: var(--black); }
.next-trip-divider-btn.primary:hover { background: var(--blue); }
.next-trip-divider-btn.secondary { border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
.next-trip-divider-btn.secondary:hover { background: rgba(255,255,255,0.1); }
.next-trip-divider-btn:hover { transform: translateY(-2px); }

/* ───── GALERÍA ───── */
.gallery {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 40px);
  background: var(--black);
}
.gallery .section-tag { color: var(--blue); }
.gallery .section-title { color: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 8px;
  max-width: 1600px;
  margin: 0 auto;
}
.gallery-item { overflow: hidden; border-radius: 8px; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-v { grid-row: span 2; }

/* ───── ABOUT ───── */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.about-image { overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 100px);
}
.about-content .section-tag { margin-bottom: 24px; color: rgba(0,0,0,0.4); }
.about-content h2 {
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.3px;
  margin-bottom: 32px;
}
.about-content h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.about-content p { font-size: 16px; line-height: 1.8; color: #555; margin-bottom: 20px; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.value-tag {
  padding: 8px 18px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
}

/* ───── PILARES ───── */
.pillars {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  background: var(--cream);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1600px;
  margin: 0 auto;
}
.pillar-card {
  background: var(--white);
  padding: clamp(28px, 3vw, 40px);
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--blue-dark);
  margin-bottom: 18px;
  display: block;
}
.pillar-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
}
.pillar-card p { font-size: 15px; line-height: 1.7; color: #555; }

/* ───── TESTIMONIOS ───── */
.testimonials {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  background: var(--cream);
  text-align: center;
}
.testimonials.on-white { background: var(--white); }
.testimonials-carousel { max-width: 820px; margin: 0 auto; position: relative; }
.testimonial-slide { display: none; flex-direction: column; align-items: center; }
.testimonial-slide.active { display: flex; }
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: #333;
  margin-bottom: 32px;
}
.testimonial-author {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-2);
}
.testimonial-stars { color: var(--blue-dark); letter-spacing: 4px; margin-bottom: 18px; font-size: 13px; }
.testimonial-dots { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonial-dot.active { background: var(--black); transform: scale(1.3); }

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1600px;
  margin: clamp(40px, 5vw, 60px) auto 0;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 28px;
  text-align: left;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(0,0,0,0.06); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: #555;
}
.review-name { font-family: var(--sans); font-size: 14px; font-weight: 500; }
.review-date {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted-2);
  text-transform: uppercase;
}
.review-stars { color: var(--blue-dark); font-size: 13px; letter-spacing: 3px; margin-bottom: 10px; }
.review-text { font-size: 14px; line-height: 1.7; color: #444; }
.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: clamp(40px, 5vw, 60px);
}
.reviews-summary-score { font-family: var(--serif); font-size: 44px; font-weight: 300; }
.reviews-summary-stars { color: var(--blue-dark); letter-spacing: 4px; font-size: 18px; }
.reviews-summary-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ───── COMUNIDAD ───── */
.community {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  background: var(--black);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.community-bg { position: absolute; inset: 0; opacity: 0.18; }
.community-bg img { width: 100%; height: 100%; object-fit: cover; }
.community-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.community .section-tag { color: var(--blue); }
.community h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.3px;
  margin: 0 auto 20px;
}
.community h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -0.3px;
}
.community > .community-content > p {
  font-size: 16px;
  opacity: 0.75;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}
.community-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--white);
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--black);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-light:hover { background: var(--blue); transform: translateY(-2px); }

/* ───── EMAIL ───── */
.email-section {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
  background: var(--white);
  text-align: center;
}
.email-section.on-cream { background: var(--cream); }
.email-section h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
.email-section p { font-size: 15px; color: #666; margin-bottom: 32px; }
.email-form { display: flex; max-width: 480px; margin: 0 auto; gap: 0; }
.email-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid rgba(0,0,0,0.15);
  border-right: none;
  border-radius: 100px 0 0 100px;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.email-form input:focus { border-color: var(--black); }
.email-form button {
  padding: 16px 32px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 0 100px 100px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.email-form button:hover { background: #1c1c1c; }

/* ───── FAQ ───── */
.faq {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  background: var(--cream);
}
.faq.on-white { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
}
.faq-question:hover { color: #666; }
.faq-icon { width: 24px; height: 24px; position: relative; flex-shrink: 0; margin-left: 20px; }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  transition: transform 0.3s;
}
.faq-icon::before { width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer-inner { padding-bottom: 24px; font-size: 15px; line-height: 1.7; color: #666; }

/* ───── INSTAGRAM ───── */
.instagram {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
  text-align: center;
  background: var(--white);
}
.instagram .section-tag { margin-bottom: 16px; color: rgba(0,0,0,0.4); }
.instagram h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  margin-bottom: 32px;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid var(--black);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.instagram-link:hover { background: var(--black); color: var(--white); }
.instagram-link svg { width: 18px; height: 18px; }

/* ───── CONTACT ───── */
.contact-channels {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  background: var(--white);
}
.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
}
.contact-card {
  background: var(--cream);
  padding: clamp(28px, 3vw, 40px);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.4s var(--ease), background 0.4s;
}
.contact-card:hover { transform: translateY(-4px); background: #eae6df; }
.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--black); stroke-width: 1.4; }
.contact-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}
.contact-card p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 18px; }
.contact-card-link {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-form-section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  background: var(--cream);
}
.contact-form-section.on-white { background: var(--white); }
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}
.field input, .field select, .field textarea {
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(166,228,255,0.4);
}
.field textarea { resize: vertical; min-height: 140px; }
.field-hint { font-size: 12px; color: var(--muted-2); margin-top: 4px; }
.form-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  width: fit-content;
  margin: 8px auto 0;
  transition: background 0.3s, transform 0.3s;
}
.form-submit:hover { background: #1c1c1c; transform: translateY(-2px); }
.form-success {
  text-align: center;
  padding: 28px;
  background: var(--white);
  border-radius: 16px;
  color: #444;
  font-size: 15px;
  display: none;
}
.form-success.visible { display: block; }

/* Reserva — pasos */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: clamp(40px, 5vw, 64px) auto 0;
}
.step { text-align: center; position: relative; padding: 0 12px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--blue-dark);
  margin-bottom: 18px;
}
.step h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}
.step p { font-size: 13px; line-height: 1.6; color: #666; }

/* ───── FOOTER ───── */
footer {
  background: #3E2500;
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px) 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand img { height: 60px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; opacity: 0.6; max-width: 320px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; opacity: 0.7; transition: opacity 0.3s; }
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  opacity: 0.4;
  flex-wrap: wrap;
  gap: 12px;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   HOME — INTRO SPLIT ("Más que un viaje a caballo")
   ============================================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  gap: clamp(40px, 6vw, 90px);
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
}
.intro-split-media {
  position: relative;
  height: 100%;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.intro-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 980px) {
  .intro-split-media { min-height: 380px; }
}
.intro-split-media video,
.intro-split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-split-media .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.2));
  opacity: 1;
  transition: opacity 0.4s var(--ease);
  cursor: pointer;
  z-index: 2;
}
.intro-split-media.playing .play-overlay { opacity: 0; pointer-events: none; }
.intro-split-media .play-btn {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
  backdrop-filter: blur(10px);
}
.intro-split-media .play-btn:hover { transform: scale(1.08); background: var(--white); }
.intro-split-media .play-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--black);
  margin-left: 4px;
}
/* Eyebrow editorial */
.intro-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 26px;
}
.intro-eyebrow em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--blue-dark);
  text-transform: none;
  line-height: 1;
}
.intro-eyebrow .eyebrow-line {
  display: block;
  width: 46px;
  height: 1px;
  background: rgba(0,0,0,0.2);
}

.intro-split-content h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.intro-split-content h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.intro-split-content .lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.5;
  color: #2a2a2a;
  margin-bottom: 24px;
}
.intro-split-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}

/* Drop cap editorial */
.intro-body-first .drop-cap {
  float: left;
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.85;
  font-weight: 400;
  color: var(--black);
  margin: 8px 12px 0 0;
  padding-right: 2px;
}

/* Values (Aventura · Conexión · Libertad) */
.intro-split-values {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 36px 0 32px;
  flex-wrap: wrap;
}
.value-divider {
  width: 50px;
  height: 1px;
  background: rgba(0,0,0,0.22);
  flex-shrink: 0;
}
.value-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.value-chips li {
  padding: 7px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.value-chips li:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.intro-split-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 24px);
  margin-top: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--black);
  transition: gap 0.3s var(--ease);
}
.intro-split-cta::after {
  content: '→';
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.9em;
  transition: transform 0.3s var(--ease);
}
.intro-split-cta:hover { gap: 16px; opacity: 1; }
.intro-split-cta:hover::after { transform: translateX(4px); }

@media (max-width: 980px) {
  .intro-split { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME — WIDE AVENTURA ("Sé parte de la aventura")
   ============================================================ */
.aventura-wide {
  position: relative;
  padding: clamp(90px, 12vw, 180px) clamp(24px, 6vw, 80px);
  color: var(--white);
  overflow: hidden;
}
.aventura-wide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.aventura-wide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aventura-wide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}
.aventura-wide-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-left: clamp(0px, 4vw, 60px);
}
.aventura-wide-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
.aventura-wide h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.aventura-wide h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.aventura-wide .lead {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 12px;
  opacity: 0.95;
}
.aventura-wide p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
  opacity: 0.85;
  max-width: 520px;
}
.aventura-wide-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
}
.aventura-wide-form input {
  flex: 1;
  padding: 15px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.aventura-wide-form input::placeholder { color: rgba(255,255,255,0.6); }
.aventura-wide-form input:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.14);
}
.aventura-wide-form button {
  padding: 15px 28px;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
}
.aventura-wide-form button:hover { background: var(--blue); transform: translateY(-1px); }

@media (max-width: 600px) {
  .aventura-wide-form { flex-direction: column; }
}

/* ============================================================
   HOME — TRIPS CAROUSEL
   ============================================================ */
.next-trips {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
  overflow: hidden;
}
.next-trips-header {
  text-align: center;
  margin-bottom: clamp(48px, 5vw, 70px);
  padding: 0 clamp(24px, 6vw, 80px);
}
.next-trips-header .section-title { margin-bottom: 12px; }
.carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(60px, 7vw, 110px);
}
.carousel-track {
  display: flex;
  gap: clamp(20px, 2vw, 32px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 40px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
  position: relative;
  flex: 0 0 calc((100% - clamp(40px, 4vw, 64px)) / 3);
  min-width: 320px;
  scroll-snap-align: start;
  aspect-ratio: 3 / 4.4;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  text-decoration: none;
  color: var(--white);
}
.carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}
.carousel-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  z-index: 0;
}
.carousel-card:hover > img { transform: scale(1.06); }
.carousel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.08) 35%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.carousel-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
}
.carousel-card-top { text-align: center; padding-top: clamp(28px, 4vw, 56px); }
.carousel-card-destination {
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
}
.carousel-card-dates {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--blue);
  margin-top: 12px;
  text-transform: uppercase;
}
.carousel-card-bottom { margin-top: auto; }
.carousel-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.carousel-card-meta span {
  padding: 5px 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.carousel-card-description {
  font-size: 13px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0.95;
}
.carousel-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.carousel-card-spots {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}
.carousel-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease);
}
.carousel-card:hover .carousel-card-btn { gap: 12px; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: background 0.3s var(--ease), color 0.3s, transform 0.3s var(--ease);
  color: var(--black);
}
.carousel-arrow:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
}
.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.carousel-arrow:disabled:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-50%);
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.carousel-arrow.prev { left: clamp(8px, 2vw, 32px); }
.carousel-arrow.next { right: clamp(8px, 2vw, 32px); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s var(--ease);
}
.carousel-dot.active {
  background: var(--black);
  width: 28px;
  border-radius: 6px;
}

.next-trips-footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
  padding: 0 clamp(24px, 6vw, 80px);
}

@media (max-width: 980px) {
  .carousel-card { flex: 0 0 calc(100% - 60px); min-width: 260px; }
}

/* ============================================================
   HOME — REVIEWS BAND
   ============================================================ */
.reviews-band {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  background: var(--cream);
  text-align: center;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 78px; }
  .about { grid-template-columns: 1fr; }
  .about-image { height: 50vh; }
  .pillars-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item.span-2 { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .next-trip-summary { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .email-form { flex-direction: column; }
  .email-form input { border-right: 1px solid rgba(0,0,0,0.15); border-radius: 100px; }
  .email-form button { border-radius: 100px; }
  .community-buttons { flex-direction: column; }
  .trip-card { aspect-ratio: 2/3; }
  .steps { grid-template-columns: 1fr; }
}

/* ====================================================================
   ESSENCE — "Lo que te llevas de un viaje Born2Travel"
   ==================================================================== */
.essence {
  position: relative;
  padding: clamp(80px, 11vw, 150px) clamp(24px, 6vw, 80px);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.essence-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.essence-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.essence::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(40, 25, 15, 0.55) 0%,
      rgba(60, 40, 25, 0.45) 50%,
      rgba(40, 25, 15, 0.65) 100%);
}
.essence-content {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}
.essence-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.4px;
  margin-bottom: clamp(40px, 5vw, 64px);
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.essence-title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}
.essence-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  margin-bottom: clamp(40px, 5vw, 60px);
}
.essence-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: clamp(26px, 3vw, 38px) clamp(18px, 2.2vw, 28px);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.essence-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-4px);
}
.essence-card p {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--white);
  letter-spacing: 0.1px;
}
.essence-tagline {
  font-family: var(--serif);
  font-size: clamp(17px, 1.75vw, 22px);
  line-height: 1.6;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: clamp(28px, 3.5vw, 40px);
  opacity: 0.96;
}
.essence-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(6px);
}
.essence-cta svg {
  width: 18px;
  height: 18px;
}
.essence-cta:hover {
  background: var(--white);
  color: #3c2818;
  border-color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .essence-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .essence-cards { grid-template-columns: 1fr; gap: 12px; }
  .essence-card { min-height: 0; padding: 22px 20px; }
}

/* ====================================================================
   COMMUNITY SPLIT — "La comunidad"
   ==================================================================== */
.community-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
}
.community-split-content h2 {
  font-family: var(--display);
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.4px;
  color: var(--black);
  margin-bottom: clamp(22px, 2.5vw, 32px);
}
.community-split-content h2 em {
  font-family: var(--display);
  font-style: italic;
}
.community-split-content p {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 18px;
  font-weight: 400;
}
.community-split-content .community-split-emphasis {
  margin-top: 22px;
  margin-bottom: 30px;
}
.community-split-content .community-split-emphasis em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--black);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  display: block;
}
.community-split-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px 15px 22px;
  background: rgb(128, 104, 87);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  box-shadow: 0 8px 24px rgba(128, 104, 87, 0.25);
}
.community-split-cta svg {
  width: 18px;
  height: 18px;
}
.community-split-cta:hover {
  background: rgb(102, 82, 67);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(128, 104, 87, 0.35);
}
.community-split-cta--wa {
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.community-split-cta--wa:hover {
  background: #1EBE57;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}
.community-split-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  box-shadow: 0 30px 60px -20px rgba(60, 40, 25, 0.35);
}
.community-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.community-split-image:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .community-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .community-split-image { aspect-ratio: 4 / 3; }
}

/* ====================================================================
   INSTAGRAM FEED — "Nuestro instagram"
   ==================================================================== */
.instagram-feed {
  padding: clamp(80px, 10vw, 130px) clamp(24px, 6vw, 80px);
  text-align: center;
  background: var(--white);
}
.instagram-feed-header {
  margin-bottom: clamp(40px, 5vw, 60px);
}
.instagram-feed-divider {
  width: clamp(180px, 28vw, 380px);
  height: 1px;
  background: var(--black);
  margin: 0 auto clamp(36px, 4vw, 52px);
}
.instagram-feed-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
  color: var(--black);
}
.instagram-feed-title em {
  font-family: var(--display);
  font-style: italic;
}
.instagram-feed-subtitle {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  color: #555;
  font-weight: 400;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 14px);
  max-width: 1600px;
  margin: 0 auto;
}
.ig-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #f4f1ed;
  display: block;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.ig-item:hover img {
  transform: scale(1.08);
}
.ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.55), rgba(64, 93, 230, 0.55));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.ig-item:hover .ig-overlay {
  opacity: 1;
}
.ig-overlay svg {
  width: 34px;
  height: 34px;
  color: var(--white);
  transform: scale(0.85);
  transition: transform 0.4s var(--ease);
}
.ig-item:hover .ig-overlay svg {
  transform: scale(1);
}
.ig-cta {
  margin-top: clamp(40px, 5vw, 60px);
}
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  border: 1px solid var(--black);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  transition: all 0.35s var(--ease);
}
.ig-btn svg {
  width: 18px;
  height: 18px;
}
.ig-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-grid .ig-item:nth-child(n+10) { display: none; }
}
@media (max-width: 600px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid .ig-item:nth-child(n+7) { display: none; }
}

/* ====================================================================
   TRIP PAGE — Egipto / individual trip
   ==================================================================== */

/* Brown palette */
:root {
  --brown: rgb(128, 104, 87);
  --brown-deep: rgb(102, 82, 67);
  --brown-light: rgb(168, 142, 119);
  --brown-bg: rgb(122, 96, 76);
  --brown-bg-dark: rgb(86, 66, 49);
  --sand: #ECE1D2;
  --sand-dark: #D4C4B0;
  --accent: #E08A2B;
  --accent-deep: #C46E14;
}

/* ─── HERO ─── */
.trip-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: var(--nav-h) 24px 80px;
}
.trip-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.trip-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trip-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(30, 18, 8, 0.45) 0%,
      rgba(30, 18, 8, 0.25) 35%,
      rgba(30, 18, 8, 0.55) 100%);
}
.trip-hero-content {
  position: relative;
  text-align: center;
  max-width: 1600px;
}
.trip-hero-title {
  font-family: var(--display);
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: clamp(4px, 0.8vw, 12px);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.35);
}
.trip-hero-divider {
  width: clamp(180px, 28vw, 360px);
  height: 1px;
  background: rgba(255,255,255,0.7);
  margin: 0 auto 28px;
}
.trip-hero-date {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.trip-hero-location {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.95;
}
.trip-hero-location em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.trip-hero-location span {
  display: inline-block;
  margin-top: 4px;
  opacity: 0.8;
}
.trip-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.trip-hero-scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ─── WELCOME SPLIT ─── */
.trip-welcome {
  background: linear-gradient(180deg, var(--brown-bg) 0%, var(--brown-bg-dark) 100%);
  padding: clamp(34px, 4vw, 56px) clamp(24px, 6vw, 80px) clamp(60px, 8vw, 110px);
  color: var(--white);
}
.trip-welcome-content { align-self: start; }
.trip-welcome-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
}
.trip-welcome-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 480px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.trip-welcome-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trip-welcome-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trip-welcome-content h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
  color: var(--white);
}
.trip-welcome-content h2 em {
  font-family: var(--display);
  font-style: italic;
}
.trip-welcome-intro {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 540px;
}

/* Info card */
.trip-info-card {
  background: var(--white);
  color: var(--black);
  border-radius: 12px;
  padding: clamp(24px, 2.5vw, 32px);
  max-width: 540px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.35);
}
.trip-info-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.trip-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-family: var(--sans);
  font-size: 14px;
}
.trip-info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.trip-info-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.trip-info-value {
  color: var(--black);
  font-weight: 500;
  font-size: 14px;
}
.trip-info-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
}
.trip-availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--brown-deep);
}
.trip-availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c95e3a;
  box-shadow: 0 0 0 4px rgba(201, 94, 58, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 94, 58, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(201, 94, 58, 0.05); }
}
.trip-info-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px 12px 16px;
  background: var(--brown);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.trip-info-cta svg { width: 16px; height: 16px; }
.trip-info-cta:hover {
  background: var(--brown-deep);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .trip-welcome-grid { grid-template-columns: 1fr; }
  .trip-welcome-media { min-height: 360px; }
}

/* ─── 3 PILARES ─── */
.trip-pilares {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.trip-pilares-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.trip-pilares-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.trip-pilares::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(30, 18, 8, 0.78) 0%,
    rgba(60, 40, 25, 0.72) 50%,
    rgba(30, 18, 8, 0.85) 100%);
}
.trip-pilares-content {
  max-width: 920px;
  margin: 0 auto;
}
.trip-pilares-header {
  text-align: center;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.trip-section-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--brown-light);
  font-weight: 500;
  margin-bottom: 18px;
}
.trip-section-eyebrow.light { color: rgba(255,255,255,0.75); }
.trip-pilares-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.4px;
}
.trip-pilares-title em {
  font-family: var(--display);
  font-style: italic;
}
.trip-pilares-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trip-pilar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.trip-pilar[open] {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.32);
}
.trip-pilar summary {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.5vw, 32px);
  cursor: pointer;
  list-style: none;
}
.trip-pilar summary::-webkit-details-marker { display: none; }
.trip-pilar-number {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  opacity: 0.6;
  min-width: 36px;
}
.trip-pilar-label {
  flex: 1;
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 400;
  letter-spacing: 0.3px;
}
.trip-pilar-chev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
}
.trip-pilar-chev svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}
.trip-pilar[open] .trip-pilar-chev {
  transform: rotate(180deg);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
}
.trip-pilar-body {
  padding: 0 clamp(20px, 2.5vw, 32px) clamp(20px, 2.4vw, 28px) clamp(72px, 6vw, 92px);
  animation: pilarOpen 0.5s var(--ease);
}
@keyframes pilarOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.trip-pilar-body p {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 680px;
}

/* ─── ITINERARIO ─── */
.trip-itinerary {
  background: var(--white);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
}
.trip-itinerary-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.trip-itinerary-header h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.4px;
  color: var(--black);
  margin-bottom: 18px;
}
.trip-itinerary-header h2 em { font-style: italic; }
.trip-itinerary-intro {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.7;
  color: #555;
  font-weight: 400;
}
.trip-itinerary-list {
  max-width: 880px;
  margin: 0 auto;
  border-left: 1px solid var(--sand-dark);
  padding-left: clamp(20px, 3vw, 40px);
}
.itinerary-day {
  position: relative;
  display: grid;
  grid-template-columns: clamp(80px, 9vw, 120px) 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(32px, 4vw, 50px);
}
.itinerary-day:last-child { padding-bottom: 0; }
.itinerary-day::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(20px, 3vw, 40px));
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brown);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--sand-dark);
}
.itinerary-day-num {
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.itinerary-day-num span {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.itinerary-day-content h3 {
  font-family: var(--display);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--black);
  margin-bottom: 10px;
}
.itinerary-day-content p {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.7;
  color: #444;
  font-weight: 400;
}

@media (max-width: 640px) {
  .itinerary-day { grid-template-columns: 1fr; gap: 6px; }
  .itinerary-day-num { font-size: 28px; }
}

/* ─── INCLUDES ─── */
.trip-includes {
  background: var(--sand);
  padding: clamp(80px, 10vw, 130px) clamp(24px, 6vw, 80px);
}
.trip-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: 1600px;
  margin: 0 auto;
}
.trip-includes-col h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--black);
  letter-spacing: 0.3px;
}
.trip-list-check,
.trip-list-cross {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trip-list-check li,
.trip-list-cross li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  color: #3a3a3a;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trip-list-check li:last-child,
.trip-list-cross li:last-child { border-bottom: none; }
.trip-list-check li::before,
.trip-list-cross li::before {
  position: absolute;
  left: 0;
  top: 13px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  border-radius: 50%;
}
.trip-list-check li::before {
  content: '✓';
  background: var(--brown);
  color: var(--white);
}
.trip-list-cross li::before {
  content: '×';
  background: rgba(0,0,0,0.1);
  color: #666;
  font-size: 16px;
}

@media (max-width: 780px) {
  .trip-includes-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── GALLERY ─── */
.trip-gallery {
  background: var(--white);
  padding: clamp(80px, 10vw, 130px) clamp(24px, 6vw, 80px);
}
.trip-gallery-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.trip-gallery-header h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--black);
}
.trip-gallery-header h2 em { font-style: italic; }
.trip-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(180px, 22vw, 280px);
  gap: clamp(8px, 1vw, 14px);
  max-width: 1600px;
  margin: 0 auto;
}
.trip-gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}
.trip-gallery-item.span-2 { grid-column: span 2; }
.trip-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.trip-gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .trip-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-gallery-item.span-2 { grid-column: span 2; }
}

/* ─── FINAL CTA ─── */
.trip-final-cta {
  position: relative;
  padding: clamp(80px, 10vw, 130px) clamp(24px, 6vw, 80px);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.trip-final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.trip-final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trip-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(30, 18, 8, 0.78), rgba(86, 66, 49, 0.72));
}
.trip-final-cta-content {
  max-width: 760px;
  margin: 0 auto;
}
.trip-final-cta-content h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
}
.trip-final-cta-content h2 em { font-style: italic; }
.trip-final-cta-text {
  font-family: var(--sans);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.trip-final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary-warm {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px 15px 22px;
  background: var(--brown);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.btn-primary-warm svg { width: 18px; height: 18px; }
.btn-primary-warm:hover {
  background: var(--brown-deep);
  transform: translateY(-2px);
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(6px);
}
.btn-ghost-light svg { width: 18px; height: 18px; }
.btn-ghost-light:hover {
  background: var(--white);
  color: var(--brown-deep);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Active state for current trip in dropdown */
.dd-item.active {
  background: rgba(128, 104, 87, 0.12);
}

/* ====================================================================
   TRIP EXPERIENCES — "Lo que vas a vivir" + "Otras aventuras"
   ==================================================================== */
.trip-experiences {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.trip-experiences-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.trip-experiences-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trip-experiences::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(30, 40, 60, 0.92) 0%,
    rgba(60, 50, 50, 0.88) 28%,
    rgba(86, 66, 49, 0.85) 60%,
    rgba(102, 82, 67, 0.92) 100%);
}
.trip-experiences-content {
  max-width: 1600px;
  margin: 0 auto;
}
.trip-experiences-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.trip-experiences-header h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}
.trip-experiences-header h2 em {
  font-style: italic;
}
.trip-experiences-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--sand);
  opacity: 0.85;
}

/* Card grids */
.trip-experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.trip-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  margin-bottom: clamp(36px, 4vw, 48px);
}

/* Card */
.trip-experience-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.trip-experience-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}
.trip-experience-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.trip-experience-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.trip-experience-card:hover .trip-experience-img img {
  transform: scale(1.06);
}
.trip-experience-body {
  padding: clamp(18px, 1.8vw, 24px);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trip-experience-body h3 {
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  color: var(--white);
}
.trip-experience-body p {
  font-family: var(--sans);
  font-size: clamp(13px, 0.95vw, 14.5px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* Separator */
.trip-experiences-separator {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  margin-bottom: clamp(36px, 4vw, 52px);
}
.trip-experiences-separator span {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.trip-experiences-separator p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 24px);
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Closing italic line */
.trip-experiences-closing {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 820px;
  margin: 0 auto clamp(28px, 3vw, 40px);
}

/* CTA */
.trip-experiences-cta {
  text-align: center;
}

@media (max-width: 1100px) {
  .trip-experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-extras-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trip-experiences-grid,
  .trip-extras-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   TRIP DETAILS
   ==================================================================== */
section.trip-details {
  background: var(--white);
  padding: clamp(80px, 9vw, 120px) clamp(24px, 6vw, 80px);
}
.trip-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1600px;
  margin: 0 auto;
}
.trip-details-content h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: clamp(24px, 3vw, 36px);
  color: var(--black);
}
.trip-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.trip-details-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.65;
  color: #2c2c2c;
}
.trip-details-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown);
}
.trip-details-list strong {
  font-weight: 600;
  color: var(--black);
}
.trip-details-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.trip-details-note em {
  font-style: italic;
}
.trip-details-cta {
  box-shadow: 0 8px 24px rgba(128, 104, 87, 0.25);
}
.trip-details-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -20px rgba(60, 40, 25, 0.3);
}
.trip-details-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.trip-details-media:hover img { transform: scale(1.04); }

@media (max-width: 880px) {
  .trip-details-grid { grid-template-columns: 1fr; }
  .trip-details-media { aspect-ratio: 4 / 3; max-width: 480px; margin: 0 auto; }
}

/* ====================================================================
   TRIP LODGING — "Nuestros alojamientos"
   ==================================================================== */
.trip-lodging {
  background: var(--white);
  padding: 0 clamp(24px, 6vw, 80px) clamp(80px, 9vw, 120px);
}
.trip-lodging-topdivider {
  max-width: 1600px;
  height: 1px;
  background: rgba(0, 0, 0, 0.18);
  margin: 0 auto clamp(60px, 7vw, 90px);
}
.trip-lodging-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 4vw, 52px);
}
.trip-lodging-header h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 400;
  letter-spacing: 0.4px;
  color: var(--black);
  margin-bottom: 18px;
}
.trip-lodging-header h2 em { font-style: italic; }
.trip-lodging-header p {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.7;
  color: #555;
  font-weight: 400;
}
.trip-lodging-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  max-width: 1600px;
  margin: 0 auto;
}
.trip-lodging-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  transition: transform 0.4s var(--ease);
}
.trip-lodging-card:hover { transform: translateY(-4px); }
.trip-lodging-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream);
}
.trip-lodging-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.trip-lodging-card:hover .trip-lodging-img img {
  transform: scale(1.06);
}
.trip-lodging-card h3 {
  font-family: var(--display);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--black);
}

@media (max-width: 880px) {
  .trip-lodging-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trip-lodging-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   QUOTE CTA — italic banner with horse riders
   ==================================================================== */
.trip-quote-cta {
  position: relative;
  padding: clamp(80px, 9vw, 120px) clamp(24px, 6vw, 80px);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.trip-quote-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.trip-quote-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trip-quote-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(102, 82, 67, 0.62) 0%,
    rgba(86, 66, 49, 0.55) 50%,
    rgba(102, 82, 67, 0.65) 100%);
}
.trip-quote-cta-content {
  max-width: 760px;
  margin: 0 auto;
}
.trip-quote {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 32px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.trip-quote em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

/* ====================================================================
   GOOGLE REVIEWS — static replica of Google reviews widget
   ==================================================================== */
.google-reviews {
  background: var(--white);
  padding: clamp(60px, 7vw, 100px) clamp(24px, 6vw, 80px) clamp(60px, 7vw, 90px);
}
.google-reviews-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  padding: 22px 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
}
.gr-company {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 240px;
}
.gr-company-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gr-company-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.gr-company-info h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.gr-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.gr-stars-row {
  color: #fbbc05;
  letter-spacing: 1px;
  font-size: 15px;
}
.gr-rating-score {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
}
.gr-reviews-count {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}
.gr-write {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: #4285F4;
  color: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.gr-write:hover {
  background: #1a73e8;
  transform: translateY(-1px);
}

/* Carousel */
.gr-carousel {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
}
.gr-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding: 0 4px;
  padding: 4px;
}
.gr-track::-webkit-scrollbar { display: none; }
.gr-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 48px) / 4);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gr-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.gr-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gr-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.gr-meta {
  flex: 1;
  min-width: 0;
}
.gr-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gr-date {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
}
.gr-google-mark {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.gr-stars {
  color: #fbbc05;
  font-size: 14px;
  letter-spacing: 1px;
}
.gr-text {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: #2c2c2c;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gr-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: all 0.3s var(--ease);
  z-index: 2;
}
.gr-arrow svg { width: 16px; height: 16px; }
.gr-arrow.prev { left: 0; }
.gr-arrow.next { right: 0; }
.gr-arrow:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 1100px) {
  .gr-card { flex: 0 0 calc((100% - 32px) / 3); }
}
@media (max-width: 820px) {
  .gr-card { flex: 0 0 calc((100% - 16px) / 2); }
  .gr-carousel { padding: 0 44px; }
}
@media (max-width: 540px) {
  .gr-card { flex: 0 0 100%; }
  .google-reviews-bar { padding: 18px 20px; }
}

/* ====================================================================
   RECAP + PRECIO
   ==================================================================== */
.trip-recap-price {
  background: var(--white);
  padding: clamp(60px, 7vw, 100px) clamp(24px, 6vw, 80px) clamp(40px, 5vw, 70px);
}
.trip-recap-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 980px;
  margin: 0 auto;
}
.trip-recap-card,
.trip-price-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: clamp(28px, 3.4vw, 40px);
}
.trip-recap-card h3,
.trip-price-card h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}
.trip-recap-card ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.trip-recap-card li {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.8;
  color: #2c2c2c;
}
.trip-recap-card li strong {
  font-weight: 600;
  color: var(--black);
}

/* Price */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: clamp(14px, 1.1vw, 16px);
  color: #2c2c2c;
}
.price-row.primary {
  font-weight: 600;
}
.price-label {
  font-family: var(--sans);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.price-row.primary .price-label {
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--brown-deep);
}
.price-dots {
  flex: 1;
  border-bottom: 1.5px dotted rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}
.price-value {
  font-weight: 600;
  font-size: clamp(16px, 1.2vw, 18px);
  white-space: nowrap;
  color: var(--black);
}
.price-row.primary .price-value {
  font-size: clamp(20px, 1.6vw, 24px);
  color: var(--brown-deep);
}
.price-note {
  margin: 14px 0 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 740px) {
  .trip-recap-price-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   INCLUÍDO / NO INCLUÍDO accordion
   ==================================================================== */
.trip-includes-acc-section {
  background: var(--white);
  padding: clamp(20px, 3vw, 40px) clamp(24px, 6vw, 80px) clamp(70px, 8vw, 110px);
}
.trip-includes-acc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 980px;
  margin: 0 auto;
}
.trip-include-acc {
  background: #F1ECE5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: background 0.3s var(--ease);
}
.trip-include-acc[open] { background: #E9E1D5; }
.trip-include-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(20px, 2vw, 26px) clamp(22px, 2.2vw, 30px);
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.3px;
}
.trip-include-acc summary::-webkit-details-marker { display: none; }
.acc-chev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: transform 0.4s var(--ease);
  color: var(--black);
  flex-shrink: 0;
}
.acc-chev svg { width: 12px; height: 12px; }
.trip-include-acc[open] .acc-chev { transform: rotate(180deg); }
.trip-include-acc-body {
  padding: 0 clamp(22px, 2.2vw, 30px) clamp(22px, 2.4vw, 28px);
  animation: pilarOpen 0.4s var(--ease);
}
.trip-include-acc-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trip-include-acc-body li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-family: var(--sans);
  font-size: clamp(13.5px, 1vw, 15px);
  line-height: 1.6;
  color: #2c2c2c;
}
.trip-include-acc-body li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
}
.trip-include-acc-body .trip-list-check li::before {
  content: '✓';
  background: var(--brown);
  color: var(--white);
}
.trip-include-acc-body .trip-list-cross li::before {
  content: '×';
  background: rgba(0, 0, 0, 0.12);
  color: #555;
  font-size: 14px;
}

@media (max-width: 740px) {
  .trip-includes-acc-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   TRIP FAQ + ¿TIENES MÁS DUDAS?
   ==================================================================== */
.trip-faq-section {
  background: var(--white);
  padding: 0 clamp(24px, 6vw, 80px) clamp(80px, 9vw, 120px);
}
.trip-faq-topdivider {
  max-width: 1600px;
  height: 1px;
  background: rgba(0, 0, 0, 0.18);
  margin: 0 auto clamp(60px, 7vw, 90px);
}
.trip-faq-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1600px;
  margin: 0 auto;
  align-items: start;
}
.trip-faq-list h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--black);
  letter-spacing: 0.3px;
}
.trip-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #F1ECE5;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: background 0.3s var(--ease);
}
.trip-faq-item[open] { background: #E9E1D5; }
.trip-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trip-faq-item summary::-webkit-details-marker { display: none; }
.trip-faq-item[open] summary .acc-chev { transform: rotate(180deg); }
.trip-faq-body {
  padding: 0 22px 20px;
  animation: pilarOpen 0.4s var(--ease);
}
.trip-faq-body p {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 15.5px);
  line-height: 1.7;
  color: #444;
  font-weight: 400;
}
.trip-faq-body em {
  font-family: var(--serif);
  font-style: italic;
}

/* Aside */
.trip-faq-aside {
  padding-left: clamp(20px, 3vw, 48px);
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.trip-faq-aside h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--black);
  letter-spacing: 0.3px;
}
.trip-faq-aside h3 em { font-style: italic; }
.trip-faq-aside p {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.65;
  color: #444;
  margin-bottom: 24px;
}

@media (max-width: 880px) {
  .trip-faq-grid { grid-template-columns: 1fr; }
  .trip-faq-aside { padding-left: 0; border-left: none; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.1); }
}

/* ====================================================================
   TRIP PAGE — Cambios jun 2026: portada, oferta, captación email, CTA
   ==================================================================== */

/* ─── Portada: badge de fecha grande y visible ─── */
.trip-hero-datebadge {
  display: inline-block;
  margin-bottom: clamp(20px, 2.4vw, 30px);
  padding: 12px 26px;
  background: var(--accent);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}

/* ─── Botones de reservar más llamativos ─── */
.cta-reserve {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 17px 38px 17px 28px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  box-shadow: 0 12px 32px rgba(224, 138, 43, 0.45) !important;
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.cta-reserve:hover {
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent-deep) 100%) !important;
  color: var(--white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 40px rgba(224, 138, 43, 0.55) !important;
}
.cta-reserve svg { width: 19px; height: 19px; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(224, 138, 43, 0.45); }
  50% { box-shadow: 0 12px 40px rgba(224, 138, 43, 0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-reserve { animation: none; }
}

/* ─── Itinerario → captación de email ─── */
.trip-itinerary-cta {
  background: linear-gradient(180deg, var(--brown-bg) 0%, var(--brown-bg-dark) 100%);
  padding: clamp(60px, 8vw, 110px) clamp(24px, 6vw, 80px);
  color: var(--white);
  text-align: center;
}
.trip-itinerary-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.trip-itinerary-cta .trip-section-eyebrow {
  color: var(--brown-light);
}
.trip-itinerary-cta h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin: 10px 0 18px;
}
.trip-itinerary-cta h2 em { font-style: italic; }
.trip-itinerary-cta-text {
  font-family: var(--sans);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  opacity: 0.92;
  margin-bottom: 30px;
}
.trip-itinerary-cta-text strong { font-weight: 600; }
.trip-itinerary-cta-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}
.trip-itinerary-cta-form input {
  flex: 1;
  min-width: 0;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
}
.trip-itinerary-cta-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.trip-itinerary-cta-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.16);
}
.trip-itinerary-cta-form button {
  flex-shrink: 0;
  padding: 16px 30px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 24px rgba(224, 138, 43, 0.4);
}
.trip-itinerary-cta-form button:hover { transform: translateY(-2px); }
.trip-itinerary-cta-success {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.trip-itinerary-cta-success.visible { opacity: 1; }
@media (max-width: 560px) {
  .trip-itinerary-cta-form { flex-direction: column; }
  .trip-itinerary-cta-form button { width: 100%; }
}

/* ─── Tarjeta de precio tipo OFERTA ─── */
.trip-price-card--offer {
  position: relative;
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #FFF8F0 0%, #FFFFFF 60%);
  box-shadow: 0 24px 60px -24px rgba(224, 138, 43, 0.5);
  text-align: center;
  overflow: hidden;
}
.price-flag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.price-offer-label {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.price-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}
.price-was {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--muted-2);
  text-decoration: line-through;
}
.price-now {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 74px);
  line-height: 1;
  font-weight: 400;
  color: var(--accent-deep);
}
.price-save {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(224, 138, 43, 0.14);
  color: var(--accent-deep);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.price-deadline {
  font-family: var(--sans);
  font-size: 14px;
  color: #2c2c2c;
  margin-bottom: 6px;
}
.price-deadline strong { color: var(--accent-deep); font-weight: 700; }
.trip-price-card--offer .price-note {
  margin: 6px 0 22px;
  text-align: center;
}
.trip-price-card--offer .cta-reserve {
  width: 100%;
  justify-content: center;
}
.price-reassure {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}
.price-reassure strong { color: var(--accent-deep); font-weight: 700; }

/* ====================================================================
   REDISEÑO 2026 — utilidades y secciones nuevas (home)
   ==================================================================== */

/* Eyebrow marrón pequeño reutilizable */
.split-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown-cta);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.split-eyebrow--center { display: block; text-align: center; }
.split-eyebrow--light { color: #f0e2d2; }
.split-eyebrow .eyebrow-ico { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }

/* Más compacto: intro-split (Más que un viaje) */
.intro-split--compact { padding: clamp(56px,7vw,96px) clamp(24px,6vw,80px); gap: clamp(36px,5vw,70px); }
.intro-split--compact .intro-split-media { min-height: 420px; }
.intro-split--compact .intro-split-content h2 {
  font-size: clamp(30px,3.6vw,46px);
  margin-bottom: 16px;
  letter-spacing: 0;
}
.intro-split--compact .intro-split-content .lead { font-size: clamp(18px,1.8vw,21px); margin-bottom: 16px; }
.intro-split--compact .intro-split-content p { font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.intro-split--compact .intro-split-content p strong { color: #2a2a2a; font-weight: 500; }
.intro-split--compact .intro-split-cta--btn { margin-top: 18px; align-self: flex-start; }

/* Home "Más que un viaje": proporción 30/70, imagen más alta y texto más espaciado */
.intro-split--home { grid-template-columns: 30fr 70fr; }
.intro-split--home .intro-split-media { min-height: 640px; }
.intro-split--home .intro-split-content h2 { margin-bottom: 22px; }
.intro-split--home .intro-split-content .lead { margin-bottom: 24px; }
.intro-split--home .intro-split-content p { line-height: 1.9; margin-bottom: 20px; }
@media (max-width: 980px) {
  .intro-split--home { grid-template-columns: 1fr; }
}

/* Títulos de sección un punto más pequeños */
.next-trips .section-title,
.reviews-band .section-title { font-size: clamp(30px,3.6vw,46px); }

/* Tarjetas home: fecha y zona */
.vc-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--brown-cta);
  margin-bottom: 8px;
}
.vc-date svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.vc-zona { font-size: 13px; color: var(--muted-2); margin: -2px 0 10px; }

/* DESCUENTO — variante clara (beige) */
.aventura-wide--compact { padding: clamp(40px,4.5vw,60px) clamp(24px,6vw,80px); color: #5a3d28; }
.aventura-wide--compact::after {
  background: linear-gradient(to right, rgba(226,203,184,0.92) 0%, rgba(226,203,184,0.72) 50%, rgba(226,203,184,0.15) 100%);
}
.aventura-wide--compact .aventura-wide-bg img { object-fit: cover; object-position: right 70%; }
.aventura-wide--compact .split-eyebrow { color: var(--brown-cta); }
.aventura-wide--compact h2 {
  font-size: clamp(34px, 4.2vw, 43px);
  color: #5a3d28;
  margin-bottom: 22px;
}
.aventura-wide--compact .aventura-wide-form input {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(132,85,54,0.4);
  color: #4a3120;
}
.aventura-wide--compact .aventura-wide-form input::placeholder { color: rgba(90,61,40,0.6); }
.aventura-wide--compact .aventura-wide-form input:focus { border-color: var(--brown-cta); background: #fff; }
.aventura-wide--compact .aventura-wide-form button { background: var(--brown-cta); color: #fff; }
.aventura-wide--compact .aventura-wide-form button:hover { background: #6d4329; }
.aventura-wide--compact .aventura-wide-discount { color: #6a4a32; opacity: 1; margin-top: 16px; margin-bottom: 0; }
.aventura-wide--compact .aventura-wide-content { max-width: 880px; }
.aventura-wide-row { display: flex; align-items: center; gap: clamp(24px,3vw,48px); flex-wrap: wrap; margin-top: 20px; }
.aventura-wide-row .aventura-wide-discount { flex: 1 1 220px; margin: 0; font-size: 14.5px; line-height: 1.55; }
.aventura-wide-row .aventura-wide-form { flex: 1 1 340px; max-width: 460px; }
@media (max-width: 760px) { .aventura-wide-row { flex-direction: column; align-items: stretch; } }

/* ¿POR QUÉ VENIRTE CON BORN2TRAVEL? */
.why-b2t { position: relative; padding: clamp(64px,8vw,120px) clamp(24px,6vw,80px); color: #fff; overflow: hidden; }
.why-b2t-bg { position: absolute; inset: 0; z-index: 0; }
.why-b2t-bg img { width: 100%; height: 100%; object-fit: cover; }
.why-b2t::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(40,26,16,0.55), rgba(40,26,16,0.72));
}
.why-b2t-inner { position: relative; z-index: 2; max-width: 1600px; margin: 0 auto; }
.why-b2t-head { max-width: 640px; margin-bottom: clamp(32px,4vw,52px); }
.why-b2t-head h2 { font-family: var(--display); font-weight: 400; font-size: clamp(32px,4vw,52px); line-height: 1.08; margin-bottom: 20px; }
.why-b2t-head p { font-size: 15.5px; line-height: 1.7; opacity: 0.9; margin-bottom: 12px; max-width: 560px; }
.why-b2t-grid { display: grid; grid-template-columns: repeat(4, minmax(0,210px)); justify-content: start; gap: clamp(14px,1.6vw,22px); }
.why-card {
  background: rgba(132,85,54,0.78);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: clamp(20px,2vw,28px) clamp(16px,1.6vw,22px);
  display: flex; flex-direction: column; gap: 16px;
}
.why-card svg { width: 38px; height: 38px; fill: none; stroke: #fff; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.why-card p { font-size: 14.5px; line-height: 1.45; color: #fff; }
@media (max-width: 880px) { .why-b2t-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .why-b2t-grid { grid-template-columns: 1fr; } }

/* CTA HISTORIA */
.story-cta { position: relative; padding: clamp(72px,9vw,140px) clamp(24px,6vw,80px); color: #fff; overflow: hidden; }
.story-cta-bg { position: absolute; inset: 0; z-index: 0; }
.story-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.story-cta::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(30,20,12,0.7) 0%, rgba(30,20,12,0.42) 55%, rgba(30,20,12,0.12) 100%);
}
.story-cta-content { position: relative; z-index: 2; max-width: 640px; }
.story-cta-content h2 { font-family: var(--display); font-weight: 400; font-size: clamp(30px,4vw,52px); line-height: 1.1; margin-bottom: 26px; }
.story-cta-content p { font-family: var(--serif); font-size: clamp(15px,1.5vw,18px); line-height: 1.6; margin-bottom: 16px; opacity: 0.95; }
.story-cta-strong { font-family: var(--serif) !important; opacity: 1 !important; }
.story-cta-strong strong { font-weight: 500; }
.story-cta-btn {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 14px;
  font-family: var(--sans); font-size: 15px; font-weight: 500; letter-spacing: 0.3px; text-transform: none;
  color: #fff; padding: 14px 30px; border: 1px solid rgba(255,255,255,0.6); border-radius: 999px;
  transition: background 0.3s, color 0.3s;
}
.story-cta-btn svg { width: 18px; height: 18px; }
.story-cta-btn:hover { background: #fff; color: #5a3d28; }

/* FOOTER 4 columnas */
.footer--4col .footer-top { grid-template-columns: repeat(4,1fr); gap: clamp(28px,4vw,60px); }
.footer--4col .footer-col h4 { font-family: var(--display); font-weight: 400; font-size: 20px; margin-bottom: 18px; }
@media (max-width: 760px) { .footer--4col .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer--4col .footer-top { grid-template-columns: 1fr; } }

/* ====================================================================
   REDISEÑO 2026 — Todos los viajes
   ==================================================================== */
/* Hero compacto */
.page-hero--compact { min-height: clamp(320px,34vw,440px); height: auto; align-items: flex-start; padding-top: calc(var(--nav-h) + 48px); padding-bottom: clamp(44px,5vw,72px); }
.page-hero--compact .breadcrumb { margin-bottom: 16px; }
.page-hero--compact .page-hero-content { max-width: 720px; }
.page-hero--compact h1 { font-family: var(--display); font-weight: 400; font-size: clamp(30px,4.2vw,56px); line-height: 1.08; margin-bottom: 16px; }
.page-hero--compact .page-hero-content p { font-size: clamp(15px,1.6vw,18px); max-width: 560px; }

/* Tarjeta "próximamente" */
.vc-badge-soon {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(132,85,54,0.92); color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.voyage-card--soon .vc-media img { filter: grayscale(0.25) brightness(0.92); }
.vc-price--soon { font-family: var(--serif); font-style: italic; color: var(--brown-cta); font-size: 15px; }

/* DUAL HELP (fechas + whatsapp) */
.dual-help {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2vw,28px);
  max-width: 1600px; margin: 0 auto; padding: clamp(20px,3vw,40px) clamp(24px,6vw,80px);
}
.dual-help-col {
  background: var(--beige); border-radius: 18px;
  padding: clamp(28px,3vw,40px); display: flex; flex-direction: column; align-items: flex-start;
}
.dual-help-col--wa { background: #efe7dd; }
.dual-help-ico { width: 34px; height: 34px; fill: none; stroke: var(--brown-cta); stroke-width: 1.5; margin-bottom: 16px; }
.dual-help-col--wa .dual-help-ico { fill: #25D366; stroke: none; }
.dual-help-col h3 { font-family: var(--display); font-weight: 400; font-size: clamp(20px,2.2vw,27px); color: #4a3120; margin-bottom: 10px; line-height: 1.15; }
.dual-help-col p { font-size: 14.5px; line-height: 1.6; color: #6a5443; margin-bottom: 20px; }
.dual-help-form { display: flex; gap: 8px; width: 100%; }
.dual-help-form input {
  flex: 1; padding: 13px 18px; border: 1px solid rgba(132,85,54,0.4);
  background: rgba(255,255,255,0.8); border-radius: 100px; font-family: var(--sans); font-size: 14px; color: #4a3120; outline: none;
}
.dual-help-form input:focus { border-color: var(--brown-cta); background: #fff; }
.dual-help-form button, .dual-help-btn {
  padding: 13px 24px; background: var(--brown-cta); color: #fff; border-radius: 100px;
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase;
  white-space: nowrap; transition: background 0.3s; display: inline-block;
}
.dual-help-form button:hover, .dual-help-btn:hover { background: #6d4329; }
@media (max-width: 720px) { .dual-help { grid-template-columns: 1fr; } }

/* NO SE TRATA SÓLO DE LOS LUGARES */
.lugares-band {
    position: relative;
    min-height: clamp(360px, 40vw, 517px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: clamp(0px, 0vw, 0px) 0;
}
.lugares-bg { position: absolute; inset: 0; z-index: 0; }
.lugares-bg img { width: 100%; height: 100%; object-fit: cover; }
.lugares-band::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to left, rgba(20,14,8,0.6) 0%, rgba(20,14,8,0.3) 45%, rgba(20,14,8,0) 75%); }
.lugares-content { position: relative; z-index: 2; color: #fff; text-align: right; max-width: 620px; padding: clamp(32px,5vw,64px) clamp(24px,6vw,80px); }
.lugares-content h2 { font-family: var(--display); font-weight: 400; font-size: clamp(30px,4vw,52px); line-height: 1.1; margin-bottom: 22px; }
.lugares-content p { font-family: var(--serif); font-size: clamp(15px,1.6vw,19px); line-height: 1.7; opacity: 0.95; }
@media (max-width: 700px) { .lugares-band { justify-content: center; } .lugares-content { text-align: center; } .lugares-band::after { background: rgba(20,14,8,0.5); } }

/* COMUNIDAD + INSTAGRAM */
.comm-ig { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.5vw,32px); max-width: 1600px; margin: 0 auto; padding: clamp(40px,5vw,80px) clamp(24px,6vw,80px); align-items: stretch; }
.comm-ig-community { position: relative; border-radius: 20px; overflow: hidden; min-height: 300px; display: flex; align-items: flex-end; }
.comm-ig-community-bg { position: absolute; inset: 0; z-index: 0; }
.comm-ig-community-bg img { width: 100%; height: 100%; object-fit: cover; }
.comm-ig-community::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(86,52,30,0.92) 0%, rgba(86,52,30,0.55) 55%, rgba(86,52,30,0.2) 100%); }
.comm-ig-community-inner { position: relative; z-index: 2; padding: clamp(28px,3vw,40px); color: #fff; }
.comm-ig-community-text { font-size: 15px; line-height: 1.6; margin: 6px 0 20px; max-width: 420px; }
.comm-ig-btn { display: inline-block; padding: 13px 26px; background: #fff; color: #5a3d28; border-radius: 100px; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; transition: transform 0.3s; }
.comm-ig-btn:hover { transform: translateY(-2px); }
.comm-ig-btn--brown { background: var(--brown-cta); color: #fff; }
.comm-ig-instagram { display: flex; flex-direction: column; justify-content: center; padding: clamp(8px,1vw,20px); }
.comm-ig-instagram-text { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 4px 0 22px; max-width: 420px; }
.comm-ig-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 24px; }
.comm-ig-grid a { aspect-ratio: 1; border-radius: 12px; overflow: hidden; }
.comm-ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.comm-ig-grid a:hover img { transform: scale(1.06); }
.comm-ig-instagram .comm-ig-btn { align-self: flex-start; }
@media (max-width: 820px) { .comm-ig { grid-template-columns: 1fr; } }

/* ====================================================================
   REDISEÑO 2026 — Galería
   ==================================================================== */
.gallery--beige { background: var(--beige); }
.next-trip-divider--video video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.next-trip-divider--video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.next-trip-divider--video video + img { z-index: -1; }
.next-trip-divider--video .next-trip-divider-content { position: relative; z-index: 2; }

/* ====================================================================
   REDISEÑO 2026 — Sobre nosotros
   ==================================================================== */
.intro-split--reverse .intro-split-media { order: 2; }
.intro-split--reverse .intro-split-content { order: 1; }
@media (max-width: 980px) {
  .intro-split--reverse .intro-split-media { order: 0; }
  .intro-split--reverse .intro-split-content { order: 0; }
}
.why-b2t--3 .why-b2t-grid { grid-template-columns: repeat(3,1fr); max-width: 760px; }
.why-b2t--3 .why-card { align-items: flex-start; }
@media (max-width: 700px) { .why-b2t--3 .why-b2t-grid { grid-template-columns: 1fr; } }
.story-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.btn-light-pill, .btn-ghost-pill {
  display: inline-flex; align-items: center; padding: 14px 30px; border-radius: 999px;
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.btn-light-pill { background: #fff; color: #5a3d28; }
.btn-light-pill:hover { transform: translateY(-2px); }
.btn-ghost-pill { border: 1px solid rgba(255,255,255,0.6); color: #fff; }
.btn-ghost-pill:hover { background: #fff; color: #5a3d28; }

/* CTA sobre fondo claro (email-section / faq-cta): botones marrones visibles */
.email-section .next-trip-divider-btn.primary { background: var(--brown-cta); color: #fff; border: 1px solid var(--brown-cta); }
.email-section .next-trip-divider-btn.primary:hover { background: #6d4329; border-color: #6d4329; }
.email-section .next-trip-divider-btn.secondary { border: 1px solid rgba(132,85,54,0.45); color: var(--brown-cta); }
.email-section .next-trip-divider-btn.secondary:hover { background: rgba(132,85,54,0.08); color: #6d4329; }

/* ====================================================================
   VIAJE CONCRETO — secciones extra (Rutas de ensueño, Otras aventuras,
   Echa un vistazo) — referencia The Ultimate Egypt Trip
   ==================================================================== */
.ve-exp { background: #fff; padding: clamp(48px,6vw,90px) clamp(24px,6vw,80px); }
.ve-exp-inner { max-width: 1600px; margin: 0 auto; }
.ve-exp-head h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(30px,3.6vw,46px); line-height: 1.1;
  color: var(--brown-deep); letter-spacing: 0.3px;
}
.ve-exp-subtag {
  font-family: var(--sans); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--brown-cta);
  margin: clamp(28px,3.2vw,42px) 0 18px;
}
.ve-exp-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px,1.2vw,18px);
}
.ve-exp-card {
  display: flex; flex-direction: column;
  background: #faf6f1; border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.ve-exp-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.10); }
.ve-exp-card-img { aspect-ratio: 4/3; overflow: hidden; }
.ve-exp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ve-exp-card:hover .ve-exp-card-img img { transform: scale(1.06); }
.ve-exp-card p {
  padding: 13px 15px; margin: 0;
  font-family: var(--sans); font-size: 13px; line-height: 1.4;
  color: var(--brown-deep);
}
@media (max-width: 1100px) { .ve-exp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .ve-exp-grid { grid-template-columns: repeat(2, 1fr); } }

/* Echa un vistazo a la experiencia (vídeo + texto) */
.ve-vistazo { background: var(--beige); padding: clamp(48px,6vw,90px) clamp(24px,6vw,80px); }
.ve-vistazo-inner { max-width: 1200px; margin: 0 auto; }
.ve-vistazo-inner > h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(30px,3.6vw,46px); color: var(--brown-deep);
  margin-bottom: clamp(24px,3vw,38px); letter-spacing: 0.3px;
}
.ve-vistazo-grid {
  display: grid; grid-template-columns: 260px 1fr;
  gap: clamp(28px,4vw,56px); align-items: center;
}
.ve-vistazo-video {
  position: relative; aspect-ratio: 9/16; border-radius: 16px;
  overflow: hidden; background: #000; cursor: pointer;
}
.ve-vistazo-video img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.ve-vistazo-video .play {
  position: absolute; inset: 0; margin: auto; width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.92); border-radius: 50%;
}
.ve-vistazo-video .play svg { width: 22px; height: 22px; fill: var(--brown-deep); margin-left: 3px; }
.ve-vistazo-text p {
  font-family: var(--sans); font-size: 15px; line-height: 1.8;
  color: #5a3d28; margin-bottom: 16px;
}
.ve-vistazo-text p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .ve-vistazo-grid { grid-template-columns: 1fr; justify-items: center; }
  .ve-vistazo-video { width: 240px; }
  .ve-vistazo-text { text-align: left; }
}

/* Barra lateral: garantías + dudas */
.bk-perks { list-style: none; margin: 16px 0 0; padding: 16px 0 0; border-top: 1px solid var(--bk-line, rgba(0,0,0,0.1)); display: flex; flex-direction: column; gap: 10px; }
.bk-perks li { position: relative; padding-left: 24px; font-size: 13px; line-height: 1.4; color: var(--brown-deep); }
.bk-perks li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--brown-cta); font-weight: 700; }
.bk-dudas { margin-top: 16px; padding: 14px 16px; background: rgba(132,85,54,0.07); border-radius: 12px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--brown-deep); text-decoration: none; }
.bk-dudas:hover { background: rgba(132,85,54,0.12); }
.bk-dudas svg { width: 22px; height: 22px; fill: #25D366; flex: none; }
.bk-dudas strong { display: block; color: var(--brown-cta); }

/* ---- Secciones dentro de la columna de contenido del viaje (izquierda) ---- */
.trip-content .ve-exp,
.trip-content .trip-lodging { background: none; padding: 0; }
.trip-content .ve-exp-inner,
.trip-content .ve-vistazo-inner,
.trip-content .trip-itinerary-cta-inner { max-width: none; margin: 0; }
.trip-content .ve-exp-head h2,
.trip-content .ve-vistazo-inner > h2,
.trip-content .trip-lodging-header h2 { text-align: left; }
.trip-content .trip-lodging-header { text-align: left; max-width: none; margin-left: 0; }
.trip-content .trip-lodging-topdivider { display: none; }
.trip-content .trip-lodging-grid { grid-template-columns: repeat(4, 1fr); }
.trip-content .ve-exp-grid { grid-template-columns: repeat(5, 1fr); }

/* Itinerario: tarjeta redondeada dentro de la columna */
.trip-content .trip-itinerary-cta {
  border-radius: 18px;
  padding: clamp(34px,4vw,56px) clamp(26px,4vw,48px);
  text-align: left;
}
.trip-content .trip-itinerary-cta-form { margin: 0; max-width: 560px; }

/* Echa un vistazo: tarjeta beige redondeada dentro de la columna */
.trip-content .ve-vistazo {
  border-radius: 18px;
  padding: clamp(28px,3.2vw,48px);
}
.trip-content .ve-vistazo-grid { grid-template-columns: 220px 1fr; }

@media (max-width: 1200px) {
  .trip-content .ve-exp-grid { grid-template-columns: repeat(3, 1fr); }
  .trip-content .trip-lodging-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .trip-content .ve-exp-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-content .ve-vistazo-grid { grid-template-columns: 1fr; justify-items: center; }
}
