@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Jost:wght@400;500;600;700&display=swap");

:root {
  --olive-950: #18200d;
  --olive-900: #243014;
  --olive-800: #303f1b;
  --olive-700: #435325;
  --amber-600: #de850f;
  --amber-500: #f2a01d;
  --sand-100: #f8f2e7;
  --sand-200: #efe3d2;
  --ink: #171b14;
  --muted: #62675d;
  --line: rgba(23, 27, 20, 0.12);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(24, 32, 13, 0.18);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--amber-600) var(--sand-100);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--sand-100);
}

*::-webkit-scrollbar-thumb {
  border: 2px solid var(--sand-100);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber-500), var(--amber-600));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
select,
textarea {
  font: inherit;
}

.topbar {
  background: linear-gradient(90deg, var(--olive-950), var(--olive-800));
  color: var(--white);
  font-size: 0.9rem;
}

.topbar__inner,
.site-header__inner,
.hero__inner,
.section,
.final-cta,
.site-footer {
  width: min(100% - 48px, 1400px);
  margin-inline: auto;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__reviews,
.topbar__links,
.topbar__links a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__links {
  gap: 10px;
}

.topbar__links a:not(:first-child) {
  padding-left: 0;
  border-left: 0;
}

.stars {
  display: inline-flex;
  gap: 4px;
  color: var(--amber-500);
}

.stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.topbar__links a {
  width: 30px;
  height: 30px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.topbar__links a:hover {
  color: var(--amber-500);
  background: rgba(255, 255, 255, 0.14);
}

.topbar__links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.topbar__links img,
.contact-options img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 230px minmax(520px, 1fr) auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 200px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(26px, 3.5vw, 52px);
  font-size: 1rem;
}

.primary-nav a,
.nav-dropdown summary {
  position: relative;
  padding: 12px 0;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::before {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 172px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(24, 32, 13, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown[open] .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover {
  background: var(--sand-100);
}

.primary-nav > a::after,
.nav-dropdown summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--amber-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.nav-dropdown summary:hover::after,
.nav-dropdown summary:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button--orange {
  color: var(--white);
  background: var(--amber-600);
  box-shadow: 0 12px 24px rgba(222, 133, 15, 0.24);
}

.header-cta {
  min-height: 58px;
  gap: 12px;
  padding: 0 30px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 24px rgba(222, 133, 15, 0.18);
}

.arrow-pill .icon-badge {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--amber-600);
  background: var(--white);
  font-weight: 900;
}

.arrow-pill svg,
.arrow-link svg,
.image-card a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-link svg,
.image-card a svg {
  width: 34px;
  height: 34px;
  margin-right: 8px;
  padding: 8px;
  border-radius: 50%;
  color: var(--amber-600);
  background: var(--white);
}

.button--green {
  width: 100%;
  color: var(--white);
  background: var(--olive-900);
}

.button--outline {
  min-height: 52px;
  color: var(--olive-900);
  border: 1px solid rgba(36, 48, 20, 0.24);
  background: var(--white);
}

.button--outline:hover {
  color: var(--white);
  background: var(--olive-900);
}

.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.button--contact {
  color: var(--olive-950);
  border: 1px solid rgba(24, 32, 13, 0.18);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:hover {
  background: #c8730b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 14px 32px rgba(222, 133, 15, 0.28);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-enquire {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(600px, calc(100vh - 168px), 720px);
  display: flex;
  align-items: center;
  isolation: isolate;
  background-image: url("assets/hero-safari.webp");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 244, 224, 0.86) 0%, rgba(255, 244, 224, 0.56) 40%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(0deg, rgba(19, 24, 12, 0.22), rgba(19, 24, 12, 0.04));
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 410px);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  padding-block: clamp(56px, 7vw, 92px);
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  background: var(--olive-800);
}

.hero-marquee div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 54px;
  min-height: 70px;
  padding-inline: 24px;
  animation: marquee 28s linear infinite;
}

.hero-marquee span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-marquee svg {
  width: 18px;
  height: 18px;
  color: var(--amber-500);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8d5a08;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  font-family: var(--serif);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 0.95;
}

.hero h2 {
  margin: 16px 0 0;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  line-height: 1.05;
}

.accent-line {
  display: block;
  width: 54px;
  height: 3px;
  margin: 22px 0;
  background: var(--amber-600);
}

.hero p:not(.eyebrow) {
  max-width: 570px;
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.42rem);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.inquiry-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.trip-planner {
  max-width: 460px;
  padding: 24px;
  border: 1px solid rgba(36, 48, 20, 0.13);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 64px rgba(24, 32, 13, 0.22);
}

.inquiry-card h3 {
  margin: 0 0 22px;
  font-size: 1.35rem;
}

.planner-head {
  display: block;
  margin-bottom: 16px;
}

.planner-head .eyebrow {
  margin-bottom: 8px;
  color: #8d5a08;
}

.planner-head h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  line-height: 1.05;
}

.planner-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.inquiry-card label {
  display: block;
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.inquiry-card label:first-of-type {
  margin-top: 0;
}

.inquiry-card select,
.inquiry-card textarea,
.planner-input,
.inquiry-card input {
  width: 100%;
  border: 1px solid #cfcfc8;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  outline: 0;
}

.planner-input {
  min-height: 60px;
  display: grid;
  grid-template-columns: 1fr 60px;
  align-items: center;
  overflow: hidden;
}

.planner-input input {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.planner-input span {
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-800);
  background: var(--sand-200);
  font-size: 1.35rem;
}

.inquiry-card select {
  min-height: 48px;
  padding: 0 14px;
}

.inquiry-card input {
  min-height: 48px;
  padding: 0 14px;
}

.inquiry-card textarea {
  min-height: 92px;
  padding: 14px;
  resize: vertical;
}

.inquiry-card select:focus,
.inquiry-card textarea:focus,
.inquiry-card input:focus {
  border-color: var(--amber-600);
  box-shadow: 0 0 0 3px rgba(222, 133, 15, 0.16);
}

.inquiry-card .button {
  margin-top: 20px;
}

.button--gold {
  width: 100%;
  min-height: 54px;
  color: var(--white);
  background: var(--olive-900);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.trip-planner .form-note {
  color: var(--olive-700);
  text-align: center;
}

.form-note {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--olive-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.section {
  padding-block: clamp(72px, 8vw, 112px);
}

.section--soft {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1400px) / 2));
  background: var(--sand-100);
}

.section--dark {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1400px) / 2));
  color: var(--white);
  background:
    linear-gradient(rgba(24, 32, 13, 0.92), rgba(24, 32, 13, 0.92)),
    url("assets/kilimanjaro.webp") center/cover;
}

.section__heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__heading--with-action {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section__heading--with-action > div {
  max-width: 760px;
}

.section__heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(260px, 620px);
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section__heading p:not(.eyebrow),
.split-section__copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.7;
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(222, 133, 15, 0.34);
  border-radius: 999px;
  color: var(--amber-600);
  font-weight: 900;
  white-space: nowrap;
}

.see-all-link:hover {
  color: var(--white);
  background: var(--amber-600);
}

.section--dark .section__heading p:not(.eyebrow),
.section--dark .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.image-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--olive-900);
}

.image-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 300ms ease;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68));
}

.image-card div {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 1;
}

.image-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.image-card p {
  margin: 0 0 12px;
  line-height: 1.45;
}

.image-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px 0 4px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 900;
}

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

.tour-grid,
.benefit-grid,
.review-grid,
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tour-card,
.benefit-grid article,
.review-grid blockquote,
.route-grid article {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
}

.tour-card__top,
.tour-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.tour-card__top span,
.route-grid span {
  color: #8d5a08;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-card h3,
.benefit-grid h3,
.route-grid h3 {
  margin: 18px 0 12px;
  font-size: 1.35rem;
}

.tour-card p,
.benefit-grid p,
.review-grid p,
.route-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.tour-card__meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.tour-card__meta a {
  color: var(--amber-600);
}

.book-now {
  border: 0;
  color: var(--amber-600);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.book-now:hover {
  color: var(--olive-900);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: stretch;
}

.split-section__media {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
}

.split-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.split-section__copy {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.feature-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--sand-100);
  font-weight: 800;
}

.route-grid article {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.route-grid p {
  color: rgba(255, 255, 255, 0.74);
}

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

.benefit-grid article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 0;
  background: linear-gradient(145deg, var(--white), #fff8ec);
  box-shadow: 0 18px 46px rgba(24, 32, 13, 0.09);
}

.benefit-grid article::after {
  content: "";
  position: absolute;
  inset: auto -44px -56px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(222, 133, 15, 0.12);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--olive-800);
  font-size: 1.35rem;
  font-weight: 900;
}

.benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews {
  text-align: center;
}

.reviews .section__heading {
  margin-inline: auto;
}

.review-grid blockquote,
.review-slide {
  text-align: left;
}

.review-grid p,
.review-slide p {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
}

.review-grid cite,
.review-slide cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.review-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 920px) auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.review-slider__viewport {
  overflow: hidden;
}

.review-slider__track {
  display: flex;
  transition: transform 260ms ease;
}

.review-slide {
  min-width: 100%;
  margin: 0;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.review-slide p {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.55;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(222, 133, 15, 0.34);
  border-radius: 50%;
  color: var(--amber-600);
  background: var(--white);
  line-height: 1;
  cursor: pointer;
}

.slider-btn svg,
.contact-modal__close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-btn:hover {
  color: var(--white);
  background: var(--amber-600);
}

.review-slider__dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-slider__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(222, 133, 15, 0.32);
  cursor: pointer;
}

.review-slider__dots button[aria-current="true"] {
  width: 26px;
  border-radius: 999px;
  background: var(--amber-600);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq .section__heading {
  margin-inline: auto;
  text-align: center;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px 22px;
}

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

.faq details p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.blogs-preview {
  text-align: left;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(24, 32, 13, 0.09);
}

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

.blog-card div {
  padding: 24px;
}

.blog-card span {
  color: #8d5a08;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.08;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.65;
}

.blog-card a {
  color: var(--amber-600);
  font-weight: 900;
}

.partners-section {
  width: min(100% - 48px, 1400px);
  margin: 0 auto 86px;
  padding-block: 76px;
}

.partner-marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(24, 32, 13, 0.08);
}

.partner-marquee div {
  width: max-content;
  display: flex;
  gap: 18px;
  padding: 18px;
  animation: marquee 32s linear infinite;
}

.partner-marquee span {
  min-height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid rgba(36, 48, 20, 0.12);
  border-radius: var(--radius);
  color: var(--olive-900);
  background: var(--sand-100);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 900;
  white-space: nowrap;
}

.partner-marquee img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 86px;
  padding: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(120deg, var(--olive-950), var(--olive-700));
}

.final-cta p,
.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding-block: 34px 18px;
  border-top: 1px solid var(--line);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(230px, 1.35fr) minmax(210px, 1fr) minmax(150px, 0.7fr) minmax(220px, 1fr);
  gap: 30px;
  align-items: start;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 12px;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.55;
}

.footer-brand p {
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--olive-900);
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--sand-100);
}

.footer-social a:hover,
.footer-bottom a:hover {
  color: var(--amber-600);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social a:hover {
  border-color: rgba(222, 133, 15, 0.36);
  background: #fff7ea;
}

.footer-gallery > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.footer-gallery img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: var(--radius);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline;
  color: var(--olive-900);
  font-weight: 800;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 8, 0.58);
  backdrop-filter: blur(6px);
}

.contact-modal__panel {
  position: relative;
  width: min(100%, 360px);
  max-height: min(420px, calc(100vh - 48px));
  overflow: auto;
  padding: 30px 24px 24px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.contact-modal__panel h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1.04;
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--sand-100);
  line-height: 1;
  cursor: pointer;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-options a {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--olive-900);
  background: var(--sand-100);
}

.contact-options a:hover {
  color: var(--white);
  border-color: rgba(222, 133, 15, 0.45);
  background: var(--amber-600);
}

.contact-options svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-options img {
  width: 24px;
  height: 24px;
}

.package-header {
  top: 0;
}

.package-hero {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 130px) 0 42px;
}

.package-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.96;
}

.package-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.package-list {
  display: grid;
  gap: 22px;
}

.package-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.55fr);
  gap: 26px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.package-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.package-card span {
  color: #8d5a08;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card h2 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.package-card p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.detail-page {
  background: linear-gradient(180deg, var(--sand-100), #fff 38%);
}

.detail-hero {
  width: min(100% - 48px, 1400px);
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  margin: 0 auto;
  padding-block: clamp(48px, 7vw, 92px);
}

.detail-hero > img {
  width: 100%;
  height: min(520px, 58vw);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(24, 32, 13, 0.18);
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--amber-600);
  font-weight: 900;
}

.detail-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.detail-hero__content > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.detail-facts,
.detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-facts span,
.detail-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--olive-900);
  background: var(--white);
  font-weight: 900;
}

.detail-layout {
  width: min(100% - 48px, 1400px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
  margin: 0 auto;
  padding-bottom: 90px;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.detail-section,
.detail-sidebar > * {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(24, 32, 13, 0.07);
}

.detail-section {
  padding: clamp(26px, 4vw, 42px);
}

.detail-section h2,
.detail-sidebar h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.detail-section p {
  color: var(--muted);
  line-height: 1.75;
}

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

.detail-columns ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.itinerary-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.itinerary-day {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand-100);
}

.itinerary-day__number {
  color: var(--amber-600);
  font-weight: 900;
  text-transform: uppercase;
}

.itinerary-day h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.itinerary-day p {
  margin: 0 0 12px;
}

.itinerary-day span {
  color: var(--olive-900);
  font-size: 0.9rem;
  font-weight: 900;
}

.detail-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.price-card,
.price-table-card,
.detail-help {
  padding: 24px;
}

.price-card span {
  color: #8d5a08;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1;
}

.price-card p,
.detail-help p {
  color: var(--muted);
  line-height: 1.65;
}

.price-card .button {
  width: 100%;
  margin-top: 12px;
}

.price-table-card table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
}

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

.price-table-card th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.price-table-card td:last-child {
  color: var(--olive-900);
  font-weight: 900;
  text-align: right;
}

.blog-page-hero {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 130px) 0 42px;
}

.blog-page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.96;
}

.blog-page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.blog-list {
  display: grid;
  gap: 24px;
}

.article-page {
  background: linear-gradient(180deg, var(--sand-100), #fff 34%);
}

.article-hero {
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0 42px;
}

.article-hero img {
  width: 100%;
  height: min(520px, 54vw);
  object-fit: cover;
  margin-top: 32px;
  border-radius: var(--radius);
}

.article-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
}

.article-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.article-body {
  width: min(100% - 48px, 860px);
  margin: 0 auto;
  padding-bottom: 90px;
}

.article-body h2 {
  margin-top: 42px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

@media (max-width: 1120px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 12px;
  }

  .topbar__links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .topbar__links a:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .site-header__inner {
    min-height: 78px;
    grid-template-columns: 160px 1fr auto;
    gap: 18px;
  }

  .brand img {
    width: 150px;
    height: 56px;
  }

  .primary-nav {
    gap: 32px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .inquiry-card {
    max-width: 560px;
  }

  .destination-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .package-card {
    grid-template-columns: 1fr;
  }

  .detail-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card {
    grid-row: span 2;
  }
}

@media (max-width: 860px) {
  .topbar__inner,
  .site-header__inner,
  .hero__inner,
  .section,
  .final-cta,
  .package-hero,
  .detail-hero,
  .detail-layout,
  .partners-section,
  .blog-page-hero,
  .article-hero,
  .article-body,
  .site-footer {
    width: min(100% - 32px, 1400px);
  }

  .topbar {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 150px;
    height: 50px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown {
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown summary {
    padding: 16px 0;
  }

  .nav-dropdown summary::before {
    right: 4px;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    padding: 0 0 10px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown__menu a {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .nav-enquire {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    border: 0;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--amber-600);
    font-weight: 800;
  }

  .hero {
    min-height: auto;
    background-position: 55% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(255, 244, 224, 0.92), rgba(255, 244, 224, 0.64)),
      linear-gradient(0deg, rgba(19, 24, 12, 0.2), rgba(19, 24, 12, 0.04));
  }

  .hero__inner {
    padding-block: 62px;
    padding-bottom: 112px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

  .section__heading--split,
  .section__heading--with-action,
  .split-section,
  .tour-grid,
  .review-grid,
  .route-grid,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .split-section__media {
    min-height: 320px;
  }

  .split-section__copy {
    min-height: auto;
  }

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

  .review-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 150px;
    height: 54px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .primary-nav {
    inset-block-start: 72px;
  }

  .hero__inner {
    padding-block: 48px;
  }

  .hero h2 {
    font-size: 1.55rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }

  .inquiry-card {
    padding: 22px;
  }

  .destination-grid,
  .benefit-grid,
  .feature-list,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .image-card {
    min-height: 260px;
  }

  .tour-card,
  .benefit-grid article,
  .review-grid blockquote,
  .route-grid article {
    padding: 22px;
  }

  .final-cta {
    padding: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-modal__panel {
    padding: 28px 20px 22px;
  }

  .package-card img {
    height: 220px;
  }

  .detail-sidebar,
  .detail-columns,
  .itinerary-day {
    grid-template-columns: 1fr;
  }

  .detail-hero > img {
    height: 320px;
  }
}

/* =========================================================
   Refinements: top-bar icons, hero form, modal, catalog
   ========================================================= */

/* ----- Top bar social icons ----- */
.topbar__links a {
  width: 32px;
  height: 32px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.topbar__links a.topbar__owl {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.95);
}

.topbar__links a.topbar__owl:hover {
  background: #fff;
}

.topbar__owl img {
  width: 18px;
  height: 18px;
}

/* ----- Hero inquiry form ----- */
.trip-planner {
  max-width: 470px;
  padding: 28px;
  border: 1px solid rgba(36, 48, 20, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 70px rgba(24, 32, 13, 0.28);
}

.planner-head {
  display: block;
  margin-bottom: 20px;
}

.planner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(222, 133, 15, 0.12);
  color: #9a5d06;
  font-size: 0.78rem;
  font-weight: 800;
}

.planner-badge svg {
  width: 16px;
  height: 16px;
}

.planner-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.planner-field label {
  display: block;
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.field-control {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #d7d7ce;
  border-radius: 11px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field-control:focus-within {
  border-color: var(--amber-600);
  box-shadow: 0 0 0 3px rgba(222, 133, 15, 0.16);
}

.field-control input,
.field-control select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.98rem;
  outline: 0;
}

.field-control input:focus,
.field-control select:focus {
  box-shadow: none;
}

.field-control--select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.field-control--select svg {
  position: absolute;
  right: 14px;
  width: 18px;
  height: 18px;
  color: var(--olive-700);
  pointer-events: none;
}

.trip-planner .button--gold {
  gap: 10px;
}

.button--gold svg {
  width: 18px;
  height: 18px;
}

.planner-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.planner-trust svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #3f7d34;
}

/* ----- Enquire contact modal ----- */
.contact-modal__panel {
  width: min(100%, 420px);
  max-height: min(86vh, 680px);
  padding: 30px 28px 26px;
  border-radius: 20px;
  text-align: left;
}

.contact-modal__close svg {
  width: 18px;
  height: 18px;
}

.contact-modal__eyebrow {
  margin: 0 0 6px;
  color: #9a5d06;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-modal__panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  text-align: left;
}

.contact-modal__lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-row:hover {
  border-color: rgba(222, 133, 15, 0.4);
  box-shadow: 0 12px 26px rgba(24, 32, 13, 0.10);
  transform: translateY(-1px);
}

.contact-row__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
}

.contact-row__icon svg {
  width: 24px;
  height: 24px;
}

.contact-row__icon img {
  width: 26px;
  height: 26px;
}

.brand-call {
  background: var(--olive-800);
}

.brand-whatsapp {
  background: #25d366;
}

.brand-email {
  background: var(--amber-600);
}

.brand-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c 30%, #dc2743 55%, #cc2366 75%, #bc1888);
}

.brand-light {
  border: 1px solid var(--line);
  background: #f4f1ea;
}

.contact-row__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-row__text strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.contact-row__text small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-row__go {
  width: 20px;
  height: 20px;
  margin-left: auto;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 160ms ease, color 160ms ease;
}

.contact-row:hover .contact-row__go {
  color: var(--amber-600);
  transform: translateX(2px);
}

/* ----- Itinerary catalog + cards ----- */
.package-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-chip {
  padding: 9px 18px;
  border: 1px solid rgba(36, 48, 20, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--olive-900);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.filter-chip:hover {
  border-color: var(--amber-600);
  color: var(--amber-600);
}

.filter-chip.is-active {
  border-color: var(--olive-900);
  color: #fff;
  background: var(--olive-900);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(24, 32, 13, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(24, 32, 13, 0.14);
}

.package-card__media {
  position: relative;
}

.package-card__media img {
  width: 100%;
  height: 220px;
  border-radius: 0;
  object-fit: cover;
}

.package-grid .package-card__days {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(24, 32, 13, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(4px);
}

.package-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.package-grid .package-card__cat {
  color: #9a5d06;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card__body h2,
.package-card__body h3 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.15;
}

.package-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.package-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.package-grid .package-card__price {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.package-grid .package-card__rating {
  color: var(--amber-600);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.package-card__link {
  color: var(--amber-600);
  font-size: 0.9rem;
  font-weight: 800;
}

.package-card .package-actions {
  margin-top: auto;
  padding-top: 18px;
}

.package-card .package-actions .button {
  flex: 1;
  min-height: 46px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.package-empty {
  padding: 40px 0;
  color: var(--muted);
  text-align: center;
}

/* ----- Blog cards (standardized) ----- */
.blog-card {
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(24, 32, 13, 0.13);
}

.blog-card .blog-card__media {
  position: relative;
  padding: 0;
}

.blog-card__media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-card .blog-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--olive-900);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card .blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.blog-card__meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-card__body h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.15;
}

.blog-card__body p:not(.blog-card__meta) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.blog-card__body a {
  margin-top: auto;
  color: var(--amber-600);
  font-weight: 900;
}

/* ----- Misc ----- */
.tour-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tour-card__more::after {
  content: "\2192";
}

.article-meta {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.related-section .section__heading,
.more-articles-section .section__heading {
  margin-bottom: 26px;
}

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

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

  .planner-fields {
    grid-template-columns: 1fr;
  }

  .contact-modal__panel {
    padding: 26px 20px 22px;
  }
}

/* =========================================================
   v2: refined type, top bar, megamenu, hero slideshow,
   destination pages
   ========================================================= */

body {
  letter-spacing: 0.003em;
}

.hero h1,
.section h2,
.final-cta h2,
.package-hero h1,
.blog-page-hero h1,
.detail-hero h1,
.article-hero h1,
.split-section__copy h2,
.dest-hero h1,
.package-card__body h2,
.package-card__body h3,
.blog-card__body h3,
.contact-modal__panel h2,
.planner-head h3 {
  font-weight: 600;
  letter-spacing: 0.005em;
}

.hero h1 {
  font-size: clamp(3rem, 6.4vw, 5.3rem);
  line-height: 1.02;
}

.section h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.eyebrow {
  letter-spacing: 0.2em;
}

.button {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ----- Top bar: contact left, social right ----- */
.topbar {
  background: linear-gradient(90deg, var(--olive-950), var(--olive-800));
  font-size: 0.86rem;
}

.topbar__inner {
  min-height: 44px;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  transition: color 160ms ease;
}

.topbar__contact a:hover {
  color: var(--amber-500);
}

.topbar__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__reviews {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  white-space: nowrap;
}

.topbar__reviews .stars {
  color: var(--amber-500);
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.topbar__social a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  transition: color 160ms ease, transform 160ms ease;
}

.topbar__social a:hover {
  color: var(--amber-500);
  transform: translateY(-1px);
}

.topbar__social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.topbar__social .topbar__owl img {
  width: 18px;
  height: 18px;
}

/* ----- Header polish ----- */
.site-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.97);
}

.primary-nav {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.primary-nav > a,
.nav-mega > summary {
  font-size: 0.98rem;
}

/* ----- Destinations megamenu ----- */
.nav-mega {
  position: static;
}

.nav-mega > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  cursor: pointer;
  list-style: none;
}

.nav-mega > summary::-webkit-details-marker {
  display: none;
}

.nav-mega > summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-mega[open] > summary::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-mega > summary.is-active,
.primary-nav > a.is-active {
  color: var(--amber-600);
}

.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 28px 50px rgba(24, 32, 13, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-mega:hover .mega-panel,
.nav-mega:focus-within .mega-panel,
.nav-mega[open] .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  padding: 28px 0 26px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 28px;
}

.mega-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 12px;
  transition: background 160ms ease;
}

.mega-card:hover {
  background: var(--sand-100);
}

.mega-card__media {
  flex-shrink: 0;
  width: 78px;
  height: 60px;
  overflow: hidden;
  border-radius: 9px;
}

.mega-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-card__text strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
}

.mega-card__text small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.mega-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--amber-600);
  font-weight: 600;
}

.mega-all svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ----- Hero slideshow ----- */
.hero {
  background-image: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* ----- Destination detail page ----- */
.dest-hero {
  position: relative;
  min-height: clamp(380px, 52vw, 520px);
  display: flex;
  align-items: flex-end;
  background-color: var(--olive-900);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.dest-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 20, 8, 0.85) 0%, rgba(15, 20, 8, 0.35) 55%, rgba(15, 20, 8, 0.5) 100%);
}

.dest-hero__content {
  position: relative;
  width: min(100% - 48px, 1400px);
  margin-inline: auto;
  padding: 54px 0 60px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 160ms ease;
}

.breadcrumb a:hover {
  color: var(--amber-500);
}

.breadcrumb span[aria-current] {
  color: #fff;
}

.dest-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.02;
}

.dest-hero p {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.5;
}

.dest-intro .section__heading {
  margin-bottom: 0;
}

.dest-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.dest-highlights span {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--olive-900);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(24, 32, 13, 0.05);
}

.dest-detail-list {
  display: grid;
  gap: 28px;
  max-width: 920px;
}

.dest-detail {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.dest-detail__num {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--amber-600);
  line-height: 1;
}

.dest-detail h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.dest-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ----- Destinations index grid ----- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.dest-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(24, 32, 13, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 64px rgba(24, 32, 13, 0.16);
}

.dest-card__media {
  position: relative;
  height: 230px;
}

.dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

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

.dest-card__count {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(24, 32, 13, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.dest-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 24px 28px;
}

.dest-card__body h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.1;
}

.dest-card__body p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.dest-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--amber-600);
  font-weight: 600;
}

.dest-card__link svg {
  width: 18px;
  height: 18px;
}

/* ----- Footer social (real icons) ----- */
.footer-social svg {
  fill: currentColor;
}

.footer-owl img {
  width: 20px;
  height: 20px;
}

/* ----- Responsive ----- */
@media (max-width: 1120px) {
  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .mega-panel {
    position: static;
    border-top: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-mega:not([open]) .mega-panel {
    display: none;
  }

  .mega-inner {
    width: 100%;
    padding: 8px 0 0;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-card {
    padding: 8px 0;
  }

  .nav-mega > summary {
    justify-content: space-between;
    width: 100%;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .dest-detail__num {
    font-size: 1.8rem;
  }
}

/* =====================================================================
   2026 refresh — navigation dropdowns, buttons, hero, gallery, FAQ
   (appended last so these rules take precedence)
   ===================================================================== */

/* ----- Nav dropdowns (Destinations mega + Safari/Hiking popovers) ----- */
.nav-drop {
  display: inline-flex;
  align-items: center;
}

.nav-drop:not(.nav-drop--mega) {
  position: relative;
}

.nav-drop--mega {
  position: static;
}

.nav-drop__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 12px 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.nav-drop__btn svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.nav-drop:hover .nav-drop__btn svg,
.nav-drop.is-open .nav-drop__btn svg {
  transform: rotate(180deg);
}

.nav-drop__btn.is-active {
  color: var(--amber-600);
}

.nav-drop__btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 22px;
  bottom: 5px;
  height: 2px;
  background: var(--amber-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-drop:hover .nav-drop__btn::after,
.nav-drop:focus-within .nav-drop__btn::after,
.nav-drop.is-open .nav-drop__btn::after {
  transform: scaleX(1);
}

/* Full-width mega panel reveal (base styles reused from .mega-panel) */
.nav-drop--mega:hover .mega-panel,
.nav-drop--mega:focus-within .mega-panel,
.nav-drop--mega.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Compact picture-card panels (Safari / Hiking) */
.nav-drop__panel--cards {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  width: 330px;
  margin-top: 6px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 26px 60px rgba(24, 32, 13, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-drop:hover .nav-drop__panel--cards,
.nav-drop:focus-within .nav-drop__panel--cards,
.nav-drop.is-open .nav-drop__panel--cards {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pop-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 11px;
  transition: background 160ms ease;
}

.pop-card:hover {
  background: var(--sand-100);
}

.pop-card__media {
  flex-shrink: 0;
  width: 66px;
  height: 50px;
  overflow: hidden;
  border-radius: 9px;
}

.pop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pop-card__text strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 600;
}

.pop-card__text small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

/* ----- Hamburger: borderless, alternating bar widths ----- */
.nav-toggle {
  width: 44px;
  height: 44px;
  gap: 5px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 3px;
  background: var(--ink);
  transition: width 200ms ease, transform 220ms ease, opacity 160ms ease;
}

.nav-toggle span:nth-child(1) {
  width: 24px;
}

.nav-toggle span:nth-child(2) {
  width: 16px;
}

.nav-toggle span:nth-child(3) {
  width: 20px;
}

.nav-toggle:hover span {
  width: 24px;
}

.nav-open .nav-toggle span:nth-child(1) {
  width: 24px;
  transform: translateY(7.5px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-open .nav-toggle span:nth-child(3) {
  width: 24px;
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ----- Buttons: clean, professional (no shiny inset highlight) ----- */
.header-cta {
  min-height: 50px;
  gap: 9px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-600);
  box-shadow: 0 10px 22px rgba(222, 133, 15, 0.22);
  font-weight: 600;
}

.header-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.header-cta:hover {
  background: var(--amber-500);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(222, 133, 15, 0.3);
}

.button {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.button--orange {
  background: var(--amber-600);
  box-shadow: 0 10px 22px rgba(222, 133, 15, 0.2);
}

.button--orange:hover {
  background: var(--amber-500);
}

.button--contact {
  color: var(--olive-900);
  border: 1.5px solid rgba(36, 48, 20, 0.22);
  background: var(--white);
  backdrop-filter: none;
}

.button--contact:hover {
  border-color: var(--olive-900);
  background: var(--olive-900);
  color: var(--white);
}

/* ----- Hero: compact, single-viewport ----- */
.hero {
  min-height: clamp(560px, calc(100vh - 132px), 680px);
}

.hero__inner {
  padding-block: clamp(40px, 5vw, 64px);
}

.hero h1 {
  font-size: clamp(2.6rem, 4.4vw, 4.1rem);
}

.hero h2 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

.accent-line {
  margin: 16px 0;
}

.hero p:not(.eyebrow) {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero__actions {
  margin-top: 22px;
}

.trip-planner {
  padding: 22px;
}

.trip-planner .planner-head {
  margin-bottom: 14px;
}

.trip-planner .planner-fields {
  gap: 12px;
}

.planner-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(222, 133, 15, 0.12);
  color: #8d5a08;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.planner-badge svg {
  width: 15px;
  height: 15px;
}

.planner-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.field-control--select {
  position: relative;
}

.field-control--select svg {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.field-control--select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 34px;
}

.planner-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--olive-700);
  font-size: 0.84rem;
  font-weight: 600;
}

.planner-trust svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--gold svg {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ----- Why choose us: refined icon tiles ----- */
.benefit-icon {
  border-radius: 14px;
  background: linear-gradient(150deg, var(--olive-800), var(--olive-700));
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

/* ----- Home packages (filter + pictures) ----- */
.home-packages .section__heading {
  margin-inline: auto;
  text-align: center;
}

.package-filters,
.home-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-chip {
  padding: 9px 20px;
  border: 1.5px solid rgba(36, 48, 20, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--olive-900);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-chip:hover {
  border-color: var(--amber-600);
  color: var(--amber-600);
}

.filter-chip.is-active {
  border-color: var(--amber-600);
  background: var(--amber-600);
  color: var(--white);
}

.home-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

/* ----- Gallery ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-grid a:hover img {
  transform: scale(1.07);
}

.gallery-grid a:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid a:nth-child(6) {
  grid-column: span 2;
}

/* ----- FAQ redesign ----- */
.faq-list {
  gap: 14px;
}

.faq details {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(24, 32, 13, 0.05);
  transition: box-shadow 200ms ease, border-color 200ms ease;
  overflow: hidden;
}

.faq details[open] {
  border-color: rgba(222, 133, 15, 0.4);
  box-shadow: 0 18px 40px rgba(24, 32, 13, 0.1);
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 56px 20px 24px;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.faq summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--amber-600);
  border-bottom: 2px solid var(--amber-600);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 220ms ease;
}

.faq details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.7;
}

/* ----- Blogs: clean "See all" button ----- */
.see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 24px;
  border: 1.5px solid rgba(222, 133, 15, 0.4);
  border-radius: 999px;
  color: var(--amber-600);
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.see-all-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.see-all-btn:hover {
  background: var(--amber-600);
  color: var(--white);
  border-color: var(--amber-600);
  transform: translateY(-2px);
}

/* ----- Partners: logos only ----- */
.partner-marquee span {
  min-width: 150px;
  padding: 0 22px;
  font-size: 0;
  background: var(--white);
}

.partner-marquee img {
  width: 46px;
  height: 46px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 200ms ease, opacity 200ms ease;
}

.partner-marquee span:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ----- Footer gallery + centered TripAdvisor owl ----- */
.footer-column--gallery {
  min-width: 0;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.footer-gallery a {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.footer-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 400ms ease;
}

.footer-gallery a:hover img {
  transform: scale(1.08);
}

.footer-owl,
.topbar__owl {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.footer-owl img,
.topbar__owl img {
  display: block;
  margin: auto;
  object-fit: contain;
}

.footer-owl img {
  width: 20px;
  height: 20px;
}

/* ----- Mobile: nav dropdowns become accordions ----- */
@media (max-width: 860px) {
  .primary-nav {
    inset: 78px 0 auto;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }

  .nav-drop {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .nav-drop__btn {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 1rem;
  }

  .nav-drop__btn::after {
    display: none;
  }

  .nav-drop__panel--cards,
  .nav-drop .mega-panel {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0 0 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-drop.is-open .nav-drop__panel--cards,
  .nav-drop.is-open .mega-panel {
    display: grid;
  }

  .nav-drop .mega-inner {
    width: 100%;
    padding: 0;
  }

  .nav-drop .mega-grid {
    grid-template-columns: 1fr;
  }

  .home-package-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-grid a:nth-child(1),
  .gallery-grid a:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .home-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- Our Experience (About) page ----- */
.about-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(420px, 56vw, 560px);
  background: var(--olive-900) url("assets/hero-safari.webp") center/cover;
  color: #fff;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 20, 8, 0.88) 0%, rgba(15, 20, 8, 0.35) 60%, rgba(15, 20, 8, 0.55) 100%);
}

.about-hero__content {
  position: relative;
  width: min(100% - 48px, 1400px);
  margin-inline: auto;
  padding: 56px 0 64px;
  max-width: none;
}

.about-hero .eyebrow {
  color: var(--amber-500);
}

.about-hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  font-weight: 600;
  line-height: 1.04;
}

.about-hero p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.6;
}

.stat-band-wrap {
  padding-block: clamp(40px, 5vw, 64px);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(24, 32, 13, 0.08);
}

.stat {
  text-align: center;
  padding: 8px 12px;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--amber-600);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(24, 32, 13, 0.06);
}

.value-card .benefit-icon {
  margin-bottom: 18px;
}

.value-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(155deg, var(--white), #fff8ec);
}

.step__num {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber-600);
  line-height: 1;
}

.step h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-page .final-cta {
  margin-bottom: 0;
}

@media (max-width: 1120px) {
  .value-grid,
  .step-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .stat-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .stat:nth-child(odd) {
    border-left: 0;
  }

  .value-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .about-page .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =====================================================================
   v2 — buttons fully redesigned + destination-detail polish
   (olive primary that warms to amber on hover; clean outline secondary)
   ===================================================================== */
.button,
.header-cta {
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.015em;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease,
    transform 200ms ease, box-shadow 200ms ease;
}

/* Primary CTA — deep olive, warms to amber on hover */
.header-cta,
.button--orange,
.button--gold {
  color: #fff;
  background: var(--olive-900);
  border: 0;
  box-shadow: 0 8px 20px rgba(24, 32, 13, 0.22);
}

.header-cta:hover,
.button--orange:hover,
.button--gold:hover {
  color: #fff;
  background: var(--amber-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(222, 133, 15, 0.32);
}

.header-cta {
  min-height: 52px;
  gap: 10px;
  padding: 0 26px;
}

.header-cta svg,
.button--orange svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.header-cta:hover svg,
.button--orange:hover svg {
  transform: translateX(3px);
}

/* Secondary CTA — clean outline that fills on hover */
.button--contact {
  color: var(--olive-900);
  border: 1.5px solid rgba(36, 48, 20, 0.35);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
}

.button--contact:hover {
  color: #fff;
  border-color: var(--olive-900);
  background: var(--olive-900);
  transform: translateY(-2px);
}

.button--outline {
  border-radius: 12px;
}

/* ----- Destination detail: hero actions, quick facts, CTA band ----- */
.dest-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.dest-hero__actions .button--contact {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.dest-hero__actions .button--contact:hover {
  color: var(--olive-900);
  background: #fff;
  border-color: #fff;
}

.dest-quickfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(100% - 48px, 1400px);
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 22px 55px rgba(24, 32, 13, 0.12);
}

.dest-quickfact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 10px;
}

.dest-quickfact + .dest-quickfact {
  border-left: 1px solid var(--line);
}

.dest-quickfact .benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.dest-quickfact .benefit-icon svg {
  width: 22px;
  height: 22px;
}

.dest-quickfact strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}

.dest-quickfact span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.dest-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 48px, 1400px);
  margin: 0 auto 80px;
  padding: 44px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(120deg, var(--olive-950), var(--olive-700)),
    url("assets/serengeti.webp") center/cover;
  background-blend-mode: multiply;
}

.dest-cta h2 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.05;
}

.dest-cta p {
  margin: 10px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.dest-cta .button--contact {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.dest-cta .button--contact:hover {
  color: var(--olive-900);
  background: #fff;
}

@media (max-width: 860px) {
  .dest-quickfacts {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }

  .dest-quickfact:nth-child(odd) {
    border-left: 0;
  }

  .dest-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
  }
}

/* =====================================================================
   v3 refresh — flat professional buttons, sharp inquiry form,
   full-bleed package-card images. Appended last: takes precedence.
   ===================================================================== */

/* ---------- Buttons: flat, no float, no drop shadow ---------- */
.button {
  gap: 9px;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: none;
  box-shadow: none;
}

.button svg,
.header-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Primary — solid brand amber, simply darkens on hover */
.header-cta,
.button--orange,
.button--gold {
  color: #fff;
  background: var(--amber-600);
  border: 1.5px solid var(--amber-600);
  box-shadow: none;
}

.header-cta:hover,
.button--orange:hover,
.button--gold:hover {
  color: #fff;
  background: #b86c08;
  border-color: #b86c08;
  transform: none;
  box-shadow: none;
}

.header-cta {
  min-height: 48px;
  gap: 9px;
  padding: 0 24px;
  border: 1.5px solid var(--amber-600);
  border-radius: 0;
}

.header-cta svg {
  transition: transform 180ms ease;
}

.header-cta:hover svg,
.button--orange:hover svg {
  transform: translateX(2px);
}

/* Secondary — crisp outline that fills with deep ink (no green, no blur) */
.button--contact,
.button--outline {
  color: var(--ink);
  border: 1.5px solid rgba(23, 27, 20, 0.3);
  background: #fff;
  backdrop-filter: none;
  border-radius: 0;
  box-shadow: none;
}

.button--contact:hover,
.button--outline:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
  transform: none;
  box-shadow: none;
}

/* Inline nav "Enquire" — simple amber text button, flattened */
.nav-enquire {
  border-radius: 0;
  box-shadow: none;
}

/* ---------- Inquiry form: sharp corners, clean and simple ---------- */
.trip-planner {
  max-width: 460px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 18px 50px rgba(24, 32, 13, 0.16);
}

.trip-planner .planner-head {
  margin-bottom: 18px;
}

.planner-badge {
  padding: 6px 12px;
  border-radius: 0;
  border-left: 3px solid var(--amber-600);
  background: var(--sand-100);
  color: #8d5a08;
  font-weight: 700;
}

.planner-head h3 {
  font-size: clamp(1.5rem, 2.3vw, 1.95rem);
}

.planner-sub {
  font-size: 0.92rem;
}

.trip-planner .planner-fields {
  gap: 16px;
}

.planner-field label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-control {
  border: 1px solid #cdd2c4;
  border-radius: 0;
  background: #fff;
  transition: border-color 150ms ease;
}

.field-control:focus-within {
  border-color: var(--amber-600);
  box-shadow: none;
}

.field-control input,
.field-control select {
  min-height: 52px;
  padding: 0 14px;
  font-size: 0.98rem;
}

.field-control--select svg {
  right: 12px;
  color: var(--muted);
}

.trip-planner .button--gold {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
  gap: 10px;
}

.planner-trust {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.planner-trust svg {
  color: var(--amber-600);
}

/* ---------- Package cards: full-bleed image (no inset) ---------- */
/* The old .package-card rule set align-items:center, so flex children
   shrank to content width and centered (44px gaps each side). Force a
   column that stretches every child to the full card width. */
.package-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.package-card:hover {
  transform: none;
}

.package-card__media,
.package-card__body {
  width: 100%;
  align-self: stretch;
}

.package-card__media {
  margin: 0;
  padding: 0;
}

.package-card__media img {
  display: block;
  width: 100%;
  height: 230px;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}

/* "X DAYS" badge overlays the photo in every grid (incl. the home grid) */
.package-card__days {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 0;
  background: rgba(24, 32, 13, 0.82);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.package-card__cat {
  color: #9a5d06;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card .package-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.package-card .package-actions .button {
  flex: 1;
  min-height: 46px;
  padding: 0 14px;
}

/* =====================================================================
   v4 — fully sharp corners site-wide. Every element (cards, chips,
   badges, inputs, panels, modals, images, icon tiles, social buttons)
   gets square corners for a single consistent look. Last + !important
   so it overrides every rounded rule above, present or future.
   ===================================================================== */
:root {
  --radius: 0;
}

*,
*::before,
*::after {
  border-radius: 0 !important;
}
