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

* {
  margin: 0;
}

:root {
  --ink: #09090c;
  --charcoal: #111318;
  --ivory: #f5efe4;
  --paper: #f8f4ec;
  --gold: #d6b973;
  --gold-deep: #7c6030;
  --action: #fb1558;
  --line-dark: rgba(214, 185, 115, 0.24);
  --line-light: rgba(62, 46, 25, 0.18);
  --serif: "Libre Baskerville", Georgia, serif;
  --condensed: "Oswald", "Arial Narrow", sans-serif;
  --sans: "Inter", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.7' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(20px, 4vw, 58px);
  transition: background 0.7s var(--ease), backdrop-filter 0.7s var(--ease);
}

.site-nav.scrolled,
.menu-open .site-nav {
  background: rgba(9, 9, 12, 0.94);
  backdrop-filter: blur(24px);
}

.brand {
  display: block;
  width: 104px;
  height: 68px;
}

.brand img {
  object-fit: contain;
  filter: saturate(0.9);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a,
.nav-action,
.mobile-menu a,
.text-link {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.nav-links a {
  color: rgba(245, 239, 228, 0.82);
}

.nav-links a:hover,
.nav-action:hover,
.text-link:hover {
  color: var(--gold);
}

.nav-action {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 239, 228, 0.2);
  border-radius: 0;
  background: rgba(9, 9, 12, 0.28);
  color: var(--ivory);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 68px 0 0;
  z-index: 90;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 32px;
  background: rgba(9, 9, 12, 0.98);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: clamp(28px, 9vw, 52px);
  color: var(--ivory);
}

.mobile-menu .mobile-cta {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media,
.hero-video,
.hero-shade,
.film-overlay,
.final-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-video.active {
  opacity: 1;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 9, 12, 0.78), rgba(9, 9, 12, 0.16) 52%, rgba(9, 9, 12, 0.62)),
    linear-gradient(180deg, rgba(9, 9, 12, 0.34), rgba(9, 9, 12, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 40px));
  padding: 120px 0 120px clamp(0px, 5vw, 70px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 980px;
  color: var(--ivory);
  font-family: var(--condensed);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-deck {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(245, 239, 228, 0.88);
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--action);
  border-color: var(--action);
  color: #fff;
}

.btn-ghost {
  background: rgba(245, 239, 228, 0.04);
  border-color: rgba(245, 239, 228, 0.32);
  color: var(--ivory);
}

.hero-stats {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 1px;
  background: rgba(214, 185, 115, 0.2);
}

.hero-stats span {
  min-width: 138px;
  padding: 18px 20px;
  background: rgba(9, 9, 12, 0.62);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 30px;
  line-height: 1;
}

.hero-stats span {
  color: rgba(245, 239, 228, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  width: 1px;
  height: 48px;
  overflow: hidden;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(-20%); opacity: 0.4; }
  50% { transform: translateY(20%); opacity: 1; }
}

.dark-band,
.light-band,
.film,
.final-cta {
  position: relative;
  padding: clamp(84px, 10vw, 142px) clamp(22px, 5vw, 76px);
}

.dark-band {
  background: var(--ink);
  color: var(--ivory);
}

.light-band {
  background: var(--paper);
  color: #171410;
}

.section-inner,
.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(860px, 100%);
  text-align: center;
}

.section-heading {
  margin-bottom: clamp(38px, 6vw, 76px);
}

.display-heading,
.statement-title {
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
}

.section-deck {
  max-width: 680px;
  margin-top: 22px;
  color: currentColor;
  opacity: 0.76;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
}

.statement {
  min-height: 74vh;
  display: grid;
  place-items: center;
}

.statement-copy {
  margin-top: 32px;
}

.statement-copy p {
  margin-top: 12px;
  color: rgba(245, 239, 228, 0.84);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.7;
}

.route-metrics {
  width: min(1180px, 100%);
  margin: -34px auto 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.route-metrics span,
.country-prices span,
.partner-list span {
  border: 1px solid currentColor;
  padding: 8px 12px;
  color: var(--gold-deep);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-track {
  width: min(1380px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, minmax(150px, 1fr));
  align-items: stretch;
  min-height: 520px;
}

.route-stop {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-left: 1px solid rgba(245, 239, 228, 0.45);
}

.route-stop:nth-child(odd) {
  margin-top: 72px;
}

.route-image {
  position: absolute;
  inset: 0;
}

.route-image img {
  filter: saturate(0.86) contrast(1.08);
  transition: transform 1s var(--ease);
}

.route-stop:hover img {
  transform: scale(1.05);
}

.route-stop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 12, 0.08), rgba(9, 9, 12, 0.84));
}

.route-meta {
  position: absolute;
  inset: auto 18px 20px;
  z-index: 1;
}

.route-meta span {
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
}

.route-meta h3 {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.package-grid,
.addon-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
}

.package-card,
.addon-card {
  min-height: 300px;
  padding: 32px;
  background: var(--charcoal);
  border-radius: 0;
}

.package-card p,
.package-card strong,
.addon-card span {
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-card h3,
.addon-card h3 {
  margin: 28px 0 18px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.25;
}

.package-card span {
  display: block;
  color: rgba(245, 239, 228, 0.76);
  font-size: 14px;
}

.package-card .text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--gold);
}

.country-list {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.country-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  min-height: 560px;
  border-top: 1px solid var(--line-light);
}

.country-block:nth-child(even) .country-media {
  order: 2;
}

.country-media {
  min-height: 440px;
}

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

.country-content h3 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.08;
}

.country-content dl {
  display: grid;
  gap: 16px;
}

.country-content dt {
  color: var(--gold-deep);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.country-content dd {
  color: rgba(23, 20, 16, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.country-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.table-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 22px;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

tbody th {
  font-family: var(--serif);
  font-size: 17px;
}

td {
  color: rgba(245, 239, 228, 0.78);
}

.film {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
}

.film-video {
  position: absolute;
  inset: 0;
}

.film-overlay {
  background: rgba(9, 9, 12, 0.46);
}

.film-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  text-align: center;
}

.film-content h2,
.final-content h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.film-content p:not(.eyebrow),
.final-content p {
  width: min(720px, 100%);
  margin: 22px auto 0;
  color: rgba(245, 239, 228, 0.82);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.65;
}

.addon-grid {
  grid-template-columns: repeat(7, 1fr);
  background: var(--line-light);
}

.addon-card {
  min-height: 220px;
  background: #fbf7ef;
  color: #171410;
}

.addon-card h3 {
  font-size: 19px;
}

.split,
.apply-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

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

.partner-list span {
  color: var(--gold);
  border-color: var(--line-dark);
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item button {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  overflow: hidden;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: #171410;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.faq-item b {
  flex: 0 0 auto;
  color: var(--gold-deep);
  font-family: var(--condensed);
  font-size: 24px;
}

.faq-item button[aria-expanded="true"] b {
  transform: rotate(45deg);
}

.faq-answer p {
  max-width: 720px;
  padding: 0 0 26px;
  color: rgba(23, 20, 16, 0.72);
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.application-form label {
  display: grid;
  gap: 8px;
}

.application-form label:has(textarea),
.application-form button,
.form-note {
  grid-column: 1 / -1;
}

.application-form span {
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 1px solid rgba(245, 239, 228, 0.22);
  border-radius: 0;
  background: rgba(245, 239, 228, 0.04);
  color: var(--ivory);
  padding: 14px;
  outline: none;
}

.application-form textarea {
  resize: vertical;
}

.application-form select option {
  color: #171410;
}

.form-note {
  min-height: 24px;
  color: rgba(245, 239, 228, 0.72);
}

.final-cta {
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
  text-align: center;
}

.final-cta > img {
  position: absolute;
  inset: 0;
}

.final-overlay {
  background: linear-gradient(180deg, rgba(9, 9, 12, 0.38), rgba(9, 9, 12, 0.84));
}

.final-content {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
}

.final-content .btn {
  margin-top: 34px;
}

.footer {
  background: var(--charcoal);
  color: var(--ivory);
  border-top: 1px solid var(--line-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 44px;
  padding: 64px clamp(22px, 5vw, 76px);
}

.footer img {
  width: 126px;
  height: 92px;
  object-fit: contain;
}

.footer p,
.footer a,
.footer-bottom {
  color: rgba(245, 239, 228, 0.72);
  font-size: 13px;
}

.footer nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(22px, 5vw, 76px);
  border-top: 1px solid var(--line-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible,
.loaded .hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1180px) {
  .route-track {
    grid-template-columns: repeat(4, 1fr);
  }

  .route-stop:nth-child(odd) {
    margin-top: 0;
  }

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

@media (max-width: 820px) {
  .site-nav {
    height: 62px;
  }

  .brand {
    width: 86px;
    height: 62px;
  }

  .nav-links,
  .nav-action {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    padding-left: 0;
    margin: 0 auto;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 62px);
  }

  .hero-stats {
    left: 16px;
    right: 16px;
    bottom: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats span {
    min-width: 0;
    padding: 14px 10px;
  }

  .scroll-cue {
    display: none;
  }

  .route-track,
  .country-block,
  .split,
  .apply-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .country-block:nth-child(even) .country-media {
    order: 0;
  }

  .country-block {
    min-height: auto;
  }

  .country-media {
    min-height: 320px;
  }

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

@media (max-width: 560px) {
  .dark-band,
  .light-band,
  .film,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .package-grid,
  .addon-grid,
  .partner-list {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 3;
    margin: -104px 16px 24px;
  }

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

/* ═══════════════════════════════════════════════════════════
   MULTI-PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

.page-hero {
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  padding: 110px clamp(22px, 5vw, 76px) 56px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { filter: saturate(0.65) brightness(0.45); }
.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9,9,12,0.38), rgba(9,9,12,0.88));
}
.page-hero-content { position: relative; z-index: 2; width: min(1180px, 100%); margin: 0 auto; }
.page-hero-content .eyebrow { margin-bottom: 14px; }
.page-hero-content h1 {
  font-family: var(--condensed);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--ivory);
}
.page-hero-content p.hero-deck {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(245,239,228,0.78);
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.65;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  width: min(1180px, 100%);
  margin: 0 auto;
}
.dest-card, .tour-card { background: var(--charcoal); display: flex; flex-direction: column; overflow: hidden; }
.dest-card-image, .tour-card-image { height: 240px; position: relative; overflow: hidden; }
.dest-card-image img, .tour-card-image img { transition: transform 0.75s var(--ease); }
.dest-card:hover .dest-card-image img, .tour-card:hover .tour-card-image img { transform: scale(1.06); }
.card-tag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: var(--gold); color: #15100b;
  font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px;
}
.dest-card-body, .tour-card-body { padding: 22px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.card-region {
  color: var(--gold); font-family: var(--condensed); font-size: 10px;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 7px;
}
.dest-card-body h3, .tour-card-body h3 {
  font-family: var(--serif); font-size: 21px; line-height: 1.2; margin-bottom: 7px; color: var(--ivory);
}
.card-tagline { color: rgba(245,239,228,0.68); font-size: 14px; flex: 1; margin-bottom: 18px; line-height: 1.6; }
.card-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.card-meta span {
  color: rgba(245,239,228,0.56); font-family: var(--condensed); font-size: 10px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.card-price { color: var(--gold); font-family: var(--condensed); font-size: 16px; font-weight: 700; margin-bottom: 18px; }

.filter-bar {
  width: min(1180px, 100%); margin: 0 auto clamp(28px, 4vw, 48px);
  display: flex; flex-wrap: wrap; gap: 7px; align-items: center;
}
.filter-bar-label {
  color: rgba(245,239,228,0.48); font-family: var(--condensed); font-size: 10px;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-right: 6px;
}
.filter-btn {
  border: 1px solid rgba(245,239,228,0.2); background: transparent; color: rgba(245,239,228,0.68);
  font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 8px 15px; cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: #15100b; }
.sort-select {
  margin-left: auto; border: 1px solid rgba(245,239,228,0.2); background: transparent;
  color: rgba(245,239,228,0.68); font-family: var(--condensed); font-size: 11px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 14px; cursor: pointer; outline: none;
}
.sort-select option { color: #171410; background: var(--paper); }

.booking-steps { display: flex; gap: 0; margin-bottom: clamp(36px, 5vw, 64px); width: min(680px, 100%); }
.step {
  flex: 1; display: flex; align-items: center; gap: 11px; padding: 16px 20px;
  border: 1px solid var(--line-dark); color: rgba(245,239,228,0.36);
  font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
}
.step + .step { border-left: 0; }
.step.active { border-color: var(--gold); color: var(--gold); }
.step.done { border-color: rgba(214,185,115,0.35); color: rgba(214,185,115,0.55); }
.step-num {
  width: 26px; height: 26px; border: 1px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0;
}

.booking-form-wrap { width: min(720px, 100%); }
.booking-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.booking-form .full-width { grid-column: 1 / -1; }
.form-section-title {
  grid-column: 1 / -1; color: var(--gold); font-family: var(--condensed); font-size: 10px;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 10px;
  padding-bottom: 9px; border-bottom: 1px solid var(--line-dark);
}
.booking-form label { display: grid; gap: 7px; }
.booking-form .label-text, .transaction-form .label-text {
  color: var(--gold); font-family: var(--condensed); font-size: 10px;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
}
.booking-form input, .booking-form select, .booking-form textarea,
.transaction-form input, .contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid rgba(245,239,228,0.2); border-radius: 0;
  background: rgba(245,239,228,0.04); color: var(--ivory); padding: 13px 14px; outline: none; transition: border-color 0.22s;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus,
.transaction-form input:focus, .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--gold);
}
.booking-form select option, .contact-form select option { color: #171410; background: var(--paper); }
.form-error {
  display: none; color: #e06060; font-size: 13px;
  padding: 12px 16px; border: 1px solid rgba(224,96,96,0.3); background: rgba(224,96,96,0.06); margin-bottom: 16px;
}

.booking-summary-box { background: var(--charcoal); border: 1px solid var(--line-dark); padding: 26px; margin-bottom: 28px; }
.booking-summary-box h3 {
  color: var(--gold); font-family: var(--condensed); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px;
}
.booking-summary-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid var(--line-dark); font-size: 14px; color: rgba(245,239,228,0.8);
}
.booking-summary-row:last-child { border-bottom: none; }
.booking-summary-row.total {
  color: var(--ivory); font-family: var(--condensed); font-size: 17px; font-weight: 700;
  border-top: 1px solid rgba(214,185,115,0.4); border-bottom: none; padding-top: 14px; margin-top: 6px;
}
.booking-summary-row .label {
  color: rgba(245,239,228,0.5); font-family: var(--condensed); font-size: 10px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap;
}

.mpesa-box {
  background: var(--charcoal); border: 1px solid rgba(214,185,115,0.5);
  padding: 30px; margin: 0 auto 28px; width: min(500px, 100%);
}
.mpesa-box h3 {
  color: var(--gold); font-family: var(--condensed); font-size: 12px;
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 22px;
}
.mpesa-steps { list-style: none; display: grid; gap: 11px; }
.mpesa-steps li { display: flex; gap: 13px; align-items: baseline; color: rgba(245,239,228,0.8); font-size: 14px; line-height: 1.5; }
.mpesa-steps li .step-no { color: var(--gold); font-family: var(--condensed); font-weight: 700; font-size: 11px; flex-shrink: 0; width: 18px; }
.mpesa-steps li strong { color: var(--ivory); font-family: var(--condensed); font-size: 15px; letter-spacing: 0.04em; }
.booking-ref-display {
  background: rgba(214,185,115,0.06); border: 1px solid rgba(214,185,115,0.4);
  padding: 18px 22px; margin: 22px 0; text-align: center;
}
.booking-ref-display .ref-label {
  color: rgba(245,239,228,0.5); font-family: var(--condensed); font-size: 10px;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 7px;
}
.booking-ref-display .ref-value { color: var(--gold); font-family: var(--condensed); font-size: 26px; font-weight: 700; letter-spacing: 0.1em; }
.transaction-form { margin-top: 28px; width: min(500px, 100%); }
.transaction-form label { display: grid; gap: 7px; margin-bottom: 14px; }
.transaction-form input { font-size: 17px; font-family: var(--condensed); letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 16px; }

.confirmation-wrap { width: min(720px, 100%); }
.confirmation-badge { display: flex; align-items: center; gap: 18px; margin-bottom: 36px; }
.confirmation-badge .check {
  width: 52px; height: 52px; border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 22px; flex-shrink: 0;
}
.confirmation-badge h1 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 44px); line-height: 1.1; color: var(--ivory); }
.confirmation-ref { color: rgba(245,239,228,0.6); font-family: var(--condensed); font-size: 13px; letter-spacing: 0.12em; margin-top: 4px; }
.confirmation-ref span { color: var(--gold); font-size: 15px; }

.receipt { background: var(--paper); color: #171410; padding: 36px; margin-bottom: 20px; border-top: 3px solid var(--gold-deep); }
.receipt-header { text-align: center; padding-bottom: 22px; border-bottom: 1px solid var(--line-light); margin-bottom: 22px; }
.receipt-header .brand-name { font-family: var(--condensed); font-size: 18px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.receipt-header .doc-title { font-family: var(--serif); font-size: 13px; color: rgba(23,20,16,0.56); margin-top: 3px; }
.receipt-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line-light); font-size: 14px; }
.receipt-row:last-child { border-bottom: none; }
.receipt-row .r-label { color: rgba(23,20,16,0.52); font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; white-space: nowrap; }
.receipt-row .r-value { color: #171410; font-weight: 600; text-align: right; }
.receipt-row.status .r-value { color: #1a6b2a; font-family: var(--condensed); font-weight: 700; }

.ticket { background: var(--charcoal); border: 1px solid rgba(214,185,115,0.45); overflow: hidden; margin-bottom: 28px; }
.ticket-header { background: var(--gold); color: #15100b; padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; }
.ticket-header .airline { font-family: var(--condensed); font-size: 14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.ticket-header .ticket-type { font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; opacity: 0.7; }
.ticket-body { padding: 26px 28px; display: grid; grid-template-columns: 1fr 1px 1fr; gap: 24px; }
.ticket-divider { background: var(--line-dark); position: relative; }
.ticket-divider::before, .ticket-divider::after {
  content: ""; position: absolute; left: 50%; width: 18px; height: 18px;
  background: var(--ink); border-radius: 50%; transform: translateX(-50%);
}
.ticket-divider::before { top: -9px; }
.ticket-divider::after  { bottom: -9px; }
.ticket-field { margin-bottom: 16px; }
.ticket-field:last-child { margin-bottom: 0; }
.ticket-field .t-label { color: rgba(245,239,228,0.44); font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 3px; }
.ticket-field .t-value { color: var(--ivory); font-family: var(--condensed); font-size: 15px; font-weight: 700; letter-spacing: 0.04em; }
.ticket-ref { background: rgba(214,185,115,0.06); border-top: 1px dashed rgba(214,185,115,0.28); padding: 14px 28px; display: flex; justify-content: space-between; align-items: center; }
.ticket-ref .ref-no { color: var(--gold); font-family: var(--condensed); font-size: 18px; font-weight: 700; letter-spacing: 0.12em; }
.ticket-ref .ref-label { color: rgba(245,239,228,0.44); font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.confirmation-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.tour-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(36px, 5vw, 72px); width: min(1180px, 100%); margin: 0 auto; align-items: start; }
.tour-sidebar { position: sticky; top: 84px; height: fit-content; }
.tour-price-card { background: var(--charcoal); border: 1px solid var(--line-dark); padding: 28px; }
.price-label { color: rgba(245,239,228,0.5); font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 7px; }
.price-value { color: var(--gold); font-family: var(--condensed); font-size: 32px; font-weight: 700; line-height: 1; margin-bottom: 3px; }
.per-person { color: rgba(245,239,228,0.46); font-size: 12px; margin-bottom: 22px; }
.include-list, .exclude-list { list-style: none; display: grid; gap: 7px; margin-bottom: 20px; }
.include-list li, .exclude-list li { display: flex; gap: 9px; align-items: baseline; color: rgba(245,239,228,0.74); font-size: 13px; }
.include-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.exclude-list li::before { content: "—"; color: rgba(245,239,228,0.28); flex-shrink: 0; }
.include-exclude-label { color: var(--gold); font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; margin-top: 18px; display: block; }
.tour-meta-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.tour-meta-tag { border: 1px solid var(--line-dark); color: rgba(245,239,228,0.6); font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 10px; }
.itinerary-list { display: grid; gap: 1px; background: var(--line-dark); margin-top: 28px; }
.itinerary-item { background: var(--charcoal); padding: 22px 26px; display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start; }
.itinerary-day { color: var(--gold); font-family: var(--condensed); font-size: 20px; font-weight: 700; line-height: 1; }
.itinerary-day .day-word { display: block; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(214,185,115,0.55); margin-top: 2px; }
.itinerary-item h4 { font-family: var(--serif); font-size: 16px; margin-bottom: 5px; color: var(--ivory); }
.itinerary-item p { color: rgba(245,239,228,0.66); font-size: 13px; line-height: 1.6; }

.dest-detail-hero { height: 68vh; position: relative; overflow: hidden; }
.dest-detail-hero img { filter: saturate(0.8) brightness(0.65); }
.dest-detail-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(9,9,12,0.92)); }
.dest-detail-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 44px clamp(22px, 5vw, 76px); z-index: 1; text-align: center; }
.dest-detail-content h1 { font-family: var(--condensed); font-size: clamp(42px, 5vw, 72px); font-weight: 700; line-height: 1.02; text-transform: uppercase; color: var(--ivory); }
.dest-highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--line-dark); margin-top: 28px; }
.dest-highlight-item { background: var(--charcoal); padding: 20px 22px; color: rgba(245,239,228,0.78); font-size: 13px; display: flex; align-items: center; gap: 10px; }
.dest-highlight-item::before { content: "◆"; color: var(--gold); font-size: 7px; flex-shrink: 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 88px); align-items: center; width: min(1180px, 100%); margin: 0 auto; }
.about-media { height: 500px; overflow: hidden; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-dark); width: min(1180px, 100%); margin: 0 auto; }
.value-item { background: var(--charcoal); padding: 34px; }
.value-num { color: var(--gold); font-family: var(--condensed); font-size: 34px; font-weight: 700; margin-bottom: 12px; display: block; }
.value-item h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 10px; color: var(--ivory); }
.value-item p { color: rgba(245,239,228,0.7); font-size: 14px; line-height: 1.72; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 7vw, 88px); width: min(1180px, 100%); margin: 0 auto; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form span { color: var(--gold); font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-info { display: grid; gap: 0; }
.contact-info-item { padding: 22px 0; border-bottom: 1px solid var(--line-light); }
.contact-info-item:first-child { border-top: 1px solid var(--line-light); }
.contact-info-item dt { color: var(--gold-deep); font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 5px; }
.contact-info-item dd { color: rgba(23,20,16,0.76); font-size: 15px; }
.contact-info-item dd a { text-decoration: none; color: inherit; }
.contact-info-item dd a:hover { color: var(--gold-deep); }

.mpesa-badge { display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(214,185,115,0.28); padding: 7px 12px; margin-top: 12px; }
.mpesa-badge span { color: rgba(245,239,228,0.56); font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); width: min(1180px, 100%); margin: 0 auto; }
.why-item { background: #fbf7ef; padding: 34px; color: #171410; }
.why-item h3 { font-family: var(--serif); font-size: 18px; margin-bottom: 9px; }
.why-item p { font-size: 14px; line-height: 1.72; color: rgba(23,20,16,0.7); }
.why-eyebrow { color: var(--gold-deep); font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 6px; display: block; }

.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); width: min(860px, 100%); margin: 0 auto; }
.how-step { padding: 38px 32px; background: var(--charcoal); }
.how-step .step-number { color: var(--gold); font-family: var(--condensed); font-size: 44px; font-weight: 700; line-height: 1; margin-bottom: 16px; display: block; opacity: 0.7; }
.how-step h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 9px; color: var(--ivory); }
.how-step p { color: rgba(245,239,228,0.68); font-size: 14px; line-height: 1.7; }

/* Enterprise travel platform layer */
.gateway-hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.gateway-video,
.gateway-shade {
  position: absolute;
  inset: 0;
}
.gateway-video {
  z-index: -2;
}
.gateway-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9,9,12,0.84), rgba(9,9,12,0.28) 58%, rgba(9,9,12,0.7)),
    linear-gradient(180deg, rgba(9,9,12,0.18), rgba(9,9,12,0.82));
}
.gateway-content {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 120px;
  text-align: center;
}
.gateway-content h1 {
  width: min(900px, 100%);
  margin: 0 auto;
  color: var(--ivory);
  font-family: var(--condensed);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}
.gateway-content .hero-deck {
  margin-left: auto;
  margin-right: auto;
}
.finder-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  align-items: end;
  gap: clamp(26px, 5vw, 70px);
}
.finder-strip h2,
.trust-panel h2 {
  color: #171410;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
}
.finder-strip-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}
.finder-strip-form select,
.filter-panel select,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(23,20,16,0.18);
  background: #fffaf2;
  color: #171410;
  padding: 13px 14px;
  outline: none;
}
.feature-expedition {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}
.feature-expedition img {
  min-height: 520px;
  border: 1px solid var(--line-dark);
}
.platform-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1px;
  background: var(--line-dark);
}
.platform-grid.two { grid-template-columns: repeat(2, 1fr); }
.platform-grid.three { grid-template-columns: repeat(3, 1fr); }
.platform-grid.four { grid-template-columns: repeat(4, 1fr); }
.platform-card,
.package-product {
  background: var(--charcoal);
  color: var(--ivory);
  min-width: 0;
}
.light-band .platform-grid,
.light-band .style-grid {
  background: var(--line-light);
}
.light-band .platform-card,
.light-band .package-product {
  background: #171410;
}
.platform-card-media {
  position: relative;
  display: block;
  height: 270px;
  overflow: hidden;
  text-decoration: none;
}
.platform-card-media img {
  transition: transform 0.85s var(--ease);
}
.platform-card:hover .platform-card-media img {
  transform: scale(1.055);
}
.platform-card-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(9,9,12,0.74);
  border: 1px solid rgba(214,185,115,0.32);
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 10px;
}
.platform-card-body,
.package-product {
  padding: 28px;
}
.platform-card-body h3,
.package-product h3,
.experience-grid h3 {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.18;
  margin-bottom: 10px;
}
.platform-card-body p,
.package-product p,
.package-product span {
  color: rgba(245,239,228,0.68);
  font-size: 14px;
  line-height: 1.62;
  margin-bottom: 18px;
}
.package-product strong {
  display: block;
  color: rgba(245,239,228,0.86);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.lux-meta,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0;
}
.lux-meta span,
.mini-tags span,
.quick-facts span {
  border: 1px solid rgba(214,185,115,0.24);
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 6px 9px;
}
.gateway-content .hero-actions,
.final-content .hero-actions {
  justify-content: center;
}
.gateway-content .lux-meta,
.tour-product-content .lux-meta {
  justify-content: center;
}
.style-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.style-grid a {
  min-height: 132px;
  display: flex;
  align-items: end;
  background: #fffaf2;
  color: #171410;
  padding: 24px;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.style-grid a:hover {
  background: var(--action);
  color: #fff;
}
.style-grid span {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.1;
}
.trust-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}
.trust-list,
.group-rates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-light);
}
.trust-list span,
.group-rates span {
  background: #fffaf2;
  color: #171410;
  padding: 22px;
  font-family: var(--serif);
  font-size: 18px;
}
.group-rates {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line-dark);
}
.group-rates span {
  background: var(--charcoal);
  color: var(--ivory);
}
.group-rates strong,
.group-rates small {
  display: block;
  font-family: var(--condensed);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.group-rates strong {
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 8px;
}
.group-rates small {
  color: rgba(245,239,228,0.52);
  font-size: 9px;
  line-height: 1.45;
  margin-top: 10px;
}
.platform-page-hero .page-hero-content h1 {
  width: min(980px, 100%);
}
.platform-page-hero {
  align-items: center;
}
.page-hero-content {
  text-align: center;
}
.page-hero-content h1,
.page-hero-content p.hero-deck {
  margin-left: auto;
  margin-right: auto;
}
.trip-finder-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.filter-panel,
.info-panel,
.review-note {
  border: 1px solid var(--line-dark);
  background: var(--charcoal);
  padding: 24px;
}
.filter-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}
.filter-panel label,
.inquiry-form label {
  display: grid;
  gap: 7px;
}
.filter-panel span,
.inquiry-form .label-text,
.info-panel span {
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.results-heading h2 {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}
.empty-state {
  background: var(--charcoal);
  color: rgba(245,239,228,0.68);
  padding: 34px;
  grid-column: 1 / -1;
}
.empty-state.dark {
  background: #171410;
}
.destination-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 340px;
  gap: clamp(34px, 6vw, 78px);
}
.destination-layout > div > p:not(.eyebrow),
.dest-detail-content p:last-child {
  color: rgba(245,239,228,0.72);
  line-height: 1.75;
  font-size: clamp(16px, 1.2vw, 18px);
}
.info-panel {
  display: grid;
  gap: 10px;
  height: fit-content;
}
.info-panel strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 12px;
}
.info-panel p {
  color: rgba(245,239,228,0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}
.info-panel.dark {
  background: #171410;
}
.experience-grid,
.package-columns {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
}
.experience-grid article,
.package-columns > div {
  background: #fffaf2;
  color: #171410;
  padding: 28px;
}
.experience-grid span {
  color: var(--gold-deep);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.experience-grid h3 {
  color: #171410;
  margin-top: 8px;
}
.package-columns {
  background: var(--line-dark);
}
.package-columns > div {
  background: var(--charcoal);
}
.sample-itinerary {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
}
.sample-itinerary div {
  background: var(--charcoal);
  padding: 18px 22px;
}
.sample-itinerary span {
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sample-itinerary p {
  color: rgba(245,239,228,0.72);
  margin-top: 5px;
}
.tour-product-hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
}
.tour-product-hero img {
  filter: saturate(0.8) brightness(0.62);
}
.tour-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,12,0.1), rgba(9,9,12,0.92));
}
.tour-product-content {
  position: absolute;
  left: clamp(22px, 6vw, 86px);
  right: clamp(22px, 6vw, 86px);
  bottom: clamp(40px, 8vw, 92px);
  text-align: center;
}
.tour-product-content h1 {
  color: var(--ivory);
  font-family: var(--condensed);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.tour-product-content p {
  color: rgba(245,239,228,0.78);
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.65;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.inquiry-shell {
  width: min(920px, 100%);
  margin: 0 auto;
}
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.inquiry-form .full-width,
.inquiry-form .form-section-title,
.inquiry-form .review-note,
.inquiry-form button {
  grid-column: 1 / -1;
}
.review-note {
  color: rgba(245,239,228,0.72);
  line-height: 1.6;
}
.legal-copy {
  width: min(820px, 100%);
  margin: 0 auto;
  color: #171410;
}
.legal-copy.dark {
  color: var(--ivory);
}
.legal-copy p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
}

@media print {
  .site-nav, #comp-mobile-menu, #navbar-placeholder, .page-hero,
  .confirmation-badge, .confirmation-actions, #footer-placeholder, .footer, .no-print { display: none !important; }
  body { background: white !important; color: black !important; }
  body::before { display: none !important; }
  .receipt, .ticket { page-break-inside: avoid; }
}
@media (max-width: 1024px) {
  .tour-detail-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; order: -1; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid.three,
  .platform-grid.four,
  .experience-grid,
  .package-columns,
  .style-grid,
  .group-rates {
    grid-template-columns: repeat(2, 1fr);
  }
  .trip-finder-layout,
  .destination-layout,
  .finder-strip,
  .feature-expedition,
  .trust-panel {
    grid-template-columns: 1fr;
  }
  .filter-panel {
    position: static;
  }
}
@media (max-width: 820px) {
  .booking-form { grid-template-columns: 1fr; }
  .booking-form .full-width { grid-column: 1; }
  .booking-steps { flex-direction: column; }
  .step + .step { border-left: 1px solid var(--line-dark); border-top: 0; }
  .ticket-body { grid-template-columns: 1fr; }
  .ticket-divider { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .finder-strip-form,
  .platform-grid.two,
  .inquiry-form {
    grid-template-columns: 1fr;
  }
  .inquiry-form .full-width,
  .inquiry-form .form-section-title,
  .inquiry-form .review-note,
  .inquiry-form button {
    grid-column: 1;
  }
}
@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .platform-grid.three,
  .platform-grid.four,
  .experience-grid,
  .package-columns,
  .style-grid,
  .group-rates,
  .trust-list {
    grid-template-columns: 1fr;
  }
  .gateway-content {
    padding-left: 0;
  }
  .platform-card-body,
  .package-product {
    padding: 22px;
  }
  .receipt { padding: 22px; }
  .ticket-header, .ticket-body, .ticket-ref { padding-left: 18px; padding-right: 18px; }
  .filter-bar { gap: 5px; }
  .sort-select { margin-left: 0; width: 100%; }
}
