/* ================================================================
   RWANDA 1000 STORIES — style.css  v3
   Boutique travel: clean, minimal, image-first
   ================================================================ */

/* @import url('https://fonts.googleapis.com/css2?family=Archivo+Black:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --green-dark:  #091910;
  --green-mid:   #122b1c;
  --green:       #2a7a45;
  --green-light: #3aa05c;
  --gold:        #c9a84c;
  --gold-light:  #e8c876;
  --cream:       #f5f0e8;
  --cream-dark:  #ede7d9;
  --white:       #ffffff;
  --dark:        #060e09;
  --text:        #1a1a1a;
  --text-muted:  #6b7a71;
  --border:      rgba(0,0,0,0.09);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    16px;
  --radius-sm:  9px;
  --radius-xs:  5px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s var(--ease);

  --shadow:    0 4px 24px rgba(0,0,0,0.07);
  --shadow-md: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-lg: 0 28px 80px rgba(0,0,0,0.18);

  --gap-section: 88px;
  --gap-side:    clamp(24px, 7vw, 96px);
  --max-w:       1160px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.8;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); }

/* Scrollbar */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--green-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Subtle grain on body */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}


/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn  { from { opacity:0; transform:scale(0.95); } to { opacity:1; transform:scale(1); } }
@keyframes slideL   { from { opacity:0; transform:translateX(-32px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideR   { from { opacity:0; transform:translateX(32px);  } to { opacity:1; transform:translateX(0); } }
@keyframes pulse    { 0%,100% { transform:scale(1); } 50% { transform:scale(1.06); } }
@keyframes lineGrow { from { height:0; } to { height: 40px; } }

/* Scroll-reveal helpers */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.in, .reveal-left.in, .reveal-right.in {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: 0.10s !important; }
.d2 { transition-delay: 0.20s !important; }
.d3 { transition-delay: 0.30s !important; }
.d4 { transition-delay: 0.40s !important; }
.d5 { transition-delay: 0.50s !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* ================================================================
   SHARED COMPONENTS
   ================================================================ */

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Section head */
.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--green-dark);
  margin-bottom: 18px;
  font-weight: 300;
  letter-spacing: -0.5px;
}
.section-head p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.section-head.left-head { text-align: left; margin: 0 0 52px; }
.section-head.left-head h2 { color: var(--green-dark); }

/* Section wrappers */
.section {
  padding: var(--gap-section) var(--gap-side);
  max-width: calc(var(--max-w) + var(--gap-side) * 2);
  margin: 0 auto;
}
.section-white  { background: #fff; max-width: none; padding: var(--gap-section) var(--gap-side); }
.section-cream  { background: var(--cream); max-width: none; padding: var(--gap-section) var(--gap-side); }
.section-dark   { background: var(--green-dark); max-width: none; padding: var(--gap-section) var(--gap-side); color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,0.32); }
.btn-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-outline { background: transparent; color: var(--green-dark); border-color: rgba(0,0,0,0.18); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-cream { background: var(--cream); color: var(--dark); border-color: var(--cream); }
.btn-cream:hover { background: var(--cream-dark); }

/* Divider */
.divider {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin: 22px 0;
  border-radius: 2px;
}

/* Image placeholder */
.img-ph {
  width: 100%;
  background: linear-gradient(135deg, var(--green-mid), #1a5c36);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
}
.img-ph svg { width: 40px; height: 40px; opacity: 0.4; }
.img-ph.earth    { background: linear-gradient(135deg, #3a2a10, #7a5a20); }
.img-ph.blue     { background: linear-gradient(135deg, #0d1a3a, #1a3a7a); }
.img-ph.dark-red { background: linear-gradient(135deg, #2a0a0a, #5a1a1a); }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--green-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 0.67rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* ================================================================
   HERO — HOME
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-desktop-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 10s var(--ease);
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    125deg,
    rgba(6,14,9,0.78) 0%,
    rgba(6,14,9,0.42) 55%,
    rgba(0,0,0,0.15) 100%
  );
}
.hero-text {
  position: relative; z-index: 2;
  color: #fff;
  padding: 0 var(--gap-side);
  max-width: 720px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 40px;
  animation: fadeUp 1s var(--ease) 0.5s both;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-text .btn {
  animation: fadeUp 0.9s var(--ease) 0.75s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp 0.9s var(--ease) 0.75s both;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 40px; right: var(--gap-side);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.38);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1.8s var(--ease) 1.4s both;
  transition: color var(--transition);
}
.hero-scroll:hover { color: rgba(255,255,255,0.7); }
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: pulse 2.5s ease infinite;
}


/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  background: var(--green-dark);
}
.stats-bar > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}
.stats-bar > div:last-child { border-right: none; }
.stats-bar > div:hover { background: rgba(255,255,255,0.03); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 300;
}
.stat-lbl {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
}


/* ================================================================
   OFFERS / BENTO CARDS
   ================================================================ */
.offers-section {
  padding: var(--gap-section) var(--gap-side);
}
.offers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: end; /* THIS IS THE MAGIC LINE */
}
/* ================================================================
   OFFER CAROUSEL — single card, slide transition
   ================================================================ */
/* ================================================================
   OFFER CAROUSEL
   ================================================================ */
.oc-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0; /* prevents grid item from overflowing its column on mobile */
  overflow: hidden;
}

.oc-viewport {
  position: relative; /* Needed to place arrows over the carousel */
  overflow: hidden;
  border-radius: var(--radius);
  width: 100%; /* Mobile fix */
}

.oc-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.oc-card {
  flex: 0 0 100%;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%; /* Mobile fix */
  box-sizing: border-box;
}

.oc-img {
  position: relative;
  height: 320px; 
  flex-shrink: 0;
  
  /* These three lines ensure the image fits perfectly */
  background-size: cover;      /* Fills the area without stretching */
  background-position: center; /* Keeps the middle of the photo visible */
  background-repeat: no-repeat;
}

.oc-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
}

.oc-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; line-height: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
}

.oc-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.oc-body::before {
  content: '';
  position: absolute; top: 0; left: 26px; right: 26px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.oc-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.oc-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Arrows over the carousel */
.oc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100; /* Boosted to ensure it stays on top */
  pointer-events: auto; /* Forces them to be clickable */
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--green-dark);
  font-size: 1rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

/* Footer & Dots */
.oc-footer {
  display: flex;
  align-items: center;
  justify-content: center; 
  padding-top: 8px;
  position: relative; 
  z-index: 100; /* Boosted */
}

.oc-arrow:hover {
  background: #fff;
  color: var(--gold);
  box-shadow: var(--shadow-md);
}
.oc-arrow.prev { left: 12px; }
.oc-arrow.next { right: 12px; }

.oc-dots { display: flex; gap: 7px; }
.oc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none; padding: 0; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.oc-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

.mission-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.mission-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mission-card:hover::after { transform: scaleX(1); }
.mission-card .ico { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.mission-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 8px; font-weight: 500; font-family: var(--font-body); }
.mission-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

.mc-featured {
  grid-column: 1 / -1;
  background: var(--green-dark);
  color: #fff;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.mc-featured h3 { color: var(--gold-light); }
.mc-featured p  { color: rgba(255,255,255,0.6); }
.mc-featured::after { background: var(--gold); }


/* ================================================================
   4 Tour Cards — 4 cards, Accordion mobile
   ================================================================ */
/* ================================================================

/* ── per-card accent tokens ──────────────────────────────────── */
.sc-land   { --ac: #00A1DE; }   /* muted terracotta  */
.sc-wild   { --ac: #4cd971; }   /* brand green       */
.sc-people { --ac: #FAD201; }   /* warm amber        */
.sc-build  { --ac: #c9a84c; }   /* brand gold        */

/* ── section wrapper ─────────────────────────────────────────── */
.stories-section {
  background: #0e2518;
  padding: var(--gap-section) var(--gap-side);
}

/* ── desktop grid ────────────────────────────────────────────── */
.story-chapters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Sequential fade-in — overrides the generic d1/d2/d3 classes */
.story-chapters .story-chapter:nth-child(1) { transition-delay: 0.05s !important; }
.story-chapters .story-chapter:nth-child(2) { transition-delay: 0.17s !important; }
.story-chapters .story-chapter:nth-child(3) { transition-delay: 0.29s !important; }
.story-chapters .story-chapter:nth-child(4) { transition-delay: 0.41s !important; }

/* ── card ────────────────────────────────────────────────────── */
.story-chapter {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--ac);
  border-radius: var(--radius);
  padding: 24px 22px 32px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: start;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition),
              border-color var(--transition),
              background var(--transition);
}

.story-chapter:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
  border-color: color-mix(in srgb, var(--ac) 55%, transparent);
  border-top-color: var(--ac);
}
/* Build card — subtle warm tint to distinguish it */
.sc-build {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.22);
  cursor: default;
}
.sc-build:hover { border-color: rgba(201,168,76,0.5); border-top-color: var(--ac); transform: none; }

/* ── icon ring ───────────────────────────────────────────────── */
.ch-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--ac) 38%, transparent);
  background: color-mix(in srgb, var(--ac) 10%, transparent);
  display: flex; align-items: center; justify-content: center;
  grid-row: span 2;   /* sits beside both title and pill */
  align-self: center;
  transition: border-color var(--transition), background var(--transition);
}
.story-chapter:hover .ch-icon-wrap {
  border-color: color-mix(in srgb, var(--ac) 65%, transparent);
  background: color-mix(in srgb, var(--ac) 16%, transparent);
}
.ch-svg { width: 20px; height: 20px; color: var(--ac); }

/* ── text content ────────────────────────────────────────────── */
.ch-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: -0.2px;
  line-height: 1.1;
  margin-bottom: 4px;
  align-self: end;
}
.sc-build .ch-title { color: var(--gold-light, #e8c876); }

.ch-pill {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--ac) 12%, transparent);
  color: var(--ac);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--ac) 28%, transparent);
  margin-bottom: 0;
  width: fit-content;
}

.ch-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 14px;
  grid-column: 1 / -1;
}

/* ── text CTA (land / wild / people) ────────────────────────── */
.ch-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--ac);
  opacity: 0.72;
  grid-column: 1 / -1;
  transition: gap var(--transition), opacity var(--transition);
}
.ch-cta svg { width: 13px; height: 13px; transition: transform var(--transition); }
.story-chapter:hover .ch-cta { gap: 9px; opacity: 1; }
.story-chapter:hover .ch-cta svg { transform: translateX(3px); }

/* ── gold button CTA (build your tour only) ──────────────────── */
.btn-build-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 18px;
  background: var(--gold);
  color: #120900;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  grid-column: 1 / -1;
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
  letter-spacing: 0.1px;
}
.btn-build-cta svg { width: 13px; height: 13px; }
.btn-build-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.32);
}


/* stories-section mobile padding */
@media (max-width: 640px) {
  .stories-section { padding: var(--gap-section) var(--gap-side); }
}


/* ================================================================
   QUIZ — Quick-Fire, cream background
   ================================================================ */
.quiz-section {
  background: #fff;
  padding: var(--gap-section) 0 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.quiz-head-wrap {
  max-width: var(--max-w, 1160px);
  margin: 0 auto 28px;
  padding: 0 var(--gap-side, 24px);
}
.quiz-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

/* Left panel: intro + facts */
.quiz-left > .eyebrow { display: block; margin-bottom: 14px; }
.quiz-left > h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--green-dark);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.quiz-left > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.quiz-facts { display: flex; flex-direction: column; gap: 14px; }
.quiz-fact {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.quiz-fact:hover { transform: translateX(5px); box-shadow: var(--shadow); }
.qf-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-dark);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  min-width: 72px;
}
.qf-label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* Quiz box */
.quiz-box {
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.quiz-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--green-light));
}

.quiz-progress-track {
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--green-light));
  transition: width 0.5s var(--ease);
  width: 0;
}
.quiz-q-label {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.quiz-q-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.45;
  font-weight: 300;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.quiz-opt {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  padding: 13px 18px;
  color: rgba(255,255,255,0.8);
  font-size: 0.87rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.22s var(--ease);
  font-family: var(--font-body);
}
.quiz-opt:hover:not(:disabled) { background: rgba(255,255,255,0.1); border-color: rgba(201,168,76,0.35); color: #fff; }
.quiz-opt:disabled { cursor: default; }
.quiz-opt.correct { background: rgba(42,122,69,0.3); border-color: var(--green-light); color: #fff; }
.quiz-opt.wrong   { background: rgba(210,60,60,0.18);  border-color: rgba(210,60,60,0.5); color: rgba(255,255,255,0.55); }
.opt-letter {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  flex-shrink: 0;
  color: var(--gold);
}
.quiz-feedback {
  font-size: 0.83rem;
  min-height: 44px;
  line-height: 1.65;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.65);
}
.quiz-next { display: none; }
.quiz-next.show { display: inline-flex; }

/* Quiz result */
.quiz-result { display: none; text-align: center; padding-top: 8px; }
.quiz-result.show { display: block; animation: scaleIn 0.5s var(--ease) both; }
.quiz-score {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  font-weight: 300;
  line-height: 1;
}
.result-title { color: #fff; font-size: 1.6rem; margin-bottom: 10px; font-weight: 300; }
.result-msg   { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; }


/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  padding: 140px var(--gap-side);
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 10s var(--ease);
}
.cta-banner:hover .cta-bg { transform: scale(1); }
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(6,14,9,0.72);
}
.cta-content {
  position: relative; z-index: 2;
  color: #fff;
  max-width: 560px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 18px;
  font-weight: 300;
  letter-spacing: -0.5px;
}
.cta-content p  { color: rgba(255,255,255,0.6); margin-bottom: 36px; font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ================================================================
   SOCIAL BAR
   ================================================================ */
.social-bar {
  background: var(--green-mid);
  padding: 22px var(--gap-side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.social-bar p { color: rgba(255,255,255,0.55); font-size: 0.8rem; letter-spacing: 0.5px; }
.soc-links { display: flex; gap: 8px; flex-wrap: wrap; }
.soc-btn {
  padding: 7px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  color: rgba(255,255,255,0.6);
  font-size: 0.74rem;
  font-weight: 400;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.soc-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }


/* ================================================================
   CONTACT — WhatsApp-first
   ================================================================ */
.contact-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--green-dark); margin-bottom: 4px; font-weight: 400; }
.contact-info > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 4px; }
.ci {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.87rem;
  color: var(--text);
}
.ci-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.soc-icons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.soc-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--gold);
  transition: all var(--transition);
}
.soc-icon:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

/* WhatsApp CTA card */
.contact-cta {}
.wa-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.wa-card-top {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.wa-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  color: #25d366;
  margin-top: 4px;
}
.wa-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  font-weight: 400;
}
.wa-card-top p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.wa-alt {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.wa-alt a { color: var(--green); font-weight: 500; }
.wa-alt a:hover { text-decoration: underline; }


/* ================================================================
   FEATURE ROWS (about page)
   ================================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: var(--gap-section) var(--gap-side);
}
.feature.flip { direction: rtl; }
.feature.flip > * { direction: ltr; }
.feature-img { border-radius: var(--radius); overflow: hidden; }
.feature h2  { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--green-dark); margin-bottom: 18px; font-weight: 300; }
.feature p   { color: var(--text-muted); margin-bottom: 14px; font-size: 0.95rem; }
.tick-list   { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text);
}
.tick-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}


/* ================================================================
   TIMELINE
   ================================================================ */
.timeline { max-width: 680px; margin: 0 auto; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 32px);
  margin-bottom: 48px;
  position: relative;
}
.tl-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 32px);
}
.tl-dot {
  position: absolute; left: 50%; top: 18px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.18);
}
.tl-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  max-width: 280px;
}
.tl-year {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}
.tl-box h3 { font-size: 0.95rem; color: var(--green-dark); margin-bottom: 8px; font-weight: 500; font-family: var(--font-body); }
.tl-box p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }


/* ================================================================
   VALUE CARDS
   ================================================================ */
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card .ico  { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.value-card h3    { font-size: 1rem; color: var(--green-dark); margin-bottom: 10px; font-weight: 500; font-family: var(--font-body); }
.value-card p     { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }


/* ================================================================
   TOURS PAGE
   ================================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover  { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--green-dark); color: var(--gold); border-color: var(--green-dark); }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.tour-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.tour-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.tour-img {
  position: relative;
  height: 220px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.tour-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,14,9,0.45) 0%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}
.tour-img .img-ph { height: 100%; }
.diff-pill {
  position: absolute;
  bottom: 14px; left: 16px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.diff-pill.easy     { background: #d4edda; color: #155724; }
.diff-pill.moderate { background: #fff3cd; color: #856404; }
.diff-pill.hard     { background: #f8d7da; color: #721c24; }
.diff-pill.epic     { background: #e9d5ff; color: #4c1d95; }

.tour-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-body h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 10px; font-weight: 400; }
.tour-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.tour-meta span { font-size: 0.73rem; color: var(--text-muted); }
.tour-body > p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; flex: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.tag {
  font-size: 0.66rem;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--cream);
  border-radius: 50px;
  color: var(--text-muted);
}
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tour-price { font-size: 0.72rem; color: var(--text-muted); }
.tour-price strong { display: block; font-size: 0.9rem; color: var(--green-dark); }

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.inc-col h3 { font-size: 0.95rem; color: #fff; margin-bottom: 18px; font-family: var(--font-body); font-weight: 500; }
.inc-list { display: flex; flex-direction: column; gap: 10px; }
.inc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.84rem;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border-left: 2.5px solid transparent;
  color: rgba(255,255,255,0.75);
}
.inc-item .ico { font-size: 1rem; flex-shrink: 0; }
.inc-yes { border-color: var(--green-light); }
.inc-add { border-color: rgba(255,255,255,0.12); opacity: 0.5; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.step { text-align: center; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  border: 1.5px solid rgba(201,168,76,0.2);
  transition: all var(--transition);
}
.step:hover .step-num { background: var(--gold); color: var(--dark); transform: scale(1.08); }
.step h3 { font-size: 0.92rem; color: var(--green-dark); margin-bottom: 8px; font-weight: 500; font-family: var(--font-body); }
.step p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }


/* ================================================================
   PAGE HEADER
   ================================================================ */
.page-header {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ph-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: scaleIn 1s var(--ease) both;
}
.ph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,14,9,0.88) 0%, rgba(0,0,0,0.25) 100%);
}
.ph-content {
  position: relative; z-index: 2;
  color: #fff;
  padding: 0 var(--gap-side) clamp(40px, 7vh, 70px);
}
.ph-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; margin-top: 10px; }
.ph-content p  { color: rgba(255,255,255,0.6); max-width: 480px; font-size: 0.95rem; margin-top: 10px; }
.breadcrumb {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.5px;
  display: flex; gap: 8px; align-items: center; margin-bottom: 8px;
}
.breadcrumb a { color: var(--gold); }


/* ================================================================
   CUSTOM BOX
   ================================================================ */
.custom-box {
  background: linear-gradient(135deg, var(--green-dark), #1a5c36);
  border-radius: var(--radius);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border: 1px solid rgba(201,168,76,0.14);
  max-width: var(--max-w);
  margin: 0 auto;
}
.custom-box h2 { color: #fff; font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 10px; font-weight: 300; }
.custom-box p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 420px; line-height: 1.75; }


/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--dark);
  padding: 80px var(--gap-side) 0;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { max-width: 280px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.8; margin-bottom: 24px; }
.footer-soc { display: flex; gap: 10px; }
.footer-soc a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}
.footer-soc a:hover { background: var(--gold); color: var(--dark); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-nl p { font-size: 0.82rem; color: rgba(255,255,255,0.38); margin-bottom: 14px; line-height: 1.65; }
.nl-form { display: flex; gap: 8px; }
.nl-form input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.82rem;
  outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.25); }
.nl-form button {
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.nl-form button:hover { background: var(--gold-light); }
							  
				
						  
				 
									 
				
						 
					  
			
					 
 
				 
					 
								
				   
				   
 

								  
				
				
			
				  
 
				  
				
					  
						  
			  
			   
					 
											 
					
								
									
									 
 
						
							
					 
									
							  
 

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 0;
											   
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.73rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }


/* ================================================================
   IMPRESSUM PAGE
   ================================================================ */
.impressum-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--gap-section) var(--gap-side);
}
.impressum-content h2 { font-size: 1.4rem; color: var(--green-dark); margin: 36px 0 12px; font-weight: 400; }
.impressum-content p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 10px; }
.impressum-content a  { color: var(--green); }


/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gap-side);
  height: 72px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--green-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.25);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.72);
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active { border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 8px 20px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  border-bottom: none !important;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Full-screen mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 2.8rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.5px;
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: #fff; }
.mobile-close {
  position: absolute;
  top: 22px; right: var(--gap-side);
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--font-body);
}
.mobile-close:hover { color: #fff; }
.mobile-soc {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 28px;
}
.mobile-soc a {
  font-size: 1rem !important;
  color: rgba(255,255,255,0.3) !important;
  transition: color 0.2s !important;
}
.mobile-soc a:hover { color: rgba(255,255,255,0.7) !important; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger {
    display: flex;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 8px;
  }
}


/* ================================================================
   RESPONSIVE — TABLET
   ================================================================ */
@media (max-width: 1020px) {
  .story-chapters { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .offers-inner  { grid-template-columns: 1fr; gap: 48px; }
  .quiz-section-inner { grid-template-columns: 1fr; gap: 48px; }
  .quiz-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-wrap  { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .feature       { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .feature.flip  { direction: ltr; }
  .included-grid { grid-template-columns: 1fr; }
  .cards-bento   { grid-template-columns: 1fr; }
  .mc-featured   { flex-direction: column; grid-column: unset; }
}

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 640px) {
  :root { --gap-section: 56px; --gap-side: 22px; }

  /* Hero */
  .hero { min-height: 0; }
  .hero-bg { background-image: var(--hero-mobile-bg); }
  .hero-text { padding-right: var(--gap-side); }
  .hero-text h1 { font-size: clamp(2.6rem, 11vw, 3.4rem); letter-spacing: -1.5px; margin-bottom: 28px; }
  .hero-scroll  { display: none; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; padding: 14px 22px; }

  /* Stats — clean 2x2 grid */
  .stats-bar { flex-wrap: wrap; }
  .stats-bar > div {
    flex: 1 1 45%;
    padding: 24px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .stats-bar > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.05); }
  .stats-bar > div:nth-last-child(-n+2) { border-bottom: none; }



  /* Quiz spacing */
  .quiz-section { padding-top: 32px; }
  .quiz-head-wrap { margin-bottom: 20px; }

  /* Contact rows — prevent long email/phone overflow */
  .ci { font-size: 0.85rem; gap: 12px; }
  .ci a, .ci span { word-break: break-word; min-width: 0; }
  .contact-info h3 { font-size: 1.35rem; }

  .story-chapters { grid-template-columns: 1fr; gap: 20px; }

  .quiz-facts { grid-template-columns: 1fr; }
  .quiz-box   { padding: 24px 20px; }

  /* Carousel — hide arrows on mobile (swipe works), reduce image height */
  .oc-arrow { display: none; }
  .oc-img   { height: 200px; }

  .wa-card { padding: 28px 22px; }
  .wa-card-top { flex-direction: column; gap: 14px; }

  .footer-grid { grid-template-columns: 1fr; }
  .custom-box  { padding: 32px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .social-bar { flex-direction: column; text-align: center; }

  .timeline::before { left: 20px; }
  .tl-item,
  .tl-item:nth-child(even) { padding: 0 0 0 52px; justify-content: flex-start; }
  .tl-dot { left: 14px; }
  .tl-box { max-width: 100%; }

  .filter-btn { font-size: 0.73rem; padding: 8px 16px; }
}

/* ================================================================
   TOURS PAGE — extras
   ================================================================ */

/* ── ADVENTURE HERO — darker flowing green w/ moving slices ── */
html { scroll-behavior: smooth; }

.adv-hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(100px, 12vh, 150px) var(--gap-side) clamp(320px, 30vh, 400px);
  background: #010805;
  isolation: isolate;
  overflow: hidden;
}

@media (min-width: 900px) {
  .adv-hero { min-height: 78vh; }
}

/* Photo background with dark overlay for legibility */
.adv-hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-image: url('uploads/P1104233.jpg');
  background-size: cover;
  background-position: center 35%;
}
.adv-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(6,14,9,0.5);
}
.adv-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 35% 0%, rgba(13,46,26,0.35) 0%, transparent 55%);
}

@keyframes sliceDrift {
  0%   { transform: translate(  0%,   0%)  rotate( 0.0deg); }
  12%  { transform: translate(  6%,  -8%)  rotate( 1.2deg); }
  25%  { transform: translate( -9%,   5%)  rotate(-0.6deg); }
  38%  { transform: translate( 11%,  12%)  rotate( 1.8deg); }
  52%  { transform: translate( -6%,  -4%)  rotate(-1.4deg); }
  65%  { transform: translate( 14%,   3%)  rotate( 0.9deg); }
  78%  { transform: translate(-11%,  -9%)  rotate(-1.8deg); }
  90%  { transform: translate(  4%,   7%)  rotate( 0.4deg); }
  100% { transform: translate(  0%,   0%)  rotate( 0.0deg); }
}

/* Soft ambient glows for depth */
.adv-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.50;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: advFlow 22s ease-in-out infinite;
}
.adv-glow.g1 {
  width: 70vmax; height: 70vmax;
  background: radial-gradient(circle, #1b6040 0%, transparent 65%);
  top: -28vmax; left: -22vmax;
}
.adv-glow.g2 {
  width: 55vmax; height: 55vmax;
  background: radial-gradient(circle, #c9a84c 0%, transparent 65%);
  bottom: -18vmax; right: -18vmax;
  opacity: 0.20;
  animation-duration: 30s;
  animation-delay: -8s;
}
.adv-glow.g3 { display: none; }

@keyframes advFlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(4vw, -3vh) scale(1.08); }
}


/* Hero content (centered text — generous spacing) */
.adv-hero-content {
  max-width: 960px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  z-index: 3;
  animation: fadeUp 1.1s var(--ease) 0.2s both;
}
.eyebrow-light {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.85;
}
.adv-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -3px;
  margin: 36px 0 32px;
}
.adv-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  display: inline-block;
  background: linear-gradient(120deg, #e0bc5e 0%, #c9a84c 50%, #f5d889 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.adv-hero > .adv-hero-content > p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.9);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.75);
  color: #fff;
}
.adv-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: pulse 2.5s ease infinite;
}
.adv-scroll-hint svg { width: 14px; height: 14px; }

/* Teased route cards — match next-section .tour-card, only the top peeks up */
.adv-tease-wrap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  pointer-events: none;
  display: flex;
  justify-content: center;
}
.adv-tease-row {
  pointer-events: auto;
  width: 100%;
  max-width: 1280px;
  padding: 0 var(--gap-side);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  transform: translateY(62%);
}
.tour-tease {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 35px 80px -25px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.04);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  cursor: pointer;
  animation: teasePeek 4.2s ease-in-out infinite;
}
.tour-tease:nth-child(1) { animation-delay: 0s; }
.tour-tease:nth-child(2) { animation-delay: 0.5s; }
.tour-tease:nth-child(3) { animation-delay: 1s; }
.tour-tease:hover {
  transform: translateY(-16px);
  box-shadow: 0 50px 100px -25px rgba(0,0,0,0.75);
  animation-play-state: paused;
}
.tour-tease .tour-img {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.tour-tease .tour-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,14,9,0.4) 0%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}
.tour-tease .tour-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tour-tease .tour-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-dark);
  font-weight: 400;
}
.tour-tease .tour-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.tour-tease .tour-meta span { font-size: 0.74rem; color: var(--text-muted); }
.tour-tease .tour-body > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@keyframes teasePeek {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .adv-hero-bg::before,
  .adv-hero-bg::after,
  .adv-glow,
  .tour-tease,
  .adv-scroll-hint { animation: none !important; }
}

/* Tours-head (no filter now) */
.tours-head {
  max-width: var(--max-w);
  margin: 0 auto 44px;
  padding: 0 var(--gap-side);
}
.tours-head-left { max-width: 640px; }
.tours-head-left .eyebrow { display: block; margin-bottom: 12px; }
.tours-head-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--green-dark);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.tours-head-left h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.tours-head-left p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 560px;
}

.tours-grid {
  max-width: 1280px;          /* slightly wider cards */
  margin: 0 auto;
  padding: 0 var(--gap-side);
  gap: 28px;
}
.tours-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Pull all-tours up so the real cards peek from the bottom of the dark hero */
#all-tours {
  margin-top: -220px;
  padding-top: clamp(240px, 22vh, 300px);
  background: linear-gradient(to bottom, transparent 0%, transparent 170px, var(--cream) 270px) !important;
  position: relative;
  z-index: 5;
}
/* Anchor offset so smooth-scroll lands below the fixed nav */
#tour-land, #tour-people, #tour-wild { scroll-margin-top: 96px; }

/* ── WHAT'S INCLUDED — icon grid ─────────────────────────────── */
.inc-icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.inc-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 2px solid rgba(201,168,76,0.45);
  border-radius: var(--radius-sm);
  flex: 1 1 130px;
  max-width: 160px;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}
.inc-icon-item:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.inc-icon-emoji { font-size: 2rem; line-height: 1; }
.inc-icon-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(10, 56, 4, 1);
  text-align: center;
  line-height: 1.4;
}

/* ── TOUR CARD ENTRANCE ANIMATION (triggered on scroll) ── */
/* Cards start dim + slightly raised so they look part of the dark hero;
   JS adds .slide-in staggered when user scrolls the section into view */
#all-tours .tour-card {
  opacity: 0.45;
  transform: translateY(-28px);
  transition: none;
}
#all-tours .tour-card.slide-in {
  animation: cardSlideDown 0.7s var(--ease) both;
}
#all-tours .tour-card.slide-in .tour-body h3 {
  animation: textSlideIn 0.55s var(--ease) 0.18s both;
}
#all-tours .tour-card.slide-in .tour-meta {
  animation: textSlideIn 0.55s var(--ease) 0.26s both;
}
#all-tours .tour-card.slide-in .tour-body > p {
  animation: textSlideIn 0.55s var(--ease) 0.32s both;
}
#all-tours .tour-card.slide-in .tags {
  animation: textSlideIn 0.55s var(--ease) 0.38s both;
}
#all-tours .tour-card.slide-in .tour-footer {
  animation: textSlideIn 0.55s var(--ease) 0.44s both;
}

@keyframes cardSlideDown {
  from { opacity: 0.45; transform: translateY(-28px) scale(0.97); }
  to   { opacity: 1;    transform: translateY(0)     scale(1); }
}
@keyframes textSlideIn {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Builder frame */
.builder-frame-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gap-side);
}

@media (min-width: 1024px) {
  .builder-frame-wrap {
    max-width: 1100px;
  }
}

.builder-frame-wrap iframe {
  width: 100%;
  border: none;
  display: block;
  border-radius: 8px;
  min-height: 820px;
}

/* Ready-to-ride CTA band */
.tours-cta-band { padding-top: 64px; padding-bottom: 64px; }
.tours-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap-side);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.tours-cta-inner .eyebrow { display: block; margin-bottom: 10px; }
.tours-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.tours-cta-inner p { color: var(--text-muted); font-size: 0.95rem; }


/* ── BOOKING MODAL ──────────────────────────────────────────── */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
  padding: 20px;
}
.booking-modal.open { opacity: 1; }
.booking-modal[hidden] { display: none; }

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,14,9,0.55);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}
.booking-dialog {
  position: relative;
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 36px 36px 28px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s var(--ease);
}
.booking-modal.open .booking-dialog { transform: translateY(0) scale(1); }

.booking-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--green-dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.booking-close:hover { background: var(--cream-dark); transform: rotate(90deg); }

.booking-dialog .eyebrow { display: block; margin-bottom: 8px; }
.booking-dialog h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  color: var(--green-dark);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.booking-dialog h2 [data-tour-name] {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.bm-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  min-height: 1em;
}
.bm-notice {
  margin: 18px 0 22px;
  padding: 12px 16px;
  background: #fff8e6;
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: 0.82rem;
  color: #6b5520;
  line-height: 1.55;
}

.bm-form { display: flex; flex-direction: column; gap: 14px; }
.bm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bm-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.74rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.bm-form input,
.bm-form textarea {
  font: inherit;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.bm-form input:focus,
.bm-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.bm-form textarea { resize: vertical; min-height: 70px; }

.bm-actions { margin-top: 8px; }

.bm-alt {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.bm-alt > span { width: 100%; margin-bottom: 2px; }
.bm-alt-link {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.bm-alt-link:hover { color: var(--gold); }


/* ── TOURS-PAGE RESPONSIVE ──────────────────────────────────── */
@media (max-width: 860px) {
  .tours-grid-3 { grid-template-columns: 1fr !important; max-width: 520px; }
  .tours-cta-inner { grid-template-columns: 1fr; text-align: left; }
  #all-tours { margin-top: -160px; padding-top: clamp(180px, 18vh, 240px); }
}
@media (max-width: 640px) {
  .adv-hero {
    padding-top: 110px;
    min-height: auto;
    padding-bottom: 180px;
  }
  .adv-hero h1 { letter-spacing: -1.5px; margin: 26px 0 22px; }
  .tour-img { height: 200px; }
  #all-tours { margin-top: -120px; padding-top: clamp(140px, 14vh, 180px); }
  .booking-dialog { padding: 28px 22px 22px; border-radius: 12px; }
  .bm-row { grid-template-columns: 1fr; }
}


/* ================================================================
   RESPONSIVE — NARROW PHONE (<= 380px)
   ================================================================ */
@media (max-width: 380px) {
  .hero-text h1 { font-size: 2.3rem; letter-spacing: -1px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

