/* =========================================================
   Mashimba Tours — main.css
   Tanzania trekking & safari. English LTR. Desktop-first.
   Breakpoints: 1400 → 1200 → 992 → 768 → 576
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --green-dark: #12332a;   /* deep acacia forest */
  --green:      #1f5c43;   /* primary green */
  --green-soft: #2f7a5b;
  --gold:       #e0a12e;   /* savanna gold */
  --gold-dark:  #c98a1c;
  --sunset:     #e2622b;   /* accent / CTA */
  --sunset-dark:#c9521f;
  --sand:       #f4ede1;   /* light section bg */
  --cream:      #faf6ef;   /* page bg */
  --charcoal:   #1c1a17;   /* body text */
  --muted:      #6b6459;   /* secondary text */
  --line:       #e6ddcd;   /* borders */
  --white:      #ffffff;
  --black:      #000000;

  --radius:     18px;
  --radius-sm:  12px;
  --shadow:     0 18px 40px -20px rgba(18, 51, 42, .35);
  --shadow-sm:  0 8px 24px -14px rgba(18, 51, 42, .4);

  --ff-head: "Sora", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;

  --container: 1240px;
}

/* ---------- Reset ---------- */
html { -webkit-box-sizing: border-box; box-sizing: border-box; scroll-behavior: smooth; }
*, *::before, *::after {
  -webkit-box-sizing: inherit; box-sizing: inherit;
  list-style: none; min-width: 0; min-height: 0;
}
body {
  margin: 0; padding: 0; line-height: 1.6;
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, li, button, blockquote, figure { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-head); line-height: 1.12; font-weight: 700; }
a { display: inline-block; color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { background-color: transparent; border: none; outline: none; cursor: pointer; font-family: inherit; }
body.no-scroll { overflow: hidden; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.section-head--center .eyebrow::before { display: none; }

.title { font-size: clamp(2rem, 3.4vw, 3rem); color: var(--green-dark); }
.title--light { color: var(--white); }
.lead { font-size: 1.08rem; color: var(--muted); margin-top: 18px; }
.lead--light { color: rgba(255,255,255,.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--ff-head); font-weight: 600; font-size: .98rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--sunset); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--sunset-dark); }
.btn--gold { background: var(--gold); color: var(--green-dark); }
.btn--gold:hover { background: var(--gold-dark); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-dark); }
.btn--outline { background: transparent; border: 2px solid rgba(255,255,255,.55); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn--outline-dark { background: transparent; border: 2px solid var(--line); color: var(--green-dark); }
.btn--outline-dark:hover { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.btn--sm { padding: 11px 22px; font-size: .9rem; }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--whatsapp:hover { background: #1eb457; }

.link-arrow {
  font-family: var(--ff-head); font-weight: 600; color: var(--green);
  display: inline-flex; align-items: center; gap: 8px;
}
.link-arrow i { transition: transform .25s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo-mark {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  display: grid; place-items: center; color: var(--green-dark); font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.header__logo-text { line-height: 1.05; }
.header__logo-text strong {
  display: block; font-family: var(--ff-head); font-weight: 700; font-size: 1.18rem;
  color: var(--white); letter-spacing: .01em;
}
.header__logo-text span {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  font-weight: 600;
}
.header.is-stuck .header__logo-text strong { color: var(--green-dark); }

.header__nav { display: flex; align-items: center; gap: 8px; }
.header__nav ul { display: flex; align-items: center; gap: 4px; }
.header__nav ul a {
  padding: 10px 14px; border-radius: 999px; font-family: var(--ff-head);
  font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.9);
  transition: background .2s ease, color .2s ease;
}
.header__nav ul a:hover { background: rgba(255,255,255,.12); color: #fff; }
.header.is-stuck .header__nav ul a { color: var(--charcoal); }
.header.is-stuck .header__nav ul a:hover { background: var(--sand); color: var(--green-dark); }

.header__cta { display: flex; align-items: center; gap: 12px; }

.header__menu {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.14); position: relative;
}
.header.is-stuck .header__menu { background: var(--sand); }
.header__menu strong, .header__menu strong::before, .header__menu strong::after {
  content: ""; position: absolute; left: 50%; width: 22px; height: 2px; border-radius: 2px;
  background: var(--white); transform: translateX(-50%);
}
.header.is-stuck .header__menu strong,
.header.is-stuck .header__menu strong::before,
.header.is-stuck .header__menu strong::after { background: var(--green-dark); }
.header__menu strong { top: 50%; margin-top: -1px; }
.header__menu strong::before { top: -7px; }
.header__menu strong::after { top: 7px; }

.nav-close { display: none; }

/* stuck state */
.header.is-stuck {
  background: rgba(255,255,255,.96); padding: 12px 0;
  box-shadow: 0 10px 30px -18px rgba(18,51,42,.45);
  backdrop-filter: blur(10px);
}
.header.is-stuck.menu-open { backdrop-filter: none; }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative; padding: 190px 0 90px; color: var(--white); overflow: hidden;
  display: flex; align-items: center;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -1; background-size: cover; background-position: center; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,40,32,.78), rgba(10,32,26,.9));
}
.page-hero__inner { max-width: 720px; }
.page-hero__title { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.page-hero__text { font-size: 1.15rem; color: rgba(255,255,255,.85); margin-top: 18px; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: .9rem; margin-bottom: 18px; color: rgba(255,255,255,.7); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); }
@media screen and (min-width: 720px) { .faq-h1 { white-space: nowrap; } }

/* ---------- Prose / rich text ---------- */
.prose { max-width: 760px; }
.prose p { margin-bottom: 18px; color: var(--muted); font-size: 1.05rem; }
.prose h3 { color: var(--green-dark); font-size: 1.5rem; margin: 32px 0 14px; }
.prose ul.ticks { display: grid; gap: 12px; margin: 18px 0; }
.prose ul.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.prose ul.ticks i { color: var(--green); margin-top: 3px; }

/* ---------- Values grid ---------- */
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.4rem; color: var(--white); margin-bottom: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.value-card h3 { color: var(--green-dark); font-size: 1.2rem; }
.value-card p { color: var(--muted); font-size: .95rem; margin-top: 10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; color: var(--white); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(226,98,43,.28), transparent 55%),
    linear-gradient(180deg, #163a2e 0%, #0e2a21 55%, #0a201a 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 55% at 82% 78%, rgba(224,161,46,.32), transparent 60%),
    conic-gradient(from 210deg at 78% 88%, rgba(224,161,46,.18), transparent 40%);
}
.hero__mountains {
  position: absolute; left: 0; right: 0; bottom: 0; height: 42%; z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(10,32,26,.85));
  clip-path: polygon(0 62%, 14% 40%, 26% 55%, 42% 22%, 58% 48%, 72% 30%, 86% 52%, 100% 38%, 100% 100%, 0 100%);
  opacity: .55;
  background-color: #0b241d;
}
.hero__inner { max-width: 760px; position: relative; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  font-size: .85rem; font-weight: 500; margin-bottom: 26px; backdrop-filter: blur(4px);
}
.hero__badge b { color: var(--gold); font-weight: 700; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.04; letter-spacing: -.01em; }
.hero__title em { font-style: normal; color: var(--gold); }
.hero__text { font-size: 1.18rem; color: rgba(255,255,255,.85); margin-top: 24px; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 56px; }
.hero__stat b { font-family: var(--ff-head); font-size: 2rem; line-height: 1; display: block; color: var(--gold); }
.hero__stat b .counter { font-size: inherit; }
.hero__stat > span { font-size: .9rem; color: rgba(255,255,255,.75); }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll::after { content: ""; width: 1px; height: 34px; background: rgba(255,255,255,.4); animation: scrollPulse 1.8s infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.4); opacity: .3; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Activities ---------- */
.activities { background: var(--cream); }
.activities__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.activity-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  color: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.activity-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--grad, linear-gradient(160deg, #2f7a5b, #12332a));
  transition: transform .5s ease;
}
.activity-card:hover::before { transform: scale(1.06); }
.activity-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(10,25,20,.82));
}
.activity-card--kili { --grad: linear-gradient(160deg, #3a6f8c, #12332a); }
.activity-card--meru { --grad: linear-gradient(160deg, #5a7d4e, #1c3524); }
.activity-card--safari { --grad: linear-gradient(160deg, #c98a1c, #7a4a15); }
.activity-card--zanzibar { --grad: linear-gradient(160deg, #1f9ea6, #10484c); }
.activity-card--day { --grad: linear-gradient(160deg, #e2622b, #7a2d12); }
.activity-card__tag {
  align-self: flex-start; font-size: .74rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.18); margin-bottom: auto; backdrop-filter: blur(3px);
}
.activity-card__title { font-size: 1.5rem; margin-top: 14px; }
.activity-card__text { font-size: .95rem; color: rgba(255,255,255,.82); margin-top: 8px; }
.activity-card__more { margin-top: 16px; font-weight: 600; color: var(--gold); display: inline-flex; gap: 8px; }
.activity-card--wide { grid-column: span 1; }

/* Activities slider */
.activities__slider { position: relative; }
.activities__viewport { overflow: hidden; }
.activities__track { display: flex; gap: 26px; transition: transform .5s ease; }
.activities__track .activity-card { flex: 0 0 calc((100% - 52px) / 3); }
.slider-nav { display: flex; gap: 12px; justify-content: center; margin-top: 40px; }
.slider-nav button {
  width: 48px; height: 48px; border-radius: 50%; background: var(--white); border: 1px solid var(--line);
  color: var(--green-dark); font-size: 1.1rem; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.slider-nav button:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

/* ---------- Why choose (features) ---------- */
.why { background: var(--green-dark); color: var(--white); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 12px; }
.feature {
  padding: 30px 26px; border-radius: var(--radius); background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08); transition: background .3s ease, transform .3s ease;
}
.feature:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.feature__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; color: var(--green-dark); margin-bottom: 18px;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
}
.feature__title { font-size: 1.15rem; }
.feature__text { font-size: .95rem; color: rgba(255,255,255,.72); margin-top: 10px; }

/* ---------- Stats band ---------- */
.stats { background: var(--gold); color: var(--green-dark); padding: 60px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats__item b { font-family: var(--ff-head); font-size: 3rem; display: inline; line-height: 1; }
.stats__item b .counter { font-size: inherit; }
.stats__item > span { font-family: var(--ff-head); font-size: 3rem; vertical-align: baseline; margin-left: 2px; }
.stats__item p { font-weight: 500; margin-top: 10px; font-size: .98rem; }

/* ---------- Packages ---------- */
.packages { background: var(--sand); }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.package {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.package:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package__media { height: 190px; position: relative; }
.package__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.15)); }
.package--1 .package__media { background: linear-gradient(150deg, #3a6f8c, #12332a); }
.package--2 .package__media { background: linear-gradient(150deg, #c98a1c, #7a4a15); }
.package--3 .package__media { background: linear-gradient(150deg, #1f9ea6, #10484c); }
.package__days {
  position: absolute; top: 16px; left: 16px; z-index: 1; background: var(--white);
  color: var(--green-dark); font-family: var(--ff-head); font-weight: 700; font-size: .82rem;
  padding: 6px 14px; border-radius: 999px;
}
.package__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.package__title { font-size: 1.3rem; color: var(--green-dark); }
.package__text { font-size: .95rem; color: var(--muted); margin-top: 10px; flex: 1; }
.package__meta { display: flex; align-items: center; gap: 14px; margin: 18px 0; font-size: .88rem; color: var(--muted); }
.package__meta i { color: var(--gold-dark); }
.package__foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 18px; }
.package__price small { display: block; font-size: .75rem; color: var(--muted); }
.package__price b { font-family: var(--ff-head); font-size: 1.4rem; color: var(--sunset); }

/* ---------- About teaser (split) ---------- */
.about-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-teaser__media {
  border-radius: var(--radius); min-height: 440px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #2f7a5b, #12332a);
  box-shadow: var(--shadow);
}
.about-teaser__media .badge-float {
  position: absolute; bottom: 24px; left: 24px; background: var(--white); color: var(--green-dark);
  padding: 18px 22px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}
.about-teaser__media .badge-float b { font-family: var(--ff-head); font-size: 1.7rem; display: block; color: var(--sunset); }
.about-teaser__media .badge-float span { font-size: .85rem; color: var(--muted); }
.about-teaser__list { margin-top: 26px; display: grid; gap: 14px; }
.about-teaser__list li { display: flex; gap: 12px; align-items: flex-start; }
.about-teaser__list i { color: var(--green); font-size: 1.2rem; margin-top: 2px; }

/* ---------- Team ---------- */
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.guide { text-align: center; }
.guide__photo {
  aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(160deg, #5a7d4e, #1c3524); margin-bottom: 16px;
}
.guide--2 .guide__photo { background: linear-gradient(160deg, #c98a1c, #7a4a15); }
.guide--3 .guide__photo { background: linear-gradient(160deg, #3a6f8c, #12332a); }
.guide--4 .guide__photo { background: linear-gradient(160deg, #e2622b, #7a2d12); }
.guide__name { font-size: 1.2rem; color: var(--green-dark); }
.guide__role { font-size: .9rem; color: var(--gold-dark); font-weight: 600; margin-top: 4px; }
.guide__meta { font-size: .85rem; color: var(--muted); margin-top: 8px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--green-dark); color: var(--white); overflow: hidden; }
.testi-track { display: flex; gap: 26px; transition: transform .5s ease; }
.testi {
  flex: 0 0 calc((100% - 52px) / 3); background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 30px;
}
.testi__stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testi__text { font-size: 1rem; color: rgba(255,255,255,.9); line-height: 1.7; }
.testi__author { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.testi__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--sunset)); flex: none; }
.testi__author b { display: block; font-family: var(--ff-head); }
.testi__author span { font-size: .85rem; color: rgba(255,255,255,.6); }
.testi__nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 36px; }
.testi__nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 1.1rem; transition: background .2s ease;
}
.testi__nav button:hover { background: rgba(255,255,255,.12); }
.review-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 44px; }
.review-badge {
  display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); padding: 14px 22px; border-radius: 14px;
}
.review-badge i { font-size: 1.6rem; }
.review-badge .ta { color: #34e0a1; }
.review-badge .go { color: #ffd04d; }
.review-badge b { font-family: var(--ff-head); font-size: 1.2rem; }
.review-badge span { font-size: .82rem; color: rgba(255,255,255,.65); display: block; }

/* ---------- Responsible tourism ---------- */
.responsible { background: var(--cream); }
.responsible__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.responsible__media {
  min-height: 400px; border-radius: var(--radius); position: relative; overflow: hidden;
  background: linear-gradient(160deg, #2f7a5b 0%, #1c3524 100%); box-shadow: var(--shadow);
}
.responsible__pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); font-weight: 500; font-size: .9rem;
  color: var(--green-dark);
}
.pill i { color: var(--green); }

/* ---------- Package detail rows ---------- */
.pkg-list { display: grid; gap: 40px; }
.pkg { scroll-margin-top: 100px; }
.pkg {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pkg__media { position: relative; min-height: 300px; background-size: cover; background-position: center; }
.pkg:nth-child(even) .pkg__media { order: 2; }
.pkg__days {
  position: absolute; top: 18px; left: 18px; background: var(--white); color: var(--green-dark);
  font-family: var(--ff-head); font-weight: 700; font-size: .82rem; padding: 7px 15px; border-radius: 999px;
}
.pkg__body { padding: 30px 34px; display: flex; flex-direction: column; }
.pkg__title { font-size: 1.5rem; color: var(--green-dark); }
.pkg__meta { display: flex; flex-wrap: wrap; gap: 16px; margin: 12px 0 14px; font-size: .9rem; color: var(--muted); }
.pkg__meta span { display: inline-flex; align-items: center; gap: 7px; }
.pkg__meta i { color: var(--gold-dark); }
.pkg__text { color: var(--muted); font-size: .95rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pkg__highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 16px; margin: 14px 0; }
.pkg__highlights li { display: flex; gap: 9px; align-items: flex-start; font-size: .88rem; }
.pkg__highlights i { color: var(--green); margin-top: 3px; }
.pkg__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.pkg__price small { display: block; font-size: .78rem; color: var(--muted); }
.pkg__price b { font-family: var(--ff-head); font-size: 1.7rem; color: var(--sunset); }
.pkg__price em { font-style: normal; font-size: .85rem; color: var(--muted); font-weight: 400; }
.pkg__actions { display: flex; gap: 10px; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact__cards { display: grid; gap: 18px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.contact-card__icon {
  width: 52px; height: 52px; border-radius: 14px; flex: none; display: grid; place-items: center;
  font-size: 1.4rem; color: var(--white); background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.contact-card--wa .contact-card__icon { background: #25d366; }
.contact-card h3 { color: var(--green-dark); font-size: 1.15rem; }
.contact-card p { color: var(--muted); font-size: .95rem; margin-top: 4px; }
.contact-card a { color: var(--green); font-weight: 600; }
.contact-card a:hover { color: var(--sunset); }

.contact-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-sm);
}
.contact-form h2 { color: var(--green-dark); font-size: 1.5rem; margin-bottom: 6px; }
.contact-form p.sub { color: var(--muted); margin-bottom: 24px; font-size: .95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-family: var(--ff-head); font-weight: 500; font-size: .9rem; margin-bottom: 7px; color: var(--charcoal); }
.form-field label span { color: var(--sunset); }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--ff-body); font-size: .98rem; color: var(--charcoal); background: var(--cream);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,92,67,.12); background: #fff;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { width: 100%; margin-top: 8px; }

.map-embed {
  margin-top: 26px; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  border: 1px solid var(--line); background: linear-gradient(160deg, #2f7a5b, #12332a);
  display: grid; place-items: center; color: rgba(255,255,255,.85); text-align: center; padding: 20px;
}
.map-embed i { font-size: 2.4rem; margin-bottom: 10px; display: block; color: var(--gold); }

/* ---------- CTA ---------- */
.cta { padding: 96px 0; }
.cta__box {
  border-radius: 28px; padding: 70px 60px; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 80% 10%, rgba(224,161,46,.35), transparent 55%),
    linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white); box-shadow: var(--shadow);
}
.cta__box h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.cta__box p { color: rgba(255,255,255,.85); margin: 18px auto 34px; max-width: 560px; font-size: 1.08rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: #0d241d; color: rgba(255,255,255,.75); padding: 76px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand .header__logo-text strong { color: #fff; }
.footer__about { margin-top: 18px; font-size: .95rem; max-width: 320px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff; font-size: 1.1rem; transition: background .2s ease;
}
.footer__social a:hover { background: var(--sunset); }
.footer__col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: .95rem; transition: color .2s ease; }
.footer__col a:hover { color: var(--gold); }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .95rem; align-items: flex-start; }
.footer__contact i { color: var(--gold); margin-top: 3px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem;
}

/* ---------- Load animations ---------- */
.load { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.load.ready { opacity: 1; transform: translateY(0); }
.load--d1.ready { transition-delay: .1s; }
.load--d2.ready { transition-delay: .2s; }
.load--d3.ready { transition-delay: .3s; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.gallery-filters button {
  padding: 10px 22px; border-radius: 999px; font-family: var(--ff-head); font-weight: 600; font-size: .92rem;
  color: var(--green-dark); background: var(--white); border: 1px solid var(--line); transition: all .2s ease;
}
.gallery-filters button:hover { border-color: var(--green); }
.gallery-filters button.active { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  background: var(--sand); cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 20px 18px; color: var(--white);
  font-family: var(--ff-head); font-weight: 600; opacity: 0; transform: translateY(10px);
  background: linear-gradient(180deg, transparent, rgba(10,25,20,.85)); transition: all .3s ease;
}
.gallery-item:hover .gallery-item__cap { opacity: 1; transform: translateY(0); }
.gallery-item.is-hidden { display: none; }
.gallery-item--tall { aspect-ratio: 3/4; }

/* ---------- FAQ accordion ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; font-family: var(--ff-head); font-weight: 600; font-size: 1.05rem; color: var(--green-dark);
}
.faq-q i { flex: none; transition: transform .3s ease; color: var(--gold-dark); font-size: 1.1rem; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a__inner { padding: 0 24px 22px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.faq-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card__media { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__cat {
  position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--green-dark);
  font-family: var(--ff-head); font-weight: 600; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { font-size: .82rem; color: var(--muted); margin-bottom: 10px; display: flex; gap: 14px; }
.blog-card__title { font-size: 1.2rem; color: var(--green-dark); line-height: 1.3; }
.blog-card__excerpt { font-size: .95rem; color: var(--muted); margin-top: 10px; flex: 1; }
.blog-card__more { margin-top: 16px; font-family: var(--ff-head); font-weight: 600; color: var(--green); display: inline-flex; gap: 8px; align-items: center; }
.blog-card:hover .blog-card__more { color: var(--sunset); }
.blog-card--featured { grid-column: span 2; }
.blog-card--featured .blog-card__media { aspect-ratio: 21/9; }

/* ---------- Single article ---------- */
.article-meta {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 20px;
  font-size: .92rem; color: rgba(255,255,255,.8);
}
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta i { color: var(--gold); }
.article-cat {
  display: inline-block; background: var(--gold); color: var(--green-dark);
  font-family: var(--ff-head); font-weight: 600; font-size: .74rem; letter-spacing: .04em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}

.article-body { max-width: 800px; margin: 0 auto; }
.article__featured { border-radius: var(--radius); overflow: hidden; margin-bottom: 36px; }
.article__featured img { width: 100%; max-height: 360px; object-fit: cover; display: block; }

.article__content { font-size: 1.08rem; color: #33302a; line-height: 1.8; }
.article__content > p { margin-bottom: 22px; }
.article__content .lead-in { font-size: 1.2rem; color: var(--charcoal); font-weight: 500; }
.article__content h2 { font-size: 1.7rem; color: var(--green-dark); margin: 42px 0 16px; }
.article__content h3 { font-size: 1.3rem; color: var(--green-dark); margin: 32px 0 12px; }
.article__content ul, .article__content ol { margin: 0 0 22px; padding-left: 4px; }
.article__content ul li, .article__content ol li {
  position: relative; padding-left: 30px; margin-bottom: 12px;
}
.article__content ul li::before {
  content: "\F26A"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: 0;
  color: var(--green); font-size: 1.05rem;
}
.article__content ol { counter-reset: li; }
.article__content ol li { counter-increment: li; }
.article__content ol li::before {
  content: counter(li); position: absolute; left: 0; top: 2px; width: 22px; height: 22px;
  background: var(--green); color: #fff; border-radius: 50%; font-size: .8rem; font-weight: 700;
  display: grid; place-items: center; font-family: var(--ff-head);
}
.article__content figure { margin: 32px 0; }
.article__content figure img { width: 100%; border-radius: var(--radius); display: block; }
.article__content figcaption { text-align: center; font-size: .88rem; color: var(--muted); margin-top: 10px; }
.article__content blockquote {
  margin: 32px 0; padding: 24px 28px; border-left: 4px solid var(--gold);
  background: var(--sand); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--ff-head); font-size: 1.2rem; font-style: italic; color: var(--green-dark); line-height: 1.5;
}
.article__content a:not(.btn) { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.article__content a:not(.btn):hover { color: var(--sunset); }

.article__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 0; padding-top: 30px; border-top: 1px solid var(--line); }
.article__tags a {
  background: var(--sand); color: var(--green-dark); font-size: .85rem; font-weight: 500;
  padding: 8px 16px; border-radius: 999px; transition: background .2s ease, color .2s ease;
}
.article__tags a:hover { background: var(--green-dark); color: #fff; }

.article-foot { max-width: 800px; margin: 40px auto 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.author-box { display: flex; align-items: center; gap: 16px; }
.author-box__avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--sunset)); background-size: cover; background-position: center; flex: none; }
.author-box b { font-family: var(--ff-head); color: var(--green-dark); display: block; }
.author-box span { font-size: .88rem; color: var(--muted); }
.share-row { display: flex; align-items: center; gap: 10px; }
.share-row a {
  width: 42px; height: 42px; border-radius: 12px; background: var(--sand); display: grid; place-items: center;
  color: var(--green-dark); font-size: 1.05rem; transition: background .2s ease, color .2s ease;
}
.share-row a:hover { background: var(--green-dark); color: #fff; }

/* ---------- Form validation state ---------- */
.form-field input.field-error,
.form-field textarea.field-error {
  border-color: #e23b3b;
  box-shadow: 0 0 0 2px rgba(226, 59, 59, .14);
}

/* ---------- Live Google map ---------- */
.map-embed--live { padding: 0; display: block; }
.map-embed--live iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }

/* ---------- Lightbox (gallery) ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 6000; background: rgba(8, 20, 16, .93);
  display: none; align-items: center; justify-content: center; padding: 5vh 24px;
  opacity: 0; transition: opacity .3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--ff-head); font-weight: 600; }
.lightbox__btn {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff;
  display: grid; place-items: center; transition: background .2s ease;
}
.lightbox__btn:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 22px; right: 26px; width: 48px; height: 48px; font-size: 1.4rem; }
.lightbox__prev, .lightbox__next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.3rem; }
.lightbox__prev { left: 20px; } .lightbox__next { right: 20px; }

/* ---------- Modal (booking form) ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 6000; background: rgba(8, 20, 16, .72);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity .3s ease;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal-panel {
  background: var(--white); border-radius: var(--radius); max-width: 560px; width: 100%;
  max-height: 92vh; overflow-y: auto; padding: 36px; position: relative; box-shadow: var(--shadow);
  transform: translateY(18px); transition: transform .3s ease;
}
.modal-overlay.open .modal-panel { transform: translateY(0); }
.modal-panel__close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand); color: var(--green-dark); font-size: 1.1rem; display: grid; place-items: center;
  transition: background .2s ease, color .2s ease;
}
.modal-panel__close:hover { background: var(--green-dark); color: #fff; }
.modal-panel h2 { color: var(--green-dark); font-size: 1.5rem; }
.modal-panel .sub { color: var(--muted); margin: 6px 0 22px; font-size: .95rem; }
.modal-panel .sub b { color: var(--green); }

/* Success state that covers the modal form */
.modal-thanks {
  position: absolute; inset: 0; border-radius: var(--radius); background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 40px; z-index: 5; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
}
.modal-thanks.show { opacity: 1; visibility: visible; }
.modal-thanks__icon {
  width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center;
  font-size: 2.6rem; color: var(--green-dark); margin-bottom: 22px;
  background: linear-gradient(135deg, var(--gold), var(--sunset)); box-shadow: var(--shadow-sm);
}
.modal-thanks h2 { color: var(--green-dark); font-size: 1.7rem; }
.modal-thanks__text { color: var(--muted); margin: 12px 0 26px; max-width: 400px; line-height: 1.6; }

/* ---------- Packages slider ---------- */
.pkg-slider { position: relative; }
.pkg-viewport { overflow: hidden; padding: 6px; margin: -6px; }
.pkg-track { display: flex; gap: 28px; transition: transform .5s ease; }
.pkg-track .pkg { flex: 0 0 74%; }
@media screen and (min-width: 1500px) { .pkg-track .pkg { flex-basis: 80%; } }

/* ---------- Per-package image gallery ---------- */
.pkg__media { overflow: hidden; }
.pkg-gallery { position: absolute; inset: 0; }
.pkg-gallery__img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .45s ease; }
.pkg-gallery__img.active { opacity: 1; }
.pkg-gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--green-dark);
  display: grid; place-items: center; font-size: 1.05rem; box-shadow: var(--shadow-sm); transition: background .2s ease;
}
.pkg-gallery__nav:hover { background: #fff; }
.pkg-gallery__prev { left: 14px; } .pkg-gallery__next { right: 14px; }
.pkg-gallery__dots { position: absolute; bottom: 14px; left: 0; right: 0; z-index: 3; display: flex; gap: 6px; justify-content: center; }
.pkg-gallery__dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55); transition: background .2s ease; }
.pkg-gallery__dots span.active { background: #fff; }
.pkg__count { position: absolute; top: 16px; right: 16px; z-index: 3; background: rgba(8,20,16,.6); color: #fff; font-size: .78rem; padding: 5px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- FAQ flip cubes ---------- */
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; grid-auto-rows: 250px; }
.faq-cube { position: relative; perspective: 1400px; cursor: pointer; }
.faq-cube--wide { grid-column: span 2; }
.faq-cube--big { grid-column: span 2; grid-row: span 2; }
.faq-cube__inner { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transition: transform .6s cubic-bezier(.4,.2,.2,1), width .5s ease; transform-style: preserve-3d; }
.faq-cube.flipped { z-index: 30; }
.faq-cube.flipped .faq-cube__inner { transform: rotateY(180deg); }
/* A single-place cube expands to two places while it flips open */
@media screen and (min-width: 769px) {
  .faq-cube.flipped:not(.faq-cube--wide) .faq-cube__inner { width: calc(200% + 20px); }
  .faq-cube.flipped.expand-left:not(.faq-cube--wide) .faq-cube__inner { left: auto; right: 0; }
}
.faq-cube__face {
  position: absolute; inset: 0; -webkit-backface-visibility: hidden; backface-visibility: hidden;
  border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column;
}
.faq-cube__front { background: var(--white); border: 1px solid var(--line); justify-content: space-between; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-cube:hover .faq-cube__front { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-cube__back { background: var(--green-dark); color: #fff; transform: rotateY(180deg); }
.faq-cube__num { font-family: var(--ff-head); font-weight: 700; font-size: 1.6rem; color: var(--gold); }
.faq-cube__q { font-family: var(--ff-head); font-weight: 600; font-size: 1.15rem; color: var(--green-dark); margin-top: 14px; }
.faq-cube__hint { margin-top: auto; padding-top: 16px; color: var(--gold-dark); font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.faq-cube__a { font-size: .98rem; line-height: 1.65; color: rgba(255,255,255,.9); overflow-y: auto; padding-right: 4px; }
.faq-cube__back .faq-cube__label { font-family: var(--ff-head); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.faq-cube__close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff; display: grid; place-items: center; font-size: 1rem; transition: background .2s ease;
}
.faq-cube__close:hover { background: rgba(255,255,255,.3); }

/* =========================================================
   Responsive
   ========================================================= */
@media screen and (max-width: 1200px) {
  .why__grid, .team__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 992px) {
  .section { padding: 72px 0; }
  .activities__grid, .packages__grid { grid-template-columns: repeat(2, 1fr); }
  .activities__track .activity-card { flex-basis: calc((100% - 26px) / 2); }
  .about-teaser__grid, .responsible__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .pkg { grid-template-columns: 1fr; }
  .pkg:nth-child(even) .pkg__media { order: 0; }
  .pkg__media { min-height: 240px; }
  .stats__grid, .values__grid, .blog-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { grid-column: span 2; }
  .testi { flex-basis: calc((100% - 26px) / 2); }
  .pkg-track .pkg { flex-basis: 84%; }
  .faq-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .faq-cube--wide, .faq-cube--big { grid-column: span 2; }
  .faq-cube--big { grid-row: span 2; }

  /* mobile nav */
  .header__nav ul, .header__nav .header__nav-inner-cta { display: none; }
  .header__menu { display: block; }
  .header__nav {
    position: fixed; inset: 0; z-index: 9999; flex-direction: column; justify-content: center;
    background: var(--green-dark); transform: translateX(100%); transition: transform .4s ease;
    gap: 0;
  }
  .header__nav.open { transform: translateX(0); }
  .header__nav.open ul {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .header__nav.open ul a { color: #fff; font-size: 1.25rem; padding: 12px 20px; }
  .header__nav .nav-close {
    display: grid; place-items: center; position: absolute; top: 22px; right: 22px;
    width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.14);
    color: #fff; font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
  .hero { min-height: auto; padding: 130px 0 36px; }
  /* Center the hero content on mobile */
  .hero__inner { text-align: center; }
  .hero__actions { justify-content: center; }
  /* Keep the three stats on one line, centered, shrinking the font as needed */
  .hero__stats { flex-wrap: nowrap; gap: clamp(12px, 4vw, 40px); justify-content: center; margin-top: 40px; }
  .hero__stat { flex: 0 0 auto; min-width: 0; }
  .hero__stat b { font-size: clamp(1.65rem, 7.6vw, 2.3rem); }
  .hero__stat > span { font-size: clamp(.74rem, 3.3vw, 1rem); white-space: nowrap; }
  .hero__scroll { display: none; }
  .why__grid, .team__grid, .values__grid, .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: span 1; }
  .page-hero { padding: 150px 0 64px; }
  .cta__box { padding: 48px 26px; }
  .header__cta .btn:not(.header__menu) { display: none; }

  /* Why choose — center the feature cards */
  .feature { text-align: center; }
  .feature__icon { margin-left: auto; margin-right: auto; }

  /* Numbers — tighten gap between figure and label */
  .stats__item p { margin-top: 5px; }

  /* Travel that gives back — center the content */
  .responsible__grid > div:first-child { text-align: center; }
  .responsible__pills { justify-content: center; }
  .responsible .eyebrow { justify-content: center; }
  .responsible .eyebrow::before { display: none; }

  /* Footer — Explore & Company side by side to keep it shorter */
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__top .footer__col:last-child { grid-column: 1 / -1; }
}

@media screen and (max-width: 576px) {
  .activities__grid, .packages__grid, .stats__grid, .gallery-grid { grid-template-columns: 1fr; }
  .activities__track .activity-card { flex-basis: 100%; }
  .testi { flex-basis: 100%; }
  .hero__actions .btn { width: 100%; }
  .form-row, .pkg__highlights { grid-template-columns: 1fr; }
  .pkg__body { padding: 28px; }
  .pkg-track .pkg { flex-basis: 90%; }
  .faq-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .faq-cube { min-height: 260px; }
  .faq-cube--wide, .faq-cube--big { grid-column: span 1; grid-row: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
