:root {
  --ink: #10202c;
  --muted: #5b6d77;
  --paper: #fffaf1;
  --white: #ffffff;
  --deep: #0a3041;
  --gold: #f1a72f;
  --coral: #e8664a;
  --sea: #1b8aa6;
  --leaf: #2c7a5b;
  --mist: #e9f5f3;
  --line: rgba(16, 32, 44, 0.14);
  --shadow: 0 18px 42px rgba(16, 32, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

img.safari-cover {
  object-position: center bottom;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(16px, 4vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: clamp(118px, 12vw, 154px);
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  min-width: 0;
  color: #283c49;
  font-size: 14px;
  font-weight: 800;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.header-action {
  min-width: 112px;
  padding: 0 18px;
  background: var(--deep);
  color: var(--white);
  white-space: nowrap;
}

.button {
  padding: 0 22px;
}

.button.primary {
  background: var(--gold);
  color: #231800;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: var(--white);
}

.button.dark {
  background: var(--deep);
  color: var(--white);
}

.whatsapp-chat {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(16, 32, 44, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(16, 32, 44, 0.18);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.whatsapp-chat__note {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding-left: 8px;
  font-size: 13px;
  line-height: 1.25;
}

.whatsapp-chat__note strong {
  font-size: 14px;
}

.whatsapp-chat__note span {
  color: var(--muted);
}

.whatsapp-chat__button {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: #1f9d55;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: end;
  background: var(--deep);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 33, 44, 0.92), rgba(8, 33, 44, 0.32));
}

.hero-inner {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding: 90px 0 52px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 82px);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-card {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 33, 44, 0.68);
}

.hero-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 850;
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.08;
}

.hero-card p,
.hero-card li {
  color: rgba(255, 255, 255, 0.84);
}

.plan-card {
  align-self: end;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(8, 33, 44, 0.28);
  color: var(--ink);
}

.plan-card__tag {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--mist);
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
}

.plan-card h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-size: clamp(28px, 3vw, 38px);
}

.plan-card form {
  display: grid;
  gap: 12px;
}

.plan-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.plan-card input,
.plan-card select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(16, 32, 44, 0.14);
  border-radius: 8px;
  padding: 0 13px;
  background: #f8fbfb;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.plan-card input:focus,
.plan-card select:focus {
  outline: 3px solid rgba(27, 138, 166, 0.18);
  border-color: var(--sea);
}

.plan-card button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.safari-panel .eyebrow,
.final-cta .eyebrow,
.video-band .eyebrow {
  color: var(--gold);
}

.quick-strip,
.trust-strip,
.section,
.video-band,
.mikumi-spotlight,
.safari-panel,
.final-cta,
.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 32, 44, 0.06);
}

.trust-strip div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--deep);
  font-size: 15px;
  font-weight: 950;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.quick-strip a {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-strip strong {
  display: block;
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.section {
  padding: 82px 0;
}

.lead-section,
.finder-section,
.split-section,
.safari-panel,
.transfer-section,
.faq-section,
.video-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.lead-section p:last-child,
.finder-section p,
.section-title p {
  color: var(--muted);
  font-size: 18px;
}

.finder-section {
  align-items: center;
  padding-bottom: 44px;
}

.finder-media {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.finder-media video {
  width: 100%;
  min-height: 290px;
  max-height: 360px;
  object-fit: cover;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.finder-media .button {
  justify-self: end;
}

.video-band {
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.video-copy {
  padding: clamp(32px, 5vw, 64px);
}

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

.media-showcase article {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.media-showcase img,
.media-showcase video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.media-showcase article > div {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 1;
  max-width: min(360px, calc(100% - 56px));
  padding: 13px 16px 14px;
  border-radius: 8px;
  background: rgba(8, 33, 44, 0.34);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.media-showcase span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-showcase strong {
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 850;
  line-height: 1.16;
}

.mikumi-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 0;
  align-items: stretch;
  margin-top: 44px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(13, 43, 54, 0.08);
  border-radius: 8px;
  background: #f7f2e6;
  box-shadow: 0 18px 50px rgba(13, 43, 54, 0.08);
}

.mikumi-visual {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  background: #dbe6df;
}

.mikumi-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  min-width: 170px;
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(13, 43, 54, 0.18);
}

.mikumi-visual figcaption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mikumi-visual figcaption strong {
  color: var(--deep);
  font-size: 24px;
  font-weight: 950;
}

.mikumi-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 0;
  object-fit: cover;
  transform: scale(1.14);
  transform-origin: center bottom;
}

.mikumi-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.mikumi-spotlight h2 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96;
}

.mikumi-spotlight p {
  color: var(--muted);
  font-size: 18px;
}

.mikumi-summary {
  max-width: 600px;
  font-size: 22px !important;
  line-height: 1.48;
}

.mikumi-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 18px;
}

.mikumi-price-row div {
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(13, 43, 54, 0.08);
}

.mikumi-price-row span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.mikumi-price-row strong {
  color: var(--deep);
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 950;
  white-space: nowrap;
}

.mikumi-includes {
  display: grid;
  gap: 9px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.mikumi-includes li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 750;
}

.mikumi-includes li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.spotlight-facts {
  display: none;
}

.booking-mini-steps {
  display: none;
}

.booking-mini-steps span {
  color: var(--deep);
}

.services-grid,
.package-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.tour-item,
.package-grid article,
.price-table div,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card,
.package-grid article {
  overflow: hidden;
}

.service-card img,
.package-grid article > img {
  height: 240px;
  object-fit: cover;
}

.service-card div,
.package-grid article {
  padding-bottom: 24px;
}

.service-card div,
.package-grid article > :not(img) {
  margin-right: 24px;
  margin-left: 24px;
}

.service-card div {
  margin-top: 22px;
}

.tour-list {
  display: grid;
  gap: 18px;
}

.tour-item {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  padding: 14px;
}

.tour-item img {
  height: 100%;
  min-height: 230px;
  border-radius: 6px;
  object-fit: cover;
}

.tour-item > div {
  display: grid;
  align-content: center;
  padding: 10px 8px 10px 0;
}

.item-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.item-topline span,
.package-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.item-topline strong,
.tour-item a {
  color: var(--deep);
  font-weight: 900;
}

.card-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.card-actions a,
.package-link {
  color: var(--deep);
  font-weight: 900;
}

.card-actions a:first-child,
.package-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tour-item p,
.package-grid p,
.package-grid li,
.service-card p:not(.eyebrow),
.transfer-section p,
.faq-list p {
  color: var(--muted);
}

.safari-panel {
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.safari-panel > img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.safari-copy {
  padding: clamp(32px, 5vw, 64px);
}

.safari-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.safari-options {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.safari-options div,
.price-table div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
}

.safari-options div {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.safari-options strong {
  color: var(--gold);
  white-space: nowrap;
}

.safari-options a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-title.centered {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.trip-style-section {
  padding-top: 74px;
}

.trip-style-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trip-style-grid article,
.feature-card {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 44, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 32, 44, 0.07);
}

.trip-style-grid article {
  position: relative;
  min-height: 360px;
}

.trip-style-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.trip-style-grid article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 33, 44, 0.04), rgba(8, 33, 44, 0.84));
  content: "";
}

.trip-style-grid article > div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--white);
}

.trip-style-grid span,
.feature-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trip-style-grid h3 {
  max-width: 260px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
}

.trip-style-grid a,
.feature-card a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep);
  font-size: 13px;
  font-weight: 950;
}

.featured-section {
  padding-top: 34px;
}

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

.feature-card {
  display: grid;
  min-height: 100%;
}

.catalog-card,
.feature-card,
.trip-style-grid article {
  cursor: pointer;
}

.catalog-card:focus-visible,
.feature-card:focus-visible,
.trip-style-grid article:focus-visible {
  outline: 3px solid rgba(27, 138, 166, 0.28);
  outline-offset: 4px;
}

.catalog-card:hover,
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(16, 32, 44, 0.13);
}

.catalog-card,
.feature-card,
.trip-style-grid article {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card img {
  height: 230px;
  object-fit: cover;
}

.feature-card > div {
  display: grid;
  align-content: start;
  padding: 22px;
}

.feature-card span {
  color: var(--sea);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 24px;
  line-height: 1.15;
}

.feature-card p {
  color: var(--muted);
}

.feature-card strong {
  display: block;
  margin: 4px 0 18px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.feature-card a {
  justify-self: start;
  margin-top: auto;
  background: var(--mist);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 6vw, 72px);
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.quote-section p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-section h2 {
  max-width: 560px;
}

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

.quote-steps div {
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.quote-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 950;
}

.quote-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 950;
}

.package-grid article {
  display: flex;
  min-height: 440px;
  flex-direction: column;
}

.package-grid article > .package-label {
  margin-top: 24px;
}

.package-grid article > strong {
  margin-top: auto;
  margin-bottom: 14px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.more-title {
  padding-top: 64px;
}

.compact-grid article {
  min-height: 390px;
}

.compact-grid article > img {
  height: 200px;
}

.highlight-package {
  background: var(--deep) !important;
  color: var(--white);
}

.highlight-package p,
.highlight-package li {
  color: rgba(255, 255, 255, 0.78);
}

.highlight-package strong {
  color: var(--gold) !important;
}

.price-table {
  display: grid;
  gap: 10px;
}

.why-section {
  padding-top: 0;
}

.why-grid article {
  padding: 24px;
  border-top: 3px solid var(--coral);
  background: rgba(255, 255, 255, 0.6);
}

.why-grid span {
  color: var(--coral);
  font-weight: 950;
}

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

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  padding: 0 22px 22px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.final-cta img {
  height: 500px;
  object-fit: cover;
  opacity: 0.55;
}

.final-cta div {
  position: absolute;
  right: clamp(24px, 6vw, 72px);
  bottom: clamp(24px, 6vw, 72px);
  left: clamp(24px, 6vw, 72px);
  max-width: 680px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0;
  color: var(--muted);
}

.site-footer strong,
.site-footer a {
  color: var(--ink);
}

.footer-logo {
  display: block;
  width: 188px;
  height: auto;
  margin-bottom: 12px;
}

.catalog-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
}

.catalog-hero h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 82px);
}

.catalog-hero p {
  color: var(--muted);
  font-size: 20px;
}

.catalog-help {
  padding: 24px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.catalog-help p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.catalog-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 82px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-bar button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.filter-bar button.is-active {
  background: var(--deep);
  color: var(--white);
}

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

.catalog-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card img {
  height: 220px;
  object-fit: cover;
}

.catalog-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.catalog-card p {
  color: var(--muted);
}

.catalog-card strong {
  margin-top: auto;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.catalog-card-featured {
  border-color: rgba(241, 167, 47, 0.75);
  box-shadow: 0 18px 38px rgba(16, 32, 44, 0.1);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 16px;
}

.tag-row span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef5f2;
  color: var(--deep);
  font-size: 12px;
  font-weight: 850;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.catalog-actions a {
  color: var(--deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.detail-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
}

.detail-hero img {
  height: 520px;
  border-radius: 8px;
  object-fit: cover;
}

.detail-gallery {
  width: min(1160px, calc(100% - 32px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-gallery img {
  height: 230px;
  border-radius: 8px;
  object-fit: cover;
}

.detail-intro h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 76px);
}

.detail-intro > p {
  color: var(--muted);
  font-size: 20px;
}

.conversion-card {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.conversion-prices div {
  padding: 16px;
  border-radius: 8px;
  background: #fff6e3;
}

.conversion-prices span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.conversion-prices strong {
  display: block;
  margin-top: 6px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.05;
}

.conversion-points {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-facts {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.detail-facts div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-facts span {
  color: var(--muted);
}

.detail-facts strong {
  text-align: right;
}

.detail-layout {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 64px);
}

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

.detail-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-block h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
}

.booking-block {
  background: #fff6e3;
}

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

.booking-steps div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.booking-steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--deep);
  color: var(--white);
  font-weight: 950;
}

.booking-steps strong {
  color: var(--deep);
  font-size: 17px;
}

.booking-steps p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.timeline time {
  color: var(--coral);
  font-weight: 900;
}

.timeline a {
  color: var(--deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.check-grid ul {
  margin: 0;
  padding-left: 20px;
}

.detail-side {
  align-self: start;
  display: grid;
  gap: 16px;
}

.quote-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.quote-card p {
  color: rgba(255, 255, 255, 0.82);
}

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

.back-link {
  display: inline-flex;
  margin: 18px clamp(16px, 4vw, 56px) 0;
  color: var(--deep);
  font-weight: 900;
}

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

  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .hero-inner,
  .catalog-hero,
  .detail-hero,
  .detail-gallery,
  .detail-layout,
  .lead-section,
  .finder-section,
  .quote-section,
  .mikumi-spotlight,
  .split-section,
  .safari-panel,
  .transfer-section,
  .faq-section,
  .video-band,
  .services-grid,
  .package-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .trip-style-grid,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-page .whatsapp-chat {
    display: none;
  }

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

  .finder-section .button {
    justify-self: start;
  }

  .quick-strip,
  .media-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .tour-item {
    grid-template-columns: 1fr;
  }

  .detail-hero img {
    height: 380px;
  }

  .mikumi-visual,
  .detail-gallery img {
    min-height: 340px;
  }

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

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .tour-item > div {
    padding: 6px 2px 2px;
  }
}

@media (max-width: 620px) {
  .site-header {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    align-items: center;
    justify-content: start;
    max-width: 100%;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 118px;
  }

  .header-action {
    width: auto;
    max-width: 128px;
    min-width: auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: min(358px, calc(100% - 0px));
    gap: 12px;
    overflow-x: visible;
    padding-bottom: 2px;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .detail-intro,
  .detail-main,
  .detail-block,
  .conversion-card,
  .quote-card,
  .catalog-card,
  .mikumi-spotlight > div {
    min-width: 0;
    max-width: 100%;
  }

  .detail-hero,
  .detail-gallery,
  .detail-layout,
  .catalog-hero,
  .catalog-section,
  .trust-strip,
  .mikumi-spotlight,
  .section,
  .video-band,
  .safari-panel,
  .final-cta,
    .site-footer,
    .quick-strip {
    width: min(358px, calc(100% - 32px));
    margin-right: auto;
    margin-left: 16px;
  }

  .home-hero .hero-inner,
  .hero-copy,
  .plan-card {
    min-width: 0;
    max-width: 100%;
  }

  .plan-card {
    overflow: hidden;
    padding: 18px;
  }

  .plan-card h2 {
    max-width: 280px;
    font-size: 26px;
    line-height: 1.08;
  }

  .plan-card input,
  .plan-card select {
    min-width: 0;
  }

  .detail-intro h1,
  .mikumi-spotlight h2,
  .catalog-hero h1 {
    overflow-wrap: break-word;
  }

  .detail-intro > p,
  .mikumi-spotlight p,
  .catalog-card p {
    overflow-wrap: break-word;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 64px 0 38px;
  }

  .hero h1 {
    font-size: 40px;
    overflow-wrap: break-word;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 330px;
  }

  .hero-card {
    padding: 20px;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .trip-style-grid,
  .featured-grid,
  .quote-steps {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .trip-style-grid article {
    min-height: 310px;
  }

  .feature-card img {
    height: 210px;
  }

  .quote-section {
    padding: 28px;
  }

  .quote-steps div {
    min-height: auto;
  }

  .panel-actions,
  .conversion-actions,
  .hero-actions {
    width: 100%;
  }

  .booking-mini-steps,
  .mikumi-price-row,
  .conversion-prices {
    grid-template-columns: 1fr;
  }

  .conversion-card {
    padding: 14px;
  }

  .conversion-prices div {
    padding: 14px;
  }

  .detail-hero img,
  .mikumi-visual,
  .detail-gallery img {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .mikumi-visual {
    min-height: 260px;
  }

  .mikumi-visual figcaption {
    right: 12px;
    bottom: 12px;
    min-width: 150px;
    padding: 12px 14px;
  }

  .mikumi-visual figcaption strong {
    font-size: 20px;
  }

  .detail-layout {
    padding-top: 34px;
  }

  .detail-block {
    padding: 20px;
  }

  .detail-facts div {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .detail-facts strong {
    text-align: left;
  }

  .whatsapp-chat {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    justify-content: space-between;
  }

  .whatsapp-chat__button {
    min-width: 84px;
    padding: 0 14px;
  }

  .whatsapp-chat__note {
    overflow: hidden;
  }

  .whatsapp-chat__note span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .quick-strip,
  .media-showcase,
  .detail-gallery,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .final-cta div {
    position: static;
    padding: 28px;
  }
}
