/* ============================================================
   Bright Star Tourism — "Night on the Nile"
   Deep lapis navy canvas · warm off-white ink · gold as treasure
   ============================================================ */

:root {
  /* color */
  --navy-950: oklch(0.17 0.045 265);
  --navy-900: oklch(0.21 0.05 263);
  --navy-800: oklch(0.25 0.052 261);
  --navy-700: oklch(0.31 0.055 260);
  --line: oklch(0.32 0.04 260 / 0.55);
  --ink: oklch(0.96 0.012 85);
  --ink-soft: oklch(0.85 0.02 80);
  --ink-faint: oklch(0.72 0.025 75);
  --gold: oklch(0.78 0.125 88);
  --gold-bright: oklch(0.85 0.135 92);
  --gold-deep: oklch(0.63 0.115 80);
  --on-gold: oklch(0.2 0.05 264);
  --ok: oklch(0.75 0.13 160);
  --err: oklch(0.68 0.19 25);

  /* type */
  --font-display: 'Marcellus', 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --fs-hero: clamp(2.6rem, 1.2rem + 5.2vw, 5.2rem);
  --fs-h2: clamp(1.9rem, 1.1rem + 2.6vw, 3rem);
  --fs-h3: clamp(1.35rem, 1.05rem + 1.1vw, 1.9rem);

  /* motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --t-fast: 160ms;
  --t-med: 250ms;

  /* layout */
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 10px;

  /* z-scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-backdrop: 300;
  --z-modal: 400;
  --z-toast: 500;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }

p { margin: 0 0 1em; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--gold); color: var(--on-gold); }

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

.container-narrow { max-width: 820px; }

.skip-link {
  position: absolute;
  top: -48px; left: 16px;
  background: var(--gold); color: var(--on-gold);
  padding: 10px 18px; border-radius: 8px;
  z-index: var(--z-toast);
  transition: top var(--t-fast) var(--ease-out);
}
.skip-link:focus { top: 12px; color: var(--on-gold); }

.muted { color: var(--ink-faint); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.72em 1.5em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font: 600 0.95rem/1.2 var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out),
              background-color var(--t-fast) ease,
              border-color var(--t-fast) ease,
              color var(--t-fast) ease;
}
.btn:active { transform: scale(0.97); }
.btn-lg { padding: 0.9em 2em; font-size: 1.02rem; }
.btn-sm { padding: 0.5em 1em; font-size: 0.85rem; }

.btn-gold { background: var(--gold); color: var(--on-gold); }
.btn-gold:hover { background: var(--gold-bright); color: var(--on-gold); }

.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--on-gold); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-weight: 600; color: var(--gold);
}
.link-arrow::after {
  content: '→';
  transition: transform var(--t-fast) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .link-arrow:hover::after { transform: translateX(4px); }
}

/* ---------------- header ---------------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-sticky);
  background: color-mix(in oklab, var(--navy-900) 96%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color var(--t-med) ease, border-color var(--t-med) ease;
}
body.has-hero .site-header:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body:not(.has-hero) main { padding-top: 72px; }

.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 72px;
}

.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--ink);
}
.brand img { flex: none; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand:hover .brand-word { color: var(--gold-bright); }

.main-nav {
  display: flex; gap: clamp(0.8rem, 1.8vw, 1.6rem);
  margin-inline: auto;
}
.main-nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4em 0.1em;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right var(--t-med) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .main-nav a:hover { color: var(--ink); }
  .main-nav a:hover::after { right: 0; }
}

.header-actions { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease-out), opacity var(--t-fast) ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: calc(var(--z-sticky) - 1);
  background: color-mix(in oklab, var(--navy-950) 97%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 100px var(--gutter) 40px;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  color: var(--ink);
  padding: 0.35em 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
}
.mobile-menu.open nav a {
  animation: menu-item 400ms var(--ease-out) forwards;
}
.mobile-menu.open nav a:nth-child(1) { animation-delay: 30ms; }
.mobile-menu.open nav a:nth-child(2) { animation-delay: 60ms; }
.mobile-menu.open nav a:nth-child(3) { animation-delay: 90ms; }
.mobile-menu.open nav a:nth-child(4) { animation-delay: 120ms; }
.mobile-menu.open nav a:nth-child(5) { animation-delay: 150ms; }
.mobile-menu.open nav a:nth-child(6) { animation-delay: 180ms; }
.mobile-menu.open nav a:nth-child(7) { animation-delay: 210ms; }
.mobile-menu.open nav a:nth-child(8) { animation-delay: 240ms; }
@keyframes menu-item {
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu-foot { margin-top: auto; padding-top: 2rem; }
.mobile-menu-foot p { color: var(--ink-faint); font-size: 0.9rem; margin-top: 1rem; }

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.hero-slide.is-active img {
  animation: hero-settle 1400ms var(--ease-out) forwards;
}
@keyframes hero-settle {
  to { transform: scale(1); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    oklch(0.17 0.045 265 / 0.42) 0%,
    oklch(0.17 0.045 265 / 0.28) 40%,
    oklch(0.17 0.045 265 / 0.85) 100%);
}
.hero-content {
  position: relative;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 70px;
}
.hero-kicker {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}
.hero-title {
  max-width: 14ch;
  margin-bottom: 0.4em;
  text-shadow: 0 2px 30px oklch(0.1 0.03 265 / 0.5);
}
.hero-sub {
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
}

/* orchestrated hero entrance (once per load) */
.hero-kicker, .hero-title, .hero-sub, .hero-search, .hero-trust {
  animation: rise-in 700ms var(--ease-out) backwards;
}
.hero-title { animation-delay: 60ms; }
.hero-sub { animation-delay: 120ms; }
.hero-search { animation-delay: 200ms; }
.hero-trust { animation-delay: 280ms; }
@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
}

.hero-search {
  display: flex;
  gap: 10px;
  background: color-mix(in oklab, var(--navy-900) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  max-width: 720px;
  flex-wrap: wrap;
}
.hs-field { display: flex; flex-direction: column; gap: 3px; min-width: 160px; }
.hs-grow { flex: 1 1 220px; }
.hs-field label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gold);
}
.hs-field input, .hs-field select {
  background: none; border: 0;
  color: var(--ink);
  font: 500 1rem var(--font-body);
  padding: 4px 0;
}
.hs-field input::placeholder { color: var(--ink-faint); }
.hs-field :focus { outline: none; }
.hs-field:focus-within label { color: var(--gold-bright); }
.hs-btn { align-self: stretch; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem;
  list-style: none; margin: 1.2rem 0 0; padding: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.hero-trust li { display: flex; align-items: center; gap: 0.45em; }
.hero-trust li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-dots {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
}
.hero-dots button {
  width: 34px; height: 4px;
  border: 0; border-radius: 2px;
  background: oklch(0.9 0.01 85 / 0.35);
  cursor: pointer;
  transition: background-color var(--t-med) ease;
}
.hero-dots button.on { background: var(--gold); }

/* ---------------- sections ---------------- */
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-alt { background: var(--navy-900); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head p { color: var(--ink-faint); font-size: 1.05rem; margin: 0; }
.section-more { text-align: center; margin: 2.5rem 0 0; }

.page-head {
  padding: 120px 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: var(--navy-900);
}
.page-head h1 { font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem); max-width: 22ch; }
.page-head-sub { color: var(--ink-faint); max-width: 62ch; font-size: 1.05rem; margin: 0; }

.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 0.5em;
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--ink-faint); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span[aria-current] { color: var(--ink-soft); }

/* ---------------- stats ---------------- */
.stats-strip {
  border-block: 1px solid var(--line);
  background: var(--navy-900);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding-block: 1.6rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.85rem; color: var(--ink-faint); }
.stats-stack { display: flex; flex-direction: column; gap: 1rem; margin-block: 1.5rem; }
.stats-stack .stat { text-align: left; }

/* ---------------- destination mosaic ---------------- */
.dest-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}
.dest-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}
.dest-tile-lg { grid-column: span 2; grid-row: span 2; }
.dest-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.dest-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 40%, oklch(0.15 0.04 265 / 0.85));
}
.dest-tile-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.1rem 1.25rem;
  z-index: 1;
}
.dest-tile-info h3 { margin: 0; font-size: 1.3rem; }
.dest-tile-lg .dest-tile-info h3 { font-size: 1.8rem; }
.dest-tile-info p { margin: 0; color: var(--gold); font-size: 0.85rem; font-weight: 600; }
@media (hover: hover) and (pointer: fine) {
  .dest-tile:hover img { transform: scale(1.05); }
}

/* ---------------- tour cards ---------------- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}

.rail-wrap { overflow: hidden; }
.tour-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(330px, 82vw);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  margin-bottom: -14px;
  scrollbar-width: thin;
  scrollbar-color: var(--navy-700) transparent;
}
.tour-rail > * { scroll-snap-align: start; }

.tour-card {
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.section-alt .tour-card { background: var(--navy-800); }
@media (hover: hover) and (pointer: fine) {
  .tour-card:hover { transform: translateY(-4px); border-color: var(--navy-700); }
  .tour-card:hover .tour-card-media img { transform: scale(1.04); }
  .tour-card:hover .tour-card-title { color: var(--gold-bright); }
}
.tour-card-link { display: block; color: inherit; }
.tour-card-link:hover { color: inherit; }
.tour-card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.tour-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}
.tour-card-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(0.15 0.04 265 / 0.8));
}
.tour-card-chips {
  position: absolute;
  bottom: 10px; left: 12px;
  display: flex; gap: 6px;
  z-index: 1;
}
.chip {
  display: inline-flex; align-items: center; gap: 0.35em;
  background: oklch(0.2 0.05 263 / 0.82);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 0.76rem; font-weight: 600;
  padding: 0.32em 0.75em;
  border-radius: 99px;
  border: 1px solid oklch(0.4 0.04 260 / 0.4);
}
.chip-lg { font-size: 0.88rem; padding: 0.5em 1em; background: var(--navy-800); }
.save-chip {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 1;
  background: var(--gold);
  color: var(--on-gold);
  font-size: 0.76rem; font-weight: 700;
  padding: 0.35em 0.8em;
  border-radius: 99px;
}
.tour-card-body { padding: 1.1rem 1.2rem 1.25rem; }
.tour-card-title {
  font-size: 1.22rem;
  margin-bottom: 0.45rem;
  transition: color var(--t-fast) ease;
}
.rating-row {
  display: flex; align-items: center; gap: 0.4em;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0 0 0.7rem;
}
.rating-new { color: var(--ink-faint); font-style: italic; }
.stars { display: inline-flex; gap: 1px; color: var(--gold); margin: 0; }
.stars svg { width: 14px; height: 14px; }
.rating-num { font-weight: 700; color: var(--ink); }
.rating-count { color: var(--ink-faint); }
.badge-bestseller {
  background: var(--gold);
  color: var(--on-gold);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.3em 0.7em;
  border-radius: 99px;
}
.tour-card-price {
  display: flex; align-items: baseline; gap: 0.45em;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}
.price-label { font-size: 0.8rem; color: var(--ink-faint); }
.price-old { color: var(--ink-faint); font-size: 0.92rem; }
.price-now {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.price-meta { font-size: 0.8rem; color: var(--ink-faint); }

/* ---------------- filter bar ---------------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: end;
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 2rem;
}
.filter-field { display: flex; flex-direction: column; gap: 4px; min-width: 150px; }
.filter-grow { flex: 1 1 200px; }
.filter-field label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.filter-field input, .filter-field select {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: 500 0.95rem var(--font-body);
  padding: 9px 12px;
  transition: border-color var(--t-fast) ease;
}
.filter-field input:focus, .filter-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.filter-clear { font-size: 0.9rem; color: var(--ink-faint); align-self: center; }
.filter-clear:hover { color: var(--err); }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 2.5rem; }
.page-num {
  display: grid; place-items: center;
  min-width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-weight: 600;
  transition: border-color var(--t-fast) ease, transform var(--t-fast) var(--ease-out);
}
.page-num:hover { border-color: var(--gold); color: var(--gold); }
.page-num:active { transform: scale(0.94); }
.page-num.on { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }

/* ---------------- services ---------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}
.service-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: inherit;
  transition: transform var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.service-card:hover { color: inherit; }
@media (hover: hover) and (pointer: fine) {
  .service-card:hover { transform: translateY(-4px); border-color: var(--navy-700); }
  .service-card:hover h3, .service-card:hover h2 { color: var(--gold-bright); }
}
.service-card h3, .service-card h2 { margin: 0; font-size: 1.25rem; transition: color var(--t-fast) ease; }
.service-card p { color: var(--ink-faint); font-size: 0.94rem; margin: 0; flex: 1; }
.service-card .link-arrow { font-size: 0.9rem; }

.service-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--navy-800);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative;
}
.service-icon::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 3px;
  mask-size: contain; -webkit-mask-size: contain;
  mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
  mask-position: center; -webkit-mask-position: center;
  /* default: star */
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1.5l2.6 5.3 5.9.9-4.2 4.1 1 5.8L10 14.9l-5.3 2.7 1-5.8L1.5 7.7l5.9-.9z'/%3E%3C/svg%3E");
}
.service-icon[data-icon="bed"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6v12h2v-3h14v3h2v-8a4 4 0 0 0-4-4h-6v5H5V6H3zm5 1a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="ship"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l7 8h-6v6h-2v-6H5l7-8zM3 18c1.5 0 1.5 1.5 3.5 1.5S8.5 18 10 18s1.5 1.5 3.5 1.5S15.5 18 17 18s1.5 1.5 3.5 1.5V22c-2 0-2-1.5-3.5-1.5S15.5 22 13.5 22 12 20.5 10.5 20.5 8.5 22 6.5 22 5 20.5 3 20.5V18z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="ticket"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5a2 2 0 0 0-2 2v3a2 2 0 1 1 0 4v3a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3a2 2 0 1 1 0-4V7a2 2 0 0 0-2-2H4zm9 2v2h2V7h-2zm0 4v2h2v-2h-2zm0 4v2h2v-2h-2z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="car"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 11l1.5-4.5A2 2 0 0 1 8.4 5h7.2a2 2 0 0 1 1.9 1.5L19 11a2 2 0 0 1 2 2v5h-2v2h-3v-2H8v2H5v-2H3v-5a2 2 0 0 1 2-2zm2 4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm10 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="passport"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm6 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8zM8 17h8v1.5H8V17z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="concierge"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4a2 2 0 0 1 2 2h-1v1.05A8 8 0 0 1 20 15H4a8 8 0 0 1 7-7.95V6h-1a2 2 0 0 1 2-2zM2 17h20v2H2v-2z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="guide"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 12c4.4 0 8 2.2 8 5v3H4v-3c0-2.8 3.6-5 8-5z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="plane"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="dining"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v9a3 3 0 0 0 2 2.83V22h2v-8.17A3 3 0 0 0 13 11V2h-2v7H10V2H7zm10 0c-1.7 0-3 1.6-3 3.5V13h2v9h2V2h-1z'/%3E%3C/svg%3E"); }

.service-grid-lg { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.service-card-img { padding: 0; overflow: hidden; }
.service-card-img img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  transition: transform 500ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .service-card-img:hover img { transform: scale(1.04); }
}
.service-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-card-body p { flex: 1; }

/* ---------------- why band ---------------- */
.why-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.why-media img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.why-list li { padding-left: 1.6rem; position: relative; }
.why-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.45em;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.why-list strong { color: var(--ink); }

/* ---------------- reviews ---------------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin: 0;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.section:not(.section-alt) .review-card { background: var(--navy-900); }
.review-card blockquote { margin: 0; }
.review-card blockquote strong { display: block; color: var(--ink); margin-bottom: 0.3em; }
.review-card blockquote p { margin: 0; font-size: 0.96rem; }
.review-card figcaption { font-size: 0.85rem; color: var(--ink-faint); }
.review-tour { display: block; margin-top: 2px; }
.review-tour a { font-size: 0.82rem; }
.review-stack { display: flex; flex-direction: column; gap: 14px; margin-bottom: 1.5rem; }

/* ---------------- FAQ ---------------- */
.faq-cols {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-intro p { color: var(--ink-faint); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.section-alt .faq-item { background: var(--navy-800); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  transition: color var(--t-fast) ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-bright); }
.faq-icon { flex: none; color: var(--gold); transition: transform var(--t-med) var(--ease-out); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem 1.1rem; }
.faq-answer p { margin: 0; font-size: 0.96rem; }
.faq-item[open] .faq-answer { animation: faq-open var(--t-med) var(--ease-out); }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
}

/* ---------------- posts ---------------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.post-card {
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  display: flex; flex-direction: column;
  transition: transform var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.section-alt .post-card { background: var(--navy-800); }
.post-card:hover { color: inherit; }
@media (hover: hover) and (pointer: fine) {
  .post-card:hover { transform: translateY(-4px); border-color: var(--navy-700); }
  .post-card:hover h2, .post-card:hover h3 { color: var(--gold-bright); }
}
.post-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.post-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.post-card time {
  font-size: 0.8rem; font-weight: 600;
  color: var(--gold);
}
.post-card h2, .post-card h3 { font-size: 1.25rem; margin: 0.4rem 0 0.5rem; transition: color var(--t-fast) ease; }
.post-card p { color: var(--ink-faint); font-size: 0.93rem; margin: 0; }

.post-article .post-hero img { border-radius: var(--radius); margin-bottom: 2rem; }
.post-meta { color: var(--ink-faint); }
.post-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy-900);
  padding: 2rem;
  text-align: center;
  margin-block: 3rem;
}
.post-cta h2 { font-size: 1.5rem; }

/* ---------------- prose ---------------- */
.prose { max-width: 68ch; }
.prose p { margin-bottom: 1.1em; }
.prose strong { color: var(--ink); }
.prose-lg { font-size: 1.05rem; }
.prose h2, .prose h3 { margin-top: 1.6em; }

/* ---------------- CTA band ---------------- */
.cta-band {
  background:
    linear-gradient(180deg, oklch(0.17 0.045 265 / 0.88), oklch(0.17 0.045 265 / 0.92)),
    url('https://images.unsplash.com/photo-1515854444493-2c337cf5cfd0?auto=format&fit=crop&w=2000&q=70') center / cover;
  padding-block: clamp(4rem, 9vw, 6.5rem);
  border-block: 1px solid var(--line);
}
.cta-inner { text-align: center; max-width: 720px; }
.cta-inner p { color: var(--ink-soft); font-size: 1.1rem; }
.cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 1.6rem;
}

/* ---------------- page: tour detail ---------------- */
.tour-head { padding-bottom: 1.5rem; }
.tour-head h1 { font-size: clamp(1.8rem, 1.1rem + 2.6vw, 3rem); }
.tour-head-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.6em;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.meta-dot { color: var(--ink-faint); }

.tour-gallery-wrap { padding-block: 1.5rem 0; }
.tour-gallery { display: grid; gap: 10px; }
.gallery-main {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  background: var(--navy-800);
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-main img.swapping { animation: gal-fade 250ms ease; }
@keyframes gal-fade { from { opacity: 0.25; filter: blur(4px); } }
.gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 110px;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--navy-700) transparent;
}
.gallery-thumb {
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  aspect-ratio: 3 / 2;
  opacity: 0.7;
  transition: opacity var(--t-fast) ease, border-color var(--t-fast) ease, transform var(--t-fast) var(--ease-out);
}
.gallery-thumb:active { transform: scale(0.95); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.on { border-color: var(--gold); opacity: 1; }
.gallery-thumb:hover { opacity: 1; }

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 4fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: 2.5rem 4rem;
  align-items: start;
}
.tour-content { min-width: 0; }

.quickfacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.qf { background: var(--navy-900); padding: 0.9rem 1.1rem; }
.qf-label {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 2px;
}
.qf-value { font-weight: 600; color: var(--ink); font-size: 0.95rem; }

.tour-section { margin-top: 3rem; }
.tour-section h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 1rem; }

.itinerary {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.itin-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1.2rem;
  position: relative;
  padding-bottom: 1.6rem;
}
.itin-step:last-child { padding-bottom: 0; }
.itin-step::before {
  content: '';
  position: absolute;
  left: 41px; top: 34px; bottom: 4px;
  width: 1px;
  background: var(--line);
}
.itin-step:last-child::before { display: none; }
.itin-marker {
  align-self: start;
  justify-self: stretch;
  text-align: center;
  background: var(--navy-800);
  border: 1px solid var(--line);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 99px;
  padding: 0.4em 0;
  position: relative;
  z-index: 1;
}
.itin-body h3 { font-size: 1.15rem; margin-bottom: 0.25em; font-family: var(--font-body); font-weight: 700; }
.itin-body p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }

.incl-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem 2rem;
}
.incl-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.incl-list li { padding-left: 1.7rem; position: relative; font-size: 0.97rem; }
.incl-list li::before {
  position: absolute; left: 0; top: 0;
  font-weight: 700;
}
.incl-list .inc::before { content: '✓'; color: var(--ok); }
.incl-list .exc::before { content: '✕'; color: var(--err); }

.bring-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1rem; }
.important-note {
  border: 1px solid var(--line);
  background: var(--navy-900);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  margin: 0;
}

/* booking widget */
.booking-col { position: sticky; top: 88px; }
.booking-widget {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 24px 60px oklch(0.1 0.03 265 / 0.45);
}
.bw-price { display: flex; align-items: baseline; gap: 0.5em; }
.bw-price .price-now { font-size: 2.1rem; }
.bw-childnote { font-size: 0.85rem; color: var(--ink-faint); margin: 0.2rem 0 0; }
.bw-form { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.9rem; }

.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.form-field .opt { color: var(--ink-faint); font-weight: 400; }
.form-field input, .form-field select, .form-field textarea {
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: 500 0.97rem var(--font-body);
  padding: 10px 12px;
  width: 100%;
  transition: border-color var(--t-fast) ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-faint); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field input[type="date"] { color-scheme: dark; }
.form-row { display: grid; gap: 0.9rem; }
.form-row-2 { grid-template-columns: 1fr 1fr; }

/* ---------- dropdowns (native <select>) ----------
   The site is a dark theme, so a select whose text is off-white opens a native
   option list that defaults to a white popup — white-on-white, unreadable.
   color-scheme:dark makes the browser paint a dark popup with light text, and
   the explicit option colours (hex fallback + token) keep it readable in every
   engine, including the OS-rendered popups on Windows. */
select { color-scheme: dark; }
select option,
select optgroup {
  background-color: #1f2740;          /* dark navy fallback */
  background-color: var(--navy-800);
  color: #f7f4ee;                     /* warm off-white fallback */
  color: var(--ink);
  font-weight: 500;
}
select option:checked,
select option:hover {
  background-color: #2b345a;
  background-color: var(--navy-700);
  color: #ffffff;
}

.dest-select { display: flex; flex-wrap: wrap; gap: 10px; }
.dest-select label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.55em 1.1em; border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.9rem; color: var(--ink-soft); cursor: pointer;
  white-space: nowrap; user-select: none;
  transition: border-color var(--t-fast) ease, color var(--t-fast) ease, background var(--t-fast) ease;
}
.dest-select label:hover { border-color: var(--gold-deep); color: var(--ink); }
.dest-select input { accent-color: var(--gold); width: auto; margin: 0; flex: none; }
.dest-select label:has(input:checked) { border-color: var(--gold); color: var(--ink); background: var(--navy-800); }

.stepper {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-900);
}
.stepper button {
  background: none; border: 0;
  color: var(--gold);
  font-size: 1.2rem; font-weight: 700;
  cursor: pointer;
  transition: background-color var(--t-fast) ease;
  height: 42px;
}
.stepper button:hover { background: var(--navy-700); }
.stepper button:active { background: var(--navy-700); }
.stepper input {
  border: 0 !important; text-align: center;
  background: none !important;
  padding: 0 !important;
  -moz-appearance: textfield;
  font-variant-numeric: tabular-nums;
}
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }

.bw-total {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  font-size: 0.95rem;
}
.bw-total strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.bw-submit { width: 100%; }
.bw-trust {
  list-style: none;
  margin: 0.4rem 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.bw-trust li { padding-left: 1.4rem; position: relative; }
.bw-trust li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--ok);
  font-weight: 700;
}
.bw-whatsapp {
  display: block;
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
}

/* mobile sticky book bar */
.book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in oklab, var(--navy-800) 94%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--navy-700);
  transform: translateY(100%);
  transition: transform var(--t-med) var(--ease-out);
}
.book-bar.show { transform: translateY(0); }
.book-bar .price-now { font-size: 1.4rem; }

/* ---------------- transfers ---------------- */
.transfer-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.transfer-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.6fr) 70px 100px 90px;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.3rem;
  border-bottom: 1px solid var(--line);
  background: var(--navy-900);
  transition: background-color var(--t-fast) ease;
}
.transfer-row:last-child { border-bottom: 0; }
@media (hover: hover) and (pointer: fine) {
  .transfer-row:not(.transfer-head):hover { background: var(--navy-800); }
}
.transfer-head {
  background: var(--navy-800);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-faint);
  padding-block: 0.7rem;
}
.tr-route strong { color: var(--ink); font-weight: 600; }
.tr-arrow { color: var(--gold); margin-inline: 0.35em; }
.tr-route small { display: block; color: var(--ink-faint); margin-top: 2px; }
.tr-vehicle, .tr-time { font-size: 0.9rem; color: var(--ink-soft); }
.tr-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.transfer-cta {
  text-align: center;
  margin-top: 3rem;
}
.transfer-cta p { color: var(--ink-faint); }

/* ---------------- services detail ---------------- */
.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.service-media { margin: 0; }
.service-media img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 100%;
  position: sticky;
  top: 88px;
}
.check-list {
  list-style: none;
  margin: 1.5rem 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.check-list li { padding-left: 1.8rem; position: relative; color: var(--ink-soft); }
.check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.tier-card {
  position: relative;
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column;
}
.tier-popular { border-color: var(--gold-deep); }
.tier-flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--on-gold);
  font-size: 0.75rem; font-weight: 700;
  padding: 0.3em 1em;
  border-radius: 99px;
  white-space: nowrap;
}
.tier-badge {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gold);
  margin: 0 0 0.3rem;
}
.tier-card h3 { margin-bottom: 0.8rem; }
.tier-card ul {
  list-style: none;
  margin: 0 0 1.5rem; padding: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
  flex: 1;
}
.tier-card li { padding-left: 1.5rem; position: relative; font-size: 0.95rem; }
.tier-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.inquiry-wrap {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.inquiry-form {
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.form-privacy { font-size: 0.83rem; color: var(--ink-faint); margin: 0; }

.form-ok {
  background: color-mix(in oklab, var(--ok) 12%, var(--navy-900));
  border: 1px solid color-mix(in oklab, var(--ok) 45%, transparent);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
}
.form-ok-lg { padding: 2rem; border-radius: var(--radius); }
.form-ok-lg h2, .form-ok-lg h3 { margin-bottom: 0.4rem; }
.form-err {
  background: color-mix(in oklab, var(--err) 14%, var(--navy-900));
  border: 1px solid color-mix(in oklab, var(--err) 45%, transparent);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  font-size: 0.92rem;
}

/* ---------------- destinations pages ---------------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.dest-card {
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: transform var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.dest-card:hover { color: inherit; }
@media (hover: hover) and (pointer: fine) {
  .dest-card:hover { transform: translateY(-4px); border-color: var(--navy-700); }
  .dest-card:hover h2 { color: var(--gold-bright); }
  .dest-card:hover img { transform: scale(1.04); }
}
.dest-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  transition: transform 500ms var(--ease-out);
}
.dest-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.dest-card h2 { font-size: 1.4rem; margin-bottom: 0.2rem; transition: color var(--t-fast) ease; }
.dest-card p { color: var(--ink-faint); margin-bottom: 0.7rem; }
.dest-count { font-size: 0.88rem; font-weight: 600; color: var(--gold); }

.dest-hero {
  position: relative;
  min-height: 56vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.dest-hero > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.dest-hero-content { position: relative; padding-block: 2.5rem; width: 100%; }
.dest-hero h1 { margin-bottom: 0.1em; }
.breadcrumbs-light, .breadcrumbs-light a { color: var(--ink-soft); }

.dest-intro-cols, .about-cols, .contact-cols {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.dest-aside, .about-aside {
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.dest-aside h2 { font-size: 1.4rem; }
.about-aside { padding: 0; overflow: hidden; border: 0; background: none; }
.about-media { margin: 0 0 1.2rem; }
.about-media img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ---------------- contact ---------------- */
.contact-cols { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.channel-card {
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  color: inherit;
  display: block;
  transition: transform var(--t-med) var(--ease-out), border-color var(--t-med) ease;
}
.channel-card:hover { color: inherit; }
@media (hover: hover) and (pointer: fine) {
  a.channel-card:hover { transform: translateY(-3px); border-color: var(--gold-deep); }
}
.channel-card h2 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.channel-value { color: var(--gold); font-weight: 700; margin-bottom: 0.3rem; word-break: break-word; }
.channel-card p:last-child { color: var(--ink-faint); font-size: 0.88rem; margin: 0; }

/* ---------------- booking success ---------------- */
.booking-success { padding-top: 120px; }
.success-card {
  background: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 3rem);
  text-align: center;
}
.success-mark {
  color: var(--ok);
  display: inline-block;
  margin-bottom: 1rem;
}
.success-mark svg circle {
  stroke-dasharray: 151; stroke-dashoffset: 151;
  animation: draw 700ms var(--ease-out) 100ms forwards;
}
.success-mark svg path {
  stroke-dasharray: 36; stroke-dashoffset: 36;
  animation: draw 400ms var(--ease-out) 600ms forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.success-code { color: var(--ink-faint); }
.success-code strong { color: var(--gold); font-size: 1.15em; letter-spacing: 0.04em; }
.success-details {
  text-align: left;
  margin: 2rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.success-details > div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--line);
}
.success-details > div:last-child { border-bottom: 0; }
.success-details dt { color: var(--ink-faint); font-size: 0.9rem; }
.success-details dd { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }
.success-total { color: var(--gold) !important; font-family: var(--font-display); font-size: 1.2rem; }
.success-next { text-align: left; margin-bottom: 2rem; }
.success-next h2 { font-size: 1.3rem; }
.success-next ol { margin: 0; padding-left: 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }

/* ---------------- empty & 404 ---------------- */
.empty-state {
  text-align: center;
  padding: clamp(2rem, 8vw, 5rem) 1rem;
  max-width: 560px;
  margin-inline: auto;
}
.empty-state h1, .empty-state h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.empty-state p { color: var(--ink-faint); }
.empty-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.notfound-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 9rem);
  color: var(--navy-700);
  line-height: 1;
  margin: 0;
}

/* ---------------- footer ---------------- */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
.footer-tag { color: var(--ink-faint); margin: 0.8rem 0 0.4rem; }
.footer-license { font-size: 0.83rem; color: var(--ink-faint); }
.footer-col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.footer-col a { color: var(--ink-soft); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-col p { color: var(--ink-faint); font-size: 0.9rem; margin: 0; }

.newsletter { margin-top: 1.5rem; }
.newsletter label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.newsletter-row { display: flex; gap: 8px; }
.newsletter input {
  flex: 1;
  background: var(--navy-950);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  padding: 10px 12px;
  font: 500 0.95rem var(--font-body);
  min-width: 0;
}
.newsletter input:focus { outline: none; border-color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  font-size: 0.87rem;
  color: var(--ink-faint);
}
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 1.2rem; }
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--gold); }

/* WhatsApp FAB */
.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: var(--z-sticky);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #22c15e;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px oklch(0.1 0.03 265 / 0.5);
  transition: transform var(--t-fast) var(--ease-out);
}
.wa-fab:hover { color: #fff; transform: scale(1.06); }
.wa-fab:active { transform: scale(0.95); }

/* ---------------- scroll reveal (enhancement only) ---------------- */
.reveal.pre {
  opacity: 0.001;
  transform: translateY(14px);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms var(--ease-out);
}

/* ---------------- responsive ---------------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .tour-layout { grid-template-columns: 1fr; }
  .booking-col { position: static; }
  .service-media img { position: static; }
}

@media (max-width: 900px) {
  .dest-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .why-inner, .faq-cols, .inquiry-wrap, .dest-intro-cols, .about-cols, .contact-cols, .service-intro { grid-template-columns: 1fr; }
  .why-media { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .transfer-head { display: none; }
  .transfer-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: 'route price' 'vehicle btn';
    row-gap: 0.5rem;
  }
  .tr-route { grid-area: route; }
  .tr-price { grid-area: price; }
  .tr-vehicle { grid-area: vehicle; }
  .tr-time { display: none; }
  .transfer-row .btn { grid-area: btn; justify-self: end; }
}

@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero-search { flex-direction: column; align-items: stretch; }
  .hs-field { min-width: 0; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .book-bar { display: flex; }
  .wa-fab { bottom: 84px; }
  body:not(.tour-page) .wa-fab { bottom: 18px; }
  .gallery-thumbs { grid-auto-columns: 90px; }
  .itin-step { grid-template-columns: 64px 1fr; gap: 0.9rem; }
  .itin-step::before { left: 31px; }
}

/* ---------------- reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal.pre { opacity: 1; transform: none; }
  .hero-slide { transition-duration: 0.01ms !important; }
}
