:root {
  --green-950: #102d21;
  --green-900: #173b2a;
  --green-800: #23543a;
  --green-700: #2e6a45;
  --green-500: #4f8d54;
  --gold: #f2b742;
  --gold-700: #a66a13;
  --amber: #cf772b;
  --rust: #9f4a2c;
  --cream: #fff8e7;
  --sand: #ead7ae;
  --linen: #f7edd8;
  --white: #fffdf7;
  --ink: #201d18;
  --muted: #6b6253;
  --border: rgba(31, 45, 28, 0.14);
  --shadow: 0 22px 60px rgba(16, 45, 33, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(255, 248, 231, 0.68), rgba(247, 237, 216, 0.74)),
    linear-gradient(135deg, rgba(16, 45, 33, 0.08), rgba(16, 45, 33, 0.16)),
    url("assets/backgrounds/wildlife-background.webp") center/cover fixed;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(16, 45, 33, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(16, 45, 33, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: -1;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(16, 45, 33, 0.94);
  border-bottom: 1px solid rgba(242, 183, 66, 0.28);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: auto;
  height: 58px;
  padding: 3px;
  background: var(--white);
  border: 1px solid rgba(242, 183, 66, 0.5);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.73rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.site-nav > a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 9px 11px;
  color: rgba(255, 253, 247, 0.84);
  font-weight: 700;
  font-size: clamp(0.88rem, 0.78vw, 0.98rem);
  font-family: inherit;
  line-height: 1;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.is-current,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--green-950);
  background: var(--gold);
  outline: 0;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 80;
  display: none;
  width: min(380px, calc(100vw - 36px));
  padding: 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(242, 183, 66, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown.is-open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: grid;
  gap: 8px;
}

.dropdown-menu a {
  display: grid;
  gap: 4px;
  padding: 12px;
  color: var(--green-950);
  border-radius: var(--radius);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--linen);
  outline: 0;
}

.dropdown-menu small {
  color: var(--muted);
  line-height: 1.35;
}

.wild-link b {
  padding: 2px 6px;
  color: var(--green-950);
  font-size: 0.64rem;
  background: var(--gold);
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 253, 247, 0.3);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: end;
  min-height: 86vh;
  padding: clamp(120px, 13vw, 170px) clamp(18px, 5vw, 70px) clamp(42px, 8vw, 86px);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 45, 33, 0.96), rgba(16, 45, 33, 0.72) 42%, rgba(16, 45, 33, 0.28)),
    var(--hero-image, url("assets/safari/game-drive.webp")) center/cover;
  transform: scale(1.03);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(16, 45, 33, 0.68));
  z-index: -1;
}

.hero-copy {
  max-width: 760px;
}

.hero-simple {
  grid-template-columns: minmax(0, 1fr);
}

.hero-simple .hero-copy {
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: var(--green-950);
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--green-950);
  line-height: 1.15;
}

.hero-actions,
.panel-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-slider-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-slider-controls button {
  min-height: 34px;
  padding: 8px 12px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 253, 247, 0.12);
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: var(--radius);
}

.hero-slider-controls button.is-active {
  color: var(--green-950);
  background: var(--gold);
}

.btn,
.panel-actions a,
.contact-strip a,
.explore-card a,
.booking-actions button,
.contact-methods a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  font-weight: 900;
  border-radius: var(--radius);
}

.btn-primary,
.panel-actions a:first-child,
.booking-actions button:last-child,
.contact-methods a {
  color: var(--green-950);
  background: var(--gold);
}

.btn-secondary,
.panel-actions a:last-child,
.booking-actions button:first-child {
  color: var(--white);
  background: rgba(255, 253, 247, 0.12);
  border: 1px solid rgba(255, 253, 247, 0.42);
}

.hero-feature {
  display: grid;
  gap: 12px;
}

.feature-panel {
  position: relative;
  padding: 22px;
  background: rgba(255, 253, 247, 0.12);
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.feature-panel.is-active {
  background: rgba(242, 183, 66, 0.17);
  border-color: rgba(242, 183, 66, 0.58);
}

.feature-panel h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.25rem;
}

.feature-panel p {
  color: rgba(255, 253, 247, 0.82);
}

.panel-number {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
}

.animal-band {
  display: grid;
  place-items: center;
  min-height: 126px;
  color: var(--green-950);
  background: var(--gold);
  border-block: 1px solid rgba(16, 45, 33, 0.18);
}

.animal-band a {
  display: block;
  color: inherit;
  font-size: clamp(2.4rem, 7vw, 5.7rem);
  letter-spacing: 0;
}

.safari-showcase,
.gallery-section {
  background: rgba(255, 253, 247, 0.94);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.showcase-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-card-large {
  grid-row: span 2;
  min-height: 540px;
}

.showcase-card img,
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card::after,
.gallery-tile::after,
.gallery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 45, 33, 0.08), rgba(16, 45, 33, 0.86));
}

.showcase-card > div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.showcase-card h3,
.showcase-card p,
.gallery-tile h3,
.gallery-tile p,
.gallery-hero h1,
.gallery-hero p,
.gallery-cta h2,
.gallery-cta p {
  color: var(--white);
}

.showcase-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 8px;
  padding: 9px 14px;
  color: var(--green-950);
  font-weight: 900;
  background: var(--gold);
  border-radius: var(--radius);
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-section,
.values-section,
.locations-section {
  background: rgba(255, 253, 247, 0.9);
}

.services-section,
.partners-section {
  background: rgba(247, 237, 216, 0.93);
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 45, 33, 0.86), rgba(16, 45, 33, 0.44)),
    linear-gradient(rgba(16, 45, 33, 0.28), rgba(16, 45, 33, 0.7)),
    url("assets/backgrounds/contact-background.webp") center 54%/cover;
}

.contact-section .section-heading,
.contact-section .contact-layout {
  position: relative;
  z-index: 1;
}

.contact-section .section-heading h2,
.contact-section > .contact-layout > div:first-child > h3 {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.contact-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 247, 0.84);
}

.contact-section .contact-methods article,
.contact-section .office-card,
.contact-section .contact-form,
.contact-section .map-embed {
  background: rgba(255, 253, 247, 0.93);
  border: 1px solid rgba(255, 253, 247, 0.34);
  border-color: rgba(255, 253, 247, 0.34);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.contact-section .contact-methods article,
.contact-section .office-card,
.contact-section .contact-form {
  color: var(--ink);
}

.map-section,
.booking-section {
  background: rgba(23, 59, 42, 0.96);
}

.map-section h2,
.booking-section h2,
.map-section .section-heading p:not(.eyebrow),
.booking-section .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.about-copy,
.mission-grid article,
.service-grid article,
.value-grid article,
.partner-grid article,
.location-grid article,
.booking-panel,
.office-card,
.popular-conversions,
.legend,
.destination-stats article,
.explore-card,
.contact-methods article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-copy {
  padding: clamp(24px, 4vw, 42px);
  font-size: 1.05rem;
}

.license-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  color: var(--green-950);
  font-weight: 900;
  background: rgba(242, 183, 66, 0.32);
  border: 1px solid rgba(242, 183, 66, 0.65);
  border-radius: var(--radius);
}

.mission-grid {
  display: grid;
  gap: 18px;
}

.mission-grid article {
  padding: 28px;
}

.stat-grid,
.service-grid,
.value-grid,
.location-grid,
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 24px auto 0;
}

.stat-grid article,
.cred-grid article {
  padding: 24px;
  color: var(--white);
  text-align: center;
  background: var(--green-900);
  border: 1px solid rgba(242, 183, 66, 0.22);
  border-radius: var(--radius);
}

.stat-grid strong,
.cred-grid strong,
.trust-row strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.stat-grid span,
.cred-grid span,
.cred-grid small {
  display: block;
}

.service-grid,
.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article,
.value-grid article,
.location-grid article {
  padding: 26px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  font-size: 1.45rem;
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 920px;
  margin: 34px auto 0;
  padding: 18px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
}

.contact-strip p {
  margin: 0;
  font-weight: 900;
}

.contact-strip a {
  color: var(--green-950);
  background: var(--gold);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
}

.map-panel,
.map-aside {
  min-width: 0;
}

.country-tabs,
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.country-tabs button,
.category-tabs button,
.booking-steps button,
.destination-grid button,
.destination-grid a {
  cursor: pointer;
  border-radius: var(--radius);
}

.country-tabs button,
.category-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 253, 247, 0.09);
  border: 1px solid rgba(255, 253, 247, 0.24);
}

.country-tabs button.is-active,
.category-tabs button.is-active {
  color: var(--green-950);
  background: var(--gold);
}

.country-tabs em {
  font-style: normal;
  opacity: 0.8;
}

.map-box {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 18px;
  color: var(--green-950);
  border-bottom: 1px solid var(--border);
}

.map-topline span {
  color: var(--muted);
}

.map-canvas {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(rgba(239, 226, 191, 0.56), rgba(239, 226, 191, 0.56)),
    url("assets/safari/lake-bunyonyi.webp") center/cover;
}

.map-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(47, 106, 69, 0.55), rgba(242, 183, 66, 0.2)),
    radial-gradient(circle at 68% 28%, rgba(255, 253, 247, 0.45), transparent 26%);
}

.marker {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  padding: 0;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(242, 183, 66, 0.22), 0 12px 24px rgba(16, 45, 33, 0.3);
}

.marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 9px;
  height: 9px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}

.marker.rwanda {
  background: var(--rust);
}

.marker.is-selected {
  background: var(--green-500);
  box-shadow: 0 0 0 9px rgba(79, 141, 84, 0.26), 0 16px 30px rgba(16, 45, 33, 0.34);
}

.marker.is-hidden {
  display: none;
}

.marker-1 { left: 28%; top: 24%; }
.marker-2 { left: 48%; top: 36%; }
.marker-3 { left: 36%; top: 58%; }
.marker-4 { left: 62%; top: 68%; }
.marker-5 { left: 76%; top: 38%; }
.marker-6 { left: 70%; top: 58%; }
.marker-7 { left: 20%; top: 72%; }

.map-control {
  position: absolute;
  left: 18px;
  z-index: 3;
  width: 36px;
  height: 36px;
  color: var(--green-950);
  font-size: 1.2rem;
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--border);
}

.map-control.plus {
  top: 18px;
}

.map-control.minus {
  top: 58px;
}

.leaflet-credit {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 3;
  padding: 4px 8px;
  color: var(--green-950);
  font-size: 0.75rem;
  background: rgba(255, 253, 247, 0.86);
  border-radius: 4px;
}

.map-aside {
  display: grid;
  gap: 14px;
}

.legend,
.explore-card,
.popular-conversions {
  padding: 22px;
}

.legend p,
.explore-card p {
  margin-bottom: 9px;
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
}

.legend-dot.ug { background: var(--gold); }
.legend-dot.rw { background: var(--rust); }
.legend-dot.selected { background: var(--green-500); }

.destination-stats {
  display: grid;
  gap: 14px;
}

.destination-stats article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
}

.destination-stats span {
  color: var(--muted);
}

.destination-stats strong {
  color: var(--green-950);
  font-size: 1.6rem;
}

.explore-card {
  color: var(--white);
  background: var(--green-800);
  border-color: rgba(242, 183, 66, 0.22);
}

.explore-card h3,
.explore-card a {
  color: var(--white);
}

.explore-card a {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: rgba(255, 253, 247, 0.12);
  border: 1px solid rgba(255, 253, 247, 0.26);
}

.rates-section {
  background: rgba(255, 248, 231, 0.96);
}

.rates-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 0.9fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.compact {
  margin: 0;
  text-align: left;
}

.converter {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.converter label {
  display: grid;
  gap: 8px;
}

.converter span {
  color: rgba(255, 253, 247, 0.78);
  font-weight: 900;
}

.converter select,
.converter input,
.converter output {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--green-950);
  background: var(--white);
  border: 1px solid rgba(255, 253, 247, 0.32);
  border-radius: var(--radius);
}

.converter output {
  display: block;
  font-weight: 900;
}

.popular-conversions {
  display: grid;
  gap: 10px;
}

.popular-conversions article {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.popular-conversions article:last-child {
  border-bottom: 0;
}

.popular-conversions strong {
  color: var(--amber);
}

.value-grid article {
  min-height: 170px;
}

.partners-section {
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(16, 45, 33, 0.08), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(242, 183, 66, 0.22), transparent 28%);
}

.payment-section,
.stories-section {
  background: rgba(255, 248, 231, 0.96);
}

.payment-grid article,
.story-grid article,
.feature-grid article {
  min-height: 190px;
}

.feature-grid a,
.story-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 8px;
  padding: 8px 12px;
  color: var(--green-950);
  font-weight: 900;
  background: var(--gold);
  border-radius: var(--radius);
}

.partner-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.6fr);
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.partner-feature-card {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 460px;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(16, 45, 33, 0.98), rgba(35, 84, 58, 0.94)),
    url("assets/safari/vehicle-hire.webp") center/cover;
  border: 1px solid rgba(242, 183, 66, 0.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.partner-feature-card h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
}

.partner-feature-card p:not(.eyebrow) {
  color: rgba(255, 253, 247, 0.78);
}

.partner-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.partner-metrics span {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: rgba(255, 253, 247, 0.1);
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: var(--radius);
}

.partner-metrics strong {
  color: var(--gold);
  font-size: 1.65rem;
  line-height: 1;
}

.partner-metrics small {
  color: rgba(255, 253, 247, 0.72);
  font-weight: 900;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-grid .partner-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 244px;
  padding: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(242, 183, 66, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(247, 237, 216, 0.86));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.partner-card:nth-child(even) {
  background:
    radial-gradient(circle at 90% 10%, rgba(79, 141, 84, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(232, 241, 224, 0.9));
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(var(--gold), var(--green-500));
}

.partner-card:hover {
  border-color: rgba(242, 183, 66, 0.64);
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(16, 45, 33, 0.22);
}

.partner-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.partner-logo {
  display: grid;
  place-items: center;
  width: 104px;
  min-height: 68px;
  padding: 8px;
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.partner-logo img {
  width: 100%;
  max-width: 132px;
  max-height: 54px;
  object-fit: contain;
}

.partner-logo-wide {
  width: 132px;
}

.partner-logo-wide img {
  max-width: 100%;
  max-height: 58px;
  border-radius: 6px;
}

.partner-grid h3 {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.partner-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.partner-tags span,
.partner-card em,
.partner-card > strong {
  width: fit-content;
  padding: 4px 7px;
  font-size: 0.72rem;
  font-weight: 900;
  border-radius: 4px;
}

.partner-tags span {
  color: var(--green-950);
  background: rgba(79, 141, 84, 0.12);
}

.partner-card em {
  color: var(--green-950);
  font-style: normal;
  background: rgba(242, 183, 66, 0.42);
}

.partner-card > strong {
  margin-top: auto;
  color: var(--amber);
  background: rgba(207, 119, 43, 0.1);
}

.trust-row {
  max-width: 1180px;
  margin: 32px auto 0;
  padding: 26px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
}

.trust-row h3 {
  color: var(--white);
}

.trust-row > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-row article {
  padding: 16px;
  text-align: center;
  background: rgba(255, 253, 247, 0.08);
  border-radius: var(--radius);
}

.location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-grid a {
  color: var(--amber);
  font-weight: 900;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 24px;
}

.booking-steps button {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 92px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 253, 247, 0.1);
  border: 1px solid rgba(255, 253, 247, 0.2);
}

.booking-steps strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--green-950);
  background: var(--gold);
  border-radius: 50%;
}

.booking-steps button.is-active {
  background: rgba(242, 183, 66, 0.18);
  border-color: rgba(242, 183, 66, 0.72);
}

.booking-panel {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 36px);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.destination-grid button,
.destination-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  text-align: left;
  background: var(--linen);
  border: 2px solid transparent;
}

.destination-grid button.is-selected,
.destination-grid a.is-selected {
  background: rgba(242, 183, 66, 0.24);
  border-color: var(--gold);
}

.destination-grid > button > span:first-child,
.destination-grid > a > span:first-child {
  font-size: 2rem;
}

.destination-grid .package-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 14px;
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 900;
  background: var(--gold);
  border-radius: var(--radius);
}

.booking-actions {
  justify-content: space-between;
  margin-top: 20px;
}

.booking-actions button {
  border: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.extended-contact {
  margin-top: 24px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-methods article {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.contact-methods span {
  color: var(--amber);
  font-weight: 900;
}

.contact-methods strong {
  overflow-wrap: anywhere;
}

.contact-methods p {
  margin-bottom: 0;
  color: var(--muted);
}

.office-card {
  padding: 26px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 56px clamp(18px, 5vw, 70px) 28px;
  color: rgba(255, 253, 247, 0.9);
  background:
    linear-gradient(90deg, rgba(16, 45, 33, 0.78), rgba(16, 45, 33, 0.48)),
    linear-gradient(rgba(16, 45, 33, 0.44), rgba(16, 45, 33, 0.72)),
    url("assets/backgrounds/footer-background.webp") center 58%/cover;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(242, 183, 66, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(242, 183, 66, 0.16), transparent 30%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(160px, 0.7fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid h3,
.footer-grid strong {
  color: var(--white);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand .brand-logo {
  height: 72px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 247, 0.18);
}

.footer-bottom p {
  margin: 0;
}

.chat-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  font-size: 1.6rem;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(16, 45, 33, 0.28);
}

.assistant-button {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 60;
  min-height: 48px;
  padding: 0 16px;
  color: var(--green-950);
  font-weight: 900;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(16, 45, 33, 0.28);
}

.chat-float,
.assistant-button {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.floats-ready .chat-float,
body.floats-ready .assistant-button {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.contact-in-view .chat-float,
body.contact-in-view .assistant-button {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.gallery-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 68vh;
  padding: clamp(120px, 13vw, 170px) clamp(18px, 5vw, 70px) clamp(42px, 8vw, 86px);
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 45, 33, 0.92), rgba(16, 45, 33, 0.38)),
    url("assets/wildlife.jpg") center/cover;
}

.gallery-hero > div {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.gallery-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.98;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-tile > div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 20px;
}

.tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.tile-wide {
  grid-column: span 2;
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background:
    linear-gradient(rgba(16, 45, 33, 0.88), rgba(16, 45, 33, 0.88)),
    url("assets/safari/boat-cruise.webp") center/cover;
}

.gallery-cta > div {
  max-width: 760px;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 58vh;
  padding: clamp(118px, 12vw, 160px) clamp(18px, 5vw, 70px) clamp(42px, 7vw, 78px);
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.45)),
    url("assets/safari/game-drive.webp") center/cover;
}

.page-hero > div {
  max-width: 860px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 5.3rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 253, 247, 0.86);
  font-size: 1.1rem;
}

.hotel-hero { background-image: linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.42)), url("assets/safari/lake-bunyonyi.webp"); }
.transfer-hero { background-image: linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.42)), url("assets/safari/vehicle-hire.webp"); }
.car-hero { background-image: linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.42)), url("assets/safari/vehicle-hire.webp"); }
.packages-hero { background-image: linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.42)), url("assets/safari/gorilla.webp"); }
.rwanda-hero { background-image: linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.38)), url("assets/packages/rwanda.webp"); }
.customer-hero { background-image: linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.42)), url("assets/backgrounds/contact-background.webp"); }
.admin-hero,
.platform-hero { background-image: linear-gradient(90deg, rgba(16, 45, 33, 0.96), rgba(16, 45, 33, 0.58)), url("assets/backgrounds/wildlife-background.webp"); }

.platform-section,
.admin-preview,
.service-faq-section {
  background: rgba(255, 253, 247, 0.94);
}

.platform-split,
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  background: rgba(247, 237, 216, 0.95);
}

.dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.platform-card,
.listing-card,
.package-grid article,
.feature-grid article,
.payment-grid article,
.story-grid article,
.assistant-panel,
.newsletter-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.platform-card {
  padding: clamp(22px, 4vw, 34px);
}

.platform-card.wide {
  grid-column: 1 / -1;
}

.detail-grid,
.faq-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.detail-grid article,
.solution-grid article,
.faq-grid details,
.custom-solution-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-grid article,
.solution-grid article,
.faq-grid details {
  padding: 22px;
}

.detail-grid h3,
.solution-grid h3,
.faq-grid summary {
  color: var(--green-950);
}

.detail-grid p,
.solution-grid p,
.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-grid p {
  margin-top: 12px;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.filter-row label,
.quote-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 900;
}

.filter-row select,
.quote-form input,
.quote-form select,
.quote-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.quote-form textarea,
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.listing-grid,
.package-grid,
.feature-grid,
.payment-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.listing-card {
  overflow: hidden;
}

.listing-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.listing-card > div,
.package-grid article,
.feature-grid article,
.payment-grid article,
.story-grid article {
  padding: 22px;
}

.listing-card ul,
.package-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.listing-card li {
  padding: 4px 8px;
  color: var(--green-950);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--linen);
  border-radius: 4px;
}

.listing-card a,
.package-grid a,
.admin-table a,
.admin-table button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 10px;
  padding: 8px 12px;
  color: var(--green-950);
  font-weight: 900;
  background: var(--gold);
  border: 0;
  border-radius: var(--radius);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.calendar-grid span,
.calendar-grid button {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 6px;
}

.calendar-grid span {
  color: var(--muted);
  font-weight: 900;
}

.calendar-grid button {
  color: var(--green-950);
  background: var(--linen);
  border: 1px solid var(--border);
}

.calendar-grid .is-selected {
  background: var(--gold);
}

.calendar-grid .is-blocked {
  color: rgba(32, 29, 24, 0.38);
  background: rgba(159, 74, 44, 0.15);
  text-decoration: line-through;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 14px;
  background: var(--linen);
  border-radius: var(--radius);
}

.feature-list span {
  color: var(--muted);
}

.route-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.route-pills li {
  padding: 8px 10px;
  color: var(--green-950);
  font-weight: 900;
  background: rgba(242, 183, 66, 0.26);
  border: 1px solid rgba(242, 183, 66, 0.52);
  border-radius: var(--radius);
}

.quote-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  background: var(--linen);
  border-radius: var(--radius);
}

.quote-total strong {
  color: var(--amber);
  font-size: 1.8rem;
}

.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-grid article {
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: 0;
  overflow: hidden;
}

.package-grid article img {
  width: 100%;
  height: 174px;
  object-fit: cover;
  background: var(--linen);
}

.package-grid article > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.package-grid article p {
  margin: 0;
}

.package-grid article a {
  align-self: flex-start;
  margin-top: auto;
}

.package-grid article.is-highlighted {
  border-color: rgba(177, 121, 32, 0.72);
  box-shadow: 0 18px 44px rgba(87, 57, 22, 0.18);
}

.booking-steps.mini {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 14px 0;
}

.booking-steps.mini button {
  min-height: 76px;
  color: var(--green-950);
  background: var(--linen);
  border-color: var(--border);
}

.admin-table {
  display: grid;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
}

.admin-table > div {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.admin-table > div:first-child {
  color: var(--white);
  background: var(--green-900);
}

.map-embed {
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.assistant-panel,
.newsletter-panel {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 70;
  display: none;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
}

.assistant-panel.is-open,
.newsletter-panel.is-open {
  display: grid;
  gap: 12px;
}

.assistant-messages {
  display: grid;
  gap: 8px;
  max-height: 240px;
  overflow: auto;
}

.assistant-messages p {
  margin: 0;
  padding: 10px;
  background: var(--linen);
  border-radius: var(--radius);
}

.assistant-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.assistant-actions button,
.newsletter-panel button {
  min-height: 38px;
  color: var(--green-950);
  font-weight: 900;
  background: var(--gold);
  border: 0;
  border-radius: var(--radius);
}

.newsletter-panel input {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.file-structure {
  max-width: 920px;
  margin: 0 auto;
  overflow: auto;
}

.file-structure pre {
  margin: 0;
  color: var(--white);
  background: var(--green-950);
  border-radius: var(--radius);
  padding: 22px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-showcase {
    grid-template-columns: 1fr;
  }

  .partner-feature-card {
    position: relative;
    top: auto;
  }

  .service-grid,
  .value-grid,
  .partner-grid,
  .stat-grid,
  .trust-row > div,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-card-large {
    grid-column: span 2;
    min-height: 420px;
  }

  .map-layout,
  .rates-layout,
  .contact-layout,
  .about-grid,
  .platform-split {
    grid-template-columns: 1fr;
  }

  .map-aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .listing-grid,
  .feature-grid,
  .payment-grid,
  .story-grid,
  .package-grid,
  .detail-grid,
  .faq-grid,
  .solution-grid,
  .filter-row,
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--green-950);
    border: 1px solid rgba(242, 183, 66, 0.32);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle,
  .site-nav > a {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 6px;
    transform: none;
    box-shadow: none;
  }

  .hero {
    min-height: 82vh;
    padding-top: 116px;
  }

  .hero::before {
    background:
      linear-gradient(rgba(16, 45, 33, 0.92), rgba(16, 45, 33, 0.58)),
      url("assets/safari/game-drive.webp") center/cover;
  }

  .hero-feature,
  .service-grid,
  .value-grid,
  .partner-showcase,
  .partner-grid,
  .stat-grid,
  .location-grid,
  .cred-grid,
  .detail-grid,
  .faq-grid,
  .solution-grid,
  .destination-grid,
  .contact-methods,
  .map-aside,
  .footer-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card-large {
    grid-column: auto;
    min-height: 360px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .tile-large,
  .tile-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-canvas {
    min-height: 410px;
  }

  .listing-grid,
  .feature-grid,
  .payment-grid,
  .story-grid,
  .package-grid,
  .filter-row,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .admin-table > div {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    height: 48px;
  }

  .brand-text {
    max-width: 138px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section,
  .hero {
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 92px;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  h1,
  .gallery-hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .hero .eyebrow {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-slider-controls button {
    flex: 1 1 140px;
  }

  .hero-actions,
  .panel-actions,
  .contact-strip,
  .booking-actions {
    flex-direction: column;
  }

  .btn,
  .panel-actions a,
  .contact-strip a,
  .booking-actions button {
    width: 100%;
  }

  .country-tabs button,
  .category-tabs button {
    flex: 1 1 auto;
  }

  .assistant-button {
    left: 16px;
    right: auto;
    bottom: 84px;
    max-width: calc(100vw - 32px);
    white-space: normal;
  }

  .assistant-panel,
  .newsletter-panel {
    left: 16px;
    right: 16px;
    bottom: 18px;
    width: auto;
    max-width: none;
  }

  .chat-float {
    right: 16px;
    bottom: 16px;
  }
}

.nav-dropdown-toggle.is-current {
  color: var(--green-950);
  background: var(--gold);
}

.services-hero {
  background-image:
    linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.42)),
    url("assets/safari.jpg");
}

.wild-hero {
  background-image:
    linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.38)),
    url("assets/nature.jpg");
}

.safari-gallery-hero {
  background-image:
    linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.38)),
    url("assets/safari/gorilla.webp");
}

.about-hero {
  background-image:
    linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.42)),
    url("assets/safari/culture.webp");
}

.destinations-hero {
  background-image:
    linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.38)),
    url("assets/safari/game-drive.webp");
}

.services-page-section,
.account-section {
  background: rgba(255, 253, 247, 0.94);
}

.custom-solution-panel {
  max-width: 980px;
  margin: 28px auto 0;
  padding: clamp(24px, 4vw, 42px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(247, 237, 216, 0.96)),
    var(--white);
}

.custom-solution-panel h2 {
  margin-bottom: 14px;
}

.custom-solution-panel p:last-child {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.service-page-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-page-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-page-grid article > div {
  padding: 22px;
}

.service-page-grid a,
.destination-detail a,
.destination-pills button,
.package-select-wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 10px;
  padding: 8px 12px;
  color: var(--green-950);
  font-weight: 900;
  background: var(--gold);
  border: 0;
  border-radius: var(--radius);
}

.service-split {
  align-items: center;
}

.service-photo-card {
  overflow: hidden;
  padding: 0;
}

.service-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.destination-select-panel {
  display: grid;
  gap: 18px;
}

.destination-select-label {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-weight: 900;
}

.destination-select-label select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--green-950);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.destination-summary {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: 22px;
  overflow: hidden;
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.destination-summary img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.destination-summary > div {
  align-self: center;
  padding: 24px 24px 24px 0;
}

.package-select-wrap {
  max-width: 680px;
  margin: 0 auto 24px;
  padding: 18px;
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.wild-map-section {
  padding-top: clamp(54px, 7vw, 90px);
}

.destination-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.destination-pills button {
  margin-top: 0;
  cursor: pointer;
}

.destination-pills button.is-selected {
  color: var(--white);
  background: var(--green-700);
}

.destination-pills button.is-hidden {
  display: none;
}

.destination-detail {
  display: grid;
  gap: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.destination-detail img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.destination-detail > :not(img) {
  margin-left: 20px;
  margin-right: 20px;
}

.destination-detail ul {
  display: grid;
  gap: 8px;
  margin: 0 20px;
  padding-left: 18px;
}

.destination-detail a {
  margin: 0 20px 20px;
}

.marker-8 { left: 58%; top: 22%; }
.marker-9 { left: 34%; top: 18%; }
.marker-10 { left: 44%; top: 52%; }
.marker-11 { left: 49%; top: 63%; }
.marker-12 { left: 39%; top: 58%; }
.marker-13 { left: 64%; top: 41%; }

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.customer-dashboard {
  max-width: 1180px;
  margin: 0 auto;
}

.customer-dashboard.is-locked {
  display: none;
}

.chat-float {
  color: var(--green-950);
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .service-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-grid,
  .destination-summary {
    grid-template-columns: 1fr;
  }

  .destination-summary > div {
    padding: 0 22px 22px;
  }
}

@media (max-width: 780px) {
  .service-page-grid {
    grid-template-columns: 1fr;
  }

  .destination-detail {
    grid-column: 1 / -1;
  }
}

.hero-lede {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.hero-proof span {
  padding: 8px 11px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(255, 253, 247, 0.12);
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 999px;
}

.trust-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  color: var(--white);
  background: var(--green-950);
}

.trust-proof article {
  display: grid;
  gap: 7px;
  min-height: 138px;
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.08), rgba(255, 253, 247, 0.02));
}

.trust-proof strong {
  color: var(--gold);
  font-size: 1.28rem;
}

.trust-proof span {
  color: rgba(255, 253, 247, 0.78);
}

.safari-finder-section,
.destination-showcase-section,
.travel-style-section,
.process-section {
  background: rgba(255, 248, 231, 0.96);
}

.safari-finder {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.75fr 0.55fr auto;
  gap: 12px;
  align-items: end;
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.safari-finder label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 900;
}

.safari-finder select,
.safari-finder input {
  min-height: 48px;
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.safari-finder .btn {
  min-height: 48px;
  white-space: nowrap;
}

.activity-grid,
.destination-showcase-grid,
.signature-grid,
.travel-style-grid,
.why-grid,
.process-grid {
  display: grid;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.activity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.activity-grid article {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.activity-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 45, 33, 0.08), rgba(16, 45, 33, 0.86));
}

.activity-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.activity-grid article:hover img {
  transform: scale(1.05);
}

.activity-grid div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 22px;
}

.activity-grid h3,
.activity-grid p {
  color: var(--white);
}

.activity-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 8px;
  padding: 8px 12px;
  color: var(--green-950);
  font-weight: 900;
  background: var(--gold);
  border-radius: var(--radius);
}

.company-preview-section {
  background:
    linear-gradient(90deg, rgba(16, 45, 33, 0.95), rgba(16, 45, 33, 0.78)),
    url("assets/safari/culture.webp") center/cover;
}

.company-preview-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
  color: var(--white);
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.company-preview-panel h2,
.company-preview-panel p {
  color: var(--white);
}

.company-preview-panel > div:first-child {
  max-width: 740px;
}

.company-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.destination-showcase-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.destination-showcase-grid article {
  display: grid;
  align-content: end;
  min-height: 210px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 45, 33, 0.08), rgba(16, 45, 33, 0.9)),
    url("assets/safari/game-drive.webp") center/cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.destination-showcase-grid article:nth-child(2),
.destination-showcase-grid article:nth-child(5) {
  background-image:
    linear-gradient(180deg, rgba(16, 45, 33, 0.08), rgba(16, 45, 33, 0.9)),
    url("assets/safari/boat-cruise.webp");
}

.destination-showcase-grid article:nth-child(1),
.destination-showcase-grid article:nth-child(4),
.destination-showcase-grid article:nth-child(6) {
  background-image:
    linear-gradient(180deg, rgba(16, 45, 33, 0.08), rgba(16, 45, 33, 0.9)),
    url("assets/safari/gorilla.webp");
}

.destination-showcase-grid span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.destination-showcase-grid strong {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.25;
}

.signature-grid,
.travel-style-grid,
.why-grid,
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.travel-style-grid article {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.travel-style-grid img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.travel-style-grid article:hover img {
  transform: scale(1.04);
}

.travel-style-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 45, 33, 0.05), rgba(16, 45, 33, 0.88));
}

.travel-style-grid div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 9px;
  padding: 22px;
}

.travel-style-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.travel-style-grid h3,
.travel-style-grid p {
  color: var(--white);
  margin-bottom: 0;
}

.travel-style-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 8px;
  padding: 8px 12px;
  color: var(--green-950);
  font-weight: 900;
  background: var(--gold);
  border-radius: var(--radius);
}

.signature-grid article,
.why-grid article,
.process-grid article,
.responsible-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signature-grid article,
.why-grid article,
.process-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 250px;
  padding: 24px;
}

.signature-grid article {
  border-top: 5px solid var(--gold);
}

.signature-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: 8px;
  padding: 8px 13px;
  color: var(--green-950);
  font-weight: 900;
  background: var(--gold);
  border-radius: var(--radius);
}

.why-grid strong,
.process-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--green-950);
  font-weight: 900;
  background: var(--gold);
  border-radius: 50%;
}

.responsible-section {
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(48px, 7vw, 84px);
  background:
    linear-gradient(90deg, rgba(16, 45, 33, 0.95), rgba(16, 45, 33, 0.74)),
    url("assets/safari/gorilla.webp") center/cover;
}

.responsible-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
}

.responsible-panel h2 {
  margin-top: 0;
}

/* 2026 destination, contact, journal, and field-gallery additions */
.call-float {
  position: fixed;
  right: 92px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--green-900);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(16, 45, 33, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.floats-ready .call-float {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.contact-in-view .call-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.email-transition-notice {
  max-width: 760px;
  margin: 18px 0 0;
  padding: 14px 16px;
  color: var(--green-950);
  background: rgba(242, 183, 66, 0.2);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.email-shift-note {
  max-width: 280px;
  padding-top: 8px;
  font-size: 0.82rem;
  line-height: 1.45;
  border-top: 1px solid rgba(255, 253, 247, 0.24);
}

.footer-grid a {
  overflow-wrap: anywhere;
}

.expanded-destinations-section,
.community-gallery-section,
.blog-feed-section {
  background: rgba(255, 253, 247, 0.96);
}

.destination-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
}

.destination-feature-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1.22fr);
  min-height: 330px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.destination-feature-card > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.destination-feature-card > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 24px;
}

.destination-feature-card span,
.journal-preview-grid span,
.blog-article span {
  color: var(--gold-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.destination-feature-card h3 {
  margin: 8px 0 12px;
}

.destination-feature-card > div > a,
.journal-preview-grid a,
.blog-article a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: auto;
  padding: 8px 13px;
  color: var(--green-950);
  font-weight: 900;
  background: var(--gold);
  border-radius: var(--radius);
}

.photo-credit {
  display: block;
  margin-top: 10px;
  font-size: 0.74rem;
  color: var(--muted);
}

.photo-credit a {
  text-decoration: underline;
}

.journal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.journal-preview-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.journal-preview-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.journal-preview-grid div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-height: 280px;
  padding: 22px;
}

.journal-preview-grid h3 {
  margin: 8px 0 10px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.wildlife-photo-grid {
  column-count: 4;
  column-gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

.wildlife-photo-grid figure {
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(16, 45, 33, 0.12);
}

.wildlife-photo-grid a {
  display: block;
  overflow: hidden;
}

.wildlife-photo-grid img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 220ms ease;
}

.wildlife-photo-grid a:hover img {
  transform: scale(1.025);
}

.wildlife-photo-grid figcaption {
  padding: 12px 14px 14px;
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
}

.blog-hero {
  background-image:
    linear-gradient(90deg, rgba(16, 45, 33, 0.94), rgba(16, 45, 33, 0.4)),
    url("assets/wildlife/wildlife-37.jpg");
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.featured-story > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.featured-story > div {
  align-self: center;
  padding: clamp(26px, 5vw, 54px);
}

.featured-story time,
.blog-article time {
  display: block;
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-feed {
  display: grid;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.blog-article {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  scroll-margin-top: 110px;
}

.blog-article:nth-child(even) {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.blog-article:nth-child(even) > img {
  grid-column: 2;
  grid-row: 1;
}

.blog-article > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.blog-article > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(24px, 4vw, 44px);
}

.blog-article h2 {
  margin: 0 0 14px;
}

@media (max-width: 1050px) {
  .destination-feature-card {
    grid-template-columns: 1fr;
  }

  .destination-feature-card > img {
    height: 300px;
    min-height: 0;
  }

  .wildlife-photo-grid {
    column-count: 3;
  }
}

@media (max-width: 780px) {
  .destination-feature-grid,
  .journal-preview-grid {
    grid-template-columns: 1fr;
  }

  .featured-story,
  .blog-article,
  .blog-article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .blog-article:nth-child(even) > img {
    grid-column: auto;
    grid-row: auto;
  }

  .featured-story > img,
  .blog-article > img {
    min-height: 320px;
    max-height: 440px;
  }

  .wildlife-photo-grid {
    column-count: 2;
  }
}

@media (max-width: 520px) {
  .wildlife-photo-grid {
    column-count: 1;
  }

  .call-float {
    right: 88px;
  }
}

.responsible-list {
  display: grid;
  gap: 12px;
}

.responsible-list p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 14px;
  background: var(--linen);
  border-radius: var(--radius);
}

.responsible-list span {
  color: var(--muted);
}

.trip-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 1180px) {
  .safari-finder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safari-finder .btn {
    grid-column: 1 / -1;
  }

  .destination-showcase-grid,
  .signature-grid,
  .travel-style-grid,
  .why-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .activity-grid,
  .destination-showcase-grid,
  .signature-grid,
  .travel-style-grid,
  .why-grid,
  .process-grid,
  .responsible-panel,
  .safari-finder,
  .trust-proof {
    grid-template-columns: 1fr;
  }

  .trip-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    flex: 1 1 140px;
    text-align: center;
  }

  .company-preview-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .activity-grid article,
  .activity-grid img,
  .travel-style-grid article,
  .travel-style-grid img {
    min-height: 250px;
  }
}
