:root {
  --ink: #14181a;
  --ocean: #0e3d44;
  --ocean-deep: #07090b;
  --header: #0a0c0e;
  --gold: #e0b43a;
  --gold-deep: #c49214;
  --gold-soft: #f3d98a;
  --sunset: #ff8a3c;
  --magenta: #d63d86;
  --cyan: #4ec7e0;
  --palm: #2f9e62;
  --sand: #f4efe4;
  --paper: #fbf8f2;
  --muted: #5c686c;
  --line: rgba(20, 24, 26, 0.1);
  --shadow: 0 24px 60px rgba(7, 9, 11, 0.12);
  --radius: 22px;
  --font: "Manrope", system-ui, sans-serif;
  --serif: "Fraunces", "Times New Roman", serif;
  --horizon: linear-gradient(90deg, #ff8a3c 0%, #f0c94a 48%, #4ec7e0 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  font-size: 1.02rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.55em;
}
h1 { font-size: clamp(2.55rem, 6vw, 5.1rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 3.15rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; }
.container { width: min(1200px, calc(100% - 2.4rem)); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - 2.4rem)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: #1a1404; padding: 0.6rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.ornament {
  width: 76px; height: 3px; border-radius: 99px;
  background: var(--horizon); margin: 0 0 1.1rem;
}
.ornament.center { margin-inline: auto; }

.topbar {
  background: #050607;
  color: #c9d3d4;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.topbar a { color: var(--gold-soft); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar-inner, .nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.topbar-inner { padding: 0.55rem 0; flex-wrap: wrap; }
.topbar-inner p { margin: 0; }

.site-header { position: sticky; top: 0; z-index: 80; }
.nav-bar {
  background: rgba(10, 12, 14, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled .nav-bar {
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}
.nav-inner { padding: 0.35rem 0; }
.brand {
  display: flex; align-items: center;
  background: #000; border-radius: 14px; padding: 0.2rem 0.35rem;
}
.brand img { width: 118px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 0.15rem 0.9rem; }
.site-nav a {
  text-decoration: none; font-size: 0.86rem; font-weight: 600;
  color: #ece7dc; padding: 0.35rem 0; position: relative;
}
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--horizon); transform: scaleX(0);
  transform-origin: left; transition: transform 0.2s ease;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--gold-soft); }
.site-nav a.is-active::after, .site-nav a:hover::after { transform: scaleX(1); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; cursor: pointer;
  background: transparent; padding: 10px; border-radius: 10px;
}
.nav-toggle span {
  display: block; height: 2px; background: #fff; margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-cta { margin-left: 0.7rem; }
.site-nav .nav-cta {
  padding: 0.52rem 0.95rem 0.52rem 1.05rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1c1404;
  background: linear-gradient(180deg, #f4d36a, var(--gold));
  border: 1px solid rgba(255, 232, 160, 0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 8px 18px rgba(196, 146, 20, 0.28);
}
.site-nav .nav-cta span {
  font-size: 0.95rem; letter-spacing: 0; font-weight: 500;
  transition: transform 0.2s ease;
}
.site-nav .nav-cta:hover {
  transform: translateY(-1px);
  background: #fff;
  color: #1c1404;
  border-color: var(--gold);
  box-shadow: 0 10px 22px rgba(224, 180, 58, 0.28);
}
.site-nav .nav-cta:hover span { transform: translateX(3px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  border: 0; cursor: pointer; text-decoration: none;
  border-radius: 999px; padding: 0.92rem 1.6rem;
  font-family: var(--font); font-weight: 700; font-size: 0.9rem;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, #f0c94a, var(--gold-deep));
  color: #1c1404;
  box-shadow: 0 12px 26px rgba(196, 146, 20, 0.32);
}
.btn-primary:hover { background: var(--sunset); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); color: var(--gold-soft); }
.btn-dark { background: var(--header); color: #fff; }
.btn-dark:hover { background: var(--ocean); }
.btn-block { width: 100%; margin-top: 0.6rem; }
.text-link { font-weight: 700; color: var(--ocean); text-decoration: none; }
.text-link:hover { color: var(--gold-deep); }

.hero {
  position: relative;
  height: min(78vh, 740px);
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: visible;
}
.hero-slides, .hero-shade { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; }
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.1s ease, transform 7s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 22, 24, 0.48) 0%, rgba(18, 22, 24, 0.12) 55%, rgba(18, 22, 24, 0.06) 100%),
    linear-gradient(180deg, rgba(18, 22, 24, 0.08) 0%, rgba(18, 22, 24, 0.42) 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  padding: 3.2rem 0 0.85rem;
  max-width: 740px;
  margin: 0 auto 0 0;
  text-align: left;
}
.hero .kicker { color: var(--gold-soft); }
.hero h1 { font-size: clamp(1.85rem, 3.8vw, 3.15rem); margin-bottom: 0.45em; }
.hero .lede { color: #fff; opacity: 0.94; font-size: 1.02rem; max-width: 52ch; margin-bottom: 0.4rem; }
.hero .btn-ghost {
  color: #fff; border: 1px solid rgba(255,255,255,0.55); background: transparent;
}
.hero .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); color: var(--gold-soft); }
.hero-actions { margin-top: 1.15rem; }
.kicker {
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.72rem; font-weight: 700; margin: 0 0 0.85rem;
  color: var(--gold-soft);
}
.kicker.dark { color: var(--gold-deep); }
.lede { font-size: 1.16rem; max-width: 62ch; color: inherit; opacity: 0.94; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-dots {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  gap: 0.45rem;
  align-self: center;
  margin: 0 0 0.8rem;
}
.hero-dots button {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.hero-dots button.is-active {
  width: 26px; background: var(--gold);
}
.carousel-arrow {
  position: absolute; z-index: 3; top: 46%;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.16); color: #fff; font-size: 1.5rem;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}
.carousel-arrow.prev { left: 1.3rem; }
.carousel-arrow.next { right: 1.3rem; }
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold); color: #1c1404; }

.finder {
  position: relative; z-index: 4;
  width: min(1200px, calc(100% - 2.4rem));
  margin: 0 auto 1.4rem;
  flex-shrink: 0;
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(20, 24, 26, 0.22);
  padding: 1.2rem 1.45rem 1.25rem;
}
.finder-page { margin: 0 0 2rem; }
.finder-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem;
  margin-bottom: 0.9rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.finder-head h2 { font-size: clamp(1.35rem, 2vw, 1.75rem); margin: 0; }
.finder-head .kicker { margin-bottom: 0.35rem; }
.finder-aside {
  margin: 0; font-size: 0.84rem; font-weight: 600; color: var(--muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.finder-grid {
  display: grid; grid-template-columns: 1.15fr 1.15fr 0.7fr auto; gap: 0.7rem; align-items: stretch;
}
.finder-field {
  position: relative;
  margin: 0;
  padding: 0.7rem 0.9rem 0.62rem;
  background: var(--paper);
  border: 1px solid rgba(20, 24, 26, 0.08);
  border-radius: 16px;
}
.finder-field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 180, 58, 0.18);
  background: #fff;
}
.finder-field span {
  display: block; font-size: 0.68rem; font-weight: 800; margin-bottom: 0.22rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep);
}
.finder select {
  position: absolute;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.nice-select { position: relative; }
.nice-select-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 0.7rem; padding: 0.12rem 0 0; border: 0; background: transparent;
  font: inherit; font-weight: 700; font-size: 1.02rem; color: var(--ink);
  cursor: pointer; text-align: left; line-height: 1.35;
}
.nice-select-btn::after {
  content: ""; width: 8px; height: 8px; flex-shrink: 0;
  border-right: 2px solid var(--gold-deep); border-bottom: 2px solid var(--gold-deep);
  transform: rotate(45deg) translateY(-2px);
}
.nice-select.is-open .nice-select-btn::after {
  transform: rotate(-135deg) translateY(-2px);
}
.nice-select-menu {
  display: none; position: absolute; left: -0.9rem; right: -0.9rem;
  top: calc(100% + 0.7rem); z-index: 30;
  background: #fff; color: var(--ink);
  border: 1px solid rgba(20, 24, 26, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(20, 24, 26, 0.16);
  padding: 0.4rem;
  max-height: 260px; overflow: auto;
}
.nice-select.is-open .nice-select-menu { display: block; }
.nice-select-menu button {
  width: 100%; display: block; text-align: left; border: 0; background: transparent;
  padding: 0.68rem 0.85rem; border-radius: 12px;
  font: inherit; font-weight: 650; font-size: 0.96rem; color: var(--ink); cursor: pointer;
}
.nice-select-menu button:hover { background: var(--sand); }
.nice-select-menu button.is-active {
  background: rgba(224, 180, 58, 0.16); color: var(--ocean); font-weight: 800;
}
.finder-submit {
  min-height: 58px; min-width: 160px; border-radius: 16px;
  padding: 0.9rem 1.7rem; align-self: stretch;
}
.booking-form {
  background: #fff;
  border: 1px solid rgba(20, 24, 26, 0.08);
  border-radius: 24px;
  padding: 1.55rem 1.55rem 1.35rem;
  box-shadow: 0 18px 44px rgba(20, 24, 26, 0.07);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
  margin-bottom: 1.1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
}
.booking-form label span,
.form-field span {
  display: block; font-size: 0.7rem; font-weight: 800; margin-bottom: 0.38rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.field-control, select, input, textarea {
  width: 100%; max-width: 100%;
  border: 1px solid rgba(20, 24, 26, 0.08);
  border-radius: 14px;
  padding: 0.78rem 0.95rem;
  font: inherit; background: #f7f4ee; color: var(--ink);
  min-height: 48px;
}
.booking-form textarea { min-height: 108px; resize: vertical; }
.booking-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.3rem;
  background-color: #f7f4ee;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c49214' stroke-width='1.8' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
}
.booking-form input[type="date"] { color-scheme: light; }
.field-control:focus, select:focus, input:focus, textarea:focus {
  outline: 2px solid rgba(224, 180, 58, 0.35);
  border-color: var(--gold);
  background: #fff;
}
.field-wide { grid-column: span 1; }
.field-full, .span-2 { grid-column: 1 / -1; }
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.2rem;
  flex-wrap: wrap;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(20, 24, 26, 0.08);
}
.form-actions .btn { margin: 0; }
.form-note { font-size: 0.95rem; color: #445055; margin: 0; max-width: 36ch; line-height: 1.5; font-weight: 600; }
.field-error { color: #9b2c2c; font-size: 0.8rem; margin-top: 0.28rem; }
.reply-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  min-height: 48px;
  padding: 0.3rem;
  background: #f7f4ee;
  border: 1px solid rgba(20, 24, 26, 0.08);
  border-radius: 14px;
}
.reply-pills label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.5rem 0.4rem;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
}
.reply-pills input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.reply-pills label span {
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.reply-pills label:has(input:checked) {
  background: #fff;
  color: var(--ocean);
  box-shadow: 0 6px 16px rgba(20, 24, 26, 0.08);
}

.stats-band { padding: 0.4rem 0 0.2rem; }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin: 1.5rem auto 0; width: min(1200px, calc(100% - 2.4rem));
  background: #fff;
  border: 1px solid rgba(20, 24, 26, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(20, 24, 26, 0.07);
  overflow: hidden;
}
.stat {
  position: relative;
  background: transparent;
  text-align: center;
  padding: 1.7rem 1.15rem 1.5rem;
  box-shadow: none;
  border: 0;
}
.stat + .stat { border-left: 1px solid rgba(20, 24, 26, 0.08); }
.stat::before {
  content: "";
  display: block;
  width: 32px; height: 3px; margin: 0 auto 0.9rem;
  border-radius: 99px;
  background: var(--horizon);
}
.stat strong {
  display: block; font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--ocean); letter-spacing: -0.03em; line-height: 1;
}
.stat span {
  display: block; margin-top: 0.45rem;
  color: var(--muted); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}

.dest-strip {
  display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center;
  padding: 1.4rem 1.2rem 0;
}
.dest-strip span {
  border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.85rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted); background: var(--paper);
}

.section { padding: 5.4rem 0; }
.section.band { background: #f7f4ee; }
.section-head { max-width: 760px; margin-bottom: 2.4rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.center-cta { text-align: center; margin-top: 2.1rem; }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.2rem; align-items: center; }
.story-copy {
  text-align: justify;
  text-justify: inter-word;
  max-width: 54ch;
  font-size: 1.06rem;
  line-height: 1.85;
  color: #445055;
}
.story-copy p { margin: 0 0 1.15rem; }
.story-copy p:last-of-type { margin-bottom: 1.4rem; }
.story-copy strong {
  color: var(--ink);
  font-weight: 800;
}
.framed { margin: 0; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.framed img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.framed figcaption { padding: 0.9rem 1.05rem; font-size: 0.85rem; color: var(--muted); background: var(--paper); }

.what-section { padding: 3.6rem 0 4.2rem; }
.what-head {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem 2.4rem; align-items: end;
  margin-bottom: 1.8rem;
}
.what-head h2 { margin-bottom: 0; max-width: 12em; }
.what-head > p { margin: 0 0 0.2rem; color: var(--muted); max-width: 42ch; justify-self: end; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pillar {
  position: relative; overflow: hidden; min-height: 430px; border-radius: 22px;
  color: #fff; display: flex; align-items: flex-end; padding: 1.45rem 1.35rem 1.4rem;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(7, 9, 11, 0.12);
  isolation: isolate;
}
.pillar img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.pillar img.pillar-van { object-fit: cover; object-position: 50% 58%; }
.pillar:hover img { transform: scale(1.06); }
.pillar::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 14, 0.08) 28%, rgba(10, 12, 14, 0.78) 100%);
}
.pillar > div { position: relative; z-index: 1; }
.pillar-index {
  display: block; margin-bottom: 0.55rem;
  font-family: var(--serif); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.16em; color: var(--gold-soft);
}
.pillar h3 { margin-bottom: 0.4rem; font-size: clamp(1.55rem, 2vw, 1.9rem); }
.pillar p { margin: 0; max-width: 34ch; opacity: 0.92; font-size: 0.94rem; }
.pillar .more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.05rem; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft);
}
.pillar .more::after { content: "→"; font-size: 0.95rem; letter-spacing: 0; font-weight: 500; }
.pillar:hover .more { color: #fff; }

.why-section { padding: 4rem 0; }
.why-section .section-head { margin-bottom: 2rem; }
.why-section .section-head h2 { margin-bottom: 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.why-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.85rem 1.4rem 1.55rem;
  border: 1px solid rgba(20, 24, 26, 0.08);
  min-height: 100%;
  box-shadow: 0 14px 36px rgba(20, 24, 26, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 180, 58, 0.5);
  box-shadow: 0 18px 42px rgba(20, 24, 26, 0.08);
}
.why-card .mark {
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: 1.1rem;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 0.95rem;
  color: var(--gold-deep);
  background: #fff;
  border: 1px solid rgba(224, 180, 58, 0.5);
  box-shadow: 0 8px 18px rgba(196, 146, 20, 0.12);
}
.why-card h3 { margin-bottom: 0.45rem; font-size: 1.32rem; }
.why-card p { margin: 0; color: var(--muted); }

.tours-section { padding: 4rem 0; }
.tours-head {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem 2.2rem; align-items: end;
  margin-bottom: 1.8rem;
}
.tours-head h2 { margin-bottom: 0; max-width: 12em; }
.tours-head > p { margin: 0 0 0.15rem; color: var(--muted); max-width: 42ch; justify-self: end; }
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.tour-card {
  position: relative; overflow: hidden; min-height: 420px; border-radius: 22px;
  color: #fff; display: flex; align-items: flex-end;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(7, 9, 11, 0.12);
}
.tour-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.tour-card:hover img { transform: scale(1.06); }
.tour-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,14,0.05) 32%, rgba(10,12,14,0.82) 100%);
}
.tour-card-body { position: relative; z-index: 1; padding: 1.4rem 1.3rem 1.35rem; }
.tour-card-body span {
  display: block; margin-bottom: 0.4rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-soft);
}
.tour-card-body h3 { margin: 0 0 0.55rem; font-size: clamp(1.28rem, 1.8vw, 1.55rem); color: #fff; }
.tour-card-body p {
  margin: 0; display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
}
.tour-card-body em {
  font-family: var(--font); font-style: normal; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft);
}
.tour-card:hover em { color: #fff; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper); border-radius: 24px; overflow: hidden;
  box-shadow: 0 12px 32px rgba(7,9,11,0.07); display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-media img { transform: scale(1.07); }
.chip {
  position: absolute; left: 0.85rem; top: 0.85rem;
  background: rgba(7,9,11,0.78); color: #fff; border-radius: 999px;
  padding: 0.28rem 0.75rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card-body { padding: 1.2rem 1.25rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 a { text-decoration: none; }
.meta, .muted { color: var(--muted); font-size: 0.86rem; }
.card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 0.85rem; }
.card-foot strong { font-family: var(--serif); font-size: 1.35rem; }

.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.route-card {
  background: var(--sand); border-radius: 18px; padding: 1.3rem;
  border: 1px solid var(--line); text-decoration: none; display: block;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
a.route-card:hover, .route-card:hover { border-color: var(--gold); transform: translateY(-3px); background: var(--paper); }
.price { font-family: var(--serif); font-size: 1.7rem; margin: 0.4rem 0; }
.price span { font-family: var(--font); font-size: 0.8rem; color: var(--muted); font-weight: 400; }

.safari-band { background: var(--ocean-deep); color: #f4efe6; }
.safari-band .kicker { color: var(--gold); }
.mini-list { display: grid; gap: 0.55rem; margin: 1.2rem 0 1.6rem; }
.mini-list a { color: var(--gold-soft); text-decoration: none; font-weight: 600; }
.mini-list a:hover { color: #fff; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.team-card {
  background: #fff;
  border: 1px solid rgba(20, 24, 26, 0.07);
  border-radius: 24px;
  padding: 1.55rem 1.35rem 1.4rem;
  text-align: center;
  box-shadow: 0 14px 34px rgba(20, 24, 26, 0.05);
  height: 100%;
}
.team-photo {
  width: 168px;
  height: 168px;
  margin: 0 auto 1.15rem;
  padding: 5px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(20, 24, 26, 0.06), 0 12px 28px rgba(20, 24, 26, 0.1);
}
.team-photo.has-room {
  padding: 0;
  background: #8eb6fc;
  box-shadow:
    0 0 0 5px #fff,
    0 0 0 6px rgba(20, 24, 26, 0.06),
    0 12px 28px rgba(20, 24, 26, 0.1);
}
.team-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  background: #8eb6fc;
}
.team-photo.has-room img {
  border-radius: 0;
  object-position: center 8%;
  transform: scale(0.92);
  transform-origin: center 82%;
}
.team-copy h3 {
  font-size: 1.28rem;
  margin: 0 0 0.25rem;
}
.team-card .role {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.team-bio {
  margin: 0.9rem 0 0;
  text-align: left;
  color: #445055;
  font-size: 0.94rem;
  line-height: 1.7;
}

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
blockquote {
  margin: 0; background: var(--paper); padding: 1.75rem; border-radius: 22px;
  position: relative; box-shadow: 0 10px 28px rgba(7,9,11,0.05);
}
blockquote::before {
  content: "“"; font-family: var(--serif); font-size: 3.4rem; line-height: 1;
  color: var(--gold); position: absolute; top: 0.55rem; right: 1.1rem; opacity: 0.55;
}
.stars { color: var(--gold); letter-spacing: 0.14em; margin-bottom: 0.55rem; font-size: 0.95rem; }
blockquote footer { color: var(--muted); font-size: 0.88rem; margin-top: 0.85rem; font-weight: 600; }

.faq-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.2rem 3rem; align-items: start; }
.faq-wrap h2 { margin-bottom: 0.45rem; }
.faq-wrap > div > p { margin: 0; color: var(--muted); max-width: 34ch; line-height: 1.65; }
.faq-list details {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(20, 24, 26, 0.08);
  box-shadow: 0 8px 22px rgba(20, 24, 26, 0.04);
}
.faq-list details:last-child { margin-bottom: 0; }
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.4;
  padding: 1.05rem 1.2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 99px;
  background: #f7f4ee;
  color: var(--gold-deep);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
}
.faq-list details[open] {
  border-color: rgba(224, 180, 58, 0.45);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: #445055;
  line-height: 1.7;
}
.faq-group { margin: 2rem 0 1rem; }

.tour-detail { padding: 1.45rem 0 0; }
.tour-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2.4rem;
  align-items: end;
  margin-bottom: 1.25rem;
}
.tour-intro h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.25rem);
  max-width: 18ch;
  margin-bottom: 0.4rem;
}
.tour-lede { max-width: 48ch; color: var(--muted); margin: 0; line-height: 1.65; }
.tour-book { text-align: right; }
.ink-price { color: var(--ocean); margin: 0.15rem 0 0.85rem; }
.ink-price span { font-family: var(--font); font-size: 0.88rem; color: var(--muted); font-weight: 600; }
.light-crumbs a { color: var(--muted); }
.light-crumbs li { color: var(--ink); }
.album {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 255px 255px auto;
  gap: 6px;
  border-radius: 20px;
  overflow: hidden;
  background: #f7f4ee;
}
.album figure { margin: 0; overflow: hidden; background: #efe8dc; min-height: 0; }
.album figure:first-child { grid-column: 1; grid-row: 1 / 3; }
.album figure:nth-child(2) { grid-column: 2; grid-row: 1; }
.album figure:nth-child(2):last-child { grid-row: 1 / 3; }
.album figure:nth-child(3) { grid-column: 2; grid-row: 2; }
.album figure:nth-child(4) { grid-column: 1 / -1; height: 210px; }
.album figure:only-child { grid-column: 1 / -1; grid-row: 1 / 3; }
.album img {
  width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: center;
}
.tour-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 1.2rem 0 0;
  margin: 0.95rem 0 0;
}
.tour-facts li {
  padding: 0 1.2rem;
  border-left: 1px solid var(--line);
}
.tour-facts li:first-child { padding-left: 0; border: 0; }
.tour-facts span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.tour-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr;
  gap: 3.2rem;
  align-items: start;
  padding: 2.6rem 0 1.4rem;
}
.tour-story h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  margin: 2.1rem 0 0.85rem;
}
.tour-copy {
  text-align: justify;
  text-justify: inter-word;
  color: #445055;
  font-size: 1.04rem;
  line-height: 1.85;
}
.tour-copy p { margin: 0 0 1.1rem; }
.tour-plan { padding: 0 0 3.2rem; }
.tour-plan h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  margin: 0 0 1rem;
}
.tour-plan .tour-steps { margin-top: 0.2rem; }
.tour-plan h2 + .tour-steps { margin-top: 0; }
.tour-plan .tour-points + h2 { margin-top: 2.1rem; }
.tour-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.6rem;
  list-style: none; padding: 0; margin: 0;
  width: 100%;
}
.tour-points li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.tour-points li::before {
  content: "";
  position: absolute; left: 0; top: 1.15rem;
  width: 7px; height: 7px; border-radius: 99px; background: var(--gold);
}
.tour-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none; padding: 0; margin: 0;
  counter-reset: tourstep;
  width: 100%;
}
.tour-steps li {
  position: relative;
  margin: 0;
  padding: 2.7rem 1.2rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.tour-steps li::before {
  counter-increment: tourstep;
  content: counter(tourstep, decimal-leading-zero);
  position: absolute; left: 1.2rem; top: 1rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold-deep);
}
.tour-steps strong { display: block; margin-bottom: 0.35rem; }
.tour-steps p { margin: 0; color: var(--muted); }
.book-card {
  background: #fff;
  border: 1px solid rgba(20, 24, 26, 0.08);
  border-radius: 22px;
  padding: 1.45rem 1.4rem 1.35rem;
  box-shadow: 0 18px 44px rgba(20, 24, 26, 0.07);
  position: sticky; top: 6.2rem;
}
.book-card .kicker { margin-bottom: 0.3rem; }
.book-note { margin: 0 0 1.1rem; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.tour-kit { background: #f7f4ee; padding: 2.8rem 0; }
.tour-kit .trio article {
  background: #fff;
  border: 1px solid rgba(20, 24, 26, 0.06);
  border-radius: 18px;
  padding: 1.35rem 1.3rem 1.2rem;
}
.tour-kit h2 { font-size: 1.22rem; margin-bottom: 0.7rem; }
.tour-kit ul { list-style: none; padding: 0; margin: 0; }
.tour-kit li {
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
.tour-kit li:last-child { border: 0; }
.tour-panel { padding: 3rem 0; }
.tour-prices-band { padding: 3rem 0; background: #f7f4ee; }
.tour-prices-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2.2rem;
  align-items: end;
  margin-bottom: 1.35rem;
}
.tour-prices-head h2 { margin: 0; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.tour-prices-head p { margin: 0; color: var(--muted); }
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}
.price-cards article {
  background: #fff;
  border: 1px solid rgba(20, 24, 26, 0.06);
  border-radius: 20px;
  padding: 1.3rem 1.1rem 1.15rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(20, 24, 26, 0.05);
}
.price-cards article.is-from {
  border-color: rgba(224, 180, 58, 0.55);
  box-shadow: 0 14px 32px rgba(196, 146, 20, 0.12);
}
.price-cards span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.price-cards strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  font-weight: 600;
  color: var(--ocean);
  line-height: 1.1;
}
.price-cards em {
  display: block;
  margin-top: 0.28rem;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.tour-faq h2 { margin-bottom: 1.1rem; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.tour-faq .faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem;
  max-width: none;
  width: 100%;
}
.tour-faq .faq-list details {
  margin: 0;
  width: 100%;
  min-width: 0;
}
.tour-book-band { background: #f7f4ee; padding: 3.2rem 0; }
.tour-reserve-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem 2.4rem;
  align-items: end;
  margin-bottom: 1.4rem;
}
.tour-reserve-head h2 { margin: 0; max-width: none; }
.tour-reserve-head p { margin: 0; color: var(--muted); }
.tour-book-band .booking-form {
  width: 100%;
  min-width: 0;
  padding: 1.7rem 1.7rem 1.4rem;
}
.tour-book-band .form-grid {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.tour-book-band .field-wide { grid-column: span 2; }
.tour-book-band .field-full { grid-column: 1 / -1; }
.tour-related { padding: 3.4rem 0 4.4rem; }
.tour-related h2 { margin-bottom: 1.3rem; }
.tour-related .tour-card { min-height: 340px; }
.page-hero {
  min-height: 58vh; display: grid; align-items: end; color: #fff;
  background:
    linear-gradient(90deg, rgba(7,9,11,0.72), rgba(7,9,11,0.28) 70%),
    linear-gradient(180deg, rgba(7,9,11,0.18), rgba(7,9,11,0.88)),
    var(--hero) center/cover no-repeat;
  padding: 8.8rem 0 4.2rem;
}
.detail-hero { min-height: 66vh; }
.crumbs ol { display: flex; gap: 0.5rem; list-style: none; padding: 0; margin: 0 0 1rem; font-size: 0.85rem; flex-wrap: wrap; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: 0.5rem; opacity: 0.6; }
.crumbs a { color: #fff; }
.hero-price { font-family: var(--serif); font-size: 1.9rem; }

.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature-row article, .icon-card {
  background: var(--paper); padding: 1.7rem 1.5rem; border-radius: 22px;
  box-shadow: 0 8px 22px rgba(7,9,11,0.05); border: 1px solid var(--line);
}
.icon-mark {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1rem;
  display: grid; place-items: center; font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.06em; color: var(--ocean);
  background: linear-gradient(180deg, rgba(240,201,74,0.35), rgba(224,180,58,0.12));
}
.how-section { padding: 2.4rem 0 2.6rem; }
.how-section .section-head { margin-bottom: 1.25rem; }
.how-section .section-head h2 {
  margin: 0 auto;
  max-width: 16em;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
}
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute; z-index: 0;
  top: 36px; left: 16%; right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.steps article {
  position: relative; z-index: 1;
  background: #fff;
  border: 1px solid rgba(20, 24, 26, 0.08);
  border-radius: 24px;
  padding: 1.45rem 1.25rem 1.25rem;
  text-align: center;
  box-shadow: 0 14px 36px rgba(20, 24, 26, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 180, 58, 0.45);
  box-shadow: 0 18px 40px rgba(20, 24, 26, 0.08);
}
.steps span {
  width: 48px; height: 48px; margin: 0 auto 0.75rem;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  color: var(--gold-deep); line-height: 1;
  background: #fff;
  border: 1px solid rgba(224, 180, 58, 0.5);
  box-shadow: 0 8px 18px rgba(196, 146, 20, 0.14);
}
.steps h3, .steps h2 { margin-bottom: 0.45rem; font-size: 1.35rem; }
.steps p { margin: 0; color: var(--muted); }
.vehicle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.vehicle-grid article {
  background: var(--header); color: #f4efe6; border-radius: 22px; padding: 1.8rem 1.5rem;
}
.vehicle-grid h3 { color: #fff; }
.vehicle-grid .meta { color: var(--gold-soft); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.plain-list { padding-left: 1.1rem; }
.plain-list li { margin-bottom: 0.45rem; }

.route-photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.route-photo {
  position: relative; display: grid; align-items: end; min-height: 280px;
  border-radius: 24px; overflow: hidden; color: #fff; text-decoration: none;
  box-shadow: var(--shadow);
}
.route-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.route-photo:hover img { transform: scale(1.06); }
.route-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,9,11,0.05), rgba(7,9,11,0.82));
}
.route-photo > div { position: relative; z-index: 1; padding: 1.4rem; }
.route-photo .meta { color: var(--gold-soft); }
.route-photo .price { margin: 0.2rem 0 0; }
.route-photo.compact { min-height: 220px; }
.table-wrap { overflow-x: auto; border-radius: 20px; box-shadow: 0 16px 40px rgba(20, 24, 26, 0.07); border: 1px solid rgba(20, 24, 26, 0.08); }
.rate-table { width: 100%; border-collapse: collapse; background: #fff; }
.rate-table th, .rate-table td { text-align: left; padding: 0.95rem 1.15rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.rate-table thead { background: var(--header); color: #fff; }
.rate-table thead th {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.rate-table .rate-group td {
  background: #f7f4ee; color: var(--gold-deep);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.7rem 1.15rem;
}
.rate-table tbody tr:hover:not(.rate-group) { background: rgba(224, 180, 58, 0.08); }
.rate-table .muted { display: block; margin-top: 0.25rem; }
.rate-table a { font-weight: 700; text-decoration: none; color: var(--ink); }
.rate-table a:hover { color: var(--gold-deep); }
.rate-table td.price {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  color: var(--ocean); white-space: nowrap; text-align: right;
}
.rate-table thead th:last-child { text-align: right; }
.rate-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.2rem; }
.rate-notes article {
  background: #fff; border: 1px solid rgba(20, 24, 26, 0.08);
  border-radius: 18px; padding: 1.2rem 1.3rem;
}
.rate-notes h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.rate-notes p { margin: 0; color: var(--muted); }

.detail-grid { display: grid; grid-template-columns: 1.4fr 0.7fr; gap: 2.2rem; align-items: start; }
.aside-card { background: var(--paper); padding: 1.5rem; border-radius: 22px; position: sticky; top: 6.2rem; box-shadow: var(--shadow); }
.aside-card ul, .trio ul, .prose ul { padding-left: 1.1rem; }
.aside-card li { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 0.55rem; }
.aside-card li span { color: var(--muted); }
.itinerary { list-style: none; padding: 0; }
.itinerary li { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.prose { max-width: 70ch; }

.contact-page {
  background: #f7f4ee;
  padding: 3.2rem 0 4rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.6rem;
  align-items: stretch;
}
.contact-sheet {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(20, 24, 26, 0.08);
  border-radius: 24px;
  padding: 1.55rem 1.55rem 1.35rem;
  box-shadow: 0 18px 44px rgba(20, 24, 26, 0.07);
}
.contact-sheet h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  margin-bottom: 0.45rem;
}
.contact-lede {
  color: var(--muted);
  max-width: none;
  margin: 0 0 1.2rem;
  line-height: 1.65;
}
.contact-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
}
.contact-fact {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  text-decoration: none;
  color: inherit;
}
.contact-fact span {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.38rem;
}
.contact-fact strong {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.78rem 0.95rem;
  border: 1px solid rgba(20, 24, 26, 0.08);
  border-radius: 14px;
  background: #f7f4ee;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  overflow-wrap: anywhere;
}
a.contact-fact:hover strong {
  outline: 2px solid rgba(224, 180, 58, 0.35);
  border-color: var(--gold);
  background: #fff;
}
.contact-place {
  flex: 1;
  display: block;
  min-height: 180px;
  margin: 1.1rem 0 0;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1c1e;
}
.contact-place img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-sheet .form-actions {
  margin-top: 1.15rem;
  flex-wrap: nowrap;
  gap: 0.8rem;
}
.contact-sheet .form-note { max-width: 24ch; }
.contact-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.92rem 1.6rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.28);
  transition: transform 0.18s ease, background 0.18s ease;
}
.contact-wa:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}
.contact-form-panel .booking-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}
.contact-form-panel .form-grid { flex: 1; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid figure { margin: 0; background: var(--paper); border-radius: 16px; overflow: hidden; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.45s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption { padding: 0.7rem 0.9rem; font-size: 0.84rem; color: var(--muted); }

.cta-band {
  background: var(--header); color: #fff; padding: 4.2rem 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--horizon);
}
.cta-band h2 { max-width: 16ch; margin-inline: auto; }
.cta-band p { max-width: 52ch; margin-inline: auto; opacity: 0.88; }
.cta-actions { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }

.site-footer { background: var(--ocean-deep); color: #e6eeea; padding: 4.4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-logo { width: 148px; margin-bottom: 1rem; background: #000; border-radius: 12px; padding: 0.35rem; }
.footer-blurb { opacity: 0.85; }
.site-footer h2 { font-size: 1.12rem; color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.42rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-base {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem; opacity: 0.75;
}

.wa-fab {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  background: #25d366; color: #fff; text-decoration: none;
  padding: 0.82rem 1.2rem; border-radius: 999px; font-weight: 700;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
body.nok-swal-open { overflow: hidden; }
.nok-swal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(10, 12, 14, 0.55);
}
.nok-swal[hidden] { display: none !important; }
.nok-swal-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 1.8rem 1.5rem 1.4rem;
  text-align: center;
  box-shadow: 0 24px 60px rgba(20, 24, 26, 0.22);
}
.nok-swal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 3px solid #e0b43a;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23c49214' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center no-repeat;
  background-size: 34px;
}
.nok-swal-icon.is-error {
  border-color: #c45c5c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23c45c5c' stroke-width='2.4' stroke-linecap='round' d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E");
}
.nok-swal-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.7rem;
}
.nok-swal-card p {
  margin: 0 0 1.2rem;
  color: #445055;
  line-height: 1.55;
}
.nok-swal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.nok-swal-actions .contact-wa,
.nok-swal-actions .btn {
  margin: 0;
  width: auto;
}
.center { text-align: center; padding: 5rem 0; }

.reveal { opacity: 0; transform: translateY(18px); animation: rise 0.7s ease forwards; }
.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .split, .card-grid, .card-grid.three, .route-grid, .team-grid, .quotes,
  .faq-wrap, .feature-row, .detail-grid, .trio, .contact-grid, .contact-layout, .footer-grid, .gallery-grid,
  .stats, .pillars, .why-grid, .steps, .vehicle-grid, .route-photo-grid, .tour-grid {
    grid-template-columns: 1fr;
  }
  .route-grid, .card-grid, .stats, .pillars, .why-grid, .steps, .vehicle-grid, .route-photo-grid, .tour-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #0a0c0e; flex-direction: column; align-items: flex-start;
    padding: 1rem 1.3rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 0.85rem;
  }
  .site-nav.is-open { display: flex; }
  .nav-bar { position: relative; }
  .hero { height: auto; min-height: 560px; }
  .hero-copy { padding: 3.2rem 0 0.75rem; }
  .carousel-arrow { width: 38px; height: 38px; }
  .finder-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .finder-head { flex-direction: column; align-items: flex-start; }
  .finder-submit { width: 100%; min-width: 0; grid-column: 1 / -1; }
  .hero .finder { margin: 0 auto 1.1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide, .field-full, .span-2 { grid-column: auto; }
  .nav-cta { margin-left: 0; }
  .site-nav .nav-cta { align-self: flex-start; }
  .team-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 0.9rem 1.1rem;
    align-items: center;
    text-align: left;
    padding: 1.1rem 1.15rem;
  }
  .team-photo { width: 112px; height: 112px; margin: 0; }
  .team-bio { grid-column: 1 / -1; margin-top: 0.15rem; }
  .steps::before { display: none; }
  .what-head { grid-template-columns: 1fr; gap: 0.7rem; }
  .what-head > p { justify-self: start; }
  .tours-head { grid-template-columns: 1fr; gap: 0.7rem; }
  .tours-head > p { justify-self: start; }
  .tour-intro { grid-template-columns: 1fr; }
  .tour-book { text-align: left; }
  .tour-layout { grid-template-columns: 1fr; }
  .tour-prices-head { grid-template-columns: 1fr; }
  .book-card { position: static; }
  .tour-points, .tour-faq .faq-list, .tour-reserve-head { grid-template-columns: 1fr; }
  .tour-steps { grid-template-columns: 1fr 1fr; }
  .tour-book-band .form-grid { grid-template-columns: 1fr 1fr; }
  .tour-book-band .field-wide { grid-column: auto; }
  .tour-book-band .field-full { grid-column: 1 / -1; }
  .tour-facts { grid-template-columns: 1fr 1fr; }
  .tour-facts li {
    padding: 0.75rem 1rem 0.75rem 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .album {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }
  .album figure:first-child { grid-column: 1 / -1; grid-row: 1; }
  .album figure:nth-child(2),
  .album figure:nth-child(2):last-child { grid-column: 1; grid-row: 2; }
  .album figure:nth-child(3) { grid-column: 2; grid-row: 2; }
  .album figure:nth-child(4) { grid-column: 1 / -1; grid-row: 3; height: auto; }
  .rate-notes { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(20, 24, 26, 0.08); }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(20, 24, 26, 0.08); }
}

@media (max-width: 640px) {
  .contact-facts { grid-template-columns: 1fr; }
  .contact-sheet .form-actions { flex-wrap: wrap; }
  .contact-place { min-height: 160px; }
  .album {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .album figure,
  .album figure:first-child,
  .album figure:nth-child(2),
  .album figure:nth-child(2):last-child,
  .album figure:nth-child(3),
  .album figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    height: 200px;
  }
  .album figure:first-child { height: 260px; }
  .tour-points, .tour-steps, .tour-book-band .form-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { width: 100%; }
  .card-grid, .route-grid, .gallery-grid, .pillars, .why-grid, .steps, .vehicle-grid, .route-photo-grid, .tour-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .hero-copy { padding-top: 2.6rem; }
  .carousel-arrow { display: none; }
  .finder-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide, .card-media img, .pillar img, .reveal { transition: none; animation: none; opacity: 1; transform: none; }
}
