/* Ann Tours — brand tokens from live OceanWP / Elementor theme */
:root {
  --red: #ed2939;
  --link: #dd5d5d;
  --link-hover: #dd0000;
  --green: #81d742;
  --green-soft: #8cba29;
  --green-deep: #5c7c19;
  --text: #464646;
  --text-muted: #838687;
  --body: #000000;
  --topbar: #161819;
  --nav-text: #ffffff;
  --blue: #6ec1e4;
  --blue-hover: #009ee2;
  --navy: #1e4a6e;
  --social: #1baed8;
  --divider: #e0dede;
  --band: #f6f3ee;
  --white: #ffffff;
  --max: 1220px;
  --header-h: 88px;
  /* Shared height for all interior page heroes / banners */
  --subpage-hero-h: min(42vh, 380px);
  --font-display: "Raleway", sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Same paint color while the next page streams in (reduces white flash) */
  background: var(--white);
}

/* Cross-document view transitions (Chrome/Edge) — soft crossfade between package pages */
@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.18s;
  animation-timing-function: ease;
}

/* Keep the big header photo stable across package-button navigations */
.country-hero--stable,
.country-hero[data-country-hero],
.kh-banner[data-country-hero] {
  view-transition-name: country-package-hero;
}

.site-header,
.site-header--overlay {
  view-transition-name: site-top-nav;
}

::view-transition-group(country-package-hero) {
  animation-duration: 0.01s; /* effectively hold — same image, no morph flash */
}

::view-transition-group(site-top-nav) {
  animation-duration: 0.01s;
}

@media (prefers-reduced-motion: reduce) {
  @view-transition {
    navigation: none;
  }

  html {
    scroll-behavior: auto;
  }

  .country-hero--stable,
  .country-hero[data-country-hero],
  .kh-banner[data-country-hero],
  .site-header,
  .site-header--overlay {
    view-transition-name: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header / nav — same clear boxed menu on every page (homepage style) */
.site-header,
.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 0;
  /* view-transition-name set above for stable package navigation */
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
  width: min(100% - 2.5rem, 1400px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.logo img {
  max-height: 72px;
  width: auto;
  display: block;
}

.logo__mark {
  height: 52px;
  max-height: 52px !important;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.nav > ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav > ul > li {
  position: relative;
}

/*
 * Full-height hit target (keeps mega/dropdown hover stable) +
 * thin ~25% dark gradient only around the words via ::before.
 */
.nav > ul > li > a {
  position: relative;
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 0.7rem;
  /* Tall link = no gap when moving pointer into mega menu */
  line-height: var(--header-h);
  white-space: nowrap;
  background: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: color 0.2s ease;
  z-index: 1;
}

.nav > ul > li > a::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  top: 50%;
  height: 1.55em;
  transform: translateY(-50%);
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
  z-index: -1;
  pointer-events: none;
  transition: background 0.2s ease;
}

.nav > ul > li > a:hover,
.nav > ul > li:focus-within > a,
.nav > ul > li > a.is-active {
  color: rgba(255, 255, 255, 0.95);
}

.nav > ul > li > a:hover::before,
.nav > ul > li:focus-within > a::before,
.nav > ul > li > a.is-active::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.36) 0%,
    rgba(0, 0, 0, 0.24) 100%
  );
}

/* Soft blue underline when mega / dropdown is open */
.nav > ul > li.has-children:hover > a,
.nav > ul > li.has-children:focus-within > a,
.nav > ul > li.has-children.is-open > a {
  box-shadow: inset 0 -2px 0 var(--blue);
}

/* No chevrons — matches live top bar */
.nav .has-children > a::after {
  content: none;
}

/* Simple dropdowns (Shore / Executive) */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 50;
}

.nav li:hover > .dropdown,
.nav li:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: block;
  padding: 0.55rem 1.1rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dropdown a:hover {
  background: #f5f5f5;
  color: var(--red);
}

/* Destinations mega menu — live site panel */
.nav > ul > li.has-mega {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(110px, 0.85fr) minmax(110px, 0.85fr) minmax(100px, 0.7fr);
  gap: 0.85rem 1.05rem;
  width: min(1180px, calc(100vw - 2rem));
  padding: 1.15rem 1.35rem 1.35rem;
  background: #e4e4e4;
  border-top: 3px solid var(--blue);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

/* Invisible bridge so pointer never “falls off” between label and panel */
.mega-menu::before,
.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav li.has-mega:hover > .mega-menu,
.nav li.has-mega:focus-within > .mega-menu,
.nav li.has-mega.is-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-col {
  min-width: 0;
}

.mega-col__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  color: #555 !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: none;
  line-height: 1.2;
}

.mega-col__title::before {
  content: "";
  width: 3px;
  height: 0.95em;
  background: var(--blue);
  flex-shrink: 0;
}

/* Second destinations column: no “…” label, keep height so lists align */
.mega-col__title--spacer {
  visibility: hidden;
  min-height: 1.15em;
  margin-bottom: 0.65rem;
  pointer-events: none;
}

.mega-col__title--spacer::before {
  display: none;
}

.mega-col__photo {
  display: block;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #e8e8e8;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 6px 16px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mega-col__photo img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.mega-col__photo:hover {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 10px 22px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.mega-col__photo:hover img {
  transform: scale(1.04);
}

.mega-col__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-col__links li {
  margin: 0 0 0.55rem;
}

.mega-col__links a {
  color: #5a5a5a;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
  text-shadow: none;
}

.mega-col__links a:hover {
  color: var(--red);
}

.mega-col--list .mega-col__dest {
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0;
}

.mega-col--list .mega-col__dest li {
  margin: 0 0 0.2rem;
}

.mega-col--list .mega-col__dest a {
  display: block;
  color: #dd5d5d;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: none;
  line-height: 1.35;
  padding: 0.32rem 0.55rem 0.32rem 0.5rem;
  margin: 0 -0.35rem;
  border-radius: 4px;
  border-left: 2px solid transparent;
  background: transparent;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.mega-col--list .mega-col__dest a:hover,
.mega-col--list .mega-col__dest a:focus-visible {
  color: var(--link-hover);
  background: rgba(255, 255, 255, 0.72);
  border-left-color: var(--blue);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transform: translateX(2px);
  outline: none;
}

.mega-col--badge {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.35rem;
}

.mega-badge {
  display: block;
  line-height: 0;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-badge:hover {
  opacity: 1;
  transform: scale(1.03);
}

.mega-badge img {
  width: min(110px, 100%);
  height: auto;
  display: block;
}

/* More destinations hub + simple country pages */
.more-dest-page {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.25rem 0 3.5rem;
}

.more-dest-lead {
  max-width: 780px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.more-dest-lead__text {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.more-dest-lead__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
}

.more-dest-lead__secondary {
  color: var(--link);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.more-dest-lead__secondary:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.more-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.more-dest-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 10px 28px rgba(22, 24, 25, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.more-dest-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 16px 36px rgba(22, 24, 25, 0.14);
}

.more-dest-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  flex: 1;
}

.more-dest-card__media {
  height: 150px;
  background: #2a2d2e center / cover no-repeat;
}

.more-dest-card__body {
  padding: 1rem 1.1rem 0.35rem;
}

.more-dest-card__title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.more-dest-card__tag {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.more-dest-card__blurb {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.more-dest-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem 1.05rem;
  border-top: 1px solid var(--divider);
  margin-top: auto;
}

.more-dest-card__plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.more-dest-card__more {
  color: var(--link);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.more-dest-card__more:hover {
  color: var(--link-hover);
}

.dest-simple {
  max-width: 820px;
  margin: 0 auto;
}

.dest-simple__lead {
  text-align: center;
  margin: 0 0 1.75rem;
}

.dest-simple__flag {
  display: inline-block;
  margin-bottom: 0.65rem;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.dest-simple__kicker {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.dest-simple__text {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.dest-simple__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  justify-content: center;
  align-items: center;
}

.dest-simple__secondary {
  color: var(--link);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.dest-simple__secondary:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.dest-simple__map {
  margin: 0 auto 1.75rem;
  max-width: 480px;
  text-align: center;
}

.dest-simple__map img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 10px 28px rgba(22, 24, 25, 0.1);
}

.dest-simple__body {
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .more-dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .more-dest-grid {
    grid-template-columns: 1fr;
  }
}

/* Shore Excursion mega — blurb + countries + photo */
.mega-menu--shore {
  grid-template-columns: minmax(200px, 1.15fr) minmax(140px, 0.75fr) minmax(200px, 1fr);
  width: min(720px, calc(100vw - 2rem));
  align-items: start;
}

.mega-col--blurb .mega-col__text {
  margin: 0;
  max-width: 240px;
  color: #666;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.mega-col--feature .mega-col__photo--lg {
  margin: 0.15rem 0 0;
}

.mega-col--feature .mega-col__photo--lg img {
  height: 168px;
  object-fit: cover;
}

.mega-menu--vip .mega-col__photo,
.mega-menu--shore .mega-col__photo {
  border-radius: 6px;
}

/* Executive Travel Services mega — 3 services + Our Service blurb */
.mega-menu--vip {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(180px, 0.95fr);
  width: min(920px, calc(100vw - 2rem));
  align-items: start;
}

.mega-menu--vip .mega-col__photo img {
  height: 118px;
}

.mega-menu--vip .mega-col--blurb .mega-col__text {
  max-width: 220px;
}

/* Plan My Trip nav item + live cart badge */
.nav-plan > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.plan-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.32rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(237, 41, 57, 0.45);
  transform: translateY(-0.5px);
}

.plan-nav-badge[hidden] {
  display: none !important;
}

.amazing-card__plan.is-added,
.btn-plan.is-added,
.tour-actions__plan.is-added {
  background: #2f7d32 !important;
  border-color: #2f7d32 !important;
  color: #fff !important;
  pointer-events: none;
}

.nav-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.35rem;
  width: 40px;
  height: var(--header-h);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  filter: none;
  z-index: 1;
  transition: color 0.2s ease;
}

.nav-search::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 50%;
  height: 1.55em;
  width: auto;
  transform: translateY(-50%);
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.nav-search:hover {
  color: rgba(255, 255, 255, 0.95);
}

.nav-search:hover::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.36) 0%,
    rgba(0, 0, 0, 0.24) 100%
  );
}

.nav-search[aria-expanded="true"] {
  color: rgba(255, 255, 255, 0.95);
}

/* ------------------------------------------------------------------ */
/* Site search overlay (client-side index)                               */
/* ------------------------------------------------------------------ */
.site-search {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-h) + 0.75rem) 1rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.site-search.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 28, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.site-search__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(70vh, 560px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transform: translateY(-8px);
  transition: transform 0.2s ease;
}

.site-search.is-open .site-search__panel {
  transform: translateY(0);
}

.site-search__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0.9rem 0.85rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
}

.site-search__icon {
  flex-shrink: 0;
  color: #6a6a6a;
  display: inline-flex;
}

.site-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #222;
  outline: none;
  padding: 0.35rem 0;
}

.site-search__input::placeholder {
  color: #9a9a9a;
  font-weight: 400;
}

.site-search__close {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #333;
  border-radius: 8px;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.site-search__close:hover,
.site-search__close:focus-visible {
  background: #f0f7fb;
  border-color: rgba(0, 158, 226, 0.4);
  outline: none;
}

.site-search__status {
  margin: 0;
  padding: 0.55rem 1rem 0.35rem;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.site-search__results {
  list-style: none;
  margin: 0;
  padding: 0 0.5rem 0.65rem;
  overflow-y: auto;
  flex: 1 1 auto;
}

.site-search__item {
  margin: 0;
}

.site-search__link {
  display: block;
  padding: 0.7rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.12s ease;
}

.site-search__link:hover,
.site-search__link.is-active,
.site-search__link:focus-visible {
  background: rgba(237, 41, 57, 0.07);
  outline: none;
}

.site-search__type {
  display: inline-block;
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.site-search__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #222;
  line-height: 1.3;
}

.site-search__desc {
  margin: 0.25rem 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.site-search__empty {
  margin: 0;
  padding: 1.5rem 1rem 1.75rem;
  text-align: center;
  color: #777;
  font-size: 0.95rem;
}

body.site-search-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .site-search {
    padding: 0.5rem;
    align-items: stretch;
  }

  .site-search__panel {
    max-height: none;
    height: 100%;
    border-radius: 10px;
  }
}

/* CTA button — same filled red as country package current tab */
.btn-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 0.72rem 1.2rem;
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-plan:hover {
  background: #c91f2d;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(237, 41, 57, 0.22);
  transform: translateY(-1px);
}

.btn-plan--ghost {
  background: #fff;
  color: #555 !important;
  border-color: rgba(70, 70, 70, 0.28);
}

.btn-plan--ghost:hover {
  background: #fff;
  border-color: var(--red);
  color: var(--red) !important;
}

/* Hero slider — full-viewport under transparent header */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  max-height: none;
  color: var(--white);
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  /* Bleed past edges so scale/pan never reveals empty gaps */
  inset: -4%;
  width: auto;
  height: auto;
  background-color: #111;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.25s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: kenburns 7.5s ease-out forwards;
}

.hero__slide:nth-child(even).is-active {
  animation-name: kenburns-alt;
}

@keyframes kenburns {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes kenburns-alt {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.12) translate3d(1.5%, 1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slide.is-active,
  .hero__slide:nth-child(even).is-active {
    animation: none;
    transform: scale(1.04);
    transition: opacity 0.6s ease;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Light wash at the top; stronger fade at the bottom so captions and CTAs stay readable */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.1) 38%,
    rgba(0, 0, 0, 0.58) 100%
  );
  pointer-events: none;
}

/* Hero captions + CTAs — stacked over the lower third of the photo */
.hero__content {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: auto;
  bottom: clamp(4.25rem, 9vh, 6rem);
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: min(100% - 3rem, 1280px);
  margin-inline: auto;
  padding: 0;
  pointer-events: none;
}

.hero__place,
.hero__country,
.hero__cta {
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  transition: opacity 0.45s ease;
}

.hero__place {
  font-size: clamp(1.15rem, 2.4vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero__country {
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero__tagline {
  margin: 0.55rem 0 0.15rem;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero__sub {
  margin: 0;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  pointer-events: auto;
}

.hero__plan {
  margin-left: 0;
  padding: 0.7rem 1.2rem;
}

.hero__cta {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  background: transparent;
  text-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    opacity 0.45s ease, transform 0.2s ease;
}

.hero__cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.hero__content.is-fading .hero__place,
.hero__content.is-fading .hero__country,
.hero__content.is-fading .hero__cta {
  opacity: 0;
}

.hero__badge {
  position: absolute;
  z-index: 4;
  right: clamp(1rem, 4vw, 2.75rem);
  bottom: clamp(1.25rem, 4vh, 2.5rem);
  width: clamp(120px, 15vw, 176px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

.hero__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
}

.hero__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.hero__dots button.is-active {
  background: var(--white);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section--band {
  background: var(--band);
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-icon {
  width: 56px;
  margin: 0 auto 0.75rem;
}

.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-title::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 0.85rem auto 0;
  background: var(--red);
  transform: rotate(45deg);
}

.section-title--red {
  color: var(--red);
}

.section-lead {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-lead p {
  margin: 0 0 1rem;
}

/* Destination grid */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.dest-card {
  position: relative;
  display: block;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--white) !important;
}

.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  transition: background 0.4s;
}

.dest-card:hover::before {
  background: rgba(0, 0, 0, 0);
}

.dest-card__caption {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.dest-card__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.dest-card__sub {
  margin: 0.3rem 0 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  opacity: 0.95;
}

.dest-card--wide {
  grid-column: span 3;
  min-height: 180px;
}

/* Featured tours */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.tour-card {
  position: relative;
  display: block;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  color: var(--white) !important;
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  transition: background 0.4s;
}

.tour-card:hover::before {
  background: rgba(0, 0, 0, 0.12);
}

.tour-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: inherit !important;
  text-decoration: none;
}

.tour-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1rem 3.4rem;
  z-index: 1;
}

.tour-card__title {
  margin: 0 0 0.25rem;
  font-size: 21px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.tour-card__meta {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.tour-card__plan {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  margin-left: 0;
  white-space: nowrap;
}

/* Why us — three pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 980px;
  margin: 0 auto;
}

.pillar h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.35rem;
  margin: 1.75rem 0 0;
  text-align: center;
}

.section-cta__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--link) !important;
}

.section-cta__link:hover {
  color: var(--link-hover) !important;
}

.section--tight {
  padding: 2rem 0;
}

/* Shore + VIP strip */
.offer-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  padding: 1.35rem 1.4rem;
  background-size: cover;
  background-position: center;
  color: var(--white) !important;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 20%, rgba(0, 0, 0, 0.55) 100%);
  transition: background 0.35s;
}

.offer-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.45) 100%);
}

.offer-card__title,
.offer-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.offer-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-card__text {
  margin-top: 0.35rem;
  font-size: 15px;
  line-height: 1.45;
  max-width: 28em;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto 0.5rem;
}

.review-card {
  margin: 0;
  padding: 1.5rem 1.6rem;
  background: #f6f6f6;
}

.review-card p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
}

.review-card footer {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 720px;
  margin: 1.25rem auto 0;
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 0.72rem 1.2rem;
  border: 2px solid rgba(70, 70, 70, 0.28);
  border-radius: 8px;
  background: #fff;
  color: #555 !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-blue:hover {
  background: #fff;
  border-color: var(--red);
  color: var(--red) !important;
  box-shadow: 0 4px 14px rgba(237, 41, 57, 0.16);
  transform: translateY(-1px);
}

/* Footer */
.site-footer {
  position: relative;
  color: var(--white);
  background: #1a1c1d url("../assets/img/footer-bg.jpg") center 30% / cover no-repeat;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(12, 14, 15, 0.42) 0%,
      rgba(12, 14, 15, 0.52) 45%,
      rgba(12, 14, 15, 0.68) 100%
    );
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding: 4.25rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  column-gap: clamp(2.75rem, 5vw, 5.5rem);
  row-gap: 2.5rem;
  align-items: start;
}

.footer-col__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-col__title::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: 0.55rem;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 1px;
}

.footer-col__text {
  margin: 0 0 0.85rem;
  max-width: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.footer-col--social .footer-col__text,
.footer-col--contact > .footer-col__text:not(.footer-col__text--region) {
  white-space: nowrap;
}

.footer-col__text--region {
  max-width: none;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.footer-brand {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(27, 174, 216, 0.95);
  color: var(--white) !important;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: #3bc0e4;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.footer-social svg {
  display: block;
}

.footer-award-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin: 0.1rem 0 0;
}

.footer-year-mark {
  display: block;
  width: 108px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.footer-award-badge {
  display: inline-block;
  margin: 0;
}

.footer-award-badge img {
  display: block;
  width: 132px;
  height: auto;
}

.footer-years {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.footer-years li {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 0.95rem;
  font-size: 14px;
  line-height: 1.45;
}

.footer-contact__label {
  display: block;
  margin: 0 0 0.12rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact__sep {
  margin: 0 0.28rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.footer-contact a:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.footer-contact__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.05rem;
  border-radius: 8px;
  border: 2px solid var(--red) !important;
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

button.footer-contact__cta {
  cursor: pointer;
  appearance: none;
}

.footer-contact__cta:hover {
  background: #c91f2d;
  border-color: #c91f2d !important;
  transform: translateY(-1px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.15rem;
  margin-top: 2.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.footer-links a:not(:last-child)::after {
  content: "·";
  margin-left: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.footer-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.85rem;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom__start {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-bottom > span {
  text-align: center;
}

.footer-stamp {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
}

.footer-invoice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.footer-invoice:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Legacy class still used if any static page not rebuilt */
.footer-meta {
  margin: 0.35rem 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
}

.scroll-top {
  position: fixed;
  right: max(1.15rem, env(safe-area-inset-right));
  bottom: max(1.15rem, env(safe-area-inset-bottom));
  z-index: 40;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 2px solid rgba(70, 70, 70, 0.22);
  border-radius: 50%;
  background: #fff;
  color: #444;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.scroll-top:hover {
  border-color: var(--red);
  color: var(--red);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.scroll-top svg {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: none;
    transform: none;
  }
}

.site-toast {
  position: fixed;
  left: 50%;
  top: max(1.25rem, env(safe-area-inset-top));
  z-index: 13000;
  max-width: min(420px, calc(100vw - 2rem));
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  background: #1a6b4a;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.site-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .site-toast {
    transition: none;
    transform: translateX(-50%);
  }
}

/* Interior pages */
.page-hero {
  position: relative;
  min-height: var(--subpage-hero-h);
  height: var(--subpage-hero-h);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 2.5rem 0;
}

.page-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.page-hero__meta {
  margin: 0.5rem 0 0;
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.95;
}

.breadcrumb {
  margin: 0 0 0.75rem;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  opacity: 0.7;
}

.page-body {
  padding: 3rem 0 4rem;
}

.page-prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.page-prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.page-prose h2:first-child {
  margin-top: 0;
}

.page-prose p {
  margin: 0 0 1rem;
}

.page-prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.page-prose li {
  margin-bottom: 0.4rem;
}

.shore-hub {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.shore-hub__hero-copy {
  text-align: center;
}

.shore-hub__hero-sub {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.1vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.shore-hub__lead {
  max-width: 760px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.shore-hub__kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.shore-hub__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.shore-hub__proof {
  margin: 0 0 1.35rem;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.shore-hub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
}

.shore-hub__secondary {
  color: var(--link) !important;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.shore-hub__secondary:hover {
  color: var(--link-hover) !important;
}

.shore-hub__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
}

.shore-hub__intro {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.shore-hub__why {
  margin-top: 3rem;
}

.shore-hub .dest-grid {
  margin-top: 0.5rem;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .shore-hub .dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-cta {
  margin-top: 2rem;
  text-align: center;
}

.link-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: block;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--divider);
  border-radius: 4px;
  color: var(--text);
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.link-list a:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Cambodia special interest — live alternating image/text rows */
.si-page {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.si-page__header {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.si-page__heading {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #333;
}

.si-page__intro {
  color: #444;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

.si-page__intro p {
  margin: 0 0 0.9rem;
}

.si-list {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.si-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2.5rem;
  align-items: center;
}

.si-row--flip .si-row__media {
  order: 2;
}

.si-row--flip .si-row__content {
  order: 1;
}

.si-row__media {
  display: block;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 10px 28px rgba(22, 24, 25, 0.12);
  background: #eee;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.si-row__media:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(22, 24, 25, 0.1),
    0 16px 36px rgba(22, 24, 25, 0.12);
}

.si-row__media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.si-row__media:hover img {
  transform: scale(1.03);
}

.si-row__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222;
  line-height: 1.3;
}

.si-row__title a {
  color: inherit;
}

.si-row__title a:hover {
  color: var(--blue-hover);
}

.si-row__text {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.si-row__actions {
  margin: 1.1rem 0 0;
}

.si-page--laos {
  width: min(100% - 2rem, 1100px);
}

.si-page--laos .si-list {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .si-row,
  .si-row--flip .si-row__media,
  .si-row--flip .si-row__content {
    display: block;
  }

  .si-row--flip .si-row__media,
  .si-row--flip .si-row__content {
    order: unset;
  }

  .si-row__media {
    margin-bottom: 1rem;
  }

  .si-row__media img {
    height: 220px;
  }
}

/* Cambodia live-style tips page (matches anntours.com/cambodia-3/) */
.kh-banner {
  position: relative;
  min-height: var(--subpage-hero-h);
  height: var(--subpage-hero-h);
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
}

.kh-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
}

.kh-banner__caption {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  color: #333;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 500;
  white-space: nowrap;
  max-width: calc(100% - 2rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

.kh-actions {
  background: #fff;
  border-bottom: 1px solid var(--divider);
}

.kh-actions__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1.35rem 0 1.5rem;
}

.kh-page {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.25rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(200px, 250px) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

/* Cambodia tips sidebar aliases → same Travel Tips menu system */
.kh-sidebar {
  position: sticky;
  top: 1rem;
}

.kh-sidebar__brand {
  text-align: left;
  margin-bottom: 0.25rem;
}

.kh-flag {
  width: 72px;
  height: auto;
  margin: 0 0 0.85rem;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.kh-sidebar__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #222;
}

.kh-sidebar__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 0.5rem;
  background: var(--blue);
}

.kh-toc ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.kh-toc li {
  margin: 0 0 0.85rem;
}

.kh-toc a {
  color: #222;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.kh-toc a:hover {
  color: var(--blue-hover);
}

.kh-map-wrap {
  display: block;
  margin-top: 0.25rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.kh-map {
  width: 100%;
  height: auto;
  display: block;
}

.kh-main {
  min-width: 0;
}

.kh-page-title {
  margin: 0 0 1.75rem;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  color: #444;
}

.kh-section {
  margin: 0 0 2rem;
}

.kh-section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222;
  scroll-margin-top: 1rem;
}

.kh-section h3 {
  margin: 1rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333;
}

.kh-section p,
.kh-section li {
  color: #333;
  font-size: 16px;
  line-height: 1.75;
}

.kh-section p {
  margin: 0 0 1rem;
}

.kh-section ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.kh-section li {
  margin-bottom: 0.4rem;
}

.kh-stats {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}

.kh-stat {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 0.5rem 1rem;
}

.kh-stat dt {
  margin: 0;
  font-weight: 700;
  color: #222;
}

.kh-stat dd {
  margin: 0;
  color: #333;
}

@media (max-width: 900px) {
  .kh-page {
    grid-template-columns: 1fr;
  }

  .kh-sidebar {
    position: static;
  }

  .kh-page-title {
    text-align: center;
  }

  .kh-actions__btn {
    min-width: 0;
    flex: 1 1 180px;
  }

  .kh-stat {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .kh-banner__caption {
    white-space: normal;
    text-align: center;
  }
}

/* Country & Travel Tips page (live vietnam-2 style) */
.country-hero {
  position: relative;
  min-height: var(--subpage-hero-h);
  height: var(--subpage-hero-h);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  /* Solid fallback while hero image loads — avoids white strip / flicker */
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
}

.country-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
}

.country-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 2rem 0 2.5rem;
}

.country-hero__breadcrumb {
  margin: 0 0 0.5rem;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
}

.country-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.country-hero__breadcrumb a:hover {
  color: var(--white);
}

.country-hero__title {
  margin: 0;
  /* Softer editorial serif (already loaded) — less harsh than Raleway + wide tracking */
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.country-actions {
  background: #fff;
  border-bottom: 1px solid var(--divider);
}

.country-actions__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  padding: 1.25rem 0 1.35rem;
  position: relative;
}

.country-actions__btn,
.kh-actions__btn,
.amazing-cat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 0.72rem 1.2rem;
  border: 2px solid rgba(70, 70, 70, 0.28);
  border-radius: 8px;
  background: #fff;
  color: #555 !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.country-actions__btn:hover,
.kh-actions__btn:hover,
.amazing-cat-btn:hover {
  background: #fff;
  border-color: var(--red);
  color: var(--red) !important;
  box-shadow: 0 4px 14px rgba(237, 41, 57, 0.16);
  transform: translateY(-1px);
}

.country-actions__flag {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .country-actions__flag {
    position: static;
    transform: none;
    order: 99;
    margin: 0.25rem auto 0;
  }

  .country-actions__btn,
  .kh-actions__btn,
  .amazing-cat-btn {
    min-width: 0;
    flex: 1 1 140px;
  }
}

.country-layout {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

/* Travel Tips sidebar — shared across Vietnam, Cambodia, Laos, Thailand, etc. */
.country-toc {
  position: sticky;
  top: 1rem;
  padding: 0;
  background: transparent;
  border-top: 0;
}

.country-toc h2,
.country-toc__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #222;
}

.country-toc h2::after,
.country-toc__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 0.5rem;
  background: var(--blue);
}

.country-toc ul,
.country-toc__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.country-toc li,
.country-toc__nav li {
  margin: 0 0 0.85rem;
}

.country-toc a,
.country-toc__nav a {
  color: #222;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.country-toc a:hover,
.country-toc__nav a:hover {
  color: var(--blue-hover);
}

.country-toc__flag {
  display: block;
  width: 72px;
  height: auto;
  margin: 0 0 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.country-toc__map {
  position: relative;
  display: block;
  margin-top: 1.25rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  cursor: zoom-in;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.country-toc__map:hover,
.country-toc__map:focus-visible {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  outline: none;
}

.country-toc__map:focus-visible {
  box-shadow: 0 0 0 3px rgba(20, 175, 217, 0.35), 0 10px 28px rgba(0, 0, 0, 0.16);
}

.country-toc__map img {
  width: 100%;
  height: auto;
  display: block;
}

.country-toc__map-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.45rem 0.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.country-toc__map:hover .country-toc__map-hint,
.country-toc__map:focus-visible .country-toc__map-hint {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------------ */
/* Country map lightbox (zoom / pan)                                    */
/* ------------------------------------------------------------------ */
.map-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 1.75rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.map-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 28, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.map-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1100px, 100%);
  height: min(90vh, 900px);
  max-height: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}

.map-modal.is-open .map-modal__dialog {
  transform: translateY(0) scale(1);
}

.map-modal__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: 0.75rem 0.9rem 0.75rem 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #fafbfc 0%, #f3f5f7 100%);
}

.map-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #222;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-modal__controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.map-modal__btn {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #222;
  border-radius: 8px;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.map-modal__btn:hover,
.map-modal__btn:focus-visible {
  background: #f0f7fb;
  border-color: rgba(20, 175, 217, 0.45);
  color: #0b6f8c;
  outline: none;
}

.map-modal__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.map-modal__btn--zoom-label {
  min-width: 3.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  cursor: default;
}

.map-modal__btn--zoom-label:hover,
.map-modal__btn--zoom-label:focus-visible {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
  color: #222;
}

.map-modal__btn--close {
  min-width: 2.25rem;
  font-size: 1.35rem;
  font-weight: 400;
  margin-left: 0.25rem;
}

.map-modal__viewport {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(45deg, #eef1f4 25%, transparent 25%),
    linear-gradient(-45deg, #eef1f4 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #eef1f4 75%),
    linear-gradient(-45deg, transparent 75%, #eef1f4 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-color: #f7f8fa;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.map-modal__viewport.is-dragging {
  cursor: grabbing;
}

.map-modal__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  will-change: transform;
}

.map-modal__img {
  max-width: min(100%, 1000px);
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border-radius: 2px;
  pointer-events: none;
  -webkit-user-drag: none;
}

.map-modal__hint {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(20, 24, 32, 0.72);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.92;
}

body.map-modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .map-modal {
    padding: 0.4rem;
  }

  .map-modal__dialog {
    height: min(94vh, 100%);
    border-radius: 10px;
  }

  .map-modal__toolbar {
    flex-wrap: wrap;
    padding: 0.65rem 0.7rem;
  }

  .map-modal__title {
    flex: 1 1 100%;
    font-size: 0.85rem;
  }

  .map-modal__hint {
    font-size: 10px;
    max-width: calc(100% - 1.5rem);
    white-space: normal;
    text-align: center;
  }
}

/* Live-style country tips (Myanmar): large country title + captioned hero */
.country-hero__caption {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.02em;
}

.mm-tips-country-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a4a4a;
  text-align: center;
}

.country-tip__sub {
  margin: 1.25rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.mm-stats {
  margin: 0 0 1.25rem;
}

.mm-stats dt {
  font-weight: 700;
  color: var(--text);
}

.mm-stats dd {
  margin: 0 0 0.35rem;
  color: var(--text-muted);
}

.country-tip h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222;
  margin: 0 0 0.85rem;
}

.country-main .country-tip + .country-tip {
  margin-top: 2rem;
}

/* Vietnam / tips hub — commercial destination layout */
.tips-side-cta {
  margin: 1.25rem 0 0;
  padding: 0.9rem 0.85rem;
  border-radius: 8px;
  background: #f5f9fc;
  border: 1px solid rgba(37, 99, 140, 0.15);
  text-align: center;
}

.tips-side-cta__text {
  margin: 0 0 0.65rem;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
}

.tips-side-cta__btn {
  width: 100%;
  justify-content: center;
}

.tips-side-cta__link {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tips-lead {
  margin: 0 0 1.5rem;
}

.tips-lead__kicker {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.tips-lead__title {
  margin: 0 0 0.75rem !important;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem) !important;
  letter-spacing: 0.04em !important;
}

.tips-lead__text {
  margin: 0 0 0.75rem;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

.tips-lead__proof {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.tips-facts {
  margin-bottom: 2rem !important;
}

.tips-paths {
  margin: 0 0 2.25rem;
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 55%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  scroll-margin-top: 1.25rem;
}

.tips-paths > h2 {
  margin-top: 0 !important;
  text-align: center;
}

.tips-paths__intro {
  margin: -0.25rem auto 1.25rem;
  max-width: 36rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 15.5px;
}

.tips-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.tips-path-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(22, 24, 25, 0.05);
  color: inherit !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tips-path-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(22, 24, 25, 0.1);
}

.tips-path-card__media {
  height: 120px;
  background-size: cover;
  background-position: center;
}

.tips-path-card__body {
  padding: 0.85rem 0.95rem 1rem;
}

.tips-path-card__body h3 {
  margin: 0 0 0.35rem !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tips-path-card__body p {
  margin: 0 0 0.55rem;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.tips-path-card__cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.tips-inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 0.5rem;
}

.tips-inline-cta--visa {
  justify-content: flex-start;
  margin: 1rem 0 0.75rem;
}

.tips-inline-cta__secondary {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tips-takeaway {
  margin: 0 0 1rem !important;
  padding: 0.75rem 0.95rem;
  border-radius: 8px;
  border-left: 4px solid var(--blue);
  background: #f5f9fc;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: var(--text) !important;
}

.tips-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.15rem 0 0.5rem;
}

.tips-service {
  padding: 1rem 0.95rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.tips-service h3 {
  margin: 0 0 0.45rem !important;
  font-size: 0.9rem !important;
  color: var(--red);
}

.tips-service p {
  margin: 0;
  font-size: 14.5px !important;
  line-height: 1.6 !important;
}

.tips-service__need {
  margin-top: 0.55rem !important;
  color: var(--text-muted) !important;
  font-size: 13.5px !important;
}

.tips-muted {
  font-size: 14px !important;
  color: var(--text-muted) !important;
}

.tips-pack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

.tips-mid-cta {
  margin: 1.75rem 0;
  padding: 1.35rem 1.25rem;
  border-radius: 12px;
  text-align: center;
  background: linear-gradient(135deg, #f7fafc 0%, #eef5fa 100%);
  border: 1px solid rgba(37, 99, 140, 0.12);
}

.tips-mid-cta p {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

.tips-mid-cta__actions {
  margin-top: 0.9rem !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  justify-content: center;
  align-items: center;
}

.tips-phrases {
  margin: 0.85rem 0 0;
  border-radius: 8px;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  background: #fafbfc;
  overflow: hidden;
}

.tips-phrases > summary {
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  list-style: none;
}

.tips-phrases > summary::-webkit-details-marker {
  display: none;
}

.tips-phrases > summary::after {
  content: " ▾";
  color: var(--blue);
}

.tips-phrases[open] > summary::after {
  content: " ▴";
}

.tips-phrases .phrase-table {
  margin: 0 1rem 1rem;
}

.tips-final-cta {
  margin-top: 2.5rem;
  padding: 1.75rem 1.25rem;
  border-radius: 12px;
  background: #fafbfc;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.tips-final-cta__title {
  margin: 0 0 0.5rem !important;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.tips-final-cta__text {
  margin: 0 auto 1rem !important;
  max-width: 32rem;
  color: var(--text-muted) !important;
}

.tips-final-cta__actions {
  margin: 0 0 1rem !important;
}

.tips-final-cta__links {
  margin: 0 !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  font-size: 14px;
  font-weight: 600;
}

.tips-final-cta__links a {
  color: var(--blue) !important;
}

.country-tip {
  scroll-margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .tips-path-grid,
  .tips-service-grid,
  .tips-pack-grid {
    grid-template-columns: 1fr;
  }

  .tips-path-card__media {
    height: 150px;
  }
}

.country-hero:has(.country-hero__caption) {
  align-items: center;
  justify-content: center;
}

.country-hero__inner--caption {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

.country-hero__caption {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.45rem 1rem;
  background: rgba(80, 80, 80, 0.72);
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: none;
}

.country-actions--spaced .country-actions__inner--pair {
  justify-content: center;
  gap: 2.5rem 4rem;
  max-width: 720px;
}

.country-actions--spaced .country-actions__inner--triple {
  justify-content: center;
  gap: 1.25rem 2rem;
  max-width: 920px;
}

/* Full country package nav (General + Amazing + SI + Shore + Boats) */
.country-actions__inner--nav {
  justify-content: center;
  gap: 0.75rem 1rem;
  max-width: 1100px;
  flex-wrap: wrap;
}

.country-actions__btn.is-current,
.kh-actions__btn.is-current {
  background: var(--red);
  color: #fff !important;
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(237, 41, 57, 0.22);
  pointer-events: auto;
}

.country-actions__btn.is-current:hover,
.kh-actions__btn.is-current:hover {
  background: var(--link-hover);
  border-color: var(--link-hover);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(221, 0, 0, 0.28);
  transform: translateY(-1px);
}

.country-page-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  text-align: center;
}

/* Stats grid on country tips (Laos / Cambodia style) */
.country-main .kh-stats,
.country-main .country-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem 1.25rem;
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  background: #f7f7f7;
  border-left: 3px solid var(--blue);
}

.country-main .kh-stat dt,
.country-main .country-stats dt {
  margin: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.country-main .kh-stat dd,
.country-main .country-stats dd {
  margin: 0.2rem 0 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.country-main h3 {
  margin: 1.25rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.country-main ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.country-main li {
  margin: 0 0 0.35rem;
}

.country-main h2 {
  margin: 2.25rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  scroll-margin-top: 1.25rem;
}

.country-main h2:first-child {
  margin-top: 0;
}

.country-main h3 {
  margin: 1.35rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.country-main p,
.country-main li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.country-main p {
  margin: 0 0 1rem;
}

.country-main ul {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
}

.country-main li {
  margin-bottom: 0.35rem;
}

.country-main strong {
  color: var(--text);
}

.country-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: 1.5rem 2rem;
  align-items: start;
  margin-bottom: 0.5rem;
}

.country-intro__map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.1);
  background: var(--white);
}

.country-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
  margin: 1rem 0 1.5rem;
  padding: 1rem 1.15rem;
  background: #fafafa;
  border: 1px solid var(--divider);
}

.country-stats dt {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.country-stats dd {
  margin: 0.15rem 0 0.5rem;
  color: var(--text-muted);
  font-size: 15px;
}

.phrase-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 14px;
}

.phrase-table th,
.phrase-table td {
  border: 1px solid var(--divider);
  padding: 0.55rem 0.7rem;
  text-align: left;
  vertical-align: top;
}

.phrase-table th {
  background: #f5f5f5;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.phrase-table td {
  color: var(--text-muted);
}

.policy-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.policy-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--divider);
}

.policy-list span:last-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.two-col-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .country-layout {
    grid-template-columns: 1fr;
  }

  .country-toc {
    position: static;
  }

  .country-intro,
  .two-col-lists,
  .country-stats {
    grid-template-columns: 1fr;
  }
}

/* Vietnam boat tours listing + product detail */
.boat-page {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.boat-page--sell {
  width: min(100% - 2rem, 1100px);
}

.boat-section {
  margin: 0 0 2.75rem;
  scroll-margin-top: 1.25rem;
}

.boat-section__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}

.boat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.boat-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.boat-grid--featured {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.boat-grid--sell {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.boat-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 10px 26px rgba(22, 24, 25, 0.1);
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.boat-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px rgba(22, 24, 25, 0.08),
    0 18px 40px rgba(22, 24, 25, 0.12);
  color: inherit;
}

.boat-card__link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  color: inherit !important;
  text-decoration: none !important;
}

.boat-card__media {
  overflow: hidden;
  background: #e8e8e8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.boat-card__media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.boat-card:hover .boat-card__media img {
  transform: scale(1.05);
}

.boat-card__body {
  padding: 1rem 1.1rem 0.85rem;
  flex: 1 1 auto;
}

.boat-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.boat-card__meta {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-hover);
}

.boat-card__stars {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: #c9a227;
  white-space: nowrap;
}

.boat-card__dur {
  margin: 0 0 0.4rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}

.boat-card__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.3;
}

.boat-card__blurb {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

.boat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.65rem 1rem 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #f7f9fb;
}

.boat-card__more {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue) !important;
  text-decoration: none !important;
}

.boat-card__more:hover {
  text-decoration: underline !important;
}

.boat-card--featured {
  border-color: rgba(37, 99, 140, 0.16);
  box-shadow: 0 4px 16px rgba(22, 24, 25, 0.08);
}

.boat-card--featured .boat-card__media img {
  height: 150px;
}

.boat-card--compact .boat-card__media img {
  height: 150px;
}

.boat-card--compact .boat-card__footer,
.boat-card--compact .boat-card__blurb {
  display: none;
}

.country-hero--boat {
  min-height: var(--subpage-hero-h);
  height: var(--subpage-hero-h);
}

/* Product tour heroes: long names need a smaller, balanced title */
.country-hero--boat .country-hero__title {
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  max-width: min(36rem, 92vw);
  text-wrap: balance;
}

.country-hero--boat .page-hero__meta {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  opacity: 0.92;
}

.country-hero--boat .country-hero__inner {
  padding-bottom: 2rem;
}

.boat-stars {
  font-weight: 500;
  letter-spacing: 0.04em;
}

.boat-detail {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.boat-detail__layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.boat-detail__photo {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 12px 30px rgba(22, 24, 25, 0.12);
  margin-bottom: 1rem;
}

.boat-detail__photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.boat-detail__facts {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.boat-detail__facts div {
  margin-bottom: 0.75rem;
}

.boat-detail__facts div:last-child {
  margin-bottom: 0;
}

.boat-detail__facts dt {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.boat-detail__facts dd {
  margin: 0.2rem 0 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.boat-detail__book {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.boat-detail__main h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.boat-detail__kicker {
  margin: 0 0 1rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-hover);
}

.boat-detail__main > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.boat-detail__facilities {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, #fafafa, #fff);
  box-shadow: 0 2px 10px rgba(22, 24, 25, 0.04);
}

.boat-detail__facilities h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.boat-detail__facilities p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.boat-detail__section {
  margin-top: 2rem;
}

.boat-detail__section h2 {
  margin-bottom: 0.85rem;
}

.boat-detail__note {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--blue);
  background: #f5f9fc;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.boat-detail__steps {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.boat-detail__main .tour-itinerary {
  margin-top: 2rem;
  padding-top: 0.5rem;
}

.boat-detail__main .tour-section-title {
  text-align: left;
}

@media (max-width: 1100px) {
  .boat-grid--featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .boat-grid,
  .boat-grid--related,
  .boat-grid--sell,
  .boat-grid--featured {
    grid-template-columns: 1fr 1fr;
  }

  .boat-detail__layout {
    grid-template-columns: 1fr;
  }

  .boat-card__media img {
    height: 210px;
  }
}

@media (max-width: 520px) {
  .boat-grid,
  .boat-grid--related,
  .boat-grid--sell,
  .boat-grid--featured {
    grid-template-columns: 1fr;
  }
}

/* Thailand / tour product detail (live-style amazing product) */
.country-hero--tour {
  position: relative;
  min-height: min(72vh, 560px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.country-hero--tour::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
}

.tour-hero__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #fff;
}

.tour-hero__title {
  max-width: min(34rem, 92vw);
  margin-inline: auto;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem) !important;
  letter-spacing: 0.04em !important;
  line-height: 1.2;
  text-wrap: balance;
}

.tour-hero__duration {
  position: relative;
  z-index: 1;
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.tour-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem 1.25rem;
  padding: 1.5rem 1rem 0.5rem;
  background: #fff;
}

.tour-actions__back {
  color: var(--link);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.tour-actions__back:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.tour-actions__plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 10rem;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  background: #5b9fd4;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.15s ease;
}

.tour-actions__plan:hover {
  background: #3f86be;
}

.tour-page {
  width: min(100% - 2rem, 920px);
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

.tour-section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
}

.tour-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 0.65rem auto 0;
  background: rgba(0, 0, 0, 0.18);
}

.tour-overview__place {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.tour-overview__text {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.tour-overview__text p {
  margin: 0 0 0.85rem;
}

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}

.tour-gallery__item {
  margin: 0;
}

.tour-gallery__frame {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(22, 24, 25, 0.08);
  background: #f3f3f3;
}

.tour-gallery__frame img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.tour-gallery__item figcaption {
  margin-top: 0.55rem;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.tour-itinerary {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tour-itinerary__kicker {
  margin: 0 0 1.75rem;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
}

.tour-day {
  margin: 0 0 1.75rem;
}

.tour-day__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.tour-day__body {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.tour-day__body p {
  margin: 0 0 0.75rem;
}

.tour-day__body p:last-child {
  margin-bottom: 0;
}

.tour-included {
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tour-included ul {
  max-width: 720px;
  margin: 0.75rem auto 0;
  padding: 0 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.tour-included li {
  margin: 0 0 0.45rem;
}

.tour-included p {
  max-width: 720px;
  margin: 0 auto 0.85rem;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.tour-deck {
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tour-deck__note {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.tour-gallery--deck {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tour-gallery--deck .tour-gallery__frame img {
  height: auto;
  max-height: 360px;
  object-fit: contain;
  background: #fff;
}

.tour-options {
  max-width: 820px;
  margin: 1rem auto 0;
  display: grid;
  gap: 0.65rem;
}

.tour-option {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.tour-option__summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(63, 134, 190, 0.06);
}

.tour-option__summary::-webkit-details-marker {
  display: none;
}

.tour-option__summary::after {
  content: "+";
  float: right;
  font-weight: 500;
  color: var(--text-muted);
}

.tour-option[open] .tour-option__summary::after {
  content: "–";
}

.tour-option__body {
  padding: 0.85rem 1.1rem 1.15rem;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tour-option__body p {
  margin: 0 0 0.75rem;
}

.tour-option__body p:last-child {
  margin-bottom: 0;
}

.tour-option__body h4.tour-day__title {
  margin-top: 1rem;
}

.tour-option__sub {
  margin: 0 0 0.85rem;
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
}

.tour-related {
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tour-related ul {
  max-width: 520px;
  margin: 0.75rem auto 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.tour-related li {
  margin: 0 0 0.5rem;
}

.tour-related a {
  color: #3f86be;
  text-decoration: none;
  font-weight: 600;
}

.tour-related a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .tour-gallery {
    grid-template-columns: 1fr;
  }

  .tour-gallery__frame img {
    height: 220px;
  }

  .country-hero--tour {
    min-height: 48vh;
  }
}

/* Shore excursion product page */
/* Amazing tours listing (Laos live-style sections) */
.country-hero--center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.country-hero__inner--center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 0;
}

.country-hero__title--soft {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.country-hero__sub {
  margin: 0.65rem 0 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.amazing-page {
  width: min(100% - 2rem, 980px);
  margin: 0 auto;
  padding: 2.25rem 0 4rem;
}

.amazing-intro,
.amazing-inspire {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
}

.amazing-intro p,
.amazing-inspire p {
  margin: 0;
}

.amazing-divider {
  border: 0;
  border-top: 1px solid var(--divider);
  margin: 1.75rem auto 1.75rem;
  max-width: 860px;
}

.amazing-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin: 0 0 2.75rem;
}

.amazing-section {
  margin: 0 0 3rem;
  scroll-margin-top: 1.25rem;
}

.amazing-section__title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #222;
}

.amazing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1rem;
}

.amazing-card {
  display: flex;
  flex-direction: column;
  background: #f7f8f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(22, 24, 25, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.amazing-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(22, 24, 25, 0.1),
    0 12px 28px rgba(22, 24, 25, 0.08);
}

.amazing-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  flex: 1 1 auto;
}

.amazing-card__media {
  height: 150px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}

.amazing-card__place {
  margin: 0.65rem 0.75rem 0.25rem;
  color: var(--blue-hover);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.amazing-card__title {
  margin: 0 0.75rem 0.35rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #222;
  text-align: center;
  min-height: 2.5em;
}

.amazing-card__blurb {
  margin: 0 0.75rem 0.85rem;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
  min-height: 2.8em;
}

.amazing-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.55rem 0.65rem 0.7rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #f0f2f3;
}

.amazing-card__plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  border-radius: 3px;
  background: var(--red);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.amazing-card__plan:hover {
  background: #c91f2d;
  color: #fff !important;
}

.amazing-card__dur {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: lowercase;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .amazing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .amazing-grid {
    grid-template-columns: 1fr;
  }

  .amazing-card__media {
    height: 180px;
  }
}

/* Vietnam Amazing Tours — commercial listing enhancements */
.amazing-page--vn {
  width: min(100% - 2rem, 1100px);
}

.amazing-lead {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.amazing-lead__kicker {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.amazing-lead__text {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.amazing-lead__proof {
  margin: 0 0 1rem;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}

.amazing-lead__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.amazing-lead__secondary {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.amazing-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 0 0 2.25rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: #f5f8fb;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.amazing-jump__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

.amazing-jump__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.amazing-jump__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.amazing-jump__link {
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 140, 0.28);
  background: #fff;
  color: var(--blue) !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.amazing-jump__link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff !important;
}

.amazing-featured {
  margin: 0 0 1.5rem;
  scroll-margin-top: 1.25rem;
}

.amazing-featured__intro {
  margin: -0.5rem auto 1.25rem;
  max-width: 36rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 15.5px;
}

.amazing-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amazing-card--featured {
  background: #fff;
  border-color: rgba(37, 99, 140, 0.14);
  box-shadow: 0 4px 16px rgba(22, 24, 25, 0.07);
}

.amazing-card--featured .amazing-card__media {
  height: 160px;
}

.amazing-section__note {
  margin: -0.75rem auto 1.15rem;
  max-width: 40rem;
  text-align: center;
  font-size: 14.5px;
  color: var(--text-muted);
}

.amazing-section__note a {
  font-weight: 600;
  color: var(--blue) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.amazing-mid-cta {
  margin: 0 0 2.5rem;
  padding: 1.35rem 1.25rem;
  border-radius: 12px;
  text-align: center;
  background: linear-gradient(135deg, #f7fafc 0%, #eef5fa 100%);
  border: 1px solid rgba(37, 99, 140, 0.12);
}

.amazing-mid-cta p {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

.amazing-mid-cta__actions {
  margin-top: 0.9rem !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  justify-content: center;
  align-items: center;
}

.amazing-mid-cta__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .amazing-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .amazing-grid--featured {
    grid-template-columns: 1fr;
  }
}

.shore-page {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.shore-page > .interest-lead {
  max-width: 820px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  text-align: center;
}

.shore-page > .interest-lead p {
  margin: 0 0 0.85rem;
}

.kh-banner--tall {
  min-height: var(--subpage-hero-h);
  height: var(--subpage-hero-h);
}

.shore-page__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  margin: 0 0 1.5rem;
  text-align: center;
}

.shore-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.shore-page__wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  background: #f7f7f7;
  color: var(--text) !important;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.shore-page__wishlist:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff !important;
}

.shore-tour__list {
  margin: 0.35rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.shore-tour__list li {
  margin: 0 0 0.35rem;
}

.shore-tour__list strong {
  color: var(--text);
}

a.shore-gallery__frame {
  display: block;
  color: inherit;
}

.shore-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0 0 2.75rem;
}

.shore-gallery__item {
  margin: 0;
}

.shore-gallery__frame {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 10px 28px rgba(22, 24, 25, 0.12);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.shore-gallery__frame:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 14px 32px rgba(22, 24, 25, 0.16);
}

.shore-gallery__frame img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.shore-gallery__frame:hover img {
  transform: scale(1.04);
}

.shore-gallery__item figcaption {
  margin-top: 0.65rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.shore-section-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}

.shore-port {
  margin: 0 0 2rem;
  padding: 1.35rem 1.4rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, #fafafa 0%, #fff 40%);
  box-shadow: 0 2px 10px rgba(22, 24, 25, 0.04);
}

.shore-port__title {
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--blue);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.shore-tour {
  margin: 0 0 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.shore-tour__code {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--red);
}

.shore-tour__body {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.shore-tour__body p {
  margin: 0 0 0.75rem;
}

.shore-tour__body p:last-child {
  margin-bottom: 0;
}

.shore-tour__body strong {
  color: var(--text);
}

.shore-note {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  border-left: 4px solid var(--blue);
  background: #f5f9fc;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.shore-note p {
  margin: 0;
}

.shore-note strong {
  color: var(--text);
}

/* Scannable shore page: jump nav + collapsible program cards */
.shore-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  margin: 0 0 2rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #f5f8fb;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.shore-jump__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.shore-jump__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.shore-jump__link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 140, 0.28);
  background: #fff;
  color: var(--blue) !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.shore-jump__link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff !important;
}

.shore-port__blurb {
  margin: -0.35rem 0 1.1rem;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.shore-program {
  margin: 0 0 0.9rem;
  padding: 0;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.shore-program__summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.shore-program__summary-bar::-webkit-details-marker {
  display: none;
}

.shore-program__summary-bar::marker {
  content: "";
}

.shore-program__code {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--red);
  line-height: 1.35;
}

.shore-program__toggle {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 140, 0.25);
  background: #f5f9fc;
}

.shore-program[open] .shore-program__toggle {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.shore-program .shore-meta,
.shore-program .shore-program__lead,
.shore-program .shore-chips,
.shore-program .shore-timeline,
.shore-program .shore-day__label,
.shore-program .shore-tour__body,
.shore-program .shore-program__cta {
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}

.shore-program .shore-meta {
  margin-top: 0;
  margin-bottom: 0.65rem;
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.shore-meta__item {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: #f0f2f4;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.shore-meta__item--meal {
  background: #eef6f0;
  color: #1f6b3a;
}

.shore-program__lead {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.shore-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.shore-chip {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #f5f8fb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.shore-day__label {
  margin: 0.85rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.shore-timeline {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  border-left: 2px solid rgba(37, 99, 140, 0.22);
}

.shore-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(5.5rem, 6.5rem) 1fr;
  gap: 0.65rem 0.85rem;
  padding: 0.45rem 0 0.55rem 1rem;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.shore-step::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px #fff;
}

.shore-step__time {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--blue);
  padding-top: 0.1rem;
}

.shore-step__text {
  color: var(--text-muted);
}

.shore-program__cta {
  margin: 0.25rem 0 1.15rem;
  padding-top: 0.15rem;
}

/* Nested full original write-up (optional deep-read) */
.shore-full {
  margin: 0.35rem 1.1rem 1rem;
  border-radius: 8px;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  background: #fafbfc;
  overflow: hidden;
}

.shore-full__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.7rem 0.95rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.shore-full__summary::-webkit-details-marker {
  display: none;
}

.shore-full__summary::marker {
  content: "";
}

.shore-full__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.shore-full__hint {
  font-size: 12.5px;
  color: var(--text-muted);
}

.shore-full__body {
  padding: 0 0.95rem 0.95rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.shore-full[open] .shore-full__summary {
  background: rgba(37, 99, 140, 0.04);
}

.shore-full[open] .shore-full__label::after {
  content: " ▴";
  color: var(--blue);
}

.shore-full:not([open]) .shore-full__label::after {
  content: " ▾";
  color: var(--blue);
}

.shore-program .shore-full {
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}

.btn-plan--sm {
  padding: 0.5rem 1rem;
  font-size: 12px;
}

/* Keep shore galleries in a single row (2 or 3 images) — do not force 2-col wrap */
.shore-page--scannable .shore-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

/* When only two figures, center them as a pair without stacking the third empty slot */
.shore-page--scannable .shore-gallery:has(.shore-gallery__item:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
}

@media (max-width: 900px) {
  .shore-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shore-page--scannable .shore-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .shore-page--scannable .shore-gallery:has(.shore-gallery__item:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shore-gallery__frame img {
    height: 200px;
  }

  .shore-port {
    padding: 1rem;
  }

  .shore-step {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .shore-step__time {
    display: block;
  }
}

@media (max-width: 560px) {
  .shore-gallery,
  .shore-page--scannable .shore-gallery,
  .shore-page--scannable .shore-gallery:has(.shore-gallery__item:nth-child(2):last-child) {
    grid-template-columns: 1fr;
  }
}

/* Shared professional photo framing for content graphics */
.media-frame,
.interest-card__media,
.country-intro a:has(.country-intro__map),
.page-prose img,
.country-main img:not(.country-actions__flag) {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 10px 28px rgba(22, 24, 25, 0.12);
}

/* Special interest catalog (vietnam-special-interest-tours style) */
.interest-page {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.interest-page > .interest-lead {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  text-align: center;
}

.interest-page > .interest-lead p {
  margin: 0 0 0.85rem;
}

.interest-card {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 1.75rem 2.25rem;
  align-items: stretch;
  margin: 0 0 1.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 48%);
  box-shadow: 0 2px 10px rgba(22, 24, 25, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.interest-card:hover {
  box-shadow:
    0 4px 14px rgba(22, 24, 25, 0.07),
    0 16px 36px rgba(22, 24, 25, 0.08);
  transform: translateY(-2px);
}

.interest-card:last-of-type {
  margin-bottom: 0;
}

.interest-card__media {
  display: block;
  position: relative;
  align-self: stretch;
  min-height: 220px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.interest-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.interest-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.interest-card__media:hover {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 14px 32px rgba(22, 24, 25, 0.16);
}

.interest-card__media:hover img {
  transform: scale(1.04);
}

.interest-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.interest-card__body {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  padding-top: 0.15rem;
}

.interest-card__body p {
  margin: 0 0 0.85rem;
}

.interest-card__body a {
  color: var(--link);
  word-break: break-word;
}

.interest-card__body a:hover {
  color: var(--link-hover);
}

.interest-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 4px;
  border: 1px solid rgba(237, 41, 57, 0.28);
  background: rgba(237, 41, 57, 0.06);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red) !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.interest-card__cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white) !important;
}

.interest-card {
  scroll-margin-top: 1.25rem;
}

.interest-card__tag {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.interest-card__lede {
  margin: 0 0 0.75rem;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
}

.interest-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 0.85rem;
}

.interest-card__actions .interest-card__cta {
  margin-top: 0;
}

/* Vietnam SI commercial hub */
.interest-page--vn {
  width: min(100% - 2rem, 1100px);
}

.si-featured {
  margin-bottom: 1.25rem;
}

.si-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.si-feature-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(22, 24, 25, 0.05);
  color: inherit !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.si-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(22, 24, 25, 0.1);
}

.si-feature-card__media {
  height: 110px;
  background-size: cover;
  background-position: center;
}

.si-feature-card__body {
  padding: 0.75rem 0.8rem 0.9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.si-feature-card__tag {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
}

.si-feature-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.25;
}

.si-feature-card__blurb {
  margin: 0 0 0.5rem;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-muted);
  flex: 1;
}

.si-feature-card__cta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.si-catalog-label {
  margin: 0 0 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.si-mid-cta {
  margin: 0.5rem 0 2rem;
}

@media (max-width: 900px) {
  .interest-card {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .interest-card__media {
    min-height: 0;
  }

  .interest-card__media img {
    min-height: 200px;
    height: 200px;
  }

  .si-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .si-feature-grid {
    grid-template-columns: 1fr;
  }

  .si-feature-card__media {
    height: 140px;
  }
}

/* Plan My Trip modal (global — stay on current page) */
.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.plan-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.plan-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 28, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.plan-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.22s ease;
}

.plan-modal.is-open .plan-modal__dialog {
  transform: translateY(0) scale(1);
}

.plan-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #fafbfc 0%, #f3f5f7 100%);
}

.plan-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #222;
}

.plan-modal__close {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #333;
  border-radius: 8px;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.plan-modal__close:hover,
.plan-modal__close:focus-visible {
  background: #fff5f5;
  border-color: rgba(237, 41, 57, 0.35);
  color: var(--red);
  outline: none;
}

.plan-modal__body {
  overflow-y: auto;
  padding: 1rem 1.15rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.plan-modal__lead {
  margin: 0 0 1rem;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Cart (shopping list) view */
.plan-cart__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.plan-cart__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.75rem;
  align-items: start;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fafbfc;
}

.plan-cart__meta {
  min-width: 0;
}

.plan-cart__id {
  display: inline-block;
  margin: 0 0 0.2rem;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #888;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
}

.plan-cart__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

.plan-cart__detail {
  margin: 0.2rem 0 0;
  font-size: 12.5px;
  color: var(--text-muted);
}

.plan-cart__remove {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #666;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  white-space: nowrap;
}

.plan-cart__remove:hover {
  border-color: rgba(237, 41, 57, 0.4);
  color: var(--red);
  background: #fff5f5;
}

.plan-cart__empty {
  margin: 0 0 1.25rem;
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fafafa;
}

.plan-cart__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.plan-cart__continue {
  border: 0;
  cursor: pointer;
  margin: 0;
}

button.plan-cart__message {
  appearance: none;
  cursor: pointer;
  min-width: 0;
}

.plan-cart__clear {
  appearance: none;
  border: 0;
  background: none;
  color: #888;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.35rem 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.plan-cart__clear:hover {
  color: var(--red);
}

.plan-form-view__back {
  appearance: none;
  border: 0;
  background: none;
  color: var(--blue-hover);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  padding: 0;
  margin: 0 0 0.85rem;
}

.plan-form-view__back:hover {
  color: var(--red);
}

.plan-modal .form-success {
  max-width: none;
  margin: 0 0 1rem;
}

.plan-modal .trip-form {
  max-width: none;
}

body.plan-modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .plan-modal {
    padding: 0.4rem;
    align-items: stretch;
  }

  .plan-modal__dialog {
    max-height: none;
    height: 100%;
    border-radius: 10px;
  }
}

/* Mrs. Ann’s Story */
.about-story {
  padding: 2.5rem 0 4rem;
}

.about-story .container {
  max-width: 820px;
}

.about-story__intro {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: 1.75rem 2rem;
  align-items: start;
  margin-bottom: 2.25rem;
}

.about-story__intro .about-photo {
  margin: 0;
}

.about-story__body h2 {
  margin: 2.25rem 0 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.about-story__split {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: start;
  margin: 1rem 0 1.25rem;
}

.about-story__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.25rem 0 1.5rem;
}

.about-photo {
  margin: 0;
  padding: 0.55rem 0.55rem 0.75rem;
  background: #f6f1e8;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  background: #ddd;
}

.about-photo figcaption {
  margin: 0.45rem 0.15rem 0;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.about-quote {
  margin: 1.15rem 0;
  padding: 0.15rem 0 0.15rem 1rem;
  border-left: 3px solid var(--red);
}

.about-quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text);
}

.about-quote footer {
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-size: 13px;
  font-style: normal;
}

.about-story__badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0 0.5rem;
}

.about-story__badge img {
  width: 120px;
  height: auto;
}

.about-story__badge p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}

.about-credit {
  margin: 2rem 0 0;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.pillars--about {
  margin: 2rem 0 0;
}

@media (max-width: 720px) {
  .about-story__intro,
  .about-story__split,
  .about-story__gallery {
    grid-template-columns: 1fr;
  }

  .about-story__intro .about-photo {
    max-width: 220px;
    margin: 0 auto;
  }

  .about-story__badge {
    flex-direction: column;
    text-align: center;
  }
}

/* Plan My Trip page */
.plan-page {
  padding-top: 2.25rem;
  padding-bottom: 4rem;
}

.plan-intro__cta {
  margin-top: 1.25rem;
}

.plan-intro__cta .btn-plan {
  border: 0;
  cursor: pointer;
}

.plan-intro {
  max-width: 720px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.plan-intro p {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: 1.75rem 2rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.plan-form-card,
.plan-aside__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
}

.plan-form-card {
  padding: 1.5rem 1.5rem 1.35rem;
}

.plan-form-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222;
}

.plan-form-card__lead {
  margin: 0 0 1.25rem;
  font-size: 13px;
  color: var(--text-muted);
}

.plan-aside {
  display: grid;
  gap: 1rem;
}

.plan-aside__card {
  padding: 1.25rem 1.35rem 1.35rem;
}

.plan-aside__card--contact {
  background: linear-gradient(165deg, #fff 0%, #faf7f7 100%);
  border-color: rgba(237, 41, 57, 0.15);
}

.plan-aside__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
}

.plan-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: plan-step;
  display: grid;
  gap: 0.9rem;
}

.plan-steps li {
  counter-increment: plan-step;
  position: relative;
  padding-left: 2.4rem;
  display: grid;
  gap: 0.15rem;
}

.plan-steps li::before {
  content: counter(plan-step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plan-steps strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #222;
}

.plan-steps span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
}

.plan-aside__email {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--red) !important;
}

.plan-aside__meta {
  margin: 0.65rem 0 0.85rem;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.plan-aside__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #444 !important;
}

.plan-aside__link:hover {
  color: var(--red) !important;
}

/* Plan My Trip form */
.trip-form {
  position: relative;
  max-width: none;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.trip-form label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.35rem;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  color: var(--text);
}

/* Required marker — keep on same line as the field name */
.trip-form .req {
  color: var(--red);
  font-weight: 700;
}

.trip-form input:not([type="radio"]):not([type="checkbox"]),
.trip-form select,
.trip-form textarea {
  flex: 1 1 100%;
  width: 100%;
  margin-top: 0.2rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--divider);
  border-radius: 6px;
  font: inherit;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--body);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.trip-form input:not([type="radio"]):not([type="checkbox"]):focus,
.trip-form select:focus,
.trip-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 41, 57, 0.12);
}

.trip-form textarea {
  min-height: 150px;
  resize: vertical;
}

.trip-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.trip-form__row--fieldsets {
  align-items: stretch;
}

.trip-form__row--fieldsets > .trip-form__fieldset {
  height: 100%;
  min-width: 0;
}

.trip-form__fieldset {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  border: 1px solid var(--divider);
  border-radius: 8px;
  background: #fafbfc;
}

.trip-form__fieldset legend {
  padding: 0 0.35rem;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
}

/* Radio lists: one option per row, circle tight to label */
.trip-form__radios {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.trip-form__radios--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.5rem;
}

.trip-form label.trip-form__radio {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.55rem !important;
  width: 100%;
  margin: 0;
  padding: 0.15rem 0;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  color: #333 !important;
  cursor: pointer;
  line-height: 1.3;
}

.trip-form label.trip-form__radio input[type="radio"],
.trip-form label.trip-form__radio input[type="checkbox"] {
  flex: 0 0 auto !important;
  width: 1.05rem !important;
  height: 1.05rem !important;
  min-width: 1.05rem !important;
  margin: 0 !important;
  margin-top: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  accent-color: var(--red);
  cursor: pointer;
}

.trip-form__hint {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0;
}

.trip-form__optional-tour {
  margin-top: 0.15rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.trip-form__hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.trip-form__turnstile {
  margin: 0.35rem 0 0.15rem;
  min-height: 0;
}

.trip-form__turnstile:empty {
  display: none;
}

.trip-form__error {
  margin: 0;
  padding: 0.65rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(237, 41, 57, 0.35);
  background: #fff5f5;
  color: #a11;
  font-size: 13px;
  font-weight: 500;
}

.trip-form__error[hidden] {
  display: none !important;
}

.trip-form__success {
  margin: 0;
  padding: 0.65rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(26, 107, 74, 0.35);
  background: #f3faf6;
  color: #1a6b4a;
  font-size: 13px;
  font-weight: 500;
}

.trip-form__success[hidden] {
  display: none !important;
}

.trip-form .btn-plan {
  justify-content: center;
  margin: 0.35rem 0 0;
  width: 100%;
  font-size: 13px;
  padding: 0.9rem 1rem;
  cursor: pointer;
}

.trip-form .btn-plan:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.form-success {
  display: none;
  max-width: 1080px;
  margin: 0 auto 1.25rem;
  padding: 1.1rem 1.35rem;
  border: 1px solid var(--green-soft);
  background: #f5faf0;
  color: var(--text);
  border-radius: 8px;
  text-align: left;
  line-height: 1.55;
}

.form-success.is-visible,
.form-success:not([hidden]).is-visible {
  display: block;
}

.form-success[hidden] {
  display: none !important;
}

.form-success__copy {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0.85rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  font-size: 12px;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 180px;
  overflow: auto;
}

.form-success__copy[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .plan-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .trip-form__row,
  .trip-form__row--fieldsets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .plan-form-card {
    padding: 1.2rem 1rem 1.1rem;
  }
}

/* Mobile / tablet — collapse live-style top nav */
@media (max-width: 1100px) {
  .nav > ul > li > a {
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 0 0.55rem;
  }

  .logo img {
    max-height: 52px;
  }

  .logo__mark {
    height: 40px;
    max-height: 40px !important;
  }
}

@media (max-width: 900px) {
  .hero {
    height: 100vh;
    min-height: 420px;
  }

  .hero__content {
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    width: min(100% - 2rem, 1280px);
    bottom: 4.75rem;
  }

  .hero__place,
  .hero__country,
  .hero__tagline,
  .hero__sub,
  .hero__cta {
    justify-self: center;
  }

  .hero__sub {
    max-width: 28em;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__country {
    letter-spacing: 0.1em;
  }

  .hero__badge {
    width: 96px;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    background: rgba(12, 14, 16, 0.96);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .nav > ul > li > a {
    line-height: 2.6;
    padding: 0 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    text-shadow: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    background: transparent;
  }

  /* No gradient wash in the solid mobile drawer */
  .nav > ul > li > a::before,
  .nav-search::before,
  .mega-menu::before,
  .dropdown::before {
    display: none;
  }

  .nav-search {
    margin: 0.75rem 1rem 0;
    align-self: flex-start;
    height: 40px;
    background: transparent;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #0f1011;
    display: none;
    padding-left: 0.5rem;
    left: auto;
  }

  .nav li.is-open > .dropdown {
    display: block;
  }

  .dropdown a {
    color: #ddd;
  }

  .nav > ul > li.has-mega {
    position: relative;
  }

  .mega-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: none;
    padding: 0.75rem 1rem 1rem;
    background: #1a1c1e;
    border-top: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav li.has-mega.is-open > .mega-menu {
    display: grid;
  }

  .mega-col__title {
    color: #eee !important;
  }

  .mega-col__photo img {
    height: 88px;
  }

  .mega-col__links a {
    color: #bbb;
  }

  .mega-col--list {
    grid-column: 1 / -1;
  }

  .mega-col--list .mega-col__dest {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 1rem;
  }

  .mega-col--list .mega-col__dest a {
    color: #e88;
  }

  .mega-menu--shore {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .mega-menu--shore .mega-col--list {
    grid-column: auto;
  }

  .mega-col--blurb .mega-col__text {
    max-width: none;
    color: #bbb;
    margin-bottom: 0.5rem;
  }

  .mega-col--feature .mega-col__photo--lg img {
    height: 120px;
  }

  .mega-menu--vip {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .mega-menu--vip .mega-col--blurb {
    grid-column: 1 / -1;
  }

  .dest-grid,
  .tour-grid,
  .footer-grid,
  .pillars,
  .offer-strip,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    padding: 3rem 0 1.5rem;
  }

  .footer-col--social {
    text-align: center;
  }

  .footer-col--social .footer-col__title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col--social .footer-col__text {
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
  }

  .footer-col--contact > .footer-col__text:not(.footer-col__text--region) {
    white-space: normal;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    gap: 0.45rem 0.1rem;
  }

  .footer-links a {
    padding: 0.3rem 0.55rem;
  }

  .footer-links a:not(:last-child)::after {
    margin-left: 0.45rem;
  }

  .dest-card--wide {
    grid-column: auto;
  }

  .trip-form__row {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .country-hero,
  .country-hero--boat,
  .kh-banner,
  .kh-banner--tall {
    min-height: var(--subpage-hero-h);
    height: var(--subpage-hero-h);
  }
}

/* ==========================================================================
   Executive Travel Services (VIP)
   ========================================================================== */

.vip-page {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.25rem 0 4rem;
}

.vip-lead {
  max-width: 820px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.vip-lead__kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.vip-lead__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.vip-lead__proof {
  margin: 0 0 1.35rem;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.vip-lead__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
}

.vip-lead__secondary {
  color: var(--link);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.vip-lead__secondary:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.vip-section {
  margin: 0 0 2.75rem;
}

.vip-section__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
}

.vip-section__intro {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.vip-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 10px 28px rgba(22, 24, 25, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.vip-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 16px 36px rgba(22, 24, 25, 0.14);
}

.vip-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  flex: 1;
}

.vip-card__media {
  height: 180px;
  background: #2a2d2e center / cover no-repeat;
}

.vip-card__kicker {
  margin: 1rem 1.15rem 0.35rem;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.vip-card__title {
  margin: 0 1.15rem 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.vip-card__blurb {
  margin: 0 1.15rem 1rem;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.vip-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem 1.1rem;
  border-top: 1px solid var(--divider);
  margin-top: auto;
}

.vip-card__plan {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.vip-card__plan:hover {
  filter: brightness(1.05);
}

.vip-card__more {
  color: var(--link);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.vip-card__more:hover {
  color: var(--link-hover);
}

.vip-coverage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 900px;
  margin-inline: auto;
}

.vip-coverage li {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: #f7f7f7;
  border: 1px solid var(--divider);
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.45;
  text-align: center;
}

.vip-coverage strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.vip-tiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: start;
}

.vip-tier {
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 8px 22px rgba(22, 24, 25, 0.08);
}

.vip-tier__head {
  margin-bottom: 0.75rem;
}

.vip-tier__code {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: var(--topbar);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.vip-tier__badge {
  display: inline-block;
  margin: 0 0 0.45rem 0.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: rgba(237, 41, 57, 0.1);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: top;
}

.vip-tier__title {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.vip-tier__lead {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.vip-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vip-checklist li {
  position: relative;
  margin: 0 0 0.55rem;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.vip-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 74, 110, 0.16);
}

.vip-related {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.vip-related li {
  margin: 0 0 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid var(--divider);
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
}

.vip-related a {
  color: var(--link);
  font-weight: 600;
  text-decoration: none;
}

.vip-related a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.vip-note {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 15px;
}

.vip-note a {
  color: var(--link);
  font-weight: 600;
}

.vip-gallery {
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

.vip-cta {
  margin-top: 1rem;
  padding: 1.75rem 1.25rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
  border: 1px solid var(--divider);
}

.vip-cta p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

.vip-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem !important;
}

.vip-cta__mail {
  color: var(--link);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.vip-cta__mail:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

@media (max-width: 860px) {
  .vip-grid,
  .vip-tiers {
    grid-template-columns: 1fr;
  }

  .vip-card__media {
    height: 160px;
  }
}

/* ==========================================================================
   China Amazing Tours — live-style Short Tours / Total China CTA grid
   ========================================================================== */

.cn-amazing {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.25rem 0 3.5rem;
}

.cn-amazing__lead {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cn-amazing__text {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.cn-amazing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.cn-amazing__jump {
  color: var(--link);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.cn-amazing__jump:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.cn-amazing__section {
  margin: 0 0 2.75rem;
}

.cn-amazing__heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}

.cn-amazing__note {
  margin: 0 auto 1.35rem;
  max-width: 640px;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.cn-amazing__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.cn-amazing__grid--related {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cn-cta {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 10px 28px rgba(22, 24, 25, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  min-height: 100%;
}

.cn-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 16px 36px rgba(22, 24, 25, 0.14);
}

.cn-cta__media {
  height: 170px;
  background: #2a2d2e center / cover no-repeat;
  transition: transform 0.4s ease;
}

.cn-cta:hover .cn-cta__media {
  transform: scale(1.03);
  transform-origin: center center;
}

.cn-cta__body {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.cn-cta__place {
  margin: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6ec1e4;
}

.cn-cta__dur {
  margin: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}

.cn-cta__title {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.cn-cta__sub {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.45;
}

@media (max-width: 1000px) {
  .cn-amazing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .cn-amazing__grid,
  .cn-amazing__grid--related {
    grid-template-columns: 1fr;
  }

  .cn-cta__media {
    height: 190px;
  }
}
