/* Ceylon Horizon Travels — unique brand palette (not Sedara) */
:root {
  --color-ink: #15221f;
  --color-ink-soft: #1f3530;
  --color-surface: #fff6e3;
  --color-muted: #f3e4bc;
  --color-cream: #fffbf0;

  --color-primary: #1a6b5c;
  --color-primary-dark: #134a40;
  --color-accent: #c1492e;
  --color-accent-dark: #9a3825;
  --color-highlight: #e8a838;
  --color-deep: #1e3d4a;
  --color-lagoon: #2d8b7a;
  --color-green: #25d366;

  --color-btn: #1e6db0;
  --color-btn-light: #2f86c9;
  --color-btn-dark: #155a96;

  --page-hero-from: #1a4466;
  --page-hero-to: var(--color-btn);

  --header-bar: rgb(30 45 58 / 0.82);
  --header-bar-solid: rgb(24 36 46 / 0.94);
  --header-text: #fff;
  --header-text-muted: rgb(255 255 255 / 0.78);
  --header-accent-line: var(--color-highlight);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --header-h: 4.75rem;
  --header-h-scrolled: 3.65rem;
  --logo-h: 3rem;
  --logo-h-scrolled: 2.35rem;
  --promo-h: 2.5rem;
  --hero-h: clamp(520px, 88svh, 820px);
  --hero-h-mobile-copy: clamp(420px, 62svh, 560px);
  --hero-h-desktop: clamp(560px, 82svh, 760px);
  --site-max: 1280px;
  --site-pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 1rem;
  --shadow: 0 8px 32px rgb(21 34 31 / 0.1);
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-surface);
  background-image:
    radial-gradient(circle at 15% 5%, rgb(232 168 56 / 0.09) 0%, transparent 42%),
    radial-gradient(circle at 85% 0%, rgb(244 201 93 / 0.12) 0%, transparent 38%),
    url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 0v8M26 44v8M0 26h8M44 26h8M6.5 6.5l5.6 5.6M39.9 39.9l5.6 5.6M6.5 45.5l5.6-5.6M39.9 12.1l5.6-5.6' stroke='%23c9a227' stroke-opacity='0.05' fill='none' stroke-width='1'/%3E%3C/svg%3E");
  color: var(--color-ink);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
img[src$=".webp"], .tour-card-img img, .dest-card-img img, .hero-slide img {
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container {
  width: 100%;
  max-width: var(--site-max);
  margin-inline: auto;
  padding-inline: var(--site-pad);
}
.eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-accent-dark); }
.eyebrow.light { color: var(--color-highlight); }
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Catalog search (destinations / activities) — tight under category tabs */
.page-hero + .catalog-section,
.category-tabs + .catalog-section {
  padding-top: 0.85rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.catalog-section .container > .catalog-search {
  margin-bottom: 1.15rem;
}
.catalog-search-field {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 26rem;
  margin-inline: auto;
  background: #fff;
  border: 1px solid rgb(21 34 31 / 0.12);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgb(21 34 31 / 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.catalog-search-field:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 8px 22px rgb(26 107 92 / 0.1);
}
.catalog-search-icon {
  position: absolute;
  left: 0.85rem;
  width: 1rem;
  height: 1rem;
  color: rgb(21 34 31 / 0.45);
  pointer-events: none;
}
.catalog-search-input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.62rem 3.85rem 0.62rem 2.45rem;
  font: inherit;
  font-size: 0.88rem;
  color: var(--color-ink);
  outline: none;
}
.catalog-search-input::placeholder {
  color: rgb(21 34 31 / 0.42);
}
.catalog-search-input::-webkit-search-cancel-button {
  display: none;
}
.catalog-search-clear {
  position: absolute;
  right: 2.55rem;
  width: 1.55rem;
  height: 1.55rem;
  border: 0;
  border-radius: 999px;
  background: rgb(21 34 31 / 0.06);
  color: rgb(21 34 31 / 0.65);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}
.catalog-search-clear:hover {
  background: rgb(21 34 31 / 0.1);
}
.catalog-search-art {
  position: absolute;
  right: 0.28rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
  pointer-events: none;
  border-radius: 50%;
  background: rgb(255 248 235 / 0.85);
  box-shadow: inset 0 0 0 1px rgb(21 34 31 / 0.06);
}
.catalog-empty {
  margin: 0.5rem auto 1.75rem;
  max-width: 34rem;
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.72);
  border: 1px solid rgb(21 34 31 / 0.08);
}
.catalog-empty-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-deep);
}
.catalog-empty-copy {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: rgb(21 34 31 / 0.62);
}
.catalog-suggest {
  margin-top: 0.95rem;
}
.catalog-suggest-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(21 34 31 / 0.5);
}
.catalog-suggest-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.catalog-suggest-chip {
  border: 1px solid rgb(26 107 92 / 0.22);
  background: rgb(26 107 92 / 0.08);
  color: var(--color-primary-dark);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.catalog-suggest-chip:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
[data-catalog-item][hidden] {
  display: none !important;
}

/* Buttons — pill / capsule shape */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(
    180deg,
    var(--color-btn-light) 0%,
    var(--color-btn) 48%,
    var(--color-btn-dark) 100%
  );
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 4px 18px rgb(21 90 150 / 0.38),
    inset 0 1px 0 rgb(255 255 255 / 0.22);
}
.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow:
    0 6px 22px rgb(21 90 150 / 0.45),
    inset 0 1px 0 rgb(255 255 255 / 0.28);
}
.btn-soft {
  background: linear-gradient(180deg, #fff 0%, #fff8eb 100%);
  color: #c27812;
  border-color: #e8a838;
  box-shadow:
    0 4px 14px rgb(232 168 56 / 0.18),
    inset 0 1px 0 rgb(255 255 255 / 0.95);
}
.btn-soft:hover {
  border-color: #d4921f;
  color: #a8660c;
  background: #fff;
  box-shadow:
    0 6px 18px rgb(232 168 56 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.95);
}
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: rgb(193 73 46 / 0.42);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-ghost {
  background: rgb(255 255 255 / 0.08);
  color: #fff;
  border-color: rgb(255 255 255 / 0.55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--color-deep);
  border-color: #fff;
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgb(255 255 255 / 0.55);
}
.btn-ghost-light:hover {
  background: rgb(255 255 255 / 0.14);
  border-color: rgb(255 255 255 / 0.75);
}
.btn-sm {
  padding: 0.58rem 1.35rem;
  font-size: 0.8rem;
}
.btn-block { width: 100%; }
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--site-pad);
  z-index: 999;
  padding: 0.65rem 1rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
}
.skip-link:focus {
  top: 0.75rem;
  outline: 2px solid var(--color-highlight);
  outline-offset: 2px;
}

.link-arrow { font-weight: 600; color: var(--color-primary); transition: color var(--transition); display: inline-flex; align-items: center; gap: 0.35rem; }
.link-arrow:hover { color: var(--color-accent); }

/* Icons */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon--sm { width: 1rem; height: 1rem; }
.icon--md { width: 1.25rem; height: 1.25rem; }
.icon--lg { width: 1.625rem; height: 1.625rem; }
.icon--star { width: 0.85rem; height: 0.85rem; }

.stars-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  color: var(--color-highlight);
  vertical-align: middle;
}

.stars {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--color-highlight);
}

/* Header — sticky bar; transparent overlay on hero until scroll */
body.has-top-hero {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  color: var(--header-text);
  background: var(--header-bar);
  border-top: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.16);
  overflow: visible;
  transition:
    background 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth),
    backdrop-filter 0.4s var(--ease-smooth),
    transform 0.4s var(--ease-smooth);
}

body.has-top-hero .site-header:not(.is-scrolled) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.has-top-hero .site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-header.is-scrolled .header-inner {
  justify-content: flex-start;
  padding-block: 0.5rem;
}

.site-header.is-scrolled .nav-desktop,
.site-header.is-scrolled .header-actions {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header.is-scrolled .nav-mobile {
  display: none !important;
}

.site-header .nav-desktop,
.site-header .header-actions {
  transition:
    opacity 0.35s var(--ease-smooth),
    visibility 0.35s var(--ease-smooth);
}

@media (min-width: 1200px) {
  .site-header.is-scrolled .header-inner { padding-block: 0.55rem; }
}

/* Promo sub-hero — separate strip above hero (document flow, not inside hero) */
.site-promo-bar {
  position: relative;
  z-index: 1001;
  width: 100%;
  background: linear-gradient(90deg, #f0c040 0%, var(--color-highlight) 48%, #f5c842 100%);
  color: #fff;
  flex-shrink: 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.15);
}
body.has-top-hero.has-promo-bar .site-header:not(.is-scrolled) {
  top: var(--promo-h);
}
body.has-promo-bar .hero {
  min-height: 100svh;
}
body.has-promo-bar .hero-stage {
  min-height: 100svh;
}
.site-promo-bar-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.75rem, 2vw, 1.4rem);
  min-height: var(--promo-h);
  padding-block: 0.35rem;
}
.site-promo-bar-headline {
  flex-shrink: 0;
  font-size: clamp(0.72rem, 1.25vw, 0.85rem);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}
.site-promo-bar-sep {
  flex-shrink: 0;
  display: inline-block;
  width: clamp(1.75rem, 3vw, 2.75rem);
  height: 2px;
  background: #fff;
  border-radius: 999px;
  user-select: none;
}
.site-promo-bar-tagline {
  flex-shrink: 1;
  min-width: 0;
  text-align: left;
  font-size: clamp(0.72rem, 1.25vw, 0.85rem);
  line-height: 1.3;
  font-weight: 500;
  color: rgb(255 255 255 / 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-promo-bar-clock {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: clamp(1rem, 2.5vw, 2rem);
  gap: 0.4rem;
  line-height: 1.15;
}
.site-promo-bar-clock-label {
  font-size: clamp(0.72rem, 1.25vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.site-promo-bar-clock-label-time {
  font-size: 0.76em;
  font-weight: 700;
  margin-left: 0.12em;
}
.site-promo-bar-clock-time {
  font-size: clamp(0.72rem, 1.25vw, 0.85rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fff;
  white-space: nowrap;
}
.site-promo-bar-cta {
  flex-shrink: 0;
  margin-left: 0;
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: #fff;
  white-space: nowrap;
}
.site-promo-bar-cta:hover { color: rgb(255 255 255 / 0.85); }

@media (max-width: 900px) {
  .site-promo-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 0.65rem;
    padding: 0.5rem var(--site-pad);
    min-height: auto;
    text-align: center;
  }
  .site-promo-bar-sep { display: none; }
  .site-promo-bar-headline,
  .site-promo-bar-tagline {
    flex: 1 1 100%;
    white-space: normal;
    text-align: center;
  }
  .site-promo-bar-tagline { font-size: 0.68rem; }
  .site-promo-bar-clock {
    margin-left: 0;
    margin-right: 0;
    align-items: center;
  }
  .site-promo-bar-cta {
    margin-left: 0;
    font-size: 0.68rem;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  max-width: var(--site-max);
  margin-inline: auto;
  padding: 0.85rem var(--site-pad);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: padding 0.4s var(--ease-smooth);
}
@media (min-width: 1200px) {
  .header-inner { padding: 1rem var(--site-pad); }
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
  background: none;
  transition: transform 0.35s var(--transition), opacity 0.35s var(--transition);
}
.logo:hover { transform: translateY(-1px); }
.logo:active { transform: translateY(0); opacity: 0.92; }
.logo-img {
  display: block;
  height: var(--logo-h);
  width: auto;
  max-width: min(22rem, 72vw);
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  image-rendering: -webkit-optimize-contrast;
  transition: height 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth), filter 0.4s var(--ease-smooth);
  will-change: height;
}
.site-header.is-scrolled .logo-img {
  height: var(--logo-h-scrolled);
  filter:
    drop-shadow(0 0 1px rgb(0 0 0 / 0.85))
    drop-shadow(0 1px 3px rgb(0 0 0 / 0.7))
    drop-shadow(0 4px 14px rgb(0 0 0 / 0.5));
}
.site-header.is-scrolled .logo:hover { transform: translateY(-1px) scale(1.01); }
.logo-footer .logo-img {
  height: 3.25rem;
  max-width: min(19rem, 92vw);
}
@media (min-width: 1024px) {
  :root {
    --logo-h: 3.15rem;
    --logo-h-scrolled: 2.5rem;
  }
  .logo-img { max-width: 24rem; }
  .logo-footer .logo-img { height: 3.5rem; max-width: 21rem; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header,
  .header-inner,
  .logo,
  .logo-img {
    transition: none;
  }
  .logo-img { will-change: auto; }
}
.nav-desktop {
  display: none;
  flex: 1;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(0.15rem, 1.2vw, 0.55rem);
  margin-left: auto;
}
.nav-desktop > a,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.2;
  white-space: nowrap;
  border-radius: 0;
  color: var(--header-text);
  transition: color var(--transition), opacity var(--transition);
}
.nav-dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}
.nav-dropdown-caret { flex-shrink: 0; opacity: 0.72; transition: transform var(--transition); }
.nav-dropdown.is-open .nav-dropdown-caret { transform: rotate(180deg); }
@media (min-width: 1200px) {
  .nav-desktop > a,
  .nav-dropdown-toggle { font-size: 0.9rem; padding: 0.4rem 0.7rem; }
}
.nav-desktop > a:hover,
.nav-dropdown-toggle:hover {
  color: #fff;
  background: none;
  opacity: 1;
}
.nav-desktop > a.is-active,
.nav-dropdown.is-active > .nav-dropdown-toggle {
  color: #fff;
  font-weight: 600;
  background: none;
}
.nav-desktop > a.is-active::after,
.nav-dropdown.is-active > .nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--color-highlight);
}
.nav-dropdown { position: relative; flex-shrink: 0; align-self: center; }
.nav-dropdown.is-open { z-index: 1101; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 12.5rem;
  padding: 0.4rem;
  margin-top: 0.35rem;
  background: rgb(24 36 46 / 0.96);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 0.5rem;
  box-shadow: 0 14px 36px rgb(0 0 0 / 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1102;
}
/* Invisible bridge — no dead zone between toggle and menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.55rem;
  height: 0.55rem;
}
.nav-dropdown-menu a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0.55rem 0.8rem;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 0.35rem;
  white-space: nowrap;
  color: rgb(255 255 255 / 0.88);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgb(255 255 255 / 0.12);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown-menu a:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.1);
}
.nav-dropdown-menu a:active { background: rgb(255 255 255 / 0.14); }
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a.is-active {
  position: relative;
  background: transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: none;
  padding-left: 0.75rem;
  text-decoration: underline;
  text-decoration-color: var(--color-highlight);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}
.nav-dropdown-menu a.is-active::before {
  content: none;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}
.header-actions { display: flex; align-items: center; gap: 0.55rem; flex-shrink: 0; }
.header-actions .btn { display: none; }
.header-cta {
  white-space: nowrap;
  padding: 0.55rem 1.25rem !important;
  font-size: 0.78rem !important;
  border-radius: 999px !important;
  background: linear-gradient(
    180deg,
    var(--color-btn-light) 0%,
    var(--color-btn) 48%,
    var(--color-btn-dark) 100%
  ) !important;
  color: #fff !important;
  border: none !important;
  box-shadow:
    0 4px 16px rgb(21 90 150 / 0.4),
    inset 0 1px 0 rgb(255 255 255 / 0.22) !important;
}
.header-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  color: #fff !important;
  box-shadow:
    0 6px 20px rgb(38 120 184 / 0.42),
    inset 0 1px 0 rgb(255 255 255 / 0.32) !important;
}
@media (min-width: 1200px) {
  .header-cta { font-size: 0.84rem !important; padding: 0.58rem 1.4rem !important; }
}
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 0.5rem;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: var(--site-max);
  margin: 0;
  padding: 0.75rem var(--site-pad) 1.15rem;
  border-radius: 0 0 1.15rem 1.15rem;
  background:
    linear-gradient(165deg, rgb(30 61 74 / 0.97) 0%, rgb(21 52 58 / 0.98) 48%, rgb(19 45 48 / 0.98) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: none;
  border-top: 1px solid rgb(232 168 56 / 0.22);
  box-shadow:
    0 18px 40px rgb(12 24 28 / 0.35),
    inset 0 1px 0 rgb(255 255 255 / 0.06);
  color: #fff;
  max-height: calc(100dvh - var(--header-h) - 0.5rem);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile > a:not(.btn) {
  padding: 0.78rem 0.9rem;
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgb(255 255 255 / 0.9);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-mobile > a:not(.btn):hover,
.nav-mobile > a:not(.btn):active {
  background: rgb(255 255 255 / 0.08);
  color: #fff;
}
.nav-mobile > a:not(.btn).is-active {
  color: #fff;
  font-weight: 600;
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-color: var(--color-highlight);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}
.nav-mobile-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.78rem 0.9rem;
  border: none;
  border-radius: 0.75rem;
  background: none;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.9);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-mobile-toggle:hover,
.nav-mobile-toggle:active {
  background: rgb(255 255 255 / 0.08);
  color: #fff;
}
.nav-mobile-group.is-active > .nav-mobile-toggle {
  color: #fff;
  font-weight: 600;
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-color: var(--color-highlight);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}
.nav-mobile-group.is-open > .nav-mobile-toggle {
  color: #fff;
  font-weight: 600;
  background: rgb(255 255 255 / 0.06);
}
.nav-mobile-caret {
  flex-shrink: 0;
  opacity: 0.7;
  color: var(--color-highlight);
  transition: transform var(--transition);
}
.nav-mobile-group.is-open .nav-mobile-caret { transform: rotate(180deg); }
.nav-mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.2rem 0 0.35rem 0.35rem;
  margin: 0 0 0.15rem 0.55rem;
  border-left: 2px solid rgb(232 168 56 / 0.35);
}
.nav-mobile-submenu[hidden] { display: none !important; }
.nav-mobile-submenu a {
  font-size: 0.9rem;
  padding: 0.6rem 0.85rem;
  border-radius: 0.65rem;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgb(232 168 56 / 0.15);
  color: rgb(255 255 255 / 0.78);
}
.nav-mobile-submenu a:hover,
.nav-mobile-submenu a:active {
  background: rgb(255 255 255 / 0.08);
  color: #fff;
}
.nav-mobile-submenu a.is-active {
  color: #fff;
  font-weight: 700;
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-color: var(--color-highlight);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}
.nav-mobile-submenu a.is-active::before {
  content: none;
}
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}
.nav-mobile-actions .btn {
  width: 100%;
  justify-content: center;
  margin: 0;
  border-radius: 999px;
}
.nav-mobile-actions .btn-soft {
  background: rgb(255 255 255 / 0.06);
  color: #f0c868;
  border-color: rgb(232 168 56 / 0.55);
  box-shadow: none;
}
.nav-mobile-actions .btn-soft:hover {
  background: rgb(255 255 255 / 0.1);
  color: #fff8ea;
  border-color: #e8a838;
}
@media (min-width: 1200px) {
  .nav-desktop { display: flex; }
  .header-actions .btn { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Hero — full-width, header overlaps top; text anchored to bottom safe zone */
.hero {
  position: relative;
  width: 100%;
  min-height: var(--hero-h);
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; overflow: hidden; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* Slow Ken Burns on selected hero slides */
.hero-slide--kenburns.active img {
  animation: hero-kenburns 8s ease-out forwards;
}
.hero-slide--kenburns-alt.active img {
  animation-name: hero-kenburns-alt;
}
@keyframes hero-kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.08) translate(-1.5%, -1%); }
}
@keyframes hero-kenburns-alt {
  from { transform: scale(1.08) translate(1%, 0); }
  to { transform: scale(1) translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide--kenburns.active img {
    animation: none;
  }
}

.detail-split-media img,
.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgb(21 34 31 / 0.42) 0%, rgb(21 34 31 / 0.52) 45%, rgb(21 34 31 / 0.72) 100%);
}

body.has-top-hero .hero-overlay {
  background:
    linear-gradient(
      to bottom,
      rgb(21 34 31 / 0.5) 0%,
      rgb(21 34 31 / 0.22) 24%,
      rgb(21 34 31 / 0.4) 52%,
      rgb(21 34 31 / 0.72) 100%
    );
}

.hero-stage {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  align-items: center;
  justify-items: center;
  min-height: var(--hero-h);
  padding-top: calc(var(--header-h) + 1rem);
  padding-bottom: clamp(1.5rem, 5vh, 2.5rem);
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 900px) {
  .hero-copy { max-width: none; }
}

@media (max-width: 1023px) {
  .hero {
    min-height: clamp(480px, 78svh, 680px);
  }

  body.has-promo-bar .hero,
  body.has-promo-bar .hero-stage {
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom, rgb(21 34 31 / 0.5) 0%, rgb(21 34 31 / 0.62) 40%, rgb(21 34 31 / 0.82) 100%);
  }

  .hero-slide img {
    object-position: center center;
  }

  .hero-stage {
    min-height: var(--hero-h);
    align-items: center;
    justify-items: center;
    gap: 1rem;
    padding-top: calc(var(--header-h) + 0.85rem);
    padding-bottom: 1.5rem;
  }

  .hero-copy {
    max-width: min(36rem, 100%);
    min-height: auto;
    justify-content: center;
  }

  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    padding: 0.32rem 0.72rem;
    margin-bottom: 0.85rem;
  }

  .hero h1 {
    max-width: 16ch;
    font-size: clamp(1.7rem, 7.8vw, 2.35rem);
    line-height: 1.12;
  }

  .hero-sub {
    max-width: none;
    margin-top: 0.7rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    max-width: none;
    gap: 0.55rem;
    margin-top: 1.1rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.78rem 1.1rem;
    font-size: 0.88rem;
  }

  .hero-booking {
    max-width: none;
    justify-self: stretch;
  }

  .hero-booking-form,
  .hero-booking-success {
    background: rgb(255 255 255 / 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgb(255 255 255 / 0.55);
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .hero-booking-title {
    font-size: 1.22rem;
  }

  .hero-booking-lead {
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
  }

  .hero-booking-field {
    margin-bottom: 0.65rem;
  }

  .hero-booking-field input {
    font-size: 16px;
    padding: 0.62rem 0.8rem;
  }

  .hero-booking-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-booking-row--dates {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
}

@media (max-width: 479px) {
  .hero-booking-row--dates {
    grid-template-columns: 1fr;
  }

  .hero-eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 480px) and (max-width: 1023px) {
  .hero-actions {
    flex-direction: row;
  }

  .hero-actions .btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-stage {
    padding-bottom: 1.75rem;
    gap: 1.35rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --hero-h: var(--hero-h-desktop);
    --site-pad: 2rem;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    justify-content: center;
    min-height: var(--hero-h);
    padding-top: calc(var(--header-h) + 1.25rem);
    padding-bottom: clamp(2.5rem, 6vh, 4rem);
  }

  body.has-promo-bar .hero,
  body.has-promo-bar .hero-stage {
    min-height: 100svh;
  }

  .hero h1 {
    font-size: 3.1rem;
    max-width: none;
  }

  .hero-sub { font-size: 1rem; }

  .page-hero--photo,
  .page-hero[style] { min-height: 380px; padding-bottom: 2.75rem; }

  .page-hero--photo h1,
  .page-hero[style] h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.18);
  color: var(--color-highlight);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  max-width: 18ch;
  margin-inline: auto;
  text-align: center;
  text-shadow: 0 1px 18px rgb(21 34 31 / 0.32);
}

.hero h1 em {
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
}

/* PC / tablet — keep single title readable on one or two natural lines */
@media (min-width: 900px) {
  .hero h1 {
    max-width: 22ch;
    white-space: normal;
    font-size: clamp(2.15rem, 3.4vw, 3.25rem);
  }
}

.hero-sub {
  margin-top: 0.85rem;
  max-width: 36rem;
  margin-inline: auto;
  color: rgb(255 255 255 / 0.86);
  font-size: clamp(0.9rem, 1.8vw, 1.02rem);
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.35rem;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
}

.hero-actions .btn {
  padding: 0.75rem 1.35rem;
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid #fff;
  background: rgb(255 255 255 / 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 8px 28px rgb(21 34 31 / 0.22),
    inset 0 1px 0 rgb(255 255 255 / 0.35);
  text-shadow: 0 1px 2px rgb(21 34 31 / 0.25);
}
.hero-actions .btn:hover {
  color: #fff;
  border-color: #fff;
  background: rgb(255 255 255 / 0.24);
  filter: none;
  transform: translateY(-1px);
  box-shadow:
    0 10px 32px rgb(21 34 31 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.45);
}
.hero-actions .btn-primary,
.hero-actions .btn-outline,
.hero-actions .btn-soft {
  background: rgb(255 255 255 / 0.14);
  color: #fff;
  border-color: #fff;
}

/* Hero slide counter */
.hero-slide-nav {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  padding: 0.42rem 0.6rem 0.42rem 0.5rem;
  border-radius: 999px;
  background: rgb(21 34 31 / 0.42);
  border: 1px solid rgb(255 255 255 / 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgb(21 34 31 / 0.18);
  pointer-events: auto;
}

.hero-slide-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-inline: 0.15rem;
}

.hero-slide-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgb(255 255 255 / 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero-slide-dot.active {
  background: var(--color-highlight);
  transform: scale(1.25);
}

.hero-slide-dot:hover {
  background: rgb(255 255 255 / 0.75);
}

.hero-slide-dot:focus-visible {
  outline: 2px solid var(--color-highlight);
  outline-offset: 2px;
}

.hero-slide-btn {
  width: 1.85rem;
  height: 1.85rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgb(255 255 255 / 0.85);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero-slide-btn:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.1);
}

.hero-slide-btn:focus-visible {
  outline: 2px solid var(--color-highlight);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .hero-slide-nav {
    margin-top: 1rem;
    padding: 0.36rem 0.55rem;
    gap: 0.45rem;
  }

  .hero-slide-dot {
    width: 0.4rem;
    height: 0.4rem;
  }

  .hero-slide-btn {
    width: 1.65rem;
    height: 1.65rem;
  }
}

/* Hero booking panel */
.hero-booking {
  width: 100%;
  max-width: 400px;
  justify-self: end;
}

@media (max-width: 1023px) {
  .hero-booking { max-width: 100%; justify-self: stretch; }
}

.hero-booking-form,
.hero-booking-success {
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 1.15rem;
  background: rgb(255 255 255 / 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 0.28);
  box-shadow: 0 16px 40px rgb(21 34 31 / 0.12);
}

.hero-booking-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 8px rgb(255 255 255 / 0.65);
}

.hero-booking-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-deep);
  line-height: 1.2;
  text-shadow: 0 1px 10px rgb(255 255 255 / 0.55);
}

.hero-booking-lead {
  margin: 0.4rem 0 1rem;
  font-size: 0.82rem;
  color: rgb(21 34 31 / 0.78);
  line-height: 1.5;
  text-shadow: 0 1px 6px rgb(255 255 255 / 0.45);
}

.hero-booking-field {
  display: block;
  margin-bottom: 0.75rem;
}

.hero-booking-field span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgb(21 34 31 / 0.6);
  margin-bottom: 0.3rem;
}

.hero-booking-field input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgb(255 255 255 / 0.35);
  border-radius: 0.6rem;
  font-family: inherit;
  font-size: 0.88rem;
  background: rgb(255 255 255 / 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.hero-booking-field input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgb(255 255 255 / 0.78);
  box-shadow: 0 0 0 3px rgb(26 107 92 / 0.12);
}

.hero-booking-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 0.65rem;
}

.hero-booking-row--dates {
  grid-template-columns: 1fr 1fr;
}

.hero-booking-field input[type="date"] {
  min-height: 2.5rem;
  color: var(--color-ink);
  color-scheme: light;
}

.hero-booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.65;
}

.hero-booking-submit {
  margin-top: 0.35rem;
  padding: 0.82rem 1.5rem;
  font-size: 0.88rem;
  border-radius: 999px;
}

.hero-booking-form[hidden],
.hero-booking-success[hidden] {
  display: none;
}

.hero-booking-success {
  text-align: center;
  animation: booking-success-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes booking-success-in {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: none; }
}

.hero-booking-check {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0.25rem auto 1rem;
}

.hero-check-svg {
  width: 100%;
  height: 100%;
}

.hero-check-circle {
  stroke: var(--color-primary);
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transform-origin: center;
  animation: hero-check-circle 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-check-mark {
  stroke: var(--color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: hero-check-mark 0.4s 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-check-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes hero-check-mark {
  to { stroke-dashoffset: 0; }
}

.hero-booking-success-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-deep);
  margin-bottom: 0.5rem;
}

.hero-booking-success-text {
  font-size: 0.88rem;
  color: rgb(21 34 31 / 0.72);
  line-height: 1.55;
}

.hero + .section {
  padding-top: 1.35rem;
}

@media (min-width: 768px) {
  .hero + .section { padding-top: 2rem; }
}

/* Page hero — full-width banners under overlapping header */
.page-hero {
  width: 100%;
  padding: calc(var(--header-h) + 2.75rem) 0 3rem;
  background: linear-gradient(135deg, var(--page-hero-from) 0%, var(--color-btn-dark) 52%, var(--page-hero-to) 100%);
  color: #fff;
  text-align: center;
}
.page-hero--short { padding-bottom: 2.75rem; }
.page-hero--short:has(+ .catalog-section) {
  padding-bottom: 1.75rem;
}
/* Plan Your Tour — give tabs + map + sidebar more room under the hero */
body:has(.plan-tour-section) .page-hero--short {
  padding-bottom: clamp(3.75rem, 6vw, 5rem);
}
body:has(.plan-tour-section) .plan-tour-section {
  padding-top: 1.15rem;
}
.page-hero--photo,
.page-hero[style] {
  min-height: clamp(360px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  padding: var(--header-h) 0 clamp(2.75rem, 6vh, 4.25rem);
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: left;
  overflow: visible;
}
.page-hero--photo::before,
.page-hero[style]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(21 34 31 / 0.9) 0%,
    rgb(21 34 31 / 0.58) 32%,
    rgb(21 34 31 / 0.24) 62%,
    rgb(21 34 31 / 0.1) 100%
  );
  pointer-events: none;
}
.page-hero--photo .container,
.page-hero[style] .container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.page-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: min(40rem, 100%);
}
.page-hero--photo .eyebrow.light,
.page-hero[style] .eyebrow.light {
  margin: 0;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  background: rgb(21 34 31 / 0.45);
  border: 1px solid rgb(232 168 56 / 0.38);
  color: var(--color-highlight);
  letter-spacing: 0.16em;
  line-height: 1.35;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.page-hero--photo h1,
.page-hero[style] h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  padding-bottom: 0.06em;
  color: #fff;
  text-shadow: 0 2px 28px rgb(0 0 0 / 0.48);
}
.page-hero-sub {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  color: rgb(255 255 255 / 0.9);
  text-shadow: 0 1px 14px rgb(0 0 0 / 0.42);
}
.page-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  margin: 0.15rem 0 0;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgb(21 34 31 / 0.5);
  border: 1px solid rgb(232 168 56 / 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1.25;
  text-align: left;
}
.page-hero-meta-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-highlight);
}
.page-hero-meta-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 10px rgb(0 0 0 / 0.35);
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.25rem); margin-top: 0.5rem; }
.page-hero--photo h1,
.page-hero[style] h1 { margin-top: 0; }

/* Sections — full-width bands; content stays in .container */
.section { padding: clamp(3rem, 6vw, 4.5rem) 0; width: 100%; }
@media (max-width: 767px) {
  .section {
    padding: 2rem 0;
  }
  /* Tighten empty gap before footer after final CTA / last content */
  main > .section:last-of-type,
  #main-content > .section:last-of-type {
    padding-bottom: 1.25rem;
  }
  .section-dest-guide {
    padding-bottom: 1.25rem;
  }
  .tour-cta {
    margin-top: 1.15rem;
    padding: 1.25rem 1.1rem 1.35rem;
    border-radius: 1.15rem;
  }
  .tour-cta h2 {
    font-size: 1.35rem;
  }
  .tour-cta p {
    margin: 0.4rem 0 0.85rem;
    font-size: 0.9rem;
  }
  .tour-cta-actions-row {
    gap: 0.55rem;
  }
  .tour-cta-actions-row .btn {
    flex: 1 1 calc(50% - 0.3rem);
    min-width: 0;
    padding-inline: 0.85rem;
  }
  .detail-split {
    margin-bottom: 1.75rem;
  }
  .map-section,
  .itinerary-section {
    margin-top: 1.5rem;
  }
  .section-foot {
    margin: 1.5rem 0 0;
  }
  .footer-body {
    padding: 2rem 0;
  }
}
.section-muted { background: var(--color-muted); width: 100%; }
.section-head { margin-bottom: 2rem; text-align: center; }
.section-head .eyebrow { margin-bottom: 0.35rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  color: var(--color-deep);
  margin: 0;
}
.section-head .section-desc {
  max-width: 42rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.5rem auto 0;
}

.home-welcome {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.home-welcome--greeting {
  padding-bottom: clamp(1.35rem, 2.5vw, 1.85rem);
}

.home-welcome--greeting + .home-welcome {
  padding-top: clamp(1.35rem, 2.5vw, 1.75rem);
}

.home-welcome--greeting + .home-section-divider .home-section-divider-inner {
  padding-block: 0.35rem;
}

.home-welcome--greeting + .home-section-divider + .home-welcome {
  padding-top: clamp(1.35rem, 2.5vw, 1.75rem);
}

.home-welcome-inner {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.home-welcome-title {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.5rem, 3.2vw, 2.125rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text, #15221f);
  margin: 0 0 1.25rem;
}

.home-welcome--greeting .home-welcome-title {
  margin-bottom: 0;
}

.home-welcome-sep {
  font-weight: 500;
  opacity: 0.55;
  padding-inline: 0.15em;
}

.home-welcome--greeting .home-welcome-en {
  font-size: 1.14em;
  font-weight: 700;
}

.home-welcome-title [lang="si"] {
  font-family: "Noto Serif Sinhala", "Iskoola Pota", "Nirmala UI", var(--font-display, Georgia, serif);
}

.home-welcome-text {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.75;
  color: rgb(21 34 31 / 0.82);
  margin: 0;
}

.home-section-divider {
  width: 100%;
}
.home-section-divider-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding-block: 0.35rem;
}
.home-section-divider:has(+ .home-trust-strip) {
  padding-bottom: clamp(1rem, 2.5vw, 1.75rem);
}
.home-section-divider-line {
  flex: 1;
  max-width: min(18rem, 34vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(212 87 58 / 0.18) 18%,
    rgb(240 192 64 / 0.55) 50%,
    rgb(212 87 58 / 0.18) 82%,
    transparent 100%
  );
}
.home-section-divider-gem {
  position: relative;
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--color-highlight) 0%, #f0c040 100%);
  border-radius: 1px;
  box-shadow: 0 0 0 3px rgb(240 192 64 / 0.16);
}
.home-section-divider-gem::before,
.home-section-divider-gem::after {
  content: "";
  position: absolute;
  background: rgb(212 87 58 / 0.35);
}
.home-section-divider-gem::before {
  top: 50%;
  left: -0.95rem;
  width: 0.55rem;
  height: 1px;
  transform: translateY(-50%);
}
.home-section-divider-gem::after {
  top: 50%;
  right: -0.95rem;
  width: 0.55rem;
  height: 1px;
  transform: translateY(-50%);
}
.home-welcome:has(+ .home-section-divider) {
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.home-welcome--greeting:has(+ .home-section-divider) {
  padding-bottom: clamp(1.35rem, 2.5vw, 1.85rem);
}
.home-trust-strip + .vision-section {
  margin-top: 0;
}
.home-section-divider + .home-trust-strip {
  margin-top: 0;
  padding-top: clamp(2.75rem, 5vw, 3.5rem);
}

/* Home trust / benefits strip */
.home-trust-strip {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background: #fff;
  border-block: 1px solid rgb(21 34 31 / 0.06);
}
.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.home-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgb(255 255 255 / 0.55), transparent 55%),
    linear-gradient(145deg, rgb(26 107 92 / 0.14), rgb(26 107 92 / 0.07));
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgb(26 107 92 / 0.1);
}
.home-trust-icon .icon,
.home-trust-icon-svg {
  width: 1.45rem;
  height: 1.45rem;
}
.home-trust-text {
  font-size: clamp(0.78rem, 1.15vw, 0.84rem);
  line-height: 1.45;
  color: rgb(21 34 31 / 0.78);
  margin: 0;
  max-width: 13.5rem;
}
@media (min-width: 768px) {
  .home-trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .home-trust-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.15rem;
  }
  .home-trust-text { max-width: 11.5rem; }
}

.section-head--split,
.section-head:has(.link-arrow) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.section-head--split h2 { margin: 0.25rem 0 0; }

.section-foot {
  margin: 2.25rem 0 0;
}
.section-foot .link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.85rem;
  border: 2px solid #e8a838;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff 0%, #fff8eb 100%);
  color: #c27812;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgb(232 168 56 / 0.18);
  transition: var(--transition);
}
.section-foot .link-arrow .icon {
  transition: transform var(--transition);
}
.section-foot .link-arrow:hover {
  background: #fff;
  color: #a8660c;
  border-color: #d4921f;
  box-shadow: 0 6px 18px rgb(232 168 56 / 0.28);
  transform: translateY(-1px);
}
.section-foot .link-arrow:hover .icon {
  transform: translateX(3px);
}

/* Vehicle fleet */
.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.vehicle-card {
  background: #fff; border-radius: 1.25rem; overflow: hidden;
  border: 1px solid rgb(21 34 31 / 0.08); transition: var(--transition);
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgb(21 34 31 / 0.04);
}
.vehicle-card:hover { transform: translateY(-4px); border-color: var(--color-primary); box-shadow: var(--shadow); }
.vehicle-card-img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(245 240 230 / 0.4), rgb(237 232 222 / 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-card-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.02); }
.vehicle-card-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.65rem; border-radius: 999px;
  background: rgb(26 107 92 / 0.92); color: #fff;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.vehicle-card-body {
  padding: 1.25rem 1.25rem 1rem; flex: 1;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.vehicle-card-body h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--color-deep); line-height: 1.25; }
.vehicle-card-summary {
  font-size: 0.88rem; color: var(--color-text-muted); margin: 0;
  line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.vehicle-capacity {
  display: flex; flex-wrap: wrap; gap: 0.65rem 1rem;
  padding: 0.75rem 0.85rem; border-radius: 0.65rem;
  background: rgb(26 107 92 / 0.06); border: 1px solid rgb(26 107 92 / 0.1);
}
.vehicle-capacity-item {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; color: var(--color-deep);
}
.vehicle-capacity-item .icon { color: var(--color-primary); flex-shrink: 0; }
.vehicle-capacity-item strong { font-weight: 700; }
.vehicle-modal-stats {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin: 0.75rem 0 1rem; padding: 0.85rem 1rem;
  border-radius: 0.65rem; background: rgb(26 107 92 / 0.06);
}
.modal-eyebrow {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-accent); margin-bottom: 0.25rem;
}
.spec-note { color: var(--color-text-muted); font-size: 0.82rem; font-weight: 400; }

/* Fleet page */
.fleet-home-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.fleet-intro { max-width: 46rem; margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.75; color: rgb(21 34 31 / 0.85); }
.fleet-intro a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.fleet-intro-section { padding-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.fleet-nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 0; padding-bottom: 0;
  border-bottom: none;
}
.fleet-nav a {
  padding: 0.4rem 0.85rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  background: #fff; border: 1px solid var(--color-muted);
  transition: var(--transition);
}
.fleet-nav a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.fleet-band {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  background: #fff;
}
.fleet-band--alt {
  background: var(--color-cream);
}
.home-section-divider + .fleet-band {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
}
.fleet-details { display: flex; flex-direction: column; gap: 3rem; }
.fleet-detail {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  align-items: center; scroll-margin-top: calc(var(--header-h) + 1rem);
}
@media (min-width: 768px) {
  .fleet-detail { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .fleet-detail--reverse .fleet-detail-media { order: 2; }
  .fleet-detail--reverse .fleet-detail-content { order: 1; }
}
.fleet-detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: 0 8px 32px rgb(21 34 31 / 0.1);
  background: linear-gradient(180deg, rgb(245 240 230 / 0.9), rgb(237 232 222 / 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-detail-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}
.fleet-detail-lead { font-size: 1.05rem; line-height: 1.65; color: rgb(21 34 31 / 0.82); margin: 0.5rem 0 1rem; }
.fleet-spec-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.85rem;
  margin: 1rem 0;
}
@media (min-width: 480px) { .fleet-spec-grid { grid-template-columns: 1fr 1fr; } }
.fleet-spec {
  padding: 0.85rem 1rem; border-radius: 0.65rem;
  background: rgb(26 107 92 / 0.05); border: 1px solid rgb(26 107 92 / 0.1);
}
.fleet-spec--wide { grid-column: 1 / -1; }
.fleet-spec h3 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary); margin-bottom: 0.35rem; }
.fleet-spec p { font-size: 0.9rem; line-height: 1.55; margin: 0; color: rgb(21 34 31 / 0.82); }
.fleet-best-for { font-size: 0.92rem; line-height: 1.55; margin: 0.75rem 0 1.25rem; color: var(--color-text-muted); }

/* Category grid */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
@media (min-width: 900px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1100px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); }
}
.category-card {
  padding: 1.75rem; border-radius: var(--radius); background: #fff;
  border: 1px solid var(--color-muted); transition: var(--transition);
  box-shadow: 0 2px 12px rgb(21 34 31 / 0.04);
}
.category-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgb(26 107 92 / 0.1);
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}
.category-card h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 0.75rem 0 0.35rem; color: var(--color-deep); }
.category-card:hover { transform: translateY(-4px); border-color: var(--color-primary); box-shadow: var(--shadow); }

/* Category tabs — same set as home Popular Tour Categories */
.category-tabs {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(255 246 227 / 0.94);
  border-bottom: 1px solid var(--color-muted);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.category-tabs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-block: 0.65rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.category-tabs-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.58rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--color-muted);
  background: #fff;
  color: var(--color-deep);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}
.category-tabs-icon {
  display: inline-flex;
  color: var(--color-primary);
}
.category-tabs-icon .icon {
  width: 18px;
  height: 18px;
}
.category-tabs-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.category-tabs-link.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.category-tabs-link.is-active .category-tabs-icon {
  color: #fff;
}

/* Tour cards */
.tour-grid, .dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.tour-card {
  background: #fff; border-radius: 1.25rem; overflow: hidden;
  border: 1px solid var(--color-muted); transition: var(--transition);
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgb(21 34 31 / 0.04);
}
.tour-card:hover { transform: translateY(-6px) scale(1.01); border-color: rgb(212 87 58 / 0.35); box-shadow: var(--shadow); }
.tour-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-card-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.65rem; border-radius: 999px;
  background: rgb(212 87 58 / 0.92); color: #fff;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.tour-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.tour-card-body h3 { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.3; }
.tour-card-body h3 a:hover { color: var(--color-primary); }
.tour-meta { font-size: 0.8rem; color: rgb(21 34 31 / 0.55); font-weight: 500; flex: none; }
.tour-card-body > p:not(.tour-meta) { font-size: 0.875rem; color: rgb(21 34 31 / 0.72); flex: 1; }
.tour-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
}
.tour-card-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  margin-top: 0;
  padding-inline: 0.75rem;
}
.tour-card-actions--single .btn {
  flex: 1 1 auto;
  width: 100%;
  text-align: center;
}

/* Horizontal card rails (home page sliders) */
.card-rail {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
}
.card-rail-viewport {
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
  --rail-gap: 1.15rem;
  --rail-visible: 4;
}
.card-rail-track {
  display: flex;
  align-items: stretch;
  gap: var(--rail-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Allow horizontal card swipe AND vertical page scroll on mobile */
  touch-action: pan-x pan-y;
  scrollbar-width: none;
  padding: 0.15rem 0 0.5rem;
}
.card-rail-track::-webkit-scrollbar { display: none; }
.card-rail-track > .tour-card,
.card-rail-track > .vehicle-card,
.card-rail-track > .dest-card {
  flex: 0 0 calc((100cqi - (var(--rail-visible) - 1) * var(--rail-gap)) / var(--rail-visible));
  scroll-snap-align: start;
  min-width: 0;
  height: auto;
}
.card-rail-track > .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.card-rail-track .tour-card-body > p:not(.tour-meta) {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 0 1 auto;
}
.card-rail-track .tour-card-actions {
  margin-top: auto;
}
.card-rail-track .dest-card-body > p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-rail-track > .modal[hidden] { display: none; }
.card-rail-arrow {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgb(21 34 31 / 0.1);
  border-radius: 0.9rem;
  background: #fff;
  color: var(--color-deep);
  box-shadow: 0 8px 24px rgb(21 34 31 / 0.14);
  cursor: pointer;
  transform: none;
  transition: transform 0.2s var(--ease-smooth), opacity 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  opacity: 1;
  pointer-events: auto;
}
.card-rail-arrow--prev,
.card-rail-arrow--next {
  left: auto;
  right: auto;
  transform: none;
}
.card-rail-arrow .icon {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 2.4;
}
@media (hover: hover) {
  .card-rail-arrow:hover:not(:disabled) {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 10px 28px rgb(26 107 92 / 0.28);
    transform: scale(1.06);
  }
  .card-rail-track > .tour-card:hover,
  .card-rail-track > .vehicle-card:hover,
  .card-rail-track > .dest-card:hover {
    transform: translateY(-4px);
  }
  .card-rail-track > .tour-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}
.card-rail-arrow:disabled {
  opacity: 0.28;
  cursor: default;
  box-shadow: 0 4px 12px rgb(21 34 31 / 0.08);
  pointer-events: none;
}
.card-rail-arrow:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media (max-width: 1199px) {
  .card-rail-viewport { --rail-visible: 3; }
}
@media (max-width: 991px) {
  .card-rail-viewport { --rail-visible: 2; }
}
@media (max-width: 767px) {
  /* Near full-width cards (review-card scale) + overlay arrows */
  .card-rail {
    display: block;
    gap: 0;
    padding-inline: 0;
  }
  .card-rail-viewport {
    --rail-visible: 1;
    --rail-gap: 0.85rem;
  }
  .card-rail-track {
    scroll-snap-type: x mandatory;
    padding: 0.2rem 0 0.65rem;
    gap: var(--rail-gap);
  }
  .card-rail-track > .tour-card,
  .card-rail-track > .vehicle-card,
  .card-rail-track > .dest-card {
    flex: 0 0 100%;
    border-radius: 1.4rem;
    box-shadow: 0 10px 28px rgb(21 34 31 / 0.1);
  }
  .card-rail-track > .tour-card .tour-card-body {
    padding: 1.35rem 1.35rem 1.45rem;
    gap: 0.55rem;
  }
  .card-rail-track > .tour-card .tour-card-body h3 {
    font-size: 1.22rem;
  }
  .card-rail-track > .tour-card .tour-card-img {
    aspect-ratio: 16 / 11;
  }
  .card-rail-arrow {
    position: absolute;
    top: min(28%, 9.5rem);
    z-index: 4;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.85rem;
    border: 1px solid rgb(255 255 255 / 0.55);
    background: rgb(255 255 255 / 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
      0 8px 22px rgb(21 34 31 / 0.18),
      inset 0 1px 0 rgb(255 255 255 / 0.85);
    color: var(--color-deep);
  }
  .card-rail-arrow--prev { left: 0.55rem; }
  .card-rail-arrow--next { right: 0.55rem; }
  .card-rail-arrow .icon {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: 2.6;
  }
  .tour-grid .tour-card,
  .dest-grid .dest-card {
    border-radius: 1.35rem;
  }
  .tour-grid .tour-card-body {
    padding: 1.35rem;
  }
}
@media (max-width: 399px) {
  .card-rail-arrow {
    width: 2.45rem;
    height: 2.45rem;
    top: min(26%, 8.75rem);
  }
  .card-rail-arrow--prev { left: 0.4rem; }
  .card-rail-arrow--next { right: 0.4rem; }
}

/* Dest cards */
.dest-card { background: #fff; border-radius: 1.25rem; overflow: hidden; border: 1px solid var(--color-muted); transition: var(--transition); }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dest-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dest-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(21 34 31 / 0.82) 0%, rgb(21 34 31 / 0.35) 38%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dest-card:hover .dest-card-img img { transform: scale(1.05); }
.dest-card-caption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.8rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  pointer-events: none;
}
.dest-card-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgb(21 34 31 / 0.45);
  min-height: 1.25em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.dest-card-name::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 3px;
  background: rgb(255 255 255 / 0.9);
  vertical-align: -0.08em;
  animation: dest-type-cursor 0.75s step-end infinite;
}
.dest-card-name.is-done::after { opacity: 0; animation: none; }
@keyframes dest-type-cursor {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.dest-card-region {
  padding: 0.2rem 0.6rem; border-radius: 999px;
  background: rgb(21 34 31 / 0.55); color: rgb(255 255 255 / 0.92); font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.dest-card-body { padding: 1.1rem; }
.dest-card-body h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.35rem; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.review-widget {
  background: #fff; border-radius: 1.25rem; padding: 1.5rem;
  border: 1px solid var(--color-muted); transition: var(--transition);
}
.review-widget:hover { border-color: var(--color-primary); box-shadow: var(--shadow); }
.review-widget-head { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.review-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.review-icon.google { background: #f1f3f4; color: #4285f4; }
.review-icon.ta { background: #e8f5f0; color: var(--color-primary); }
.review-widget h3 { font-size: 1rem; color: var(--color-deep); }
.stars { font-size: 0.8rem; color: var(--color-highlight); margin-top: 0.15rem; }
.review-widget blockquote { font-size: 0.9rem; color: rgb(21 34 31 / 0.78); font-style: italic; line-height: 1.55; }
.review-widget cite { display: block; margin-top: 0.75rem; font-size: 0.75rem; color: rgb(21 34 31 / 0.5); font-style: normal; }
.review-widget > a { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.75rem; font-size: 0.85rem; font-weight: 600; color: var(--color-deep); }
.review-widget > a:hover { color: var(--color-accent); }

/* CTA band — image is authored at ~5:1 (live section ratio); 100% 100% never crops heads */
.cta-band {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(12 24 32 / 0.32) 0%, rgb(18 40 48 / 0.28) 45%, rgb(12 24 32 / 0.4) 100%),
    url('../images/cta-band-sky.webp?v=20260801perf2') center center / 100% 100% no-repeat;
  padding: clamp(4rem, 7.5vw, 5.75rem) 0;
  text-align: center;
  color: #fff;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); margin: 0.5rem 0 1rem; }
.cta-band p { color: rgb(255 255 255 / 0.8); max-width: 32rem; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 1.75rem; }
.cta-actions .btn {
  padding: 0.75rem 1.35rem;
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid #fff;
  background: rgb(255 255 255 / 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 8px 28px rgb(21 34 31 / 0.22),
    inset 0 1px 0 rgb(255 255 255 / 0.35);
  text-shadow: 0 1px 2px rgb(21 34 31 / 0.25);
}
.cta-actions .btn:hover {
  color: #fff;
  border-color: #fff;
  background: rgb(255 255 255 / 0.24);
  filter: none;
  transform: translateY(-1px);
  box-shadow:
    0 10px 32px rgb(21 34 31 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.45);
}
.cta-actions .btn-primary,
.cta-actions .btn-ghost-light,
.cta-actions .btn-outline,
.cta-actions .btn-soft {
  background: rgb(255 255 255 / 0.14);
  color: #fff;
  border-color: #fff;
}

/* Detail split */
.detail-split {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .detail-split { grid-template-columns: 1fr 1fr; }
  .detail-split--reverse .detail-split-media { order: 2; }
  .detail-split--reverse .detail-split-content { order: 1; }
}
.detail-split-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.detail-split-media--brand { background: #0a0a0a; }
.detail-split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.detail-split-media--brand img { object-fit: contain; padding: 1rem; }
.detail-split-media:hover img { transform: scale(1.04); }
.detail-split-media--brand:hover img { transform: scale(1.02); }
.vision-section {
  padding-top: 0;
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-cream);
}
.vision-section .home-section-divider {
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
}
.vision-section-inner {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  text-align: center;
}
.vision-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-deep);
  margin: 0.5rem 0 1.25rem;
}
.vision-section-body {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.75;
  color: rgb(21 34 31 / 0.82);
  margin: 0;
}
.vision-section .highlight-chips { justify-content: center; margin-bottom: 0; }

/* Owner photo slider (About page) */
.owner-slider {
  position: relative;
  padding: 0;
  background: var(--color-ink);
}
.owner-slides {
  position: absolute;
  inset: 0;
}
.owner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.owner-slide.active { opacity: 1; z-index: 1; }
.owner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.owner-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.45rem;
}
.owner-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgb(255 255 255 / 0.45);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}
.owner-dot.active,
.owner-dot:hover {
  background: #fff;
  transform: scale(1.15);
}
.owner-section { margin-top: 2.5rem; }
.owner-founder {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin: 0.35rem 0 0.85rem;
  font-weight: 600;
}
.owner-lead,
.detail-split-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgb(21 34 31 / 0.82);
  margin: 0 0 1rem;
}
.detail-split-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--color-deep); margin: 0.5rem 0 1rem; }
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.highlight-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; list-style: none; }
.highlight-chips li {
  padding: 0.3rem 0.75rem; border-radius: 999px; font-size: 0.75rem;
  background: rgb(212 87 58 / 0.1); color: var(--color-accent-dark); font-weight: 500;
}

/* Special Thanks — About page */
.thanks-section {
  margin-top: clamp(2.75rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
}
.thanks-panel {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.35rem);
  border: 1px solid rgb(26 107 92 / 0.18);
  background:
    linear-gradient(165deg, rgb(255 251 240 / 0.97) 0%, rgb(243 236 214 / 0.92) 42%, rgb(232 245 241 / 0.95) 100%);
  box-shadow: 0 18px 48px rgb(30 61 74 / 0.08);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.thanks-panel-glow {
  position: absolute;
  inset: auto -20% -35% 35%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgb(26 107 92 / 0.14), transparent 68%);
  pointer-events: none;
}
.thanks-header {
  position: relative;
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 1.75rem;
}
.thanks-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-primary), var(--color-lagoon));
  color: #fff;
  box-shadow: 0 10px 24px rgb(26 107 92 / 0.28);
}
.thanks-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  color: var(--color-deep);
  margin: 0.4rem 0 0.9rem;
  line-height: 1.2;
}
.thanks-intro {
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  line-height: 1.7;
  color: rgb(21 34 31 / 0.84);
  margin: 0;
}
.thanks-honorees {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0 0 1.85rem;
  padding: 0;
}
@media (min-width: 720px) {
  .thanks-honorees {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.thanks-honoree {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  padding: 1.15rem 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.72);
  border: 1px solid rgb(26 107 92 / 0.12);
  box-shadow: 0 8px 22px rgb(30 61 74 / 0.05);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.thanks-honoree:hover {
  transform: translateY(-3px);
  border-color: rgb(26 107 92 / 0.28);
  box-shadow: 0 14px 28px rgb(30 61 74 / 0.1);
}
.thanks-honoree-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.35rem;
  border-radius: 50%;
  background: rgb(26 107 92 / 0.1);
  color: var(--color-primary);
}
.thanks-honoree-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}
.thanks-honoree-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--color-deep);
  line-height: 1.3;
}
.thanks-honoree-note {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgb(21 34 31 / 0.68);
}
.thanks-journey {
  position: relative;
  margin-bottom: 1.5rem;
}
.thanks-journey-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin: 0 0 1rem;
}
.thanks-journey-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.thanks-journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.55);
  border-left: 3px solid var(--color-primary);
}
.thanks-journey-marker {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-primary);
  padding-top: 0.15rem;
}
.thanks-journey-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--color-primary);
  color: #fff;
}
.thanks-journey-copy h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-deep);
  margin: 0 0 0.35rem;
}
.thanks-journey-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgb(21 34 31 / 0.8);
}
.thanks-closing {
  position: relative;
  margin: 0;
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgb(26 107 92 / 0.92), rgb(30 61 74 / 0.94));
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 32px rgb(26 107 92 / 0.22);
}
.thanks-closing-icon {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--color-highlight);
}
.thanks-closing p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  font-weight: 500;
}

/* Destination guide — rich sections with image slider */
.section-dest-guide { padding-top: clamp(2.5rem, 5vw, 3.5rem); }
.dest-guide-stack { display: flex; flex-direction: column; gap: clamp(3rem, 7vw, 4.75rem); }
.dest-guide {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
}
@media (min-width: 900px) {
  .dest-guide { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
  .dest-guide--reverse .dest-guide-slider { order: -1; }
}
.dest-guide-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  color: var(--color-deep);
  margin: 0.35rem 0 1.1rem;
  letter-spacing: -0.01em;
}
.dest-guide-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.dest-guide-body p {
  font-size: 0.95rem;
  line-height: 1.78;
  color: rgb(21 34 31 / 0.82);
  margin: 0;
}
.dest-guide-content .highlight-chips { margin-top: 1.15rem; }
.dest-guide-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}
.dest-guide-viewport {
  position: relative;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-muted);
  box-shadow: 0 12px 40px rgb(21 34 31 / 0.12);
}
.dest-guide-slides {
  position: absolute;
  inset: 0;
}
.dest-guide-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
}
.dest-guide-slide.active { opacity: 1; z-index: 1; }
.dest-guide-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dest-guide-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--color-muted);
  border-radius: 999px;
  background: #fff;
  color: var(--color-deep);
  box-shadow: 0 4px 16px rgb(21 34 31 / 0.1);
  cursor: pointer;
  transition: var(--transition);
}
@media (hover: hover) {
  .dest-guide-arrow:hover:not(:disabled) {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
  }
}
.dest-guide-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}
.dest-guide-arrow:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media (max-width: 899px) {
  .dest-guide-slider {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0.65rem;
  }
  .dest-guide-viewport { grid-row: 1; grid-column: 1 / -1; }
  .dest-guide-arrow--prev,
  .dest-guide-arrow--next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .dest-guide-slider { position: relative; padding-inline: 0; }
  .dest-guide-viewport { margin-inline: 0; }
  .dest-guide-arrow--prev { left: 0.65rem; }
  .dest-guide-arrow--next { right: 0.65rem; }
  .dest-guide-arrow--prev,
  .dest-guide-arrow--next {
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    background: rgb(255 255 255 / 0.92);
  }
}

/* Timeline */
.itinerary-section { margin: 3rem 0; }
.timeline { display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--color-muted); margin-left: 1rem; }
.timeline-item { display: flex; gap: 1.25rem; padding: 0 0 1.75rem 1.5rem; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -0.45rem; top: 0.35rem;
  width: 0.75rem; height: 0.75rem; border-radius: 50%;
  background: var(--color-accent); border: 2px solid #fff;
}
.timeline-day {
  flex-shrink: 0; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-accent); min-width: 3.5rem;
}
.timeline-item h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--color-deep); }
.timeline-item p { font-size: 0.875rem; color: rgb(21 34 31 / 0.7); margin-top: 0.25rem; }

/* Map */
.map-section { margin: 3rem 0; position: relative; z-index: 0; }
.map-wrap { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .map-wrap { grid-template-columns: 2fr 1fr; } }
.route-map {
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-muted);
  position: relative;
  z-index: 0;
  isolation: isolate;
}
/* Keep Leaflet panes inside the map — default Leaflet z-index (up to 1000) covers the fixed header */
.route-map .leaflet-container { z-index: 0; }
.route-map .leaflet-map-pane { z-index: 0; }
.route-map .leaflet-tile-pane { z-index: 1; }
.route-map .leaflet-overlay-pane { z-index: 2; }
.route-map .leaflet-shadow-pane { z-index: 3; }
.route-map .leaflet-marker-pane { z-index: 4; }
.route-map .leaflet-tooltip-pane { z-index: 5; }
.route-map .leaflet-popup-pane { z-index: 6; }
.route-map .leaflet-top,
.route-map .leaflet-bottom { z-index: 7; }
.route-map .leaflet-control { z-index: 7; }
.map-stops { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.map-stops li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.map-stops span {
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}

/* Tour CTA */
.tour-cta {
  text-align: center;
  padding: clamp(1.35rem, 3.5vw, 2.25rem);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgb(26 107 92 / 0.07), rgb(212 87 58 / 0.06));
  border: 1px solid var(--color-muted);
  margin-top: 1.5rem;
}
.tour-cta h2 { font-family: var(--font-display); font-size: 1.75rem; color: var(--color-deep); }
.tour-cta p { margin: 0.5rem 0 1rem; color: rgb(21 34 31 / 0.7); }
.tour-cta-actions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
}
.tour-cta-actions-row .btn {
  margin: 0;
  flex: 1 1 auto;
  min-width: min(100%, 9.5rem);
  justify-content: center;
}
.tour-cta--activity {
  text-align: left;
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 768px) {
  .tour-cta--activity {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
  }
}
.tour-cta--activity .eyebrow { margin-bottom: 0.35rem; }
.tour-cta--activity h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.25;
  margin-bottom: 0.65rem;
}
.tour-cta-lead {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgb(21 34 31 / 0.78);
  margin: 0 0 1rem;
  max-width: 52rem;
}
.tour-cta-features {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
@media (min-width: 560px) {
  .tour-cta-features { grid-template-columns: 1fr 1fr; gap: 0.5rem 1.25rem; }
}
.tour-cta-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgb(21 34 31 / 0.82);
}
.tour-cta-features .icon { color: var(--color-primary); flex-shrink: 0; margin-top: 0.1rem; }
.tour-cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tour-cta-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-deep);
  background: #fff;
  border: 1px solid rgb(26 107 92 / 0.15);
}
.tour-cta-meta-item .icon { color: var(--color-primary); }
.tour-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .tour-cta-actions { min-width: 13.5rem; align-items: stretch; }
}
.tour-cta-actions .btn { margin: 0; justify-content: center; }

/* Contact */
.contact-page { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 992px) { .contact-page { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; } }
.contact-details h2, .contact-form-wrap h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 1.85rem); color: var(--color-deep); margin: 0.35rem 0 0.75rem; }
.contact-lead, .contact-form-lead { color: rgb(21 34 31 / 0.72); font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 36rem; }
.contact-detail-cards { display: grid; gap: 0.75rem; }
.contact-detail-card {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1.1rem 1.15rem; border-radius: 0.85rem;
  background: #fff; border: 1px solid var(--color-muted);
  transition: border-color var(--transition), box-shadow var(--transition);
}
a.contact-detail-card:hover { border-color: var(--color-primary); box-shadow: 0 4px 16px rgb(26 107 92 / 0.08); }
.contact-detail-card--wa:hover { border-color: var(--color-green); }
.contact-detail-card--static { background: var(--color-surface); }
.contact-detail-card__eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-primary); }
.contact-detail-card__value { font-weight: 600; font-size: 0.95rem; color: var(--color-ink); word-break: break-word; }
.contact-detail-card__meta { font-size: 0.8rem; color: rgb(21 34 31 / 0.55); margin-top: 0.15rem; }
.contact-detail-card__link { font-size: 0.85rem; font-weight: 600; color: var(--color-primary); margin-top: 0.35rem; display: inline-flex; align-items: center; gap: 0.25rem; }
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--color-muted); }
.contact-form label { display: block; margin-bottom: 1rem; font-size: 0.8rem; font-weight: 600; color: rgb(21 34 31 / 0.65); }
.contact-form label > span { display: block; margin-bottom: 0.35rem; }
.contact-form-row { display: grid; gap: 0 1rem; }
@media (min-width: 600px) { .contact-form-row { grid-template-columns: 1fr 1fr; } }
.contact-form input, .contact-form textarea, .contact-form select {
  display: block; width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--color-muted); border-radius: 0.6rem;
  font-family: inherit; font-size: 0.9rem; background: #fff;
  transition: border-color var(--transition);
}
.contact-form select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2315221f' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2rem; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--color-primary); }
.vehicle-combo {
  display: block;
  margin-bottom: 1rem;
  position: relative;
}
.vehicle-combo-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgb(21 34 31 / 0.65);
}
.vehicle-combo-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-muted);
  border-radius: 0.6rem;
  background: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--color-ink, #15221f);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition);
}
.vehicle-combo-btn:hover,
.vehicle-combo-btn[aria-expanded="true"] {
  border-color: var(--color-primary);
}
.vehicle-combo-btn:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgb(26 107 92 / 0.18);
}
.vehicle-combo-btn-text {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}
.vehicle-combo-caret {
  flex-shrink: 0;
  opacity: 0.65;
  transition: transform 0.2s ease;
}
.vehicle-combo-btn[aria-expanded="true"] .vehicle-combo-caret {
  transform: rotate(180deg);
}
.vehicle-combo-panel {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  background: #fff;
  border: 1px solid var(--color-muted);
  border-radius: 0.75rem;
  box-shadow: 0 14px 36px rgb(21 34 31 / 0.14);
  padding: 0.65rem;
}
.vehicle-combo-panel[hidden] { display: none !important; }
.vehicle-combo-search {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--color-muted);
  border-radius: 0.55rem;
  font-family: inherit;
  font-size: 0.88rem;
  background: #fff;
}
.vehicle-combo-search:focus {
  outline: none;
  border-color: var(--color-primary);
}
.vehicle-combo-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-height: 14rem;
  overflow-y: auto;
}
.vehicle-combo-option {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--color-ink, #15221f);
  cursor: pointer;
  line-height: 1.35;
}
.vehicle-combo-option:hover,
.vehicle-combo-option:focus-visible {
  background: rgb(26 107 92 / 0.08);
  outline: none;
}
.vehicle-combo-option.is-active {
  background: rgb(26 107 92 / 0.12);
  font-weight: 600;
  color: var(--color-primary-dark, #145347);
}
.vehicle-combo-option[hidden] { display: none !important; }
.vehicle-combo-custom {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgb(21 34 31 / 0.08);
}
.vehicle-combo-custom label { margin-bottom: 0; }
.vehicle-combo-custom input { margin-top: 0.35rem; }
.contact-form-note { margin-top: 0.85rem; font-size: 0.78rem; color: rgb(21 34 31 / 0.5); text-align: center; }
.contact-form-quick {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 0.85rem;
}
@media (min-width: 520px) {
  .contact-form-quick {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.contact-form-quick-btn {
  width: 100%;
  justify-content: center;
  gap: 0.45rem;
  padding-inline: 0.85rem;
}
.contact-form-quick-btn--wa {
  border-color: rgb(37 211 102 / 0.45);
  color: #128c4a;
}
.contact-form-quick-btn--wa:hover {
  border-color: var(--color-green);
  color: #0f7a3f;
  background: rgb(37 211 102 / 0.08);
}
.contact-form-success { text-align: center; padding: 1.5rem 0.5rem; }
.contact-form-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-deep); margin: 1rem 0 0.5rem; }
.contact-form-success p { color: rgb(21 34 31 / 0.7); font-size: 0.95rem; margin-bottom: 1.25rem; }
.contact-form-check { width: 4rem; height: 4rem; margin: 0 auto; }
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1.2fr 0.8fr; } }
.contact-form, .contact-info { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--color-muted); }
.contact-form h2, .contact-info h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-deep); margin-bottom: 1.25rem; }
.contact-card {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 1rem; border-radius: 0.75rem; margin-bottom: 0.75rem;
  background: var(--color-surface); border: 1px solid var(--color-muted);
  font-weight: 500; transition: var(--transition);
}
.contact-card .icon { color: var(--color-primary); }
.contact-card:hover { border-color: var(--color-primary); }
.contact-card--wa:hover { border-color: var(--color-green); }
.contact-address {
  display: flex; align-items: flex-start; gap: 0.65rem;
  margin-top: 1rem; font-size: 0.9rem; color: rgb(21 34 31 / 0.65);
}
.contact-address .icon { color: var(--color-primary); flex-shrink: 0; margin-top: 0.1rem; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgb(21 34 31 / 0.6); backdrop-filter: blur(4px); }
.modal-panel {
  position: relative; z-index: 1; width: min(720px, 100%); max-height: 92vh;
  overflow-y: auto; background: #fff; border-radius: 1.25rem;
  box-shadow: 0 24px 64px rgb(21 34 31 / 0.2);
  animation: modal-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal-panel::-webkit-scrollbar { display: none; }
.modal-panel--scroll { display: flex; flex-direction: column; }
.modal-hero { height: 220px; overflow: hidden; flex-shrink: 0; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-hero--vehicle {
  height: auto;
  aspect-ratio: 3 / 2;
  max-height: min(52vw, 280px);
  background: linear-gradient(180deg, rgb(245 240 230 / 0.9), rgb(237 232 222 / 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-hero--vehicle img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}
.modal-body { padding: 1.5rem 2rem 2rem; }
.modal-body--prose .modal-content { margin-bottom: 1.25rem; }
.modal-section { margin-bottom: 1.35rem; }
.modal-section:last-child { margin-bottom: 0; }
.modal-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-deep);
  margin-bottom: 0.5rem;
}
.modal-body--prose p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgb(21 34 31 / 0.85);
  margin-bottom: 0.85rem;
}
.modal-body--prose p:last-child { margin-bottom: 0; }
.modal-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.4rem;
}
.modal-list li { font-size: 0.92rem; line-height: 1.55; color: rgb(21 34 31 / 0.82); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 2.25rem; height: 2.25rem; border-radius: 50%; border: none;
  background: rgb(255 255 255 / 0.9); cursor: pointer; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.modal-body h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--color-deep); padding-right: 2rem; }
.modal-highlights { list-style: none; margin: 1.25rem 0; display: grid; gap: 0.5rem; }
.modal-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgb(21 34 31 / 0.8);
}
.modal-highlights li .icon { margin-top: 0.15rem; color: var(--color-primary); }
@keyframes modal-in { from { opacity: 0; transform: scale(0.95) translateY(12px); } to { opacity: 1; transform: none; } }

/* Footer */
.site-footer {
  width: 100%;
  margin-top: 0;
  background: var(--color-ink);
  color: rgb(255 255 255 / 0.82);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --footer-pattern-opacity: 0.2;
}

.site-footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(200px, 36vw, 420px);
  background: url('../images/footer-pattern-opt.webp') center bottom / 100% auto no-repeat;
  opacity: var(--footer-pattern-opacity);
  mix-blend-mode: screen;
  filter: contrast(1.08) brightness(1.05);
  pointer-events: none;
  z-index: 0;
}

.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(21 34 31 / 0.78) 0%,
    rgb(21 34 31 / 0.52) 28%,
    rgb(21 34 31 / 0.28) 55%,
    rgb(21 34 31 / 0.14) 100%
  );
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 639px) {
  .site-footer {
    --footer-pattern-opacity: 0.2;
  }

  .site-footer::before {
    height: clamp(150px, 44vw, 228px);
    background-image: url('../images/footer-pattern-mobile.webp');
    filter: contrast(1.14) brightness(1.1);
  }

  .site-footer::after {
    background: linear-gradient(
      180deg,
      var(--color-ink) 0%,
      rgb(21 34 31 / 0.84) 36%,
      rgb(21 34 31 / 0.5) 58%,
      rgb(21 34 31 / 0.22) 78%,
      rgb(21 34 31 / 0.08) 100%
    );
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .site-footer {
    --footer-pattern-opacity: 0.2;
  }

  .site-footer::before {
    height: clamp(175px, 28vw, 300px);
    background-image: url('../images/footer-pattern-tablet.webp');
    filter: contrast(1.1) brightness(1.07);
  }

  .site-footer::after {
    background: linear-gradient(
      180deg,
      rgb(21 34 31 / 0.8) 0%,
      rgb(21 34 31 / 0.54) 32%,
      rgb(21 34 31 / 0.3) 58%,
      rgb(21 34 31 / 0.12) 82%,
      rgb(21 34 31 / 0.06) 100%
    );
  }
}

@media (min-width: 1024px) {
  .site-footer::before {
    inset: 0;
    height: auto;
    background: url('../images/footer-pattern-opt.webp') center center / cover no-repeat;
    filter: contrast(1.08) brightness(1.05);
  }
}

.footer-ribbon,
.footer-body,
.footer-bar {
  position: relative;
  z-index: 1;
}
.footer-ribbon { padding: 1.25rem; text-align: center; border-bottom: 1px solid rgb(255 255 255 / 0.08); }
.footer-ribbon span { font-family: var(--font-display); font-style: italic; color: var(--color-highlight); font-size: 1.1rem; }
.footer-body { padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; }
.footer-brand p { margin-top: 1rem; font-size: 0.875rem; line-height: 1.6; max-width: 260px; color: rgb(255 255 255 / 0.8); }
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.footer-social .footer-label {
  margin-bottom: 0;
}
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.footer-social-link:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 6px 14px rgb(0 0 0 / 0.28));
}
.footer-social-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}
.site-footer h4,
.footer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-highlight);
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer ul a { color: rgb(255 255 255 / 0.8); }
.site-footer a:hover { color: var(--color-highlight); }
.footer-bar { border-top: 1px solid rgb(255 255 255 / 0.08); padding: 1.25rem 0; font-size: 0.8rem; }
.footer-bar-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 0.65rem; text-align: center;
}
@media (min-width: 640px) {
  .footer-bar-inner { flex-direction: row; text-align: left; }
}
.footer-copy { color: rgb(255 255 255 / 0.62); margin: 0; }
.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  color: rgb(255 255 255 / 0.55);
  margin: 0;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .footer-credit { justify-content: flex-end; }
}
.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgb(255 255 255 / 0.75);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-credit-link span {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgb(255 255 255 / 0.25);
}
.footer-credit-link .icon {
  color: var(--color-highlight);
  width: 0.9rem;
  height: 0.9rem;
  display: block;
}
.footer-credit-link:hover { color: var(--color-highlight); }
.footer-credit-link:hover span { text-decoration-color: rgb(232 168 56 / 0.55); }
.footer-bar a { color: rgb(255 255 255 / 0.65); }
.footer-bar a:hover { color: var(--color-highlight); }

/* Legal & sitemap pages */
.legal-prose { max-width: 48rem; }
.legal-intro { font-size: 1.0625rem; color: var(--color-text-muted); margin-bottom: 2rem; }
.legal-block { margin-bottom: 2rem; }
.legal-block h2 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--color-primary); }
.legal-block p { margin-bottom: 0.75rem; line-height: 1.75; color: var(--color-text-muted); }
.legal-block ul { margin: 0.5rem 0 0 1.25rem; color: var(--color-text-muted); }
.legal-block li { margin-bottom: 0.35rem; }
.legal-contact { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-muted); font-size: 0.9375rem; }

.html-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem 2.5rem;
}
.html-sitemap-col h2 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
  color: var(--color-primary);
}
.html-sitemap-col h2:not(:first-child) { margin-top: 1.75rem; }
.html-sitemap-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.html-sitemap-col a { font-size: 0.9375rem; color: var(--color-text-muted); }
.html-sitemap-col a:hover { color: var(--color-primary); }
.html-sitemap-note { font-size: 0.875rem; color: var(--color-text-muted); margin-top: 0.5rem; }

/* WhatsApp FAB + planning popup */
.whatsapp-stack {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}
.whatsapp-slt-clock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  padding: 0.45rem 0.8rem;
  background: #fff;
  border-radius: 0.65rem;
  border: 1px solid rgb(21 34 31 / 0.08);
  box-shadow: 0 6px 20px rgb(21 34 31 / 0.12);
  text-align: right;
}
.whatsapp-slt-clock-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgb(21 34 31 / 0.55);
  line-height: 1.2;
}
.whatsapp-slt-clock-time {
  font-size: 0.875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-deep);
  line-height: 1.2;
  white-space: nowrap;
}
.whatsapp-fab-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  max-width: min(11.5rem, calc(100vw - 3.5rem));
}
.whatsapp-fab-label {
  display: block;
  max-width: 100%;
  padding: 0.4rem 0.7rem;
  border-radius: 0.65rem;
  background: #fff;
  border: 1px solid rgb(21 34 31 / 0.08);
  box-shadow: 0 6px 18px rgb(21 34 31 / 0.12);
  color: var(--color-deep);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: right;
  white-space: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.35rem);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}
.whatsapp-fab-wrap:hover .whatsapp-fab-label,
.whatsapp-fab-wrap:focus-within .whatsapp-fab-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.whatsapp-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgb(37 211 102 / 0.45);
  animation: wa-pulse 2.8s ease-in-out infinite;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.whatsapp-fab:hover { transform: scale(1.06); }
.whatsapp-fab svg {
  width: 1.75rem;
  height: 1.75rem;
}
@media (max-width: 480px) {
  .whatsapp-stack {
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-fab-wrap {
    max-width: min(8.75rem, calc(100vw - 2.5rem));
  }
  .whatsapp-fab-label {
    font-size: 0.68rem;
    padding: 0.35rem 0.55rem;
    line-height: 1.25;
  }
  .whatsapp-fab {
    width: 3.15rem;
    height: 3.15rem;
  }
  .whatsapp-fab svg {
    width: 1.55rem;
    height: 1.55rem;
  }
}
.whatsapp-fab-badge {
  position: absolute;
  top: -0.15rem;
  right: -0.1rem;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #e53e3e;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgb(229 62 62 / 0.45);
  animation: badge-pop 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.whatsapp-fab-badge[hidden] { display: none !important; }
@keyframes badge-pop {
  0% { opacity: 0; transform: scale(0.4); }
  70% { transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgb(37 211 102 / 0.4); }
  50% { box-shadow: 0 8px 36px rgb(37 211 102 / 0.6), 0 0 0 8px rgb(37 211 102 / 0.12); }
}

/* Auto assistant popup */
.auto-assistant {
  position: relative;
  width: min(20rem, calc(100vw - 2rem));
  padding: 1.15rem 1.15rem 1rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgb(21 34 31 / 0.08);
  box-shadow: 0 18px 48px rgb(21 34 31 / 0.18);
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1), transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.auto-assistant[hidden] { display: none; }
.auto-assistant.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.auto-assistant-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}
.auto-assistant-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgb(26 107 92 / 0.1);
  color: var(--color-primary);
  flex-shrink: 0;
}
.auto-assistant-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  background: none;
  border: none;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: rgb(21 34 31 / 0.35);
  padding: 0.15rem;
}
.auto-assistant-close:hover { color: rgb(21 34 31 / 0.65); }
.auto-assistant-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgb(21 34 31 / 0.48);
  margin: 0;
}
.auto-assistant-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-deep);
  margin: 0 0 0.45rem;
  font-weight: 600;
  line-height: 1.2;
  padding-right: 1.25rem;
}
.auto-assistant-text {
  font-size: 0.84rem;
  color: rgb(21 34 31 / 0.68);
  margin: 0 0 1rem;
  line-height: 1.55;
}
.auto-assistant-cta { margin-top: 0; }
.auto-assistant-dismiss {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: rgb(21 34 31 / 0.45);
  cursor: pointer;
  margin-top: 0.65rem;
  width: 100%;
  text-align: center;
}
.auto-assistant-dismiss:hover { color: var(--color-accent); }

/* Exit intent */
.exit-overlay {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  background: rgb(21 34 31 / 0.68); backdrop-filter: blur(8px);
  padding: 1rem;
  animation: exit-fade-in 0.35s ease;
}

@keyframes exit-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.exit-overlay[hidden] { display: none; }

.exit-modal {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border-radius: 1.35rem;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 28px 80px rgb(21 34 31 / 0.28);
  animation: exit-modal-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes exit-modal-in {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: none; }
}

.exit-close {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 5;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: rgb(255 255 255 / 0.92); border: none;
  font-size: 1.25rem; line-height: 1; cursor: pointer;
  color: var(--color-deep); box-shadow: 0 2px 12px rgb(21 34 31 / 0.15);
  transition: var(--transition);
}

.exit-close:hover {
  background: #fff;
  transform: scale(1.08);
}

/* Banner with image */
.exit-modal__banner {
  position: relative;
  height: 168px;
  overflow: hidden;
}

.exit-modal__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.exit-modal__banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgb(26 107 92 / 0.55) 0%,
    rgb(21 34 31 / 0.25) 50%,
    rgb(212 87 58 / 0.35) 100%
  );
}

.exit-modal__badge {
  position: absolute; bottom: 0.85rem; left: 1.25rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  background: rgb(255 255 255 / 0.92); backdrop-filter: blur(8px);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--color-primary-dark);
  box-shadow: 0 4px 16px rgb(21 34 31 / 0.12);
}

/* Animated corner circles */
.exit-modal__circles {
  position: absolute; top: 0; right: 0;
  width: 140px; height: 140px;
  pointer-events: none; z-index: 1;
}

.exit-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgb(255 255 255 / 0.45);
  background: rgb(255 255 255 / 0.08);
  animation: exit-circle-float 4s ease-in-out infinite;
}

.exit-circle--1 {
  width: 28px; height: 28px;
  top: 18px; right: 22px;
  animation-delay: 0s;
}

.exit-circle--2 {
  width: 44px; height: 44px;
  top: 32px; right: 48px;
  animation-delay: 0.6s;
  border-color: rgb(232 168 56 / 0.55);
  background: rgb(232 168 56 / 0.12);
}

.exit-circle--3 {
  width: 18px; height: 18px;
  top: 58px; right: 18px;
  animation-delay: 1.2s;
}

.exit-circle--4 {
  width: 56px; height: 56px;
  top: 12px; right: 72px;
  animation-delay: 0.3s;
  border-width: 1.5px;
  border-color: rgb(255 255 255 / 0.28);
  background: transparent;
  animation-name: exit-circle-pulse;
}

@keyframes exit-circle-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate(-4px, 5px) scale(1.06); opacity: 1; }
}

@keyframes exit-circle-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.12); opacity: 0.9; }
}

.exit-modal__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.exit-modal__eyebrow {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-accent);
}

.exit-modal h2,
.exit-modal__body h2,
.exit-modal__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--color-deep);
  margin: 0.35rem 0 0.5rem;
  line-height: 1.15;
  font-weight: 700;
}

.exit-modal__lead {
  font-size: 0.88rem;
  color: rgb(21 34 31 / 0.72);
  line-height: 1.55;
}

.exit-contacts {
  margin: 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
}

.exit-contacts a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.6rem 0.85rem; border-radius: 0.65rem;
  background: var(--color-surface);
  font-size: 0.82rem; font-weight: 500;
  border: 1px solid var(--color-muted);
  transition: var(--transition);
}

.exit-contact-icon {
  flex-shrink: 0;
  width: 1.75rem; height: 1.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 0.45rem;
  background: rgb(26 107 92 / 0.1);
  color: var(--color-primary);
}

.exit-contacts a:hover {
  border-color: var(--color-primary);
  background: rgb(26 107 92 / 0.06);
  transform: translateX(3px);
}

.exit-modal__cta {
  margin-top: 0.25rem;
  animation: exit-cta-glow 2.5s ease-in-out infinite;
}

@keyframes exit-cta-glow {
  0%, 100% { box-shadow: 0 4px 20px rgb(38 120 184 / 0.32); }
  50% { box-shadow: 0 6px 28px rgb(38 120 184 / 0.48); }
}

.exit-dismiss {
  background: none; border: none;
  font-size: 0.78rem; color: rgb(21 34 31 / 0.45);
  cursor: pointer; margin-top: 0.65rem;
  transition: var(--transition);
}

.exit-dismiss:hover { color: var(--color-accent); }

@media (min-width: 480px) {
  .exit-modal__banner { height: 190px; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
body.modal-open { overflow: hidden; }

/* Plan your tour — interactive map builder */
.plan-tour-section { padding-top: 0; }
.plan-tour-shell {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .plan-tour-shell { grid-template-columns: minmax(280px, 340px) 1fr; }
}
.plan-tour-sidebar {
  background: var(--color-cream);
  border: 1px solid var(--color-muted);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.plan-tour-sidebar-head h2 { font-family: var(--font-display); font-size: 1.35rem; margin: 0.25rem 0; }
.plan-tour-step-hint {
  font-size: 0.82rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.45;
}
.plan-tour-step-sub {
  font-size: 0.88rem;
  color: var(--color-ink-soft);
  font-weight: 400;
  margin: 0.45rem 0 1rem;
  line-height: 1.45;
  padding: 0.75rem;
  background: rgb(26 107 92 / 0.06);
  border-radius: 0.65rem;
}
.plan-tour-route-shell {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
  max-height: min(52vh, 420px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  padding-right: 0.15rem;
}
.plan-tour-endpoint {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
  background: rgb(212 87 58 / 0.12);
  border: 1px solid rgb(212 87 58 / 0.35);
  border-radius: 0.75rem;
  transition: var(--transition);
  cursor: pointer;
}
.plan-tour-endpoint:hover {
  border-color: rgb(212 87 58 / 0.55);
  background: rgb(212 87 58 / 0.16);
}
.plan-tour-endpoint.is-picking {
  border-color: var(--color-primary, #1a6b5c);
  box-shadow: 0 0 0 2px rgb(26 107 92 / 0.28);
  background: rgb(26 107 92 / 0.08);
}
.plan-tour-endpoint:focus-visible {
  outline: 2px solid var(--color-primary, #1a6b5c);
  outline-offset: 2px;
}
.plan-tour-endpoint--start,
.plan-tour-endpoint--end {
  background: rgb(212 87 58 / 0.14);
  border-color: rgb(212 87 58 / 0.4);
}
.plan-tour-endpoint.is-filled {
  border-style: solid;
  border-color: rgb(212 87 58 / 0.55);
  background: rgb(212 87 58 / 0.18);
  box-shadow: 0 2px 10px rgb(212 87 58 / 0.12);
}
.plan-tour-endpoint--start.is-filled,
.plan-tour-endpoint--end.is-filled {
  border-color: rgb(212 87 58 / 0.55);
}
.plan-tour-endpoint-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  box-sizing: border-box;
}
.plan-tour-endpoint--start .plan-tour-endpoint-badge,
.plan-tour-endpoint--end .plan-tour-endpoint-badge {
  background: var(--color-accent, #d4573a);
  color: #fff;
}
.plan-tour-endpoint-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-deep);
}
.plan-tour-endpoint:not(.is-filled) .plan-tour-endpoint-name {
  font-weight: 500;
  color: var(--color-ink-soft);
}
.plan-tour-endpoint-change {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}
.plan-tour-middle { margin: 0.15rem 0; }
.plan-tour-middle-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin: 0 0 0.5rem;
}
.plan-tour-middle-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgb(21 34 31 / 0.45);
}
.plan-tour-middle-empty {
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  margin: 0;
  padding: 0.55rem 0.65rem;
  background: rgb(232 168 56 / 0.08);
  border-radius: 0.55rem;
}
.plan-tour-stops {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
}
.plan-tour-stop {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  background: #fff;
  border: 1px solid var(--color-muted);
  border-radius: 0.65rem;
  cursor: pointer;
  transition: var(--transition);
}
.plan-tour-stop:hover,
.plan-tour-stop.is-dragging { border-color: var(--color-primary); box-shadow: 0 2px 12px rgb(26 107 92 / 0.12); }
.plan-tour-stop-grip { color: var(--color-muted); font-size: 0.75rem; cursor: grab; user-select: none; }
.plan-tour-stop-num {
  width: 1.5rem; height: 1.5rem;
  display: grid; place-items: center;
  background: var(--color-primary); color: #fff;
  border-radius: 999px; font-size: 0.75rem; font-weight: 700;
}
.plan-tour-stop-name { font-size: 0.88rem; font-weight: 600; line-height: 1.3; }
.plan-tour-stop-actions { display: flex; gap: 0.15rem; }
.plan-tour-stop-btn {
  width: 1.65rem; height: 1.65rem;
  border: 1px solid var(--color-muted);
  background: var(--color-surface);
  border-radius: 0.35rem;
  font-size: 0.75rem;
  cursor: pointer;
  line-height: 1;
}
.plan-tour-stop-btn:hover:not(:disabled) { border-color: var(--color-primary); color: var(--color-primary); }
.plan-tour-stop-btn:disabled { opacity: 0.35; cursor: default; }
.plan-tour-stop-btn--remove { color: var(--color-accent); }
.plan-tour-empty {
  font-size: 0.88rem;
  color: var(--color-ink-soft);
  margin: 0 0 1rem;
  padding: 0.75rem;
  background: rgb(26 107 92 / 0.06);
  border-radius: 0.65rem;
}
.plan-tour-add { display: block; margin-bottom: 0.75rem; }
.plan-tour-add > span { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.35rem; }
.plan-tour-add input[type="search"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--color-muted);
  border-radius: 0.65rem;
  font-family: inherit;
  font-size: 0.88rem;
  background: #fff;
  margin-bottom: 0.5rem;
}
.plan-tour-add select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--color-muted);
  border-radius: 0.65rem;
  font-family: inherit;
  font-size: 0.88rem;
  background: #fff;
}
.plan-tour-add select[size] {
  min-height: 9rem;
  max-height: 9rem;
  padding: 0.35rem;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.plan-tour-add select[size] option {
  padding: 0.45rem 0.55rem;
  border-radius: 0.35rem;
}
.plan-tour-add--middle select {
  border-color: rgb(232 168 56 / 0.45);
}
.plan-tour-add input[type="search"]:focus,
.plan-tour-add select:focus {
  outline: 2px solid rgb(26 107 92 / 0.35);
  outline-offset: 1px;
}
.plan-tour-sidebar-actions { margin-bottom: 1rem; }
.plan-tour-sidebar-cta { display: flex; flex-direction: column; gap: 0.5rem; }
.plan-tour-sidebar-cta .btn.is-disabled { opacity: 0.45; pointer-events: none; }
.plan-tour-tip {
  display: flex; align-items: flex-start; gap: 0.4rem;
  margin-top: 1rem; font-size: 0.78rem; color: var(--color-ink-soft);
}
.plan-tour-main { position: relative; min-height: 420px; }
.plan-tour-map {
  position: relative;
  width: 100%;
  height: clamp(420px, 62vh, 640px);
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--color-muted);
  box-shadow: var(--shadow);
  z-index: 0;
  background: var(--color-muted);
  overflow: hidden;
}
.plan-tour-map.leaflet-container,
.plan-tour-map .leaflet-container {
  width: 100% !important;
  height: 100% !important;
  border-radius: var(--radius);
  font-family: var(--font-body);
}
/* Critical CSS sets img { max-width:100%; height:auto } — Leaflet tiles must opt out.
   Never force width/height here — Leaflet sets tile pixel size via inline styles. */
.plan-tour-map .leaflet-tile-pane img,
.plan-tour-map img.leaflet-tile,
.plan-tour-map .leaflet-marker-icon,
.plan-tour-map .leaflet-marker-shadow,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-tile,
.leaflet-container .leaflet-marker-icon,
.leaflet-container .leaflet-marker-shadow,
.route-map .leaflet-tile-pane img,
.route-map img.leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}
.plan-tour-map-error {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-ink);
  background: linear-gradient(180deg, #f3e4bc 0%, #ebe0c4 100%);
}
.plan-tour-tooltip {
  background: var(--color-ink) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.35rem 0.6rem !important;
  border-radius: 0.4rem !important;
  box-shadow: var(--shadow);
}
.plan-tour-tooltip::before { border-top-color: var(--color-ink) !important; }
.plan-tour-detail {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 380px;
  margin-left: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgb(21 34 31 / 0.18);
  border: 1px solid var(--color-muted);
  overflow: hidden;
  z-index: 500;
  animation: planTourSlideUp 0.25s ease;
}
@media (min-width: 768px) {
  .plan-tour-detail { left: auto; width: min(380px, calc(100% - 2rem)); }
}
@keyframes planTourSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.plan-tour-detail-close {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  z-index: 2;
  width: 2rem; height: 2rem;
  border: none; background: rgb(255 255 255 / 0.92);
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.12);
}
.plan-tour-detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 2px;
  max-height: 140px;
  overflow: hidden;
  background: var(--color-muted);
}
.plan-tour-detail-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
.plan-tour-detail-placeholder {
  grid-column: 1 / -1;
  height: 100px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-deep));
  color: #fff;
  font-weight: 700;
}
.plan-tour-detail-body { padding: 1rem 1.1rem 1.15rem; }
.plan-tour-detail-region {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.25rem;
}
.plan-tour-detail-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.plan-tour-detail-body p { font-size: 0.88rem; color: var(--color-ink-soft); margin-bottom: 0.65rem; }
.plan-tour-detail-highlights {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.plan-tour-detail-highlights li {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  background: rgb(26 107 92 / 0.1);
  color: var(--color-primary-dark);
  border-radius: 999px;
}
.plan-tour-detail-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.plan-tour-packages { padding-top: 2rem; }

/* Photo gallery */
.gallery-section { padding-top: 0; }
.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin: -1.35rem 0 1.75rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%);
  border: 1px solid var(--color-muted);
  box-shadow: 0 10px 28px rgb(21 34 31 / 0.07);
}
.gallery-filters {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgb(228 221 210 / 0.55);
  border: 1px solid rgb(21 34 31 / 0.08);
}
.gallery-filter {
  position: relative;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: none;
  background: rgb(255 255 255 / 0.42);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.gallery-filter:hover {
  color: var(--color-primary-dark);
  background: rgb(255 255 255 / 0.72);
}
.gallery-filter:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.gallery-filter.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-lagoon) 100%);
  box-shadow: 0 4px 14px rgb(26 107 92 / 0.32);
}
.gallery-filter.is-active:hover {
  color: #fff;
  filter: brightness(1.04);
}
.gallery-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-muted);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  white-space: nowrap;
}
.gallery-count span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgb(26 107 92 / 0.1);
  color: var(--color-primary-dark);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 767px) {
  .gallery-toolbar {
    margin-top: -1rem;
    padding: 0.75rem;
    border-radius: 0.85rem;
  }
  .gallery-filters {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.28rem;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filter {
    flex: 0 0 auto;
    padding: 0.52rem 0.95rem;
    font-size: 0.78rem;
  }
  .gallery-count {
    width: 100%;
    justify-content: center;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
}
.gallery-item {
  position: relative;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--color-muted);
  box-shadow: 0 2px 12px rgb(21 34 31 / 0.06);
  transition: var(--transition);
}
.gallery-item[hidden] { display: none; }
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.2rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, transparent 35%, rgb(21 34 31 / 0.82));
  color: #fff;
  text-align: left;
}
.gallery-item-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-highlight);
}
.gallery-item-title {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.25;
}
.gallery-cta {
  margin-top: 2rem;
  text-align: center;
  color: var(--color-ink-soft);
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgb(21 34 31 / 0.88);
  backdrop-filter: blur(8px);
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox-figure {
  width: min(960px, 100%);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  animation: modal-in 0.3s ease;
}
.gallery-lightbox-figure img {
  width: 100%;
  max-height: min(68vh, 720px);
  object-fit: contain;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #000;
}
.gallery-lightbox-caption {
  padding: 1rem 1.15rem 1.2rem;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
}
.gallery-lightbox-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.25rem;
}
.gallery-lightbox-caption h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-deep);
  margin-bottom: 0.35rem;
}
.gallery-lightbox-caption p:last-of-type {
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  margin-bottom: 0.75rem;
}
.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.95);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-lightbox-prev { left: 1rem; }
.gallery-lightbox-next { right: 1rem; }
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .gallery-lightbox-nav { display: none; }
}

