/* ==========================================================================
   GRV CRUISES — Static replica of Horizons look
   ========================================================================== */

:root {
  --forest: #17362f;
  --forest-2: #1F4538;
  --olive: #7d9824;
  --olive-dark: #6a8420;
  --olive-light: #8FAF2A;
  --olive-soft: rgba(125,152,36,0.1);
  --wa-green: #25D366;
  --wa-dark: #1eb955;
  --sand: #f6f4ed;
  --sand-2: #ede9dd;
  --white: #FFFFFF;
  --ink: #17362f;
  --ink-soft: #2b3f3a;
  --muted: #6b7470;
  --red: #ef4444;
  --red-dark: #dc2626;
  --line: rgba(23,54,47,0.08);

  --font-display: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --sh-sm: 0 1px 3px rgba(23,54,47,0.06), 0 1px 2px rgba(23,54,47,0.04);
  --sh-md: 0 4px 12px rgba(23,54,47,0.08), 0 2px 4px rgba(23,54,47,0.05);
  --sh-lg: 0 14px 32px rgba(23,54,47,0.12), 0 4px 8px rgba(23,54,47,0.06);
  --sh-xl: 0 24px 60px rgba(23,54,47,0.18);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--olive); color: var(--white); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1rem; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-soft); line-height: 1.7; max-width: 65ch; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding-block: clamp(3rem, 6vw, 5rem); }
.section-cream { background: var(--sand); }
.section-white { background: var(--white); }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-sub { color: var(--muted); font-size: 1.1rem; margin-top: 0.5rem; }

/* Eyebrow tag */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  background: var(--olive-soft);
  border-radius: 999px;
}

/* Scroll-reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.tours-grid.reveal.visible .tour-card { animation: card-in 0.7s cubic-bezier(.2,.8,.2,1) backwards; }
.tours-grid.reveal.visible .tour-card:nth-child(1) { animation-delay: 0.05s; }
.tours-grid.reveal.visible .tour-card:nth-child(2) { animation-delay: 0.15s; }
.tours-grid.reveal.visible .tour-card:nth-child(3) { animation-delay: 0.25s; }
.tours-grid.reveal.visible .tour-card:nth-child(4) { animation-delay: 0.35s; }
@keyframes card-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(125,152,36,0.3);
}
.btn-primary:hover { background: var(--olive-dark); box-shadow: 0 8px 20px rgba(125,152,36,0.4); }
.btn-secondary {
  background: var(--white);
  color: var(--forest);
  border-color: var(--forest);
}
.btn-secondary:hover { background: var(--forest); color: var(--white); }
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: var(--wa-dark); box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--white); color: var(--forest); border-color: var(--white); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-block { display: flex; width: 100%; }

/* TOPBAR (contact strip + main nav) */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.topbar-info {
  background: var(--forest);
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}
.topbar-info .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.topbar-info span, .topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.topbar-info a:hover { color: var(--olive-light); }
.topbar-info svg { width: 14px; height: 14px; opacity: 0.8; }

/* NAVBAR */
.navbar {
  background: rgba(23,54,47,0.95);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  padding: 0.9rem 0;
  transition: padding 0.3s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.topbar.scrolled .navbar { padding: 0.6rem 0; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--olive-light);
  letter-spacing: -0.015em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--olive-light); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}
.lang a { padding: 4px 8px; border-radius: 6px; transition: background 0.2s; }
.lang a:hover { background: rgba(255,255,255,0.15); }
.lang a.active { background: var(--olive); }
.lang span { opacity: 0.4; }
.btn-call-desktop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.btn-call-desktop:hover { color: var(--olive-light); }
.btn-call-desktop span { display: inline; }
.btn-wa-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--olive);
  color: var(--white);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(125,152,36,0.3);
}
.btn-wa-header:hover { background: var(--olive-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* MOBILE MENU */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 88%;
  max-width: 380px;
  height: 100vh;
  height: 100svh;
  background: var(--forest);
  z-index: 99;
  padding-top: 5rem;
  transition: right 0.4s cubic-bezier(.2,.8,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-inner { padding: 0 1.5rem 2rem; }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .lang-mobile { margin-top: 1rem; padding-top: 1rem; }

/* HERO */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 96px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,54,47,0.5) 0%, rgba(23,54,47,0.35) 40%, rgba(23,54,47,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 4rem var(--gutter);
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  max-width: 850px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.hero-quote {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border-left: 4px solid var(--olive-light);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-style: italic;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,0.92);
  max-width: 800px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  background: var(--olive);
  width: 30px;
  border-radius: 5px;
}
.hero-dot:hover { background: rgba(255,255,255,0.8); }

/* HERO BADGES */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s 0.1s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25);
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* Hero animations */
.hero-title-anim { animation: fadeInDown 0.9s 0.2s both; }
.hero-fade-in { animation: fadeInUp 0.9s 0.4s both; }
.hero-fade-in:nth-of-type(2) { animation-delay: 0.55s; }
.hero-fade-in:nth-of-type(3) { animation-delay: 0.7s; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: scrollBounce 2.4s ease-in-out infinite, fadeInUp 0.8s 1s both;
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.7);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* BTN-GLOW: subtle pulsing on key CTAs */
.btn-glow {
  position: relative;
  animation: glow 2.4s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { box-shadow: 0 4px 12px rgba(125,152,36,0.35); }
  50% { box-shadow: 0 6px 24px rgba(125,152,36,0.55), 0 0 0 6px rgba(125,152,36,0.1); }
}

/* STATS STRIP */
.stats-strip {
  background: var(--white);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--line);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}

/* TOUR CARD BADGE "POPULAR" */
.tour-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: linear-gradient(135deg, #FF6B35, #F5A623);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(255,107,53,0.4);
  z-index: 2;
}

/* Experience quote - mini stars */
.experience-quote .review-stars { color: #F5A623; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.5rem; }

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: var(--olive-soft);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg { width: 30px; height: 30px; }
.benefit-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; line-height: 1.6; }

/* TOUR CARDS */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.tour-card-image {
  position: relative;
  aspect-ratio: 4/3;
  display: block;
  overflow: hidden;
}
.tour-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
@media (hover: hover) { .tour-card:hover .tour-card-image img { transform: scale(1.05); } }
.tour-card-price {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--olive);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(125,152,36,0.4);
}
.tour-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card-body h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: var(--forest);
}
.tour-card-body h3 a { color: inherit; }
.grv-price-display {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 2px 0 14px;
}
.grv-price-display strong {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  font-family: var(--font-display);
}
.grv-price-display span {
  font-size: 0.85rem;
  color: var(--olive);
  font-weight: 600;
  margin-left: 2px;
}
.tour-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.tour-card-meta svg { width: 16px; height: 16px; color: var(--olive); }
.tour-card-includes { flex: 1; margin-bottom: 1rem; }
.tour-card-includes h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.tour-card-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.tour-card-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.tour-card-includes li svg {
  width: 14px;
  height: 14px;
  color: var(--olive);
  flex-shrink: 0;
}
.tour-card-kids {
  background: var(--olive-soft);
  color: var(--olive-dark);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

/* EXPERIENCE SECTION */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.experience-text h2 { color: var(--forest); margin-bottom: 1rem; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.check-list svg {
  flex-shrink: 0;
  margin-top: 0.35rem;
  color: var(--white);
  background: var(--olive);
  border-radius: 50%;
  padding: 3px;
  width: 22px;
  height: 22px;
}
.experience-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-xl);
}
.experience-image img { width: 100%; height: 100%; object-fit: cover; }
.experience-quote {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  border-radius: var(--radius);
  font-style: italic;
  font-size: 0.95rem;
  box-shadow: var(--sh-md);
}
.experience-quote p { margin: 0 0 0.5rem; color: var(--ink); }
.experience-quote span { color: var(--olive); font-weight: 600; font-style: normal; font-size: 0.85rem; }

/* MAP SECTION */
.map-section .section-head { display: flex; flex-direction: column; align-items: center; }
.map-pin-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--olive-soft);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.map-pin-icon svg { width: 24px; height: 24px; }
.map-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
}
.map-image-link {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  background: #cde7f0;
  overflow: hidden;
}
.map-image-link img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.map-image-link:hover img { transform: scale(1.02); }
.map-zoom-hint {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: rgba(255,255,255,0.95);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--sh-md);
}
.map-footer {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.map-legend h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  opacity: 0.7;
  margin-bottom: 1rem;
}
.legend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.legend-grid span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.legend-grid i {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px var(--white), 0 1px 3px rgba(0,0,0,0.1);
}
.map-cta { display: flex; gap: 0.75rem; flex-direction: column; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.95rem; color: var(--forest); }
.review-stars { color: #F5A623; font-size: 0.9rem; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); margin: 0 0 0.75rem; }
.review-tour { font-size: 0.8rem; color: var(--olive); font-weight: 600; margin: 0; }

/* FINAL CTA */
.final-cta-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(125,152,36,0.18), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(125,152,36,0.1), transparent 50%);
  pointer-events: none;
}
.final-cta { text-align: center; position: relative; }
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.final-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* PAGE HERO (interior pages) */
.page-hero {
  background: var(--forest);
  color: var(--white);
  padding-block: clamp(7rem, 12vw, 9rem) clamp(3rem, 6vw, 4rem);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 30%, rgba(125,152,36,0.2), transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.85); }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumbs a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--olive-light); }
.breadcrumbs span { opacity: 0.5; }

/* TOUR HERO (tour detail) */
.tour-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--white);
  margin-top: 96px;
}
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,54,47,0.2) 0%, rgba(23,54,47,0.5) 50%, rgba(23,54,47,0.92) 100%);
}
.tour-hero-content {
  position: relative; z-index: 2;
  padding: 5rem var(--gutter) 3rem;
  width: 100%;
}
.breadcrumbs-light a { color: rgba(255,255,255,0.85); }
.tour-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  margin-bottom: 0.5rem;
}
.tour-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  margin: 0 0 0.5rem;
}
.tour-hero-tagline {
  font-size: 1.05rem;
  color: var(--olive-light);
  font-weight: 500;
  margin: 0;
}

/* FACTS STRIP */
.facts-strip {
  background: var(--white);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-sm);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.fact-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--olive-soft);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fact-ico-text {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--olive-soft);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.fact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
.fact-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
}

/* TOUR DETAIL */
.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}
.tour-detail-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.tour-card-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
.tour-card-full h2 { font-size: 1.5rem; color: var(--forest); }
.tour-card-full h3 { font-size: 1.15rem; margin: 0 0 1rem; display: flex; align-items: center; gap: 0.5rem; }
.green-h3 { color: var(--olive); }
.red-h3 { color: var(--red); }
.tour-prose p { font-size: 1.02rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 0.75rem; }
.includes-list, .not-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.includes-list li, .not-includes-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.check-circle, .x-circle {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.check-circle { background: var(--olive); }
.x-circle { background: var(--red); }
.kids-card { background: linear-gradient(135deg, var(--olive-soft), rgba(125,152,36,0.05)); }
.kids-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.kid-item {
  background: var(--white);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
  border: 1px solid var(--line);
}
.tour-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--sh-md);
  border: 1px solid var(--line);
  position: sticky;
  top: 130px;
}
.sidebar-price { text-align: center; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.price-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--olive);
  line-height: 1;
}
.price-per { font-size: 0.9rem; color: var(--muted); margin-top: 0.25rem; }
.sidebar-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.info-row {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--sand);
  border-radius: 10px;
  align-items: center;
}
.info-row svg { color: var(--olive); flex-shrink: 0; }
.info-row strong { display: block; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.info-row span { font-size: 0.95rem; color: var(--forest); font-weight: 600; }
.tour-sidebar .btn { margin-bottom: 0.5rem; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sh-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,54,47,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(23,54,47,0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: var(--radius); box-shadow: var(--sh-xl); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* FAQ */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--sh-md); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--olive);
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* LOCATION PAGE */
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--sh-md);
  border: 1px solid var(--line);
  max-width: 800px;
  margin-inline: auto;
}
.location-card h3 { display: flex; align-items: center; gap: 0.5rem; }
.location-address { font-size: 1.15rem; font-weight: 600; color: var(--forest); margin-bottom: 1rem; }
.coords-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: var(--sand);
  padding: 1.25rem;
  border-radius: 12px;
  margin: 1rem 0;
}
.coord-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }
.coord-value { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--forest); margin-top: 0.25rem; }
.arrival-note {
  background: rgba(245,166,35,0.1);
  border-left: 3px solid #F5A623;
  padding: 1rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.location-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.contact-card.contact-wa { background: linear-gradient(135deg, rgba(37,211,102,0.05), rgba(37,211,102,0.02)); border-color: rgba(37,211,102,0.2); }
.contact-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: var(--olive-soft);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card.contact-wa .contact-icon { background: rgba(37,211,102,0.1); color: var(--wa-green); }
.contact-icon svg { width: 30px; height: 30px; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.contact-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.contact-value { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--forest); margin-top: auto; }
.contact-schedule { text-align: center; color: var(--ink-soft); margin-top: 1.5rem; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; background: var(--white); border-radius: 999px; box-shadow: var(--sh-sm); margin-inline: auto; }

/* PAGE CONTENT (legal) */
.page-content { max-width: 800px; margin-inline: auto; background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--sh-sm); border: 1px solid var(--line); }
.page-content h2 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.3rem; }
.page-content p, .page-content li { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); }
.page-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content a { color: var(--olive); text-decoration: underline; }

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 800;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 1rem;
}

/* FOOTER */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.78);
  padding-block: 3.5rem 2rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.brand-footer { font-size: 1.7rem; display: inline-block; margin-bottom: 1rem; }
.footer-brand p { max-width: 320px; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
.footer-contact a, .footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--olive-light); }
.footer-contact svg { color: var(--olive-light); flex-shrink: 0; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--olive); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { transition: color 0.2s; }
.footer-col ul a:hover { color: var(--olive-light); }
.schedule-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}
.schedule-box svg { color: var(--olive-light); flex-shrink: 0; }
.schedule-box strong { display: block; color: var(--white); font-size: 0.85rem; margin-bottom: 0.15rem; }
.schedule-box span { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.schedule-note {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}
.schedule-note strong { color: var(--olive-light); font-size: 0.85rem; display: block; margin-bottom: 0.25rem; }
.schedule-note p { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* MOBILE BAR */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--forest);
  padding: 0.5rem var(--gutter);
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  display: none;
  gap: 0.4rem;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.12);
  border-top: 1px solid rgba(125,152,36,0.3);
}
.mb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0.6rem 0.4rem;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, transform 0.2s;
}
.mb-btn:active { transform: scale(0.96); }
.mb-btn svg { width: 22px; height: 22px; }
.mb-btn-primary {
  background: var(--olive);
  border-color: var(--olive);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 600px;
  margin-inline: auto;
  z-index: 90;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border: 1px solid rgba(125,152,36,0.3);
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; padding: 0; }
.cookie-banner p { margin: 0; flex: 1; min-width: 240px; font-size: 0.9rem; line-height: 1.5; color: rgba(255,255,255,0.92); }
.cookie-actions { display: flex; gap: 0.75rem; align-items: center; }
.cookie-link { color: var(--olive-light); text-decoration: underline; font-size: 0.85rem; }

/* RESPONSIVE */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .lang { display: none; }
  .btn-call-desktop span { display: none; }
  .btn-call-desktop { width: 42px; height: 42px; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.12); }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .experience-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-footer { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 767px) {
  .topbar-info { font-size: 0.75rem; padding: 0.4rem 0; }
  .topbar-info .container { gap: 0.75rem; }
  .topbar-info span:first-child, .topbar-info a:last-child { display: none; }
  .hero-slider { margin-top: 96px; min-height: 500px; height: calc(100vh - 96px); }
  .btn-wa-header { padding: 0.5rem 0.8rem; font-size: 0.85rem; }
  .btn-wa-header span:not(.icon) { display: none; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item:nth-child(2)::before { content: ''; position: absolute; left: 0; top: 25%; bottom: 25%; width: 1px; background: var(--line); }
  .hero-badges { gap: 0.4rem; }
  .hero-badge { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
  .hero-scroll-hint { display: none; }
  .tour-detail-2col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 85px; }
  .cookie-banner { bottom: 80px; }
  .hero-content { padding-top: 2rem; padding-bottom: 5rem; }
  .hero-dots { display: none; }
  .tour-hero { margin-top: 96px; min-height: 60vh; }
  .tour-hero-content { padding-top: 3rem; padding-bottom: 2rem; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-close { top: 1rem; right: 1rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .page-content { padding: 1.5rem; }
  .tour-card-full { padding: 1.5rem; }
  .location-card { padding: 1.5rem; }
  .navbar { padding: 0.7rem 0; }
  .brand { font-size: 1.3rem; }
}

/* PRINT */
@media print {
  .topbar, .mobile-bar, .cookie-banner, .site-footer, .mobile-nav { display: none !important; }
  body { background: white; padding: 0; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
