/* Geff Travel — layout & theme (Altezza-inspired, elevated) */
:root {
  --bg: #f6f4ef;
  --bg-muted: #ebe6dc;
  --surface: #ffffff;
  --ink: #1a1f1c;
  --ink-soft: #4a524c;
  --line: rgba(26, 31, 28, 0.12);
  --forest: #1e3d32;
  --forest-deep: #132922;
  --gold: #c9a227;
  --gold-soft: #e8d48a;
  --danger: #b42318;
  --success: #1d6b4a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(19, 41, 34, 0.12);
  --shadow-soft: 0 8px 30px rgba(19, 41, 34, 0.08);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --container: min(
    1180px,
    calc(
      100% - clamp(24px, 5vw, 48px) - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)
    )
  );
  --header-h: 96px;
  --top-bar-h: 52px;
  --wa-green: #25d366;
  --wa-green-mid: #1daa61;
  --wa-deep: #075e54;
  --topbar-glass: rgba(255, 255, 255, 0.07);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  color-scheme: light;
  -webkit-tap-highlight-color: rgba(30, 61, 50, 0.14);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  touch-action: manipulation;
}

/* Long words, emails, and URLs wrap on narrow phones */
p,
li,
dd,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Premium typography on homepage only */
.page-home {
  --font-sans: "Manrope", "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", "Fraunces", Georgia, serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--forest-deep);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  left: max(12px, env(safe-area-inset-left, 0px));
}

/* Top bar — premium trust + FX + WhatsApp */
.top-bar {
  position: relative;
  color: #eef4f0;
  font-size: 0.8125rem;
  background: linear-gradient(
    105deg,
    #0c1f1a 0%,
    #132922 38%,
    #163d32 72%,
    #0f241e 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.top-bar__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 120% at 12% -20%, rgba(201, 162, 39, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 100% at 88% 120%, rgba(37, 211, 102, 0.08), transparent 45%),
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(255, 255, 255, 0.04), transparent 60%);
  pointer-events: none;
}

.top-bar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  min-height: var(--top-bar-h);
  padding-block: 0.45rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  border-radius: 999px;
  background: var(--topbar-glass);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.12) inset,
    0 4px 20px rgba(0, 0, 0, 0.15);
}

.trust-pill__stars {
  display: inline-flex;
  gap: 2px;
  padding: 0.25rem 0.35rem;
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.35), rgba(201, 162, 39, 0.08));
  border: 1px solid rgba(232, 212, 138, 0.35);
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.2);
  animation: trust-glow 5s ease-in-out infinite;
}

@keyframes trust-glow {
  0%,
  100% {
    box-shadow: 0 2px 12px rgba(201, 162, 39, 0.2);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 2px 20px rgba(232, 212, 138, 0.35);
    filter: brightness(1.08);
  }
}

.trust-pill__star {
  display: block;
  color: var(--gold-soft);
  filter: drop-shadow(0 0 6px rgba(232, 212, 138, 0.45));
}

.trust-pill__copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.2;
}

.trust-pill__title {
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.trust-pill__title strong {
  color: var(--gold-soft);
  font-weight: 700;
}

.trust-pill__sub {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(232, 238, 233, 0.72);
}

.top-bar__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
}

/* Currency — glass segmented control */
.currency-dock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.35rem 0.2rem 0.55rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.currency-dock__caption {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding-right: 0.15rem;
}

.currency-dock__track {
  display: flex;
  gap: 3px;
  padding: 3px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
}

.currency-dock__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.38rem 0.55rem;
  min-height: 40px;
  min-width: max(2.85rem, 44px);
  justify-content: center;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.18s ease;
}

.currency-dock__btn:hover {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

.currency-dock__btn:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}

.currency-dock__btn.is-active {
  color: var(--forest-deep);
  background: linear-gradient(165deg, #fff 0%, #f0ebe3 100%);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(201, 162, 39, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.currency-dock__sym {
  font-size: 0.75rem;
  opacity: 0.95;
}

.currency-dock__btn.is-active .currency-dock__sym {
  color: var(--forest);
}

.currency-dock__code {
  font-size: 0.625rem;
  opacity: 0.9;
}

/* WhatsApp CTA */
.wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #fff;
  border-radius: 12px;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    filter 0.2s ease;
}

.wa-cta:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.wa-cta:focus-visible {
  outline: 2px solid var(--wa-green);
  outline-offset: 3px;
}

.wa-cta--topbar {
  min-height: 44px;
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  background: linear-gradient(145deg, var(--wa-green) 0%, var(--wa-green-mid) 48%, var(--wa-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 18px rgba(37, 211, 102, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.15) inset,
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.wa-cta--topbar:hover {
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.12) inset,
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.wa-cta__icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.wa-cta__svg {
  display: block;
}

.wa-cta__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  line-height: 1.15;
  padding-right: 0.15rem;
}

.wa-cta__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.wa-cta__number {
  font-size: 0.6875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  opacity: 0.92;
}

.wa-cta--compact,
.wa-cta--footer {
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: linear-gradient(145deg, var(--wa-green) 0%, #1fa855 50%, var(--wa-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}

.wa-cta--footer .wa-cta__icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
}

.wa-cta--footer .wa-cta__label {
  font-size: 0.8125rem;
}

.wa-cta--footer .wa-cta__number {
  font-size: 0.75rem;
}

@media (max-width: 640px) {
  .top-bar__inner {
    justify-content: center;
  }

  .top-bar__actions {
    width: 100%;
    justify-content: center;
  }

  .currency-dock__caption {
    display: none;
  }

  .currency-dock {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .wa-cta--topbar {
    width: 100%;
    justify-content: center;
  }

  .wa-cta--topbar .wa-cta__text {
    align-items: center;
    text-align: center;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 239, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
  max-width: min(100%, 22rem);
}

.logo:hover {
  color: var(--ink);
  text-decoration: none;
}

/* Official mark in a clear square frame */
.logo__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  padding: 7px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow:
    0 2px 14px rgba(19, 41, 34, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  transition:
    box-shadow 0.22s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.logo:hover .logo__frame {
  border-color: rgba(30, 61, 50, 0.22);
  box-shadow:
    0 6px 22px rgba(19, 41, 34, 0.12),
    0 0 0 1px rgba(255, 255, 255, 1) inset;
  transform: translateY(-1px);
}

.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  line-height: 1.2;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}

.logo__tag {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  max-width: 16rem;
}

.logo--footer .logo__frame {
  width: 108px;
  height: 108px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.logo--footer:hover .logo__frame {
  border-color: rgba(232, 212, 138, 0.45);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

@media (min-width: 901px) {
  .logo--footer .logo__frame {
    width: 120px;
    height: 120px;
    padding: 11px;
    border-radius: 20px;
  }
}

@media (max-width: 600px) {
  .logo--footer .logo__frame {
    width: 92px;
    height: 92px;
    padding: 8px;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle__bar::before {
  transform: translateY(-6px);
}

.nav-toggle__bar::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  transform: translateY(-2px) rotate(-45deg);
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--forest);
}

.site-nav a.is-active {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 var(--gold);
}

.site-nav__cta {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--forest);
  color: #fff !important;
}

.site-nav__cta:hover {
  background: var(--forest-deep);
  color: #fff !important;
}

@media (min-width: 901px) {
  .logo__frame {
    width: 92px;
    height: 92px;
    padding: 9px;
    border-radius: 16px;
  }

  .logo__name {
    font-size: 1.5rem;
  }

  .logo__tag {
    font-size: 0.875rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 84px;
  }

  .logo {
    order: 1;
  }

  .logo__frame {
    width: 68px;
    height: 68px;
    padding: 6px;
  }

  .logo__name {
    font-size: 1.2rem;
  }

  .logo__tag {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    order: 3;
    flex: 1 1 100%;
    margin-left: 0;
    position: fixed;
    inset: calc(var(--top-bar-h) + var(--header-h)) 0 auto 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 1rem max(1.25rem, env(safe-area-inset-right, 0px)) 1.25rem
      max(1.25rem, env(safe-area-inset-left, 0px));
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav__cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 900px);
  min-height: min(88dvh, 900px);
  display: flex;
  align-items: flex-end;
  padding-bottom: max(clamp(2rem, 6vw, 4rem), env(safe-area-inset-bottom, 0px));
  color: #f2f6f3;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #132922 url("../img/safari-zebras-sky.png") center / cover no-repeat;
  will-change: transform;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.35s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

video.hero__slide {
  background: #132922;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(19, 41, 34, 0.14) 0%,
    rgba(19, 41, 34, 0.38) 48%,
    rgba(19, 41, 34, 0.58) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.0625rem;
  opacity: 0.95;
  max-width: 56ch;
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  min-width: 140px;
}

.stat-pill__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.stat-pill__label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}

.hero__fine {
  margin-top: 1rem;
  font-size: 0.75rem;
  opacity: 0.65;
  max-width: 50ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  min-height: 2.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), #a88416);
  color: var(--forest-deep);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn--primary:hover {
  color: var(--forest-deep);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}

.btn--small {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.btn--light {
  background: #fff;
  color: var(--forest-deep);
}

.btn--light:hover {
  text-decoration: none;
  background: var(--bg);
}

.btn--outline {
  background: transparent;
  color: var(--forest-deep);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn--outline:hover {
  color: var(--forest-deep);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.95);
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--forest);
}

.text-link:hover {
  text-decoration: underline;
}

/* Dual CTA */
.dual-cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.dual-cta__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.dual-cta__card--alt {
  grid-template-columns: 1fr 1fr;
}

.dual-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dual-cta__body {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.dual-cta__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
}

.dual-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
}

@media (max-width: 820px) {
  .dual-cta {
    grid-template-columns: 1fr;
    margin-top: -2rem;
  }

  .dual-cta__card {
    grid-template-columns: 1fr;
  }

  .dual-cta__image {
    min-height: 200px;
  }
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.section--tight {
  padding-top: 0;
  padding-bottom: 2rem;
}

.section--muted {
  background: var(--bg-muted);
}

.section__head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section__head--row {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section__sub {
  margin: 0;
  color: var(--ink-soft);
  max-width: 54ch;
}

/* Why grid */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.why-card__icon {
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}

.why-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
}

/* Badges */
.badges__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.badge-tile {
  background: var(--forest);
  color: #e8eee9;
  padding: 1.25rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
}

.badge-tile strong {
  font-size: 1rem;
}

.badge-tile span {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .badges__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Impact */
.impact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.impact__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.impact__stats li {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-weight: 500;
}

.impact__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--forest);
  margin-right: 0.35rem;
}

@media (max-width: 768px) {
  .impact__grid {
    grid-template-columns: 1fr;
  }
}

/* Tour filters */
.tour-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tour-filters button {
  font: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tour-filters button.is-active {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tour-grid.is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s;
}

.tour-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.tour-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card__media img {
  transform: scale(1.05);
}

.tour-card__media--placeholder {
  background: linear-gradient(135deg, #1a3328 0%, #0f1f18 50%, #1a2e24 100%);
}

.tour-card__ph {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 8rem;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent);
}

.tour-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest-deep);
}

.tour-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.tour-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-family: var(--font-display);
}

.tour-card__meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
  flex: 1;
}

.tour-card__price {
  margin: 0;
  font-weight: 700;
  color: var(--forest);
}

.tour-card__pp {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.8125rem;
}

@media (max-width: 960px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
}

/* Day trips */
.day-trips__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.day-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.day-list li {
  padding: 0.85rem 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-weight: 500;
}

@media (max-width: 768px) {
  .day-trips__inner {
    grid-template-columns: 1fr;
  }
}

/* Reviews */
.review-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.review-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.review-slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card {
  flex: 0 0 100%;
  margin: 0;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  min-height: 200px;
}

.review-card p {
  font-size: 1.125rem;
  margin: 0 0 1rem;
  font-family: var(--font-display);
}

.review-card footer {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.review-slider__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.review-slider__nav:hover {
  border-color: var(--forest);
  color: var(--forest);
}

@media (max-width: 640px) {
  .review-slider {
    grid-template-columns: 1fr;
  }

  .review-slider__nav {
    display: none;
  }
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--forest), var(--forest-deep));
  color: #e8eee9;
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.cta-band--photo {
  position: relative;
  background: linear-gradient(120deg, rgba(18, 42, 32, 0.72), rgba(12, 28, 22, 0.78)),
    url("../img/savanna-golden-sunset.png") center / cover no-repeat;
  overflow: hidden;
}

.cta-band--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 28, 22, 0.38) 0%, rgba(12, 28, 22, 0.12) 55%, transparent 100%);
  pointer-events: none;
}

.cta-band--photo .cta-band__inner {
  position: relative;
  z-index: 1;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
}

.cta-band p {
  margin: 0;
  opacity: 0.9;
  max-width: 48ch;
}

/* First aid support band (above footer) */
.first-aid-band {
  position: relative;
  overflow: hidden;
  color: #f5f8ff;
  padding: clamp(2rem, 5vw, 3rem) 0;
  background:
    radial-gradient(120% 140% at 12% -10%, rgba(56, 189, 248, 0.35) 0%, transparent 45%),
    radial-gradient(90% 120% at 95% 110%, rgba(129, 140, 248, 0.28) 0%, transparent 42%),
    linear-gradient(128deg, #0b1020 0%, #111a34 45%, #1a2450 100%);
}

.first-aid-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(300deg, rgba(255, 255, 255, 0.06), transparent 40%);
}

.first-aid-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  box-shadow:
    0 16px 44px rgba(5, 10, 24, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.first-aid-band h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  letter-spacing: 0.01em;
  color: #ffffff;
}

.first-aid-band p {
  margin: 0;
  max-width: 62ch;
  opacity: 0.96;
  color: rgba(240, 246, 255, 0.96);
}

.first-aid-band .btn--light {
  color: #0f1a3a;
  background: linear-gradient(145deg, #ffffff, #e7eeff);
  box-shadow: 0 10px 28px rgba(10, 18, 40, 0.3);
}

.first-aid-band .btn--light:hover {
  background: linear-gradient(145deg, #f7faff, #dbe6ff);
  color: #0d1736;
}

.first-aid-band__tip {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(12, 20, 44, 0.5);
  border: 1px solid rgba(173, 198, 255, 0.3);
  box-shadow:
    0 10px 28px rgba(6, 11, 27, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.first-aid-band__tip-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.6rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bfe9ff;
  border: 1px solid rgba(159, 220, 255, 0.45);
  background: rgba(59, 130, 246, 0.16);
}

.first-aid-band__tip-copy {
  margin: 0;
  max-width: 88ch;
  font-size: 0.975rem;
  line-height: 1.6;
  color: rgba(234, 243, 255, 0.97);
}

.first-aid-band__tip-points {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.first-aid-band__tip-points li {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e9f2ff;
  background: rgba(30, 64, 175, 0.25);
  border: 1px solid rgba(191, 219, 254, 0.35);
}

.first-aid-band__tip-points li::before {
  content: "✓";
  margin-right: 0.42rem;
  color: #9ee7ff;
  font-weight: 700;
}

@media (max-width: 680px) {
  .first-aid-band__inner {
    border-radius: 14px;
  }

  .first-aid-band .btn--light {
    width: 100%;
  }

  .first-aid-band__tip {
    border-radius: 12px;
  }

  .first-aid-band__tip-points {
    flex-direction: column;
  }
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact__list li {
  margin-bottom: 0.5rem;
}

.contact__list .wa-cta {
  margin-top: 0.15rem;
}

.contact__list a {
  font-weight: 600;
  text-decoration: none;
}

.contact__list a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.field--full {
  grid-column: 1 / -1;
}

.field input,
.field textarea {
  /* 16px+ prevents iOS Safari zoom-on-focus; keeps Android readable */
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.45;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  width: 100%;
  max-width: 100%;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(30, 61, 50, 0.35);
  outline-offset: 1px;
}

.field--hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.alert--success {
  background: rgba(29, 107, 74, 0.12);
  color: var(--success);
  border: 1px solid rgba(29, 107, 74, 0.25);
}

.alert--error {
  background: rgba(180, 35, 24, 0.08);
  color: var(--danger);
  border: 1px solid rgba(180, 35, 24, 0.2);
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: #c8d2cc;
  padding: 3rem 0 max(0px, env(safe-area-inset-bottom, 0px));
  margin-top: 2rem;
}

.site-footer a {
  color: #e8eee9;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  color: var(--gold-soft);
}

.site-footer .logo:hover {
  text-decoration: none;
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

.logo--footer {
  color: #fff;
}

.logo--footer:hover {
  color: #fff;
}

.site-footer__tagline {
  margin: 0.75rem 0 1rem;
  max-width: 36ch;
  font-size: 0.9375rem;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social li {
  margin: 0;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  color: #e8eee9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.site-footer__social-link:hover {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(232, 212, 138, 0.45);
  transform: translateY(-2px);
}

.site-footer__social-link:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.site-footer__social-icon {
  display: block;
  flex-shrink: 0;
}

.site-footer__heading {
  color: #fff;
  font-size: 0.9375rem;
  margin: 0 0 0.75rem;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.site-footer__links li {
  margin-bottom: 0.45rem;
}

.site-footer__fine {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0 max(1.25rem, env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

.site-footer__bottom .site-footer__copy,
.site-footer__bottom .site-footer__legal {
  margin: 0;
}

.site-footer__credit {
  flex: 1 0 100%;
  margin: 0.35rem 0 0;
  padding-top: 0.85rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  opacity: 0.82;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__credit a {
  color: var(--gold-soft);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__credit a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Cross-device: phones, tablets, laptops ——— */
@media (max-width: 380px) {
  :root {
    --container: min(
      1180px,
      calc(
        100% - clamp(14px, 3.5vw, 36px) - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)
      )
    );
  }
}

@media (max-height: 480px) and (orientation: landscape) {
  :root {
    --top-bar-h: 46px;
    --header-h: 76px;
  }

  .hero {
    min-height: min(92dvh, 560px);
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }

  .guide-hero {
    min-height: min(72dvh, 480px);
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }

  .top-bar__inner {
    min-height: 0;
    padding-block: 0.3rem;
  }
}

@media (pointer: coarse) {
  .site-nav a {
    min-height: 48px;
  }

  .season-picker__tab {
    min-height: 44px;
    padding: 0.5rem 0.75rem;
  }

  .btn--small {
    min-height: 44px;
    padding: 0.55rem 1.15rem;
  }

  .text-link {
    padding: 0.2rem 0;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Toast */
.toast-region {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: var(--forest-deep);
  color: #fff;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 0.875rem;
  max-width: 320px;
  animation: toast-in 0.35s ease;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Safari guide page ——— */
.guide-hero {
  position: relative;
  min-height: min(62vh, 640px);
  min-height: min(62dvh, 640px);
  display: flex;
  align-items: flex-end;
  padding-bottom: max(clamp(2rem, 5vw, 3.5rem), env(safe-area-inset-bottom, 0px));
  color: #f2f6f3;
}

.guide-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.guide-hero__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.guide-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.35s ease-in-out;
  z-index: 0;
}

.guide-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.guide-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(19, 41, 34, 0.28) 0%,
    rgba(19, 41, 34, 0.62) 100%
  );
}

.guide-hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.guide-hero__crumb {
  font-size: 0.8125rem;
  margin: 0 0 0.75rem;
  opacity: 0.9;
}

.guide-hero__crumb a {
  color: #fff;
  text-decoration: none;
}

.guide-hero__crumb a:hover {
  text-decoration: underline;
}

.guide-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin: 0 0 0.5rem;
}

.guide-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.guide-hero__lead {
  font-size: 1.0625rem;
  opacity: 0.95;
  max-width: 52ch;
  margin: 0 0 1.5rem;
}

.guide-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.prose {
  max-width: 720px;
  font-size: 1.0625rem;
  color: var(--ink-soft);
}

.prose--center {
  margin-inline: auto;
  text-align: center;
  max-width: 62ch;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.how-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.how-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}

.how-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

.season-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.season-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.35rem;
  vertical-align: middle;
}

.season-dot--dry {
  background: #c9a227;
}

.season-dot--shoulder {
  background: #6b9080;
}

.season-dot--rain {
  background: #4a6fa5;
}

.season-picker__months {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.season-picker__tab {
  font: inherit;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.season-picker__tab:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.season-picker__tab.is-active {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.season-picker__tab--dry:not(.is-active) {
  border-color: rgba(201, 162, 39, 0.45);
}

.season-picker__tab--shoulder:not(.is-active) {
  border-color: rgba(107, 144, 128, 0.45);
}

.season-picker__tab--rain:not(.is-active),
.season-picker__tab--mixed:not(.is-active) {
  border-color: rgba(74, 111, 165, 0.4);
}

.season-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.season-panel[hidden] {
  display: none !important;
}

.season-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.season-panel__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.season-panel__temp {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
}

.season-panel p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 70ch;
}

.season-panel__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.season-panel__chips li {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--forest-deep);
}

.pack-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--surface);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.park-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .park-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .park-grid {
    grid-template-columns: 1fr;
  }
}

.park-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.park-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.park-card p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--forest);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ——— Packages section & tour detail ——— */
.packages__block {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.packages__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.packages__block-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 1.25rem;
}

.packages__block:has(.packages__block-lead) .packages__block-title {
  margin-bottom: 0.5rem;
}

.packages__block-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
}

.packages__subhead {
  font-size: 1.0625rem;
  margin: 2rem 0 1rem;
}

.packages__sample-intro {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.sample-itinerary-list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.packages__cta-row {
  margin: 1rem 0 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.25rem;
}

.package-grid--two {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
}

.package-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .package-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .package-grid--three {
    grid-template-columns: 1fr;
  }
}

.package-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--forest-deep);
}

.package-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.package-card:hover .package-card__media img {
  transform: scale(1.04);
}

.package-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
}

.package-card__intro {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  flex: 1;
}

.package-card__meta {
  font-size: 0.8125rem;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.package-card__highlights-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.35rem;
  color: var(--forest);
}

.package-card__highlights {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.package-card__actions {
  margin-top: auto;
}

.highlight-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.highlight-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
}

.highlight-card__meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.highlight-card__text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
  flex: 1;
}

/* Featured tour rows (list layout, no photo background) */
.featured-tour-rows-wrap {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}

.featured-tour-rows__legend {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(5rem, 0.72fr) minmax(6.5rem, 0.88fr) auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.65rem 1.15rem;
  background: var(--forest);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.featured-tour-rows__legend-cta {
  width: 7.5rem;
}

.featured-tour-row {
  display: block;
  background: var(--surface);
}

.featured-tour-row + .featured-tour-row {
  border-top: 1px solid var(--line);
}

.featured-tour-row__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(5rem, 0.72fr) minmax(6.5rem, 0.88fr) auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.85rem 1.15rem;
  color: var(--ink);
  transition: background 0.2s ease;
}

.featured-tour-row:hover .featured-tour-row__inner,
.featured-tour-row:focus-within .featured-tour-row__inner {
  background: var(--bg-muted);
}

.featured-tour-row__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.28;
  color: var(--forest-deep);
}

.featured-tour-row__dur,
.featured-tour-row__price {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.featured-tour-row__price {
  color: var(--forest);
}

.featured-tour-row__label {
  display: none;
}

.featured-tour-row__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .featured-tour-rows__legend {
    display: none;
  }

  .featured-tour-row__inner {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 1.15rem 1.1rem;
    align-items: stretch;
  }

  .featured-tour-row__dur,
  .featured-tour-row__price {
    font-size: 0.875rem;
    font-weight: 500;
  }

  .featured-tour-row__label {
    display: inline;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    margin-right: 0.4rem;
  }

  .featured-tour-row__cta {
    justify-self: stretch;
    text-align: center;
    margin-top: 0.35rem;
    width: 100%;
  }
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--surface);
}

.price-table th,
.price-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  background: var(--forest);
  color: #fff;
  font-weight: 600;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: var(--bg-muted);
}

.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .inc-grid {
    grid-template-columns: 1fr;
  }
}

.inc-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.inc-box--muted {
  background: var(--bg-muted);
}

.inc-box h4 {
  margin: 0 0 0.65rem;
  font-size: 0.9375rem;
}

.inc-box ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.tour-detail-hero {
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: #e8eee9;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

/* Full-bleed photo behind hero copy (e.g. Marangu) */
.tour-detail-hero--backdrop {
  position: relative;
  min-height: min(58vh, 620px);
  min-height: min(58dvh, 620px);
  padding: clamp(2.75rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 5rem);
  overflow: hidden;
  display: block;
  background: var(--forest-deep);
}

.tour-detail-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tour-detail-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.02);
}

.tour-detail-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(19, 41, 34, 0.78) 0%,
    rgba(19, 41, 34, 0.32) 42%,
    rgba(19, 41, 34, 0.68) 100%
  );
}

.tour-detail-hero--backdrop .tour-detail-hero__wrap {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  background: none;
  padding-block: 0;
}

.tour-detail-hero--backdrop .tour-detail-hero__crumb a {
  color: rgba(255, 255, 255, 0.92);
}

.tour-detail-hero__backdrop-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(0deg, rgba(10, 22, 18, 0.85) 0%, transparent 100%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .tour-detail-hero--backdrop {
    min-height: min(72vh, 560px);
    min-height: min(72dvh, 560px);
  }

  .tour-detail-hero__scrim {
    background: linear-gradient(180deg, rgba(19, 41, 34, 0.58) 0%, rgba(19, 41, 34, 0.78) 100%);
  }
}

.tour-detail-hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  min-height: min(52vh, 560px);
  min-height: min(52dvh, 560px);
  align-items: stretch;
}

.tour-detail-hero__visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.tour-detail-hero__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.tour-detail-hero__img-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(0deg, rgba(19, 41, 34, 0.92) 0%, transparent 100%);
}

.tour-detail-hero--split .tour-detail-hero__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2.75rem);
  background: linear-gradient(145deg, var(--forest-deep) 0%, var(--forest) 100%);
}

@media (max-width: 820px) {
  .tour-detail-hero--split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tour-detail-hero--split .tour-detail-hero__visual {
    min-height: 240px;
    max-height: 42vh;
  }

  .tour-detail-hero--split .tour-detail-hero__img {
    min-height: 240px;
    max-height: 42vh;
  }
}

.tour-detail-hero__crumb {
  font-size: 0.8125rem;
  margin: 0 0 1rem;
  opacity: 0.9;
}

.tour-detail-hero__crumb a {
  color: #fff;
  text-decoration: none;
}

.tour-detail-hero__crumb a:hover {
  text-decoration: underline;
}

.tour-detail-hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.tour-detail-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.tour-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.9375rem;
  margin: 0 0 1rem;
  opacity: 0.95;
}

.tour-detail-hero__price {
  font-size: 1.25rem;
  margin: 0 0 1.5rem;
}

.tour-detail-hero__price span {
  font-size: 0.875rem;
  opacity: 0.85;
  font-weight: 400;
}

.tour-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tour-detail__grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .tour-detail__grid {
    grid-template-columns: 1fr;
  }
}

.tour-detail__h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1.75rem 0 0.75rem;
}

.tour-detail__h2:first-child {
  margin-top: 0;
}

.tour-detail__intro {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.tour-detail__highlights {
  padding-left: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.tour-detail__itinerary {
  padding-left: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.tour-detail__aside {
  position: sticky;
  top: calc(var(--top-bar-h) + var(--header-h) + 12px);
}

.tour-detail__box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.tour-detail__box h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.tour-detail__box ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.tour-detail__box--muted {
  background: var(--bg-muted);
}

.tour-detail__book {
  width: 100%;
  text-align: center;
}

@media (min-width: 1440px) {
  :root {
    --container: min(
      1320px,
      calc(
        100% - clamp(40px, 7vw, 120px) - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)
      )
    );
  }
}

@media (min-width: 1920px) {
  :root {
    --container: min(
      1400px,
      calc(
        100% - clamp(48px, 8vw, 160px) - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)
      )
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .tour-detail-hero__bg-img {
    transform: none;
  }

  .trust-pill__stars {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .review-slider__track {
    transition: none;
  }

  .hero__slides {
    transform: none !important;
  }

  .hero__slide,
  .guide-hero__slide {
    transition: none;
  }
}

/* ——— Kilimanjaro guide page ——— */
.page-kili-guide .kili-layout {
  display: block;
  padding-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .page-kili-guide .kili-layout {
    display: grid;
    grid-template-columns: min(240px, 32%) 1fr;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
  }
}

.kili-toc {
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 1024px) {
  .kili-toc {
    position: sticky;
    top: calc(var(--top-bar-h) + var(--header-h) + 12px);
    margin-bottom: 0;
  }
}

.kili-toc__title {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.kili-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

@media (min-width: 1024px) {
  .kili-toc__list {
    flex-direction: column;
    gap: 0.15rem;
  }
}

.kili-toc__list a {
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
}

.kili-toc__list a:hover {
  text-decoration: underline;
  color: var(--forest-deep);
}

.kili-layout__main {
  min-width: 0;
}

.kili-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .kili-facts {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kili-fact {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.kili-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--forest-deep);
  margin-bottom: 0.25rem;
}

.kili-fact span {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.kili-zones {
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.kili-zones__bar {
  display: flex;
  min-height: 44px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.kili-zones__seg {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.35rem;
  flex: 1 1 0;
}

.kili-zones__seg--rain {
  background: linear-gradient(180deg, #2d6a4f, #1b4332);
  flex: 1.15;
}

.kili-zones__seg--heath {
  background: linear-gradient(180deg, #52796f, #354f52);
  flex: 1.1;
}

.kili-zones__seg--alpine {
  background: linear-gradient(180deg, #8a817c, #5c5552);
  flex: 0.95;
}

.kili-zones__seg--arctic {
  background: linear-gradient(180deg, #89c2d9, #468faf);
  flex: 0.85;
}

.kili-zones__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.kili-zones__list li {
  margin-bottom: 0.5rem;
}

.kili-packing {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 700px) {
  .kili-packing {
    grid-template-columns: 1fr 1fr;
  }
}

.kili-packing__col h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--forest-deep);
}

.kili-packing__col ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.kili-packing__col li {
  margin-bottom: 0.4rem;
}

.kili-diagram {
  margin: 0 0 1.25rem;
}

.kili-diagram__frame {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(19, 41, 34, 0.08);
}

.kili-diagram__frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.kili-diagram__caption {
  margin-top: 0.65rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.kili-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  align-items: center;
}

.kili-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.kili-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--c, var(--forest));
  flex-shrink: 0;
}

.route-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .route-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.route-card {
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.route-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest-deep);
}

.route-card__swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--rc, var(--forest));
  flex-shrink: 0;
}

.route-card__meta {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6d5a1a;
}

.route-card p {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.route-card p:last-child {
  margin-bottom: 0;
}

.route-card__jump {
  margin: 0.65rem 0 0 !important;
  font-size: 0.9rem;
}

/* Kilimanjaro day-by-day itineraries */
.kili-itin__source-note {
  max-width: 52rem;
}

.kili-itin-acc {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.kili-itin-details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.kili-itin-summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kili-itin-summary::-webkit-details-marker {
  display: none;
}

.kili-itin-summary::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(-45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.kili-itin-details[open] .kili-itin-summary::before {
  transform: rotate(45deg);
  margin-top: -2px;
}

.kili-itin-details__body {
  padding: 0 1.15rem 1.15rem;
  border-top: 1px solid var(--line);
}

.kili-itin__intro {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 52rem;
}

.kili-itin {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kili-itin__arrival {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: var(--bg-muted);
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.55;
  border: 1px solid var(--line);
}

.kili-itin__day {
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-muted);
}

.kili-itin__head {
  margin: 0 0 0.65rem;
}

.kili-itin__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6d5a1a;
  margin-bottom: 0.25rem;
}

.kili-itin__segment {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.35;
}

.kili-itin__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 0;
}

@media (min-width: 560px) {
  .kili-itin__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }
}

.kili-itin__stats div {
  margin: 0;
}

.kili-itin__stats dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin: 0 0 0.15rem;
}

.kili-itin__stats dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.kili-itin__blurb {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.kili-itin--tour {
  margin-top: 0.5rem;
}

.kili-itin--tour .kili-itin__day {
  background: var(--surface);
}

.tour-detail__intro--itin {
  margin-bottom: 0.5rem;
}

.tour-detail__meta-line {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.kili-cta-band {
  text-align: center;
  padding: 2.5rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--forest-deep), #0c1f1a);
  color: #e8eee9;
  margin-top: 0.5rem;
}

.kili-cta-band .section__title {
  color: #fff;
}

.kili-cta-band .section__sub {
  color: rgba(232, 238, 233, 0.88);
  margin-bottom: 1.25rem;
}

.kili-cta-band .guide-hero__actions {
  justify-content: center;
}
