:root {
  --page: #eef4f2;
  --page-dark: #e4ece9;
  --white: #fdfefe;
  --surface: #ffffff;
  --ink: #1a2e32;
  --ink-soft: #3d4f52;
  --muted: #5f6e70;
  --muted-2: #7a8789;
  --brand: #1a4d4a;
  --brand-hover: #153f3c;
  --brand-chrome: #0f2d3a;
  --brand-light: #e6f3f2;
  --accent: #2a6f78;
  --accent-warm: #3a7d85;
  --accent-soft: rgba(26, 77, 74, 0.12);
  --accent-warm-soft: rgba(42, 111, 120, 0.14);
  --ocean: #1e6b8c;
  --ocean-light: #e3f2f9;
  --forest-light: #e4f0ef;
  --deep: #0f2d38;
  --sky: #4a9fd4;
  --sky-light: #e8f4fc;
  --sunset: #c45c3e;
  --sunset-light: #fceee9;
  --gold: #b8860b;
  --brand-gradient: linear-gradient(135deg, #1e6b8c 0%, #1a4d4a 55%, #2a8a72 100%);
  --line: rgba(26, 46, 50, 0.1);
  --line-strong: rgba(26, 46, 50, 0.16);
  --shadow: 0 8px 28px rgba(20, 35, 45, 0.08);
  --shadow-lg: 0 28px 56px rgba(20, 35, 45, 0.12);
  --radius: 14px;
  --radius-lg: 20px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Inter", system-ui, sans-serif;
  --header-h: 64px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 4rem;
  --space-section: var(--space-8);
  --space-section-tight: 2.25rem;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  /* Fixed .top header: keep hash / scroll targets below the nav */
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--page);
  background-image:
    radial-gradient(1100px 520px at 0% -8%, rgba(30, 107, 140, 0.1), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(26, 77, 74, 0.08), transparent 52%),
    radial-gradient(700px 400px at 85% 100%, rgba(196, 92, 62, 0.05), transparent 50%);
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 200;
  width: auto;
  height: auto;
  padding: 0.55rem 1rem;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* --- Header --- */
.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(20, 42, 46, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.top.is-scrolled {
  background: rgba(20, 42, 46, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.top-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 721px) {
  .top-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
  }

  .logo {
    grid-column: 1;
    justify-self: start;
  }

  .nav {
    grid-column: 2;
    justify-self: center;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .top-contact {
    grid-column: 3;
    justify-self: end;
  }
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.logo:hover {
  color: rgba(255, 255, 255, 0.82);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(26, 77, 74, 0.35);
}

.nav-cta:hover {
  filter: brightness(1.08);
}

.top-contact {
  display: flex;
  align-items: center;
}

.top-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: #a9d8ff;
  text-decoration: none;
  white-space: nowrap;
}

.top-phone:hover {
  text-decoration: underline;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin: -6px -10px -6px 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(169, 216, 255, 0.95);
  outline-offset: 2px;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  pointer-events: none;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s var(--ease);
}

.top.nav-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.top.nav-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.top.nav-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .top.nav-open .nav-toggle-bars span,
  .nav-toggle-bars span {
    transition: none;
  }
}

@media (max-width: 900px) {
  .top-contact {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    max-height: min(72vh, 28rem);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 1.5rem 1.1rem;
    margin: 0;
    background: rgba(12, 36, 58, 0.98);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 40px rgba(8, 20, 36, 0.45);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
      opacity 0.22s var(--ease),
      transform 0.22s var(--ease),
      visibility 0.22s;
  }

  .top.nav-open .nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 0.72rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    margin-top: 0.45rem;
    padding: 0.55rem 1rem;
    text-align: center;
    border-radius: 999px;
    border-bottom: 0;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .nav {
    transition: none;
  }
}

/* --- Main --- */
body.nav-menu-open {
  overflow: hidden;
}

main {
  padding-top: var(--header-h);
}

/* Hero-first pages: image meets the header  -  no orphan strip above the banner */
main:has(> .hero-immersive:first-child),
body.travel-tip-page > main,
body.guide-article-page > main,
body.travel-tips-hub-page > main {
  padding-top: 0;
}

/* --- Hero immersive --- */
.hero-immersive {
  position: relative;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: flex-end;
  padding: 4rem 1.5rem 3.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .hero-bg-photo,
.hero-bg .ambient-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .hero-bg-photo {
  object-position: center 35%;
  z-index: 0;
}

.hero-bg .ambient-video {
  object-position: center;
  z-index: 1;
}

/* Licensed ambient clips: poster/photo underneath; fade video in once frames advance. */
.ambient-video {
  opacity: 0;
  transition: opacity 1.35s var(--ease);
  pointer-events: none;
}

.ambient-video.ambient-video--ready,
.ambient-video.ambient-video--playing {
  opacity: 1;
}

.ambient-video.ambient-video--error,
.ambient-video.ambient-video--disabled {
  opacity: 0 !important;
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .ambient-video {
    transition: none;
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 45, 56, 0.92) 0%,
    rgba(20, 55, 62, 0.55) 45%,
    rgba(30, 107, 140, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero-content-panel {
  max-width: 760px;
  padding: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  box-shadow: none;
  text-shadow: 0 1px 18px rgba(6, 20, 35, 0.55);
}

.hero-immersive--compact {
  min-height: min(68vh, 720px);
  align-items: center;
  padding-top: 7.5rem;
  padding-bottom: 3rem;
}

.hero-immersive--compact .hero-bg .hero-bg-photo {
  object-position: center 40%;
}

.hero-immersive--compact .hero-title {
  max-width: 16ch;
  font-size: clamp(2.35rem, 5vw, 3.4rem);
}

.hero-immersive--compact .hero-sub {
  max-width: 54ch;
}

.hero-immersive--compact .page-breadcrumb--hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  max-width: none;
  margin: 0;
  padding: calc(var(--header-h) + 0.5rem) 1.5rem 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero-immersive--compact .page-breadcrumb--hero a {
  color: #a9d8ff;
}

.hero-immersive--compact .page-breadcrumb--hero a:hover {
  color: #fff;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 14ch;
}

.hero-title span {
  font-style: normal;
  font-weight: 600;
  color: rgba(232, 245, 242, 0.98);
}

.hero-sub {
  margin: 0 0 2rem;
  max-width: 42ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.hero-search {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 820px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 36, 56, 0.12);
  overflow: visible;
}

.hero-search input,
.hero-search select {
  width: 100%;
  border: none;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  background: transparent;
  outline: none;
  color: var(--ink);
}

.hero-search input::placeholder {
  color: var(--muted-2);
}

.hero-search select {
  cursor: pointer;
}

.btn-search {
  min-height: 2.55rem;
  padding: 0.8rem 1.35rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 600;
  background: var(--brand-gradient);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(26, 77, 74, 0.28);
  transition:
    filter 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-search:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(26, 77, 74, 0.34);
}

.btn-search--ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(15, 74, 122, 0.35);
}

.btn-search--ghost:hover {
  background: rgba(15, 74, 122, 0.06);
  filter: none;
}

.hero-plan-result {
  margin-top: 0.85rem;
  max-width: 820px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 36, 56, 0.14);
  box-shadow: var(--shadow);
}

.hero-plan-result[hidden] {
  display: none !important;
}

.hero-plan-summary {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-plan-hint {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-immersive#top .hero-plan-summary,
.hero-immersive#top .hero-plan-hint {
  color: var(--ink);
}

.dest-card.dest-card--hero-match {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

.mode-card.mode-card--hero-match {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

.planner-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 760px) {
  .planner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.planner-grid--lean {
  gap: 0.6rem;
}

@media (min-width: 760px) {
  .planner-grid--lean {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}

.planner-field--wide {
  flex: 1;
}

.planner-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(15, 36, 56, 0.13);
  border-radius: 10px;
  background: #fff;
  overflow: visible;
}

.place-combobox {
  position: relative;
}

.place-suggestions {
  position: absolute;
  z-index: 200;
  top: calc(100% + 0.2rem);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.3rem 0;
  list-style: none;
  max-height: 13.5rem;
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(15, 36, 56, 0.14);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.place-suggestions[hidden] {
  display: none !important;
}

.place-suggestion {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.48rem 0.62rem;
  border: none;
  background: transparent;
  text-align: left;
  font-family: var(--font-ui);
  cursor: pointer;
  color: var(--ink);
}

.place-suggestion strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

.place-suggestion span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted-2);
}

.place-suggestion:hover,
.place-suggestion.is-active {
  background: rgba(15, 74, 122, 0.07);
}

.place-combobox--hero .place-suggestions {
  left: -0.55rem;
  right: -0.55rem;
  width: calc(100% + 1.1rem);
  max-height: min(52vh, 22rem);
  z-index: 300;
}

.place-combobox--form .place-suggestions {
  top: calc(100% + 0.35rem);
}

.planner-field > label,
.planner-field > span:first-child {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted-2);
}

.planner-field > label {
  display: block;
  cursor: default;
}

.hero-alt {
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-alt a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-alt-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hero-alt-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.hero-metrics {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-metric {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
}

/* Home hero (video): narrower, slightly smaller type + planner so copy reads on busy footage */
.hero-immersive#top {
  min-height: min(82vh, 820px);
  padding: 3rem 1.5rem 2.75rem;
  overflow: visible;
}

.hero-immersive#top .hero-bg {
  overflow: hidden;
}

.hero-immersive#top .hero-content-panel {
  max-width: 600px;
}

.hero-immersive#top .hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
}

.hero-immersive#top .hero-title {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 4.6vw + 0.35rem, 3.35rem);
  max-width: 18ch;
  line-height: 1.08;
}

.hero-immersive#top .hero-sub {
  margin: 0 0 1.2rem;
  max-width: 36ch;
  font-size: 0.96rem;
  line-height: 1.52;
}

.hero-immersive#top .hero-content,
.hero-immersive#top .hero-search,
.hero-immersive#top .planner-grid,
.hero-immersive#top .planner-field,
.hero-immersive#top .place-combobox {
  overflow: visible;
}

.hero-immersive#top .hero-search {
  max-width: 560px;
  padding: 0.65rem 0.72rem;
  gap: 0.55rem;
  border-radius: 14px;
  overflow: visible;
  position: relative;
  z-index: 5;
}

.hero-immersive#top .hero-search input,
.hero-immersive#top .hero-search select {
  padding: 0.5rem 0.62rem;
  font-size: 0.875rem;
}

.hero-immersive#top .planner-grid--lean {
  gap: 0.48rem;
}

.hero-immersive#top .planner-field {
  gap: 0.22rem;
  padding: 0.38rem 0.48rem;
  border-radius: 9px;
}

.hero-immersive#top .planner-field > label,
.hero-immersive#top .planner-field > span:first-child {
  font-size: 0.65rem;
  letter-spacing: 0.07em;
}

.hero-immersive#top .btn-search {
  padding: 0.6rem 1.12rem;
  font-size: 0.865rem;
  border-radius: 9px;
}

.hero-immersive#top .hero-alt {
  margin: 0.82rem 0 0;
  font-size: 0.835rem;
  gap: 0.55rem;
}

.hero-immersive#top .hero-metrics {
  margin-top: 0.72rem;
  gap: 0.48rem;
}

.hero-immersive#top .hero-metric {
  padding: 0.34rem 0.62rem;
  font-size: 0.755rem;
}

@media (max-width: 759px) {
  .hero-immersive#top {
    padding: 2.5rem 1.15rem 2.35rem;
  }

  .hero-immersive#top .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.65rem);
  }

  .hero-immersive#top .hero-sub {
    font-size: 0.925rem;
  }
}

.story-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.story-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.story-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.story-card-copy {
  padding: 1rem 1.1rem 1.2rem;
}

.story-card-copy h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.story-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.sailing-tabs {
  max-width: var(--max);
  margin: 0 auto 1.15rem;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sailing-tab {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink-soft);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

.sailing-tab:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.sailing-tab.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

@media (max-width: 760px) {
  .sailing-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: sticky;
    top: calc(var(--header-h) + 0.45rem);
    z-index: 30;
    padding-top: 0.25rem;
    padding-bottom: 0.35rem;
    background: linear-gradient(
      to bottom,
      rgba(243, 246, 251, 0.98),
      rgba(243, 246, 251, 0.9)
    );
  }

  .sailing-tabs::-webkit-scrollbar {
    display: none;
  }
}

.cruise-marketing-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.cruise-marketing-more-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

/* --- Featured experience spotlight --- */
.experience-spotlight {
  background: var(--page-dark);
  border-bottom: 1px solid var(--line);
}

.experience-spotlight-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem 1.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .experience-spotlight-inner {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    padding: 3.25rem 1.5rem;
  }
}

.experience-spotlight-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.experience-spotlight-visual .spotlight-photo,
.experience-spotlight-visual .ambient-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.experience-spotlight-visual .spotlight-photo {
  position: relative;
  z-index: 0;
}

.experience-spotlight-visual .ambient-video {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 1;
}

.spotlight-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.spotlight-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.spotlight-lede {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.spotlight-note {
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
  color: var(--muted-2);
  line-height: 1.5;
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn--primary,
.btn.primary,
.btn-spotlight-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--brand-gradient);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(26, 77, 74, 0.22);
  cursor: pointer;
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.btn--primary:hover,
.btn.primary:hover:not(:disabled),
.btn-spotlight-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 20px rgba(26, 77, 74, 0.3);
  transform: translateY(-1px);
  color: #fff;
}

.btn-spotlight-primary.is-disabled,
.btn--primary.is-disabled {
  background: #8ea3b7;
  border-color: #8ea3b7;
  cursor: not-allowed;
  pointer-events: auto;
}

.btn--secondary,
.btn.secondary,
.btn-spotlight-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--white);
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn--secondary:hover,
.btn.secondary:hover:not(:disabled),
.btn-spotlight-secondary:hover {
  background: var(--page);
  color: var(--ink);
}

/* --- Trust strip --- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-icon {
  flex-shrink: 0;
  color: var(--brand);
  opacity: 0.9;
}

.trust-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* --- Featured film strip (poster + optional MP4 loop + optional hosted iframe) --- */
.film-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.film-strip-inner--wide {
  max-width: min(1320px, 100%);
}

.film-pair {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .film-pair {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.film-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.film-card-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b1620;
}

.film-card-poster {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.55s var(--ease);
}

.film-card-visual .ambient-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-card-embed {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.55s var(--ease);
  pointer-events: none;
}

.film-card--embed-ready .film-card-embed {
  opacity: 1;
  pointer-events: auto;
}

.film-card--embed-ready .film-card-poster {
  opacity: 0;
}

.film-card--embed-ready .film-card-visual .ambient-video {
  opacity: 0 !important;
  visibility: hidden;
}

.film-embed-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.film-card-copy {
  padding: 1.15rem 1.35rem 1.45rem;
}

.film-card-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.film-card-dek {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.film-card-detail {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.film-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.film-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  transition:
    filter 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.film-card-btn:hover {
  filter: brightness(1.05);
  color: #fff;
}

.film-card-btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: rgba(15, 74, 122, 0.35);
}

.film-card-btn--ghost:hover {
  background: rgba(15, 74, 122, 0.06);
  filter: none;
  color: var(--brand-hover);
}

.film-strip-footer {
  max-width: 52ch;
  margin: 2.25rem auto 0;
  text-align: center;
  padding: 0 0.5rem;
}

.film-strip-footer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.film-strip-footer a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.film-strip-footer a:hover {
  color: var(--brand-hover);
}

/* --- Sections --- */
.section-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-section) 1.5rem;
}

/* Cruise offerings page: step nav + shortlist summary */
.cruise-flow-nav {
  position: sticky;
  top: 3.75rem;
  z-index: 40;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.5rem 1rem;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.98) 70%,
    rgba(248, 250, 252, 0)
  );
}

.cruise-flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cruise-flow-steps li {
  display: inline-flex;
}

.cruise-flow-step-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  font-family: inherit;
  cursor: pointer;
  transition:
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.cruise-flow-step-btn:hover {
  border-color: rgba(15, 74, 122, 0.28);
  color: var(--ink);
}

.cruise-flow-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(15, 74, 122, 0.1);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
}

.cruise-flow-steps li.is-current .cruise-flow-step-btn {
  border-color: rgba(15, 74, 122, 0.35);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(15, 74, 122, 0.12);
}

.cruise-flow-steps li.is-current .cruise-flow-step-num {
  background: var(--brand);
  color: #fff;
}

.cruise-flow-steps li.is-done .cruise-flow-step-btn {
  color: var(--ink-soft);
}

.cruise-flow-steps li.is-done .cruise-flow-step-num {
  background: rgba(15, 74, 122, 0.18);
}

.cruise-prefill-banner {
  max-width: var(--max);
  margin: 0 auto 0.5rem;
  padding: 0 1.5rem;
}

.cruise-prefill-banner p {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 74, 122, 0.2);
  background: rgba(15, 74, 122, 0.07);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.cruise-step-hint {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.cruise-line-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
}

.cruise-line-filter {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.cruise-line-filter.is-active {
  border-color: rgba(15, 74, 122, 0.35);
  background: rgba(15, 74, 122, 0.1);
  color: var(--brand);
}

.cruise-line-picked {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 74, 122, 0.22);
  background: rgba(255, 255, 255, 0.9);
}

.cruise-line-picked-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.cruise-line-picked strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.cruise-line-picked-change {
  margin-left: auto;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#line-compare.is-cruise-step-active,
#route-library.is-cruise-step-active {
  scroll-margin-top: 7rem;
}

#route-library.is-cruise-step-active {
  box-shadow: inset 0 3px 0 var(--brand);
}

.cruise-what-next-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  max-width: 40rem;
}

.cruise-what-next-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.cruise-what-next-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--brand);
}

#line-compare.section-block {
  padding-top: var(--space-section-tight);
}

body.has-cruise-shortlist-dock {
  padding-bottom: 5.75rem;
}

.cruise-shortlist-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  border-top: 1px solid rgba(15, 36, 56, 0.12);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -8px 28px rgba(10, 22, 34, 0.1);
}

.cruise-shortlist-dock[hidden] {
  display: none;
}

.cruise-shortlist-dock-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}

.cruise-shortlist-dock-copy {
  flex: 1 1 12rem;
  min-width: 0;
}

.cruise-shortlist-dock-status {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.cruise-shortlist-dock-hint {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}

.cruise-shortlist-dock-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 0.75rem;
}

.cruise-shortlist-dock-edit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
}

.cruise-shortlist-dock-link {
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cruise-shortlist-dock-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.cruise-shortlist-dock.is-ready {
  border-top-color: rgba(15, 74, 122, 0.28);
  background: rgba(255, 255, 255, 0.99);
}

.cruise-shortlist-dock.is-ready .cruise-shortlist-dock-status {
  font-size: 1rem;
}

.cruise-shortlist-dock.is-attention {
  animation: cruise-dock-pulse 1.2s var(--ease) 1;
}

@keyframes cruise-dock-pulse {
  0%,
  100% {
    box-shadow: 0 -8px 28px rgba(10, 22, 34, 0.1);
  }
  40% {
    box-shadow: 0 -10px 32px rgba(15, 74, 122, 0.22);
  }
}

.cruise-shortlist-dock-cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .cruise-flow-nav {
    top: 3.25rem;
  }

  .cruise-shortlist-dock-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cruise-shortlist-dock-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cruise-shortlist-dock-edit {
    justify-content: center;
  }

  .cruise-shortlist-dock-cta {
    width: 100%;
    text-align: center;
  }
}

.section-block--tint {
  background: var(--page-dark);
  max-width: none;
  padding-left: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
}

.section-block--tint .section-head,
.section-block--tint .dest-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section-head.center .section-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .section-lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title--left {
  text-align: left;
}

.section-lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* --- Travel modes --- */
.travel-modes {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 700px) {
  .travel-modes {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Home "Choose your travel style" uses two intentional columns */
@media (min-width: 900px) {
  .travel-modes--duo {
    grid-template-columns: repeat(2, minmax(320px, 430px));
    justify-content: center;
    gap: 1.4rem;
  }

  .travel-modes--duo .mode-card-link {
    border-radius: calc(var(--radius-lg) + 2px);
  }

  .travel-modes--duo .mode-card-img {
    aspect-ratio: 16 / 9;
  }

  .travel-modes--duo .mode-card-text {
    padding: 1.45rem 1.5rem 1.55rem;
  }
}

@media (min-width: 1200px) {
  .travel-modes {
    grid-template-columns: repeat(4, 1fr);
  }

  .travel-modes--duo {
    grid-template-columns: repeat(2, minmax(360px, 460px));
  }
}

.mode-card {
  margin: 0;
}

.mode-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.mode-card-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mode-card-link--static {
  cursor: default;
}

.mode-card-link--static:hover {
  transform: none;
  box-shadow: var(--shadow);
}

.mode-card-link--static .mode-card-cta {
  color: var(--muted);
  font-weight: 500;
}

.mode-card-link.is-selected {
  border-color: var(--brand);
  box-shadow:
    0 0 0 2px rgba(15, 74, 122, 0.24),
    var(--shadow-lg);
}

.mode-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.mode-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.mode-card-link:hover .mode-card-img img {
  transform: scale(1.04);
}

.mode-card-text {
  padding: 1.35rem 1.4rem 1.5rem;
}

.mode-card-text h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
}

.mode-card-text p {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
}

.mode-card-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
}

.mode-card-link:hover .mode-card-cta {
  color: var(--brand-hover);
}

/* --- Destination grid --- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1000px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dest-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow);
}

.dest-card-media {
  position: absolute;
  inset: 0;
}

.dest-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.dest-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 27, 25, 0.82) 0%,
    transparent 58%
  );
  pointer-events: none;
}

.dest-card:hover .dest-card-media img {
  transform: scale(1.06);
}

.dest-card-bottom {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.dest-card-label {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.dest-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.dest-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.dest-card-btn:hover {
  background: #fff;
  color: var(--brand-hover);
}

.dest-card-btn--ghost {
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.dest-card-btn--ghost:hover {
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

/* --- Marketing-only cruise cards (cruises.json) --- */
.cruise-marketing-error {
  text-align: center;
  font-size: 0.9rem;
  color: #8a3030;
  max-width: 40ch;
  margin: 2rem auto 0;
}

.cruise-marketing-error code {
  font-size: 0.85em;
}

.cruise-marketing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cruise-marketing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .cruise-marketing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cruise-marketing-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.cruise-marketing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cruise-marketing-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.cruise-marketing-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.cruise-marketing-card:hover .cruise-marketing-card-media img {
  transform: scale(1.03);
}

.cruise-marketing-card-body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cruise-marketing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cruise-marketing-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 0.75rem;
  color: var(--line-strong);
  font-weight: 400;
}

.cruise-marketing-card-body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.cruise-marketing-card-body > p {
  margin: 0 0 0.85rem;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.cruise-marketing-bullets {
  margin: 0 0 1.1rem;
  padding: 0 0 0 1.1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.cruise-marketing-bullets li {
  margin-bottom: 0.35rem;
}

.cruise-marketing-ctas {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}

.cruise-marketing-card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cruise-marketing-card-cta:hover {
  color: var(--brand-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cruise-marketing-card-cta--secondary {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.cruise-marketing-card-cta--secondary:hover {
  color: var(--ink);
}

/* --- About --- */
.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.about-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.about-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.about-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.about-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.about-figure figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

/* --- Reviews / testimonials --- */
.reviews-intro {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted-2);
  line-height: 1.55;
  max-width: 52rem;
}

.reviews-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  margin: 0;
  padding: 1.25rem 1.2rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.section-block--tint .review-card {
  background: rgba(255, 255, 255, 0.92);
}

.review-card-stars {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: #c48a1a;
  line-height: 1;
}

.review-card-quote {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.58;
  color: var(--ink-soft);
}

.review-card blockquote.review-card-quote {
  padding: 0;
  border: 0;
}

.review-card-quote::before {
  content: "\201C";
}

.review-card-quote::after {
  content: "\201D";
}

.review-card-meta {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.review-card-trip {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.reviews-strip {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.reviews-strip .reviews-grid {
  margin-top: 1rem;
}

.reviews-strip .review-card {
  padding: 1rem 1rem 0.95rem;
}

.reviews-strip .review-card-quote {
  font-size: 0.93rem;
  margin-bottom: 0.85rem;
}

/* --- Contact --- */
#contact {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.contact-section {
  margin: 0;
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: minmax(300px, 38%) 1fr;
    min-height: 620px;
  }
}

.contact-aside {
  position: relative;
  min-height: 260px;
}

@media (min-width: 960px) {
  .contact-aside {
    min-height: auto;
  }
}

.contact-aside-bg {
  position: absolute;
  inset: 0;
}

.contact-aside-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-aside-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(28, 27, 25, 0.15) 0%,
    rgba(28, 27, 25, 0.82) 100%
  );
}

.contact-aside-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.contact-aside-inner h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.1rem);
  font-weight: 600;
}

.contact-aside-inner > p {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  opacity: 0.92;
  max-width: 30ch;
  line-height: 1.55;
}

.contact-trust {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  opacity: 0.9;
}

.contact-form-wrap {
  padding: 2rem 1.75rem 2.5rem;
  background: var(--white);
}

@media (min-width: 640px) {
  .contact-form-wrap {
    padding: 2.25rem 2.25rem 2.75rem;
  }
}

/* Form - light (single-screen lean form) */
.trip-form--lean {
  display: flex;
  flex-direction: column;
}

.form-prefill-banner {
  margin: 0 0 1.1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(26, 77, 74, 0.07);
  border: 1px solid rgba(26, 77, 74, 0.2);
  color: var(--brand);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-prefill-banner-type {
  display: inline-block;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  background: rgba(26, 77, 74, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
}

.is-prefilled {
  animation: prefillFlash 1.2s ease;
}

@keyframes prefillFlash {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 77, 74, 0.4);
    background: rgba(26, 77, 74, 0.12);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(26, 77, 74, 0);
    background: transparent;
  }
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field--mt {
  margin-top: 1rem;
}

.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.label-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted-2);
  font-size: 0.85rem;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--ink);
  background: var(--page);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(26, 77, 74, 0.45);
  box-shadow: 0 0 0 3px rgba(26, 77, 74, 0.1);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(180, 60, 60, 0.45);
}

.field-error {
  font-size: 0.8rem;
  color: #b03030;
  display: none;
}

.field.has-error .field-error {
  display: block;
}

.checkbox-field.has-error label {
  color: #8a3030;
}

#trip-type-field.has-error .chip-group {
  outline: 1px solid rgba(180, 60, 60, 0.35);
  border-radius: 14px;
  padding: 0.5rem;
}

#trip-type-label,
.trip-pace-label,
.chip-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  cursor: pointer;
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip span {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
  background: var(--white);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.chip input:focus-visible + span {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.chip input:checked + span {
  color: var(--brand);
  border-color: rgba(26, 77, 74, 0.45);
  background: rgba(26, 77, 74, 0.08);
}

.checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}

.checkbox-field input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
  accent-color: var(--brand);
  cursor: pointer;
}

.checkbox-field label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.45;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--ghost,
.btn.ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
}

.btn--ghost:hover:not(:disabled),
.btn.ghost:hover:not(:disabled) {
  background: var(--page);
  color: var(--ink);
}

/* [hidden] must win over .btn { display: inline-flex } or both nav buttons show */
.trip-form button[hidden] {
  display: none !important;
}

/* Ensure hidden fields never occupy layout space */
.trip-form [hidden] {
  display: none !important;
}

.form-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.form-nav-right {
  margin-left: auto;
  display: flex;
  gap: 0.75rem;
}

.form-nav--single {
  justify-content: flex-start;
  align-items: center;
}

.form-nav-meta {
  font-size: 0.82rem;
  color: var(--muted-2);
}

/* "More details" disclosure */
.form-details {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--page);
  overflow: hidden;
}

.form-details > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  align-items: baseline;
  justify-content: space-between;
  transition: background 0.18s ease;
}

.form-details > summary::-webkit-details-marker {
  display: none;
}

.form-details > summary::after {
  content: "+";
  margin-left: auto;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
  transition: transform 0.2s ease;
}

.form-details[open] > summary::after {
  content: "−";
}

.form-details:hover > summary {
  background: rgba(26, 77, 74, 0.04);
}

.form-details-label {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-details-hint {
  font-size: 0.85rem;
  color: var(--muted-2);
}

.form-details-body {
  padding: 0 1rem 1.1rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.form-details-body .field:first-child {
  margin-top: 1rem;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  display: none;
}

.form-message.is-success {
  display: block;
  background: rgba(26, 77, 74, 0.1);
  border: 1px solid rgba(26, 77, 74, 0.25);
  color: var(--brand);
}

.form-message.is-error {
  display: block;
  background: rgba(180, 60, 60, 0.08);
  border: 1px solid rgba(180, 60, 60, 0.25);
  color: #8a3030;
}

.form-footnote {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--muted-2);
}

.inline-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.contact-aside .inline-link {
  color: #b8e8e4;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--muted);
}

.page-breadcrumb a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.page-breadcrumb span[aria-hidden="true"] {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* Breadcrumb overlaid on hero (guides)  -  not a separate bar under the header */
.page-breadcrumb--hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  max-width: none;
  margin: 0;
  padding: calc(var(--header-h) + 0.5rem) 1.5rem 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-breadcrumb--hero a {
  color: #a9d8ff;
}

.page-breadcrumb--hero a:hover {
  color: #fff;
}

/* Guide pages: hero renders inside mount  -  no gap under the site header */
main.guide-article-page,
main.travel-tip-page,
body.travel-tip-page > main,
body.guide-article-page > main {
  padding-top: 0;
}

/* Orphan breadcrumb before JS-injected hero: hide until relocated onto the banner */
main.guide-article-page > .page-breadcrumb:first-child,
main.travel-tip-page > .page-breadcrumb:first-child,
body.travel-tip-page > main > .page-breadcrumb:first-child,
body.guide-article-page > main > .page-breadcrumb:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Travel tips hub + destination guides */
.travel-tips-hub-lead {
  max-width: 52ch;
  margin: 0 auto 2rem;
  text-align: center;
}

.travel-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.35rem;
}

.travel-tips-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.travel-tips-card:hover {
  border-color: rgba(15, 74, 122, 0.35);
  box-shadow: 0 12px 32px rgba(15, 45, 70, 0.1);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .travel-tips-card:hover,
  .guide-article-card:hover,
  .guide-feature-card:hover,
  .mode-card-link:hover {
    transform: none;
  }
}

.travel-tips-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.travel-tips-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.travel-tips-card-body {
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.travel-tips-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.travel-tips-card-dek {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.travel-tips-card-cta {
  margin-top: auto;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
}

.travel-tip-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.travel-tip-main,
.guide-article-main {
  max-width: 720px;
}

.guide-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  padding: 0;
}

.guide-toc-link {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 77, 74, 0.16);
  background: var(--white);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.guide-toc-link:hover,
.guide-toc-link:focus-visible {
  background: var(--forest-light);
  border-color: rgba(26, 77, 74, 0.28);
}

.travel-tip-body {
  position: relative;
  z-index: 1;
  background: var(--page);
}

.travel-tip-nav {
  display: none;
}

.travel-tip-jump {
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  line-height: 1.35;
}

.travel-tip-jump:hover,
.travel-tip-jump:focus-visible {
  color: var(--brand);
  border-bottom-color: rgba(15, 74, 122, 0.25);
}

.travel-tip-lead {
  max-width: 58ch;
  margin-bottom: 2rem;
}

.travel-tip-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.travel-tip-section:last-of-type {
  border-bottom: none;
}

.travel-tip-section-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
}

.travel-tip-section p {
  margin: 0 0 0.85rem;
  line-height: 1.65;
  color: var(--ink);
}

.travel-tip-section ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  line-height: 1.6;
}

.travel-tip-highlights {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-top: 0.5rem;
}

.page-cta.section-block {
  padding-top: var(--space-6);
  padding-bottom: var(--space-section);
}

.page-cta-inner,
.travel-tip-cta,
.page-cta:not(.section-block) {
  margin-top: 0;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(26, 77, 74, 0.06) 0%,
    rgba(42, 111, 120, 0.06) 100%
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.travel-tip-cta {
  margin-top: 2.5rem;
}

.page-cta-title,
.travel-tip-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.5rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.page-cta-lead,
.travel-tip-cta-lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.6;
}

.page-cta-actions,
.travel-tip-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}

/* Sticky in-page nav (cruise / long hubs) */
.page-subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(243, 246, 251, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page-subnav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.page-subnav a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.page-subnav a:hover {
  color: var(--brand);
  background: var(--accent-soft);
}

.page-subnav a.is-active {
  color: var(--brand);
  background: var(--accent-soft);
  border-color: rgba(15, 74, 122, 0.2);
  font-weight: 700;
}

@media (max-width: 720px) {
  .page-subnav-inner {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .page-subnav-inner::-webkit-scrollbar {
    display: none;
  }

  .page-subnav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

.travel-tip-error {
  max-width: var(--max);
  margin: 2rem auto;
  padding: 0 1.5rem;
  text-align: center;
  color: var(--muted);
}

.travel-tip-error a {
  color: var(--brand);
  font-weight: 600;
}

.guide-articles-block {
  margin-top: 0;
  padding: 2.5rem max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem)) 3rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--page) 0%, var(--forest-light) 100%);
}

.guide-articles-block .guides-feature-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.guide-articles-block .section-eyebrow,
.guide-articles-block .guide-articles-heading,
.guide-articles-block .guide-articles-lead {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

body.travel-tip-page .guide-articles-block {
  max-width: none;
}

body.travel-tips-hub-page .travel-tips-grid.guides-feature-grid {
  max-width: var(--max);
  margin: 0 auto;
}

.guide-articles-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.guide-articles-lead {
  margin-bottom: 1.5rem;
}

.guide-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.guide-articles-grid:not(.is-expanded) .guide-article-card--hidden,
.guide-articles-grid:not(.is-expanded) .guide-article-card.guide-article-card--hidden {
  display: none;
}

.guide-articles-toggle {
  margin-top: 1.25rem;
}

.guide-article-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.guide-article-card:hover,
.guide-article-card:focus-visible {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.guide-article-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.guide-article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-article-card-body {
  padding: 1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.guide-article-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.25;
}

.guide-article-card-dek {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
  flex: 1;
}

.guide-article-card-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
}

.guide-article-main {
  max-width: 720px;
  margin: 0 auto;
}

.guide-article-body .travel-tip-section {
  max-width: none;
}

@media (max-width: 900px) {
  .travel-tip-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .travel-tip-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: 0 0 1.25rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0.5rem;
  }

  .travel-tip-jump {
    padding: 0.25rem 0;
  }
}

.private-tours-page-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Private land tours (country hero + text rows) */
.land-tours-intro {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.5rem 1.75rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--page);
}

.land-tours-intro .section-title {
  margin-bottom: 1rem;
}

.land-tours-intro-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.land-tours-intro-bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.land-tours-intro-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.land-tours-intro-compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  max-width: 52rem;
  margin: 0 auto 1.75rem;
  padding: 0;
  list-style: none;
}

.land-tours-intro-compact li {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
}

#private-tour-ideas.section-block--tint {
  padding-top: var(--space-section-tight);
}

.private-tours-controls {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.private-tours-search-hint {
  margin: 0.65rem 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.private-tours-search-hint kbd {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: var(--page-dark);
  border: 1px solid var(--line);
}

.private-tours-empty {
  text-align: center;
  max-width: 28rem;
  margin: 2rem auto;
  padding: 1.25rem 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md, 10px);
  background: var(--page-dark);
}

.private-tours-preset-banner {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md, 10px);
}

.private-tours-preset-banner a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.private-tours-preset-banner a:hover {
  text-decoration: underline;
}

.ncl-route-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .ncl-route-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .ncl-route-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ncl-route-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.ncl-route-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.ncl-route-card.is-selected {
  border-color: var(--brand);
  box-shadow:
    0 0 0 2px rgba(15, 74, 122, 0.24),
    var(--shadow-lg);
}

.ncl-route-card.is-selected .ncl-route-card-cta {
  color: var(--brand-hover);
}

.mode-card-link.is-selected .mode-card-select {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.ncl-route-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
  background: var(--ink);
}

.ncl-route-card-body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ncl-route-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.ncl-route-card-body p {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.ncl-route-card-cta {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
}

.private-tours-filter {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md, 10px);
  border: 1px solid var(--line);
  font-family: var(--font-ui);
  font-size: 1rem;
  background: var(--white);
}

.private-tours-mount {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.private-tours-country {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.private-tours-country-head {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(
    180deg,
    rgba(15, 74, 122, 0.05),
    rgba(255, 255, 255, 0)
  );
}

@media (max-width: 720px) {
  .private-tours-country-head {
    grid-template-columns: 1fr;
  }
}

.private-tours-country-visual {
  margin: 0;
  min-height: 200px;
  background: var(--page-dark);
}

.private-tours-country-visual img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.private-tours-country-copy {
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.private-tours-country-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
}

.private-tours-country-copy p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.private-tour-list {
  padding: 0.75rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.private-tour-item {
  border: 1px solid rgba(15, 36, 56, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(11, 34, 57, 0.05);
  overflow: hidden;
}

.private-tour-item details {
  padding: 0.95rem 0.95rem 1rem;
}

.private-tour-item summary {
  cursor: pointer;
  list-style: none;
  display: block;
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.private-tour-summary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  width: 100%;
}

.private-tour-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease);
}

.private-tour-card:hover {
  background: rgba(15, 74, 122, 0.03);
}

.private-tour-card-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.private-tour-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.65rem 1rem 0.85rem;
  border-top: 1px solid rgba(15, 36, 56, 0.08);
  background: rgba(248, 250, 252, 0.85);
}

.private-tour-card-media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 36, 56, 0.12);
  background: rgba(15, 36, 56, 0.08);
}

.private-tour-card-media img {
  width: 100%;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
  display: block;
}

.private-tour-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  justify-content: center;
}

.private-tour-card-meta-top {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.private-tour-summary-text {
  flex: 1 1 16rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.private-tour-summary-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.private-tour-summary-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}

.private-tour-summary-link:hover {
  text-decoration: underline;
}

.private-tour-day-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(15, 74, 122, 0.1);
  border: 1px solid rgba(15, 74, 122, 0.18);
}

.private-tour-summary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 74, 122, 0.24);
  background: rgba(27, 125, 191, 0.08);
  white-space: nowrap;
}

.private-tour-summary-cta:hover {
  background: var(--white);
  border-color: var(--brand);
  color: var(--brand-hover);
}

.private-tour-item summary::-webkit-details-marker {
  display: none;
}

.private-tour-item summary strong {
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
}

.private-tour-meta {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}

.private-tour-body {
  margin-top: 0.95rem;
  border-top: 1px solid rgba(15, 74, 122, 0.12);
  padding-top: 0.95rem;
}

.private-tour-detail-panel {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.private-tour-detail-hero {
  display: grid;
  grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(228, 240, 239, 0.72), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(26, 77, 74, 0.12);
}

.private-tour-detail-media {
  margin: 0;
  min-height: 240px;
  border-radius: 13px;
  overflow: hidden;
  background: rgba(15, 36, 56, 0.08);
}

.private-tour-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  object-fit: cover;
}

.private-tour-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  gap: 0.65rem;
  padding: 0.5rem 0.3rem;
}

.private-tour-detail-kicker {
  margin: 0;
  width: fit-content;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: var(--forest-light);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.private-tour-detail-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.08;
  color: var(--ink);
}

.private-tour-detail-lead {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.95rem;
}

.private-tour-detail-meta,
.private-tour-detail-route,
.private-tour-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.private-tour-detail-meta span,
.private-tour-detail-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 77, 74, 0.14);
  color: var(--ink-soft);
}

.private-tour-detail-chip {
  color: var(--brand);
  background: rgba(26, 77, 74, 0.09);
}

.private-tour-detail-nav {
  position: sticky;
  top: calc(var(--header-h) + 0.5rem);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.55rem;
  border-radius: 999px;
  background: rgba(253, 254, 254, 0.92);
  border: 1px solid rgba(26, 77, 74, 0.12);
  backdrop-filter: blur(10px);
}

.private-tour-detail-nav a {
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.private-tour-detail-nav a:hover {
  background: var(--forest-light);
}

.private-tour-detail-section {
  scroll-margin-top: calc(var(--header-h) + 5rem);
}

.private-tour-detail-section > h4,
.private-tour-detail-cta h4 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

.private-tour-places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
}

.private-tour-place-card {
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
}

.private-tour-place-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.private-tour-place-card span {
  display: block;
  padding: 0.55rem 0.65rem;
  font-weight: 700;
  color: var(--ink);
}

.private-tour-experience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.7rem;
}

.private-tour-experience-card {
  padding: 0.8rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.private-tour-experience-day,
.private-tour-experience-city {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.private-tour-detail-cta {
  padding: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--forest-light), var(--ocean-light));
  border: 1px solid rgba(26, 77, 74, 0.12);
}

.private-tour-detail-cta p {
  margin: 0 0 0.8rem;
  color: var(--ink-soft);
}

.private-tour-overview {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.private-tour-sub {
  margin: 1rem 0 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.private-tour-prose {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.private-tour-foot {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
}

/* Day-by-day itinerary (private tours) */
.private-tour-section {
  margin-top: 1.05rem;
}

.private-tour-section:first-child {
  margin-top: 0;
}

.private-tour-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(15, 74, 122, 0.1);
}

.private-tour-section-head .private-tour-sub {
  margin: 0;
}

.private-tour-section-count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 0.2rem 0.55rem;
  background: var(--accent-soft);
  border-radius: 999px;
  border: 1px solid rgba(15, 74, 122, 0.15);
}

.itinerary-prose {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Journey-style day-by-day (private tours) */
.itinerary-journey {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.itinerary-day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.2rem 0 0.1rem;
}

.itinerary-day-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 77, 74, 0.18);
  background: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}

.itinerary-day-tab:hover {
  background: var(--forest-light);
  border-color: rgba(26, 77, 74, 0.3);
}

.itinerary-summary {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(26, 77, 74, 0.14);
  background: linear-gradient(
    140deg,
    rgba(228, 240, 239, 0.65),
    rgba(227, 242, 249, 0.45)
  );
}

.itinerary-summary-title {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}

.itinerary-summary-route,
.itinerary-summary-meta {
  margin: 0;
  font-size: 0.83rem;
  color: var(--ink-soft);
}

.itinerary-route-bar {
  padding: 0.85rem 1rem;
  background: linear-gradient(
    135deg,
    var(--forest-light) 0%,
    rgba(227, 242, 249, 0.65) 100%
  );
  border: 1px solid rgba(26, 77, 74, 0.12);
  border-radius: 12px;
}

.itinerary-route-stops {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.itinerary-route-stop {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.itinerary-route-city {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.itinerary-route-days {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.itinerary-route-arrow {
  color: var(--muted-2);
  font-size: 0.9rem;
  margin: 0 0.1rem;
}

.itinerary-segment {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.itinerary-segment-heading {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.itinerary-segment-media {
  margin: 0;
  width: 140px;
  flex: 0 0 140px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(20, 45, 50, 0.12);
  box-shadow: 0 4px 10px rgba(20, 45, 50, 0.1);
}

.itinerary-segment-media img {
  display: block;
  width: 100%;
  height: 88px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.itinerary-segment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(26, 77, 74, 0.12);
}

.itinerary-segment-city {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.itinerary-segment-range {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.itinerary-day-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.15rem 0 0.25rem;
}

.itinerary-day-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--brand);
  background: var(--white);
  border: 1px solid rgba(26, 77, 74, 0.16);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.itinerary-day-pill:hover {
  background: var(--forest-light);
  border-color: rgba(26, 77, 74, 0.28);
  color: var(--brand-hover);
}

.itinerary-segment-days {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.itinerary-step {
  display: grid;
  grid-template-columns: 132px auto minmax(0, 1fr);
  gap: 0.75rem 1rem;
  padding: 0.85rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(20, 45, 50, 0.05);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.itinerary-step-media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(20, 45, 50, 0.12);
}

.itinerary-step-media img {
  width: 100%;
  height: 100%;
  min-height: 86px;
  object-fit: cover;
  display: block;
}

.itinerary-step-marker {
  display: flex;
  align-items: flex-start;
  padding-top: 0.1rem;
}

.itinerary-step-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand);
  background: var(--forest-light);
  border: 1px solid rgba(26, 77, 74, 0.14);
  white-space: nowrap;
}

.itinerary-step-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.itinerary-day-city {
  margin: 0 0 0.28rem;
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.46rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(15, 74, 122, 0.09);
  border: 1px solid rgba(15, 74, 122, 0.14);
}

.itinerary-step-text {
  margin: 0;
}

.itinerary-step-preview,
.itinerary-step-full {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.itinerary-step-text.is-collapsed .itinerary-step-full {
  display: none;
}

.itinerary-step-text.is-expanded .itinerary-step-preview {
  display: none;
}

.itinerary-step-toggle {
  margin-top: 0.45rem;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.itinerary-step-toggle:hover {
  color: var(--brand-hover);
}

.itinerary-travel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0.15rem 0;
  padding: 0.65rem 0.95rem;
  border-radius: 10px;
  background: rgba(30, 107, 140, 0.08);
  border: 1px dashed rgba(30, 107, 140, 0.28);
}

.itinerary-travel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--white);
  font-size: 0.85rem;
  color: var(--ocean);
  border: 1px solid rgba(30, 107, 140, 0.2);
}

.itinerary-travel-label {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.itinerary-travel-note {
  margin: 0;
  flex: 1 1 100%;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 520px) {
  .itinerary-segment-head {
    align-items: stretch;
    flex-direction: column;
  }

  .itinerary-segment-media {
    width: 100%;
    flex-basis: auto;
  }

  .itinerary-segment-media img {
    height: 120px;
  }

  .itinerary-step {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .itinerary-step-marker {
    padding-top: 0;
  }

  .itinerary-step-day {
    min-width: 0;
    align-self: flex-start;
  }

  .itinerary-day-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
  }

  .itinerary-day-pill {
    flex: 0 0 auto;
  }
}

.itinerary-days {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.itinerary-days::before {
  content: "";
  position: absolute;
  left: 2.55rem;
  top: 0.45rem;
  bottom: 0.45rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(15, 74, 122, 0.26),
    rgba(15, 74, 122, 0.08)
  );
  border-radius: 999px;
}

.itinerary-day {
  display: grid;
  grid-template-columns: minmax(4.4rem, auto) minmax(0, 1fr);
  gap: 0.8rem 1rem;
  align-items: stretch;
  padding: 0.9rem 0.95rem;
  background: linear-gradient(
    180deg,
    rgba(243, 246, 251, 0.8),
    rgba(255, 255, 255, 0.85)
  );
  border: 1px solid rgba(15, 36, 56, 0.11);
  border-radius: 12px;
  position: relative;
}

.itinerary-day-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-width: 4rem;
  padding: 0.45rem 0.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md, 10px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.itinerary-day-num-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.itinerary-day-num-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--brand);
}

.itinerary-day-copy {
  min-width: 0;
  padding-top: 0.05rem;
}

.itinerary-day-city {
  margin: 0 0 0.28rem;
  display: inline-flex;
  align-items: center;
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(15, 74, 122, 0.09);
  border: 1px solid rgba(15, 74, 122, 0.16);
}

.itinerary-day-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.itinerary-day-body {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .private-tour-detail-hero {
    grid-template-columns: 1fr;
  }

  .private-tour-detail-nav {
    border-radius: 16px;
  }

  .private-tour-card {
    grid-template-columns: 1fr;
  }

  .private-tour-card-media {
    min-height: 180px;
  }

  .private-tour-card-media img {
    min-height: 180px;
  }

  .private-tour-card-body {
    padding: 0.9rem 1rem;
  }

  .private-tour-list {
    padding: 0.7rem 0.75rem 0.9rem;
  }

  .private-tour-item details {
    padding: 0.8rem 0.75rem 0.9rem;
  }

  .private-tour-summary-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .itinerary-step-media img {
    min-height: 132px;
  }

  .itinerary-days {
    padding-left: 0;
  }

  .itinerary-days::before {
    display: none;
  }

  .itinerary-day {
    grid-template-columns: 1fr;
  }

  .itinerary-day-num {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
    min-height: auto;
    padding: 0.4rem 0.65rem;
  }

  .itinerary-day-num-label {
    letter-spacing: 0.08em;
  }
}

/* Inclusions / exclusions: two-column panels + item rows */
.private-tour-incl-excl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

@media (min-width: 720px) {
  .private-tour-incl-excl {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 1rem;
  }
}

.private-tour-incl-panel {
  margin: 0;
  padding: 0.95rem 1rem 1.05rem;
  background: linear-gradient(
    180deg,
    rgba(27, 125, 191, 0.08),
    rgba(255, 255, 255, 0.98)
  );
  border: 1px solid rgba(15, 74, 122, 0.18);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 74, 122, 0.08);
}

.private-tour-incl-panel--yes {
  border-left: 4px solid rgba(20, 107, 66, 0.58);
}

.private-tour-incl-panel .private-tour-sub {
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  color: var(--ink);
}

.tour-pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.tour-pill-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  padding: 0.5rem 0.6rem;
  font-size: 0.84rem;
  line-height: 1.48;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 36, 56, 0.11);
  border-radius: var(--radius-sm, 8px);
}

.tour-pill-icon {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1;
  margin-top: 0.08em;
}

.tour-pill-text {
  flex: 1;
  min-width: 0;
}

.tour-pill-list--yes .tour-pill-icon {
  background: rgba(26, 122, 74, 0.14);
  color: #146b42;
}

.tour-pill-list--no .tour-pill-icon {
  background: rgba(179, 58, 58, 0.12);
  color: #a12f2f;
}

.private-tour-exclusions-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

.private-tour-exclusions-note strong {
  font-weight: 600;
  color: var(--muted);
}

/* Private tours premium refresh */
.private-tours-mount {
  gap: 2rem;
}

.private-tours-country {
  border: 1px solid rgba(12, 39, 63, 0.14);
  border-radius: 22px;
  box-shadow:
    0 22px 44px rgba(8, 28, 46, 0.09),
    0 2px 8px rgba(8, 28, 46, 0.06);
}

.private-tours-country-head {
  position: relative;
  grid-template-columns: minmax(260px, 390px) 1fr;
  background: linear-gradient(
    128deg,
    rgba(15, 74, 122, 0.12),
    rgba(255, 255, 255, 0.2)
  );
}

.private-tours-country-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(15, 74, 122, 0.26),
    rgba(15, 74, 122, 0.04)
  );
}

.private-tours-country-visual {
  min-height: 250px;
}

.private-tours-country-visual img {
  min-height: 250px;
}

.private-tours-country-copy {
  padding: 1.7rem 1.85rem 1.65rem;
  gap: 0.5rem;
}

.private-tours-country-copy h3 {
  font-size: clamp(1.6rem, 2.1vw, 2rem);
  letter-spacing: -0.02em;
}

.private-tours-country-copy p {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(15, 74, 122, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.private-tour-list {
  padding: 1.1rem 1.25rem 1.3rem;
  gap: 1rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.68),
    rgba(243, 246, 251, 0.62)
  );
}

.private-tour-item {
  border-radius: 16px;
  border: 1px solid rgba(8, 32, 52, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(10, 34, 53, 0.06);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.private-tour-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 34, 53, 0.11);
  border-color: rgba(15, 74, 122, 0.24);
}

.private-tour-item details {
  padding: 1.05rem 1.1rem 1.05rem;
}

.private-tour-item summary {
  position: relative;
  padding-right: 2rem;
}

.private-tour-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.15rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  border: 1px solid rgba(15, 74, 122, 0.2);
  background: rgba(15, 74, 122, 0.06);
  color: var(--brand);
  font-size: 1rem;
  line-height: 1.35rem;
  text-align: center;
  font-weight: 600;
}

.private-tour-item details[open] summary::after {
  content: "−";
}

.private-tour-item summary strong {
  font-size: 1.12rem;
  line-height: 1.3;
}

.private-tour-meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.private-tour-day-pill {
  background: rgba(15, 74, 122, 0.13);
}

.private-tour-body {
  margin-top: 1.05rem;
  padding-top: 1.05rem;
}

.private-tour-overview {
  font-size: 0.96rem;
  max-width: 76ch;
}

.private-tour-section-head {
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
}

.itinerary-days {
  gap: 0.9rem;
}

.itinerary-days::before {
  left: 2.85rem;
  background: linear-gradient(
    180deg,
    rgba(15, 74, 122, 0.35),
    rgba(15, 74, 122, 0.1)
  );
}

.itinerary-day {
  grid-template-columns: minmax(4.9rem, auto) minmax(0, 1fr);
  gap: 0.9rem 1.1rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(246, 250, 255, 0.9),
    rgba(255, 255, 255, 0.98)
  );
}

.itinerary-day:nth-child(2n) {
  background: linear-gradient(
    180deg,
    rgba(242, 247, 253, 0.82),
    rgba(255, 255, 255, 0.96)
  );
}

.itinerary-day-num {
  min-width: 4.5rem;
  padding: 0.55rem 0.35rem;
  border-radius: 12px;
  border-color: rgba(15, 74, 122, 0.18);
}

.itinerary-day-num-value {
  font-size: 1.5rem;
}

.itinerary-day-city {
  margin-bottom: 0.32rem;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  background: rgba(15, 74, 122, 0.12);
}

.itinerary-day-title {
  font-size: 1.03rem;
  line-height: 1.33;
}

.itinerary-day-body {
  font-size: 0.9rem;
}

.private-tour-incl-panel {
  margin-top: 0.45rem;
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(15, 74, 122, 0.1);
}

.private-tour-incl-panel .private-tour-sub {
  margin-bottom: 0.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.tour-pill-list {
  gap: 0.55rem;
}

.tour-pill-list li {
  padding: 0.55rem 0.68rem;
  font-size: 0.86rem;
}

.private-tour-foot {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(15, 74, 122, 0.22);
}

@media (max-width: 840px) {
  .private-tours-country-head {
    grid-template-columns: 1fr;
  }

  .private-tours-country-visual,
  .private-tours-country-visual img {
    min-height: 210px;
  }

  .private-tours-country-copy {
    padding: 1.2rem 1.15rem 1.1rem;
  }

  .private-tour-list {
    padding: 0.85rem 0.8rem 1rem;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Site marketing feel (all pages except reading-focused articles) --- */
body:not(.guide-article-page) .section-block {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

body:not(.guide-article-page) .section-block--tint {
  background: var(--page);
  border-top: 1px solid var(--line);
}

body:not(.guide-article-page) .section-head {
  margin-bottom: 1.75rem;
}

body:not(.guide-article-page) .section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  line-height: 1.15;
}

body:not(.guide-article-page) .section-head.center .section-lead {
  max-width: 42rem;
}

body:not(.guide-article-page) .page-subnav {
  background: rgba(238, 244, 242, 0.92);
}

body:not(.guide-article-page) .mode-card-link {
  border: 0;
  box-shadow: 0 12px 36px rgba(20, 45, 50, 0.12);
}

body:not(.guide-article-page) .travel-modes .mode-card:nth-child(4n + 1) .mode-card-link,
body:not(.guide-article-page) .signature-grid .mode-card:nth-child(3n + 1) .mode-card-link {
  border-top: 3px solid var(--brand);
}

body:not(.guide-article-page) .travel-modes .mode-card:nth-child(4n + 2) .mode-card-link,
body:not(.guide-article-page) .signature-grid .mode-card:nth-child(3n + 2) .mode-card-link {
  border-top: 3px solid var(--ocean);
}

body:not(.guide-article-page) .travel-modes .mode-card:nth-child(4n + 3) .mode-card-link,
body:not(.guide-article-page) .signature-grid .mode-card:nth-child(3n) .mode-card-link {
  border-top: 3px solid var(--accent-warm);
}

body:not(.guide-article-page) .travel-modes .mode-card:nth-child(4n) .mode-card-link {
  border-top: 3px solid var(--sunset);
}

body:not(.guide-article-page) .mode-card-img img {
  filter: saturate(1.06) contrast(1.02);
}

body:not(.guide-article-page) .travel-modes .mode-card-chip {
  background: var(--forest-light);
  color: var(--brand);
}

body:not(.guide-article-page) .travel-modes .mode-card:nth-child(4n + 2) .mode-card-chip {
  background: var(--ocean-light);
  color: var(--ocean);
}

body:not(.guide-article-page) .travel-modes .mode-card:nth-child(4n + 3) .mode-card-chip {
  background: rgba(58, 125, 133, 0.14);
  color: var(--accent-warm);
}

body:not(.guide-article-page) .travel-modes .mode-card:nth-child(4n) .mode-card-chip {
  background: var(--sunset-light);
  color: #a34a2f;
}

body:not(.guide-article-page) .dest-grid .dest-card {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 14px 40px rgba(15, 45, 56, 0.18);
}

body:not(.guide-article-page) .dest-card-media::after {
  background: linear-gradient(
    to top,
    rgba(15, 45, 56, 0.75) 0%,
    transparent 55%
  );
}

body:not(.guide-article-page) .dest-card-label {
  color: #b8e8f0;
}

body:not(.guide-article-page) .dest-card-btn:not(.dest-card-btn--ghost) {
  background: var(--brand-gradient);
  border: 0;
  color: #fff;
}

body:not(.guide-article-page) .dest-card-btn:not(.dest-card-btn--ghost):hover {
  filter: brightness(1.06);
  color: #fff;
}

body:not(.guide-article-page) .section-block--tint .review-card {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(30, 107, 140, 0.1);
  padding: 1.45rem 1.35rem 1.3rem;
}

body:not(.guide-article-page) .section-block--tint .review-card-quote {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--ink);
}

body:not(.guide-article-page) .section-block--tint .review-card-quote::before,
body:not(.guide-article-page) .section-block--tint .review-card-quote::after {
  content: none;
}

body:not(.guide-article-page) .about-figure {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 22px 56px rgba(30, 107, 140, 0.22);
}

body:not(.guide-article-page) .about-figure figcaption {
  background: rgba(255, 255, 255, 0.96);
  font-style: italic;
  color: var(--ink-soft);
}

body:not(.guide-article-page) .about-bullets li::before {
  width: 8px;
  height: 8px;
  background: var(--brand-gradient);
}

body:not(.guide-article-page) .contact-section {
  background: linear-gradient(180deg, var(--page) 0%, var(--forest-light) 100%);
  border-top-color: rgba(26, 77, 74, 0.08);
}

body:not(.guide-article-page) .page-cta-inner,
body:not(.guide-article-page) .travel-tip-cta,
body:not(.guide-article-page) .page-cta:not(.section-block) {
  background: linear-gradient(
    135deg,
    rgba(228, 240, 239, 0.85) 0%,
    rgba(227, 242, 249, 0.9) 100%
  );
  box-shadow: 0 10px 32px rgba(20, 45, 50, 0.08);
}

body:not(.guide-article-page) .travel-tips-card {
  border: 0;
  box-shadow: 0 12px 36px rgba(20, 45, 50, 0.1);
}

body:not(.guide-article-page) .travel-tips-card:nth-child(4n + 1) {
  border-top: 3px solid var(--brand);
}

body:not(.guide-article-page) .travel-tips-card:nth-child(4n + 2) {
  border-top: 3px solid var(--ocean);
}

body:not(.guide-article-page) .travel-tips-card:nth-child(4n + 3) {
  border-top: 3px solid var(--accent-warm);
}

body:not(.guide-article-page) .travel-tips-card:nth-child(4n) {
  border-top: 3px solid var(--sunset);
}

body:not(.guide-article-page) .film-card-btn:not(.film-card-btn--ghost) {
  background: var(--brand-gradient);
  border: 0;
  color: #fff;
}

body:not(.guide-article-page) .film-card-btn:not(.film-card-btn--ghost):hover {
  filter: brightness(1.06);
  color: #fff;
}

body:not(.guide-article-page) .guides-feature-grid {
  gap: 1.1rem;
}

/* --- Home page redesign --- */
body.page-home main {
  padding-top: 0;
}

body.page-home .hero-immersive#top {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 1.25rem);
  padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  overflow: hidden;
}

body.page-home .hero-immersive#top .hero-bg .hero-bg-photo,
body.page-home .hero-immersive#top .hero-bg .ambient-video {
  object-position: center bottom;
}

body.page-home .hero-immersive#top::after {
  display: none;
}

/* Home hero: no wash over the video */
body.page-home .hero-scrim {
  background: none;
}

body.page-home .hero-content-panel .hero-kicker,
body.page-home .hero-content-panel .hero-title,
body.page-home .hero-content-panel .hero-sub,
body.page-home .hero-content-panel .hero-alt,
body.page-home .hero-content-panel .hero-alt a {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 4px 24px rgba(0, 0, 0, 0.45);
}

body.page-home .hero-content-panel,
body.page-home .hero-search,
body.page-home .hero-search input,
body.page-home .hero-search select,
body.page-home .hero-search label,
body.page-home .hero-search .chip-label,
body.page-home .planner-field > label,
body.page-home .planner-field > span:first-child {
  text-shadow: none;
}

body.page-home .hero-search {
  background: #fff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.page-home .hero-search input,
body.page-home .hero-search select {
  color: var(--ink);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

body.page-home .hero-search input::placeholder {
  color: var(--muted);
  opacity: 1;
}

body.page-home .hero-metrics {
  display: none;
}

/* Photo strip: destinations under hero */
.home-mosaic {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--deep);
}

.home-mosaic-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .home-mosaic-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-mosaic-list {
    grid-template-columns: repeat(6, 1fr);
  }
}

.home-mosaic-list li {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.home-mosaic-list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.home-mosaic-list li:hover img {
  transform: scale(1.07);
}

/* Post-hero bridge */
.home-bridge {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 2rem 1.5rem 3rem;
  background: var(--page);
}

.home-bridge-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-bridge-head {
  text-align: left;
  max-width: 42rem;
  margin: 0 0 1.75rem;
}

.home-bridge-eyebrow {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean);
  background: rgba(30, 107, 140, 0.12);
  border: 1px solid rgba(30, 107, 140, 0.2);
  border-radius: 999px;
}

.home-bridge-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-ui);
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.home-bridge-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.home-bridge-paths {
  display: grid;
  gap: 1rem;
}

@media (min-width: 820px) {
  .home-bridge-paths {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }
}

.home-path-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 100%;
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ocean);
  background: linear-gradient(165deg, var(--sky-light) 0%, var(--white) 62%);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.home-path-card:hover {
  border-color: rgba(30, 107, 140, 0.28);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.home-path-card:nth-child(2) {
  border-top-color: var(--brand);
  background: linear-gradient(165deg, var(--forest-light) 0%, var(--white) 62%);
}

.home-path-card--accent {
  border-top-color: var(--sunset);
  background: linear-gradient(
    165deg,
    var(--sunset-light) 0%,
    rgba(255, 255, 255, 0.98) 62%
  );
  border-color: rgba(199, 91, 58, 0.18);
}

.home-path-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.15rem;
  border-radius: 14px;
  color: var(--ocean);
  background: rgba(30, 107, 140, 0.14);
}

.home-path-card:nth-child(2) .home-path-card-icon {
  color: var(--brand);
  background: rgba(26, 77, 74, 0.12);
}

.home-path-card--accent .home-path-card-icon {
  color: var(--sunset);
  background: rgba(196, 92, 62, 0.14);
}

.home-path-card-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.home-path-card-title {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}

.home-path-card-desc {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.home-path-card-cta {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
}

.home-path-card:hover .home-path-card-cta {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Image-led path cards (homepage) */
.home-path-card--photo {
  position: relative;
  display: block;
  min-height: min(320px, 52vw);
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 18px 50px rgba(15, 45, 56, 0.28);
}

.home-path-card--photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(15, 45, 56, 0.35);
}

.home-path-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.home-path-card--photo:hover .home-path-card-photo {
  transform: scale(1.06);
}

.home-path-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6, 18, 24, 0.55) 0%,
    rgba(6, 18, 24, 0.25) 40%,
    rgba(6, 18, 24, 0.82) 72%,
    rgba(6, 18, 24, 0.96) 100%
  );
  pointer-events: none;
}

.home-path-card-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  min-height: min(320px, 52vw);
  padding: 1.4rem 1.3rem 1.3rem;
  background: transparent;
}

.home-path-card--photo .home-path-card-label {
  color: rgba(255, 255, 255, 0.92);
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.home-path-card--photo .home-path-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.home-path-card--photo .home-path-card-desc {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.88rem;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.home-path-card--photo .home-path-card-cta {
  margin-top: 0.5rem;
  color: #d4f4f8;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.home-path-card--photo:hover .home-path-card-cta {
  color: #fff;
  text-decoration: underline;
}

.home-bridge-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem 1.25rem;
  margin: 1.75rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
}

.home-bridge-trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.home-bridge-trust li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-gradient);
}

.home-bridge-trust li + li::before {
  content: "";
  margin-right: 0;
}

/* Signature: show 3, expand for 6 */
body.page-home .home-signature {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

body.page-home .home-signature .mode-card-facts,
body.page-home .home-signature .mode-card-points {
  display: none;
}

body.page-home .home-signature .mode-card-text > p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.page-home .home-signature .signature-grid .mode-card:nth-child(n + 4) {
  display: none;
}

body.page-home .home-signature.is-expanded .signature-grid .mode-card:nth-child(n + 4) {
  display: block;
}

/* Collapsed: 3 cards in one row  -  no orphan gap in a 2-column grid */
@media (min-width: 900px) {
  body.page-home .home-signature:not(.is-expanded) .signature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  body.page-home .home-signature:not(.is-expanded) .signature-grid .mode-card-link {
    grid-template-columns: 1fr;
  }

  body.page-home .home-signature:not(.is-expanded) .signature-grid .mode-card-img {
    aspect-ratio: 16 / 10;
    min-height: auto;
    height: auto;
  }
}

body.page-home .home-signature .signature-grid .mode-card-link {
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--brand);
}

body.page-home .home-signature .signature-grid .mode-card:nth-child(3n + 2) .mode-card-link {
  border-top-color: var(--ocean);
}

body.page-home .home-signature .signature-grid .mode-card:nth-child(3n) .mode-card-link {
  border-top-color: var(--sunset);
}

body.page-home .home-signature .mode-card-chip {
  background: var(--forest-light);
  color: var(--brand);
}

body.page-home .home-signature .signature-grid .mode-card:nth-child(3n + 2) .mode-card-chip {
  background: var(--sky-light);
  color: var(--ocean);
}

body.page-home .home-signature .signature-grid .mode-card:nth-child(3n) .mode-card-chip {
  background: var(--sunset-light);
  color: #a34a2f;
}

body.page-home .home-signature .signature-grid .mode-card-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

body.page-home .home-signature-more-wrap {
  text-align: center;
  margin: 1.5rem 0 0;
}

/* Films: tighter cards */
body.page-home .home-films {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(165deg, var(--deep) 0%, #143d4a 48%, #1a4d4a 100%);
  border-top: 0;
  border-bottom: 0;
}

body.page-home .home-films .section-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #b8e8f0;
}

body.page-home .home-films .section-title {
  color: #fff;
}

body.page-home .home-films .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

body.page-home .home-films .film-strip-footer a {
  color: #b8e8f0;
}

body.page-home .home-films .film-card-detail {
  display: none;
}

body.page-home .home-films .film-card-dek {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.page-home .home-films .film-card-actions .film-card-btn--ghost {
  display: none;
}

body.page-home .home-films .film-strip-footer {
  margin-top: 1.5rem;
}

/* Destinations: one action per card */
body.page-home .home-destinations {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: linear-gradient(180deg, var(--ocean-light) 0%, var(--page) 100%);
  border-top: 0;
}

body.page-home .home-destinations .section-eyebrow {
  background: rgba(30, 107, 140, 0.12);
  border-color: rgba(30, 107, 140, 0.2);
  color: var(--ocean);
}

body.page-home .home-destinations .dest-card-actions .dest-card-btn--ghost {
  display: none;
}

body.page-home .home-destinations .dest-grid {
  gap: 1rem;
}

/* Reviews: horizontal scroll on small screens */
body.page-home .home-reviews {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: linear-gradient(180deg, var(--sunset-light) 0%, var(--page) 85%);
  border-top: 0;
}

body.page-home .home-reviews .section-eyebrow {
  background: rgba(199, 91, 58, 0.12);
  border-color: rgba(199, 91, 58, 0.18);
  color: #a34a2f;
}

body.page-home .home-reviews .review-card {
  border-color: rgba(199, 91, 58, 0.12);
}

body.page-home .home-reviews .review-card-stars {
  color: var(--sunset);
}

@media (max-width: 900px) {
  body.page-home .home-reviews .reviews-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  body.page-home .home-reviews .review-card {
    flex: 0 0 min(85vw, 320px);
    scroll-snap-align: start;
  }
}

body.page-home .section-block--tint:not(.home-films):not(.home-destinations):not(.home-reviews) {
  background: var(--page);
  border-top: 1px solid var(--line);
}

body.page-home .home-signature .section-eyebrow {
  background: rgba(26, 77, 74, 0.14);
  color: var(--brand);
}

body.page-home .hero-immersive#top .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  max-width: 16ch;
}

body.page-home .hero-immersive#top .hero-kicker {
  text-transform: none;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

body.page-home .home-bridge-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 600;
}

body.page-home #guides {
  background: var(--page);
  border-top: 1px solid rgba(26, 77, 74, 0.08);
  padding-bottom: 3rem;
}

body.page-home #guides .section-eyebrow {
  background: rgba(26, 77, 74, 0.14);
  color: var(--brand);
}

body.page-home #about {
  background: linear-gradient(180deg, var(--page) 0%, var(--ocean-light) 100%);
}

body.page-home #about .section-eyebrow {
  background: rgba(30, 107, 140, 0.12);
  color: var(--ocean);
}

body.page-home .home-bridge {
  padding: 2.75rem 1.5rem 3.25rem;
  background: var(--page);
}

body.page-home .home-bridge-eyebrow {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
  font-weight: 600;
}

body.page-home .home-path-card:not(.home-path-card--photo) {
  border: 0;
  border-top-width: 4px;
  border-top-style: solid;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(30, 107, 140, 0.12);
}

body.page-home .home-path-card--photo {
  border-top: 0;
  box-shadow: 0 18px 50px rgba(15, 45, 56, 0.28);
}

body.page-home .home-path-card:not(.home-path-card--photo) .home-path-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

body.page-home .home-path-card:not(.home-path-card--photo) .home-path-card-label {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  font-weight: 600;
}

body.page-home .home-bridge-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

body.page-home .home-bridge-trust {
  justify-content: center;
  gap: 0.55rem;
  border-top: 0;
  padding-top: 1.5rem;
}

body.page-home .home-bridge-trust li {
  padding: 0.45rem 0.9rem;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid rgba(26, 77, 74, 0.1);
  box-shadow: 0 2px 10px rgba(20, 35, 45, 0.06);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

body.page-home .home-bridge-trust li::before {
  width: 7px;
  height: 7px;
}

body.page-home .home-signature .signature-grid .mode-card-link {
  box-shadow: 0 16px 44px rgba(20, 45, 50, 0.14);
}

body.page-home .home-signature .mode-card-img img {
  filter: saturate(1.08) contrast(1.03);
}

body.page-home .home-signature .mode-card-text {
  padding: 1.25rem 1.4rem 1.4rem;
}

body.page-home .home-reviews .review-card {
  box-shadow: 0 12px 32px rgba(196, 92, 62, 0.1);
}

body.page-home .hero-search {
  box-shadow: 0 16px 48px rgba(15, 45, 56, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

/* Footer */
.foot {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 1.5rem 3rem;
}

.foot-grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 980px) {
  .foot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 720px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

.foot-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.foot-brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 28ch;
}

.foot-legal,
.foot-legal-line,
.legal-entity {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
}

.foot-brand .foot-legal {
  margin-top: 0.75rem;
  max-width: 36ch;
}

.foot-bottom p {
  margin: 0;
}

.foot-bottom .foot-legal-line {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
}

.legal-entity {
  color: var(--muted-2);
  max-width: 840px;
}

.foot-heading {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
}

.foot-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.foot-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.92rem;
}

.foot-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.foot-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --- Spotlight section + Signature grid --- */
.section-block--spotlight {
  background: linear-gradient(180deg, var(--forest-light) 0%, var(--page) 100%);
  max-width: none;
  padding-left: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
  position: relative;
  border-top: 0;
  border-bottom: 0;
}

.section-block--spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--brand) 100%);
}

.section-block--spotlight .section-head,
.section-block--spotlight .signature-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section-block--spotlight .section-head.center {
  max-width: min(640px, 100%);
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--brand);
  background: var(--forest-light);
  border: 1px solid rgba(26, 77, 74, 0.12);
  border-radius: 8px;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 980px) {
  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

/* Site-wide: lone item in a 2-column card grid  -  center it, no empty half-row */
@media (min-width: 640px) {
  .signature-grid > :last-child:nth-child(odd),
  .dest-grid > :last-child:nth-child(odd),
  .travel-modes:not(.travel-modes--duo) > .mode-card:last-child:nth-child(odd),
  #line-compare .travel-modes > .mode-card:last-child:nth-child(odd),
  .guides-feature-grid > .guide-feature-card:last-child:nth-child(odd),
  .foot-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: var(--grid-orphan-max, 520px);
    justify-self: center;
    width: 100%;
  }

  .signature-grid > .mode-card:last-child:nth-child(odd),
  .travel-modes:not(.travel-modes--duo) > .mode-card:last-child:nth-child(odd),
  #line-compare .travel-modes > .mode-card:last-child:nth-child(odd) {
    --grid-orphan-max: min(680px, calc(50% - 0.875rem));
  }

  .dest-grid > .dest-card:last-child:nth-child(odd) {
    --grid-orphan-max: min(300px, calc(50% - 0.5rem));
  }
}

/* 3-column grids: single orphan on the last row (4th, 7th, … item) */
@media (min-width: 960px) {
  .guides-feature-grid > :last-child:nth-child(3n + 1):not(:only-child),
  .dest-grid > :last-child:nth-child(3n + 1):not(:only-child),
  #line-compare .travel-modes > .mode-card:last-child:nth-child(3n + 1):not(:only-child) {
    grid-column: 1 / -1;
    max-width: var(--grid-orphan-max-3, 360px);
    justify-self: center;
    width: 100%;
  }

  .guides-feature-grid > .guide-feature-card:last-child:nth-child(3n + 1):not(:only-child) {
    --grid-orphan-max-3: min(400px, calc(33.333% - 0.75rem));
  }
}

/* Home signature (3-up preview): skip global orphan rules */
@media (min-width: 640px) {
  body.page-home .home-signature:not(.is-expanded) .signature-grid > .mode-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
    width: auto;
  }
}

.signature-grid .mode-card-link {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  border-width: 1px;
}

@media (min-width: 620px) {
  .signature-grid .mode-card-link {
    grid-template-columns: minmax(220px, 5fr) 7fr;
  }
}

.signature-grid .mode-card-img {
  aspect-ratio: 16 / 10;
  height: 100%;
  min-height: 100%;
}

@media (min-width: 620px) {
  .signature-grid .mode-card-img {
    aspect-ratio: auto;
  }
}

.signature-grid .mode-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.4rem 1.55rem 1.55rem;
}

.mode-card-chip {
  display: inline-block;
  align-self: flex-start;
  padding: 0.22rem 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--accent-soft);
  border: 0;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

.signature-grid .mode-card-text h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.signature-grid .mode-card-text > p {
  margin: 0 0 0.6rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--muted);
}

.mode-card-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem 1rem;
  margin: 0.25rem 0 0.7rem;
}

.mode-card-facts > div {
  margin: 0;
}

.mode-card-facts dt {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.mode-card-facts dd {
  margin: 0.18rem 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--ink);
}

.mode-card-points {
  list-style: none;
  margin: 0 0 0.95rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mode-card-points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted);
}

.mode-card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.mode-card-points strong {
  font-weight: 600;
  color: var(--ink);
}

.signature-grid .mode-card-cta {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
}
/* --- end Signature spotlight --- */

/* --- Price-tier dots + legend --- */
.tier-dots {
  display: inline-flex;
  gap: 0.05rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  line-height: 1;
}

.tier-dots .tier-on {
  color: var(--brand);
}

.tier-dots .tier-dim {
  color: rgba(15, 74, 122, 0.22);
}

.tier-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.1rem;
  margin: 0.4rem auto 1.6rem;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 880px;
}

.tier-legend-title {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.tier-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.tier-legend-note {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
/* --- end price-tier dots --- */

/* --- Line-compare card uniformity (ncl.html) --- */
#line-compare .travel-modes {
  align-items: stretch;
  grid-auto-rows: 1fr;
  justify-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1199px) {
  #line-compare .travel-modes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #line-compare .travel-modes {
    grid-template-columns: 1fr;
  }
}

#line-compare .mode-card,
#line-compare .mode-card-link {
  min-width: 0;
}

#line-compare .mode-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#line-compare .mode-card-img {
  flex-shrink: 0;
  height: 190px;
  max-height: 190px;
  background: linear-gradient(
    135deg,
    rgba(15, 74, 122, 0.14),
    rgba(27, 125, 191, 0.08)
  );
  border-bottom: 1px solid rgba(15, 36, 56, 0.08);
  padding: 10px;
}

#line-compare .mode-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

@media (max-width: 560px) {
  #line-compare .mode-card-img {
    height: 160px;
    max-height: 160px;
    padding: 8px;
  }
}

#line-compare .mode-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1 1 auto;
  padding: 1.2rem 1.3rem 1.35rem;
}

#line-compare .mode-card-chip {
  align-self: flex-start;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

#line-compare .mode-card-text h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  min-height: 2.5em;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#line-compare .mode-card-text > p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(0.88rem * 1.55 * 4);
}

#line-compare .mode-card-facts {
  margin: 0.25rem 0 0.55rem;
  grid-template-columns: 1fr 1fr;
  align-content: start;
}

#line-compare .mode-card-facts > div {
  min-height: 2.85em;
}

#line-compare .mode-card-facts dd {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#line-compare .mode-card-points {
  margin: 0;
  min-height: calc(0.86rem * 1.5 * 4 + 0.4rem);
}

#line-compare .mode-card-points li {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#line-compare .mode-card-cta {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand);
}

#line-compare .mode-card-actions {
  margin-top: auto;
  padding-top: 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

#line-compare .mode-card-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 74, 122, 0.18);
  background: rgba(15, 74, 122, 0.08);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  font-family: inherit;
  line-height: 1.2;
  width: 100%;
}

#line-compare .mode-card-cta {
  text-align: center;
}

#line-compare .mode-card-select:hover {
  background: rgba(15, 74, 122, 0.12);
  border-color: rgba(15, 74, 122, 0.28);
}

#line-compare .mode-card-select:focus-visible {
  outline: 2px solid rgba(27, 125, 191, 0.5);
  outline-offset: 2px;
}

/* --- end line-compare uniformity --- */

/* --- Modal (cruise line details) --- */
.is-modal-open {
  overflow: hidden;
}

.modal[aria-hidden="true"] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 34, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  margin: 5vh auto;
  width: min(980px, calc(100% - 2rem));
  max-height: 88vh;
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 36, 56, 0.14);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  background: var(--page);
}

.modal__body {
  padding: 1.35rem 1.35rem 0;
}

.modal__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.modal__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.modal__text + .modal__text {
  margin-top: 0.85rem;
  font-size: 0.9rem;
}

.modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.35rem 1.25rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 1)
  );
}

/* Unclamp content in the modal so it shows fully. */
.modal .modal-card .mode-card-text > p,
.modal .modal-card .mode-card-text h3,
.modal .modal-card .mode-card-facts dd,
.modal .modal-card .mode-card-points li {
  display: block !important;
  -webkit-line-clamp: initial !important;
  -webkit-box-orient: initial !important;
  overflow: visible !important;
}

.modal .modal-card .mode-card-text > p {
  min-height: 0 !important;
}

/* The cloned card is content, not a grid tile. */
.modal .modal-card .mode-card-link {
  transform: none !important;
  box-shadow: none;
  border: 0;
}

.modal .modal-card .mode-card-img {
  max-height: 320px;
}

.modal .modal-card .mode-card-img img {
  transform: none !important;
}

.modal .modal-card .mode-card-text {
  padding: 1.35rem 1.4rem 1.25rem;
}

.modal .modal-card .mode-card-text h3 {
  font-size: clamp(1.65rem, 2vw, 2.05rem);
  line-height: 1.15;
}

.modal .modal-card .mode-card-text > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.modal .modal-card .mode-card-facts {
  background: rgba(15, 74, 122, 0.06);
  border-color: rgba(15, 74, 122, 0.14);
}

.modal .modal-card .mode-card-actions {
  display: none;
}

/* --- end modal --- */

/* Private tours expressive layer */
.private-tour-summary-text {
  gap: 0.45rem;
}

.private-tour-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
}

.private-tour-meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.44rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 74, 122, 0.2);
  background: rgba(15, 74, 122, 0.07);
  color: rgba(15, 74, 122, 0.95);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.private-tour-meta-chip--focus {
  background: rgba(15, 74, 122, 0.16);
  border-color: rgba(15, 74, 122, 0.35);
  color: #0d3f68;
}

.private-tour-route-line {
  margin: 0 0 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.28rem 0.4rem;
  padding: 0.38rem 0.45rem;
  border-radius: 8px;
  background: rgba(15, 74, 122, 0.04);
  border: 1px dashed rgba(15, 74, 122, 0.18);
}

.private-tour-route-stop {
  display: inline-flex;
  align-items: center;
  padding: 0.14rem 0.38rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 74, 122, 0.15);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
}

.private-tour-route-sep {
  color: rgba(15, 74, 122, 0.66);
  font-size: 0.8rem;
  font-weight: 700;
}

.private-tour-item summary strong {
  font-weight: 700;
}

/* Private tours complete redesign */
.private-tours-mount {
  gap: 2.2rem;
}

.private-tours-country {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 42, 64, 0.16);
  box-shadow: 0 20px 48px rgba(8, 30, 49, 0.12);
  background: #fff;
}

.private-tours-country-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  min-height: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.private-tours-country-visual {
  margin: 0;
  min-height: 200px;
}

.private-tours-country-visual img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.private-tours-country-copy {
  padding: 1.35rem 1.5rem;
  color: var(--ink);
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
}

.private-tours-country-copy .private-tours-country-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.private-tours-country-copy h3 {
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.12;
  margin: 0;
}

.private-tours-country-copy .private-tours-country-count {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--muted);
}

.private-tours-country-copy .private-tours-country-lede {
  margin: 0.2rem 0 0;
  max-width: 52ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.private-tours-country-tip {
  margin: 0.65rem 0 0;
}

.private-tours-tip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}

.private-tours-tip-link:hover {
  text-decoration: underline;
}

.private-tours-country-copy p {
  text-transform: none;
  letter-spacing: normal;
}

.private-tour-list {
  padding: 1rem 1.1rem 1.15rem;
  background: var(--page-dark);
  gap: 0.75rem;
}

.private-tour-item {
  border: 1px solid rgba(14, 44, 67, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 34, 53, 0.08);
}

.private-tour-item details {
  padding: 0;
}

.private-tour-item summary {
  padding: 1rem 1.05rem;
}

.private-tour-summary-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.private-tour-summary-index {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 74, 122, 0.18);
  box-shadow: 0 2px 8px rgba(10, 34, 53, 0.12);
}

.private-tour-summary-main {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.55rem 0.9rem;
}

.private-tour-summary-text {
  flex: 1 1 16rem;
  min-width: 0;
}

.private-tour-item summary strong {
  font-size: 1.03rem;
  line-height: 1.32;
  display: block;
}

.private-tour-meta-row {
  margin-top: 0.38rem;
}

.private-tour-meta-chip {
  background: rgba(15, 74, 122, 0.08);
}

.private-tour-summary-route {
  display: block;
  margin-top: 0.42rem;
  font-size: 0.79rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.private-tour-summary-actions {
  align-self: center;
}

.private-tour-summary-cta {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.48rem 0.82rem;
  box-shadow: 0 6px 16px rgba(15, 74, 122, 0.24);
}

.private-tour-summary-cta:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
}

.private-tour-body {
  margin-top: 0;
  border-top: 1px solid rgba(15, 74, 122, 0.12);
  padding: 0.95rem 1.05rem 1rem;
}

.private-tour-route-line {
  background: rgba(15, 74, 122, 0.04);
  border: 1px solid rgba(15, 74, 122, 0.18);
}

.private-tour-overview {
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.private-tour-section-head {
  border-bottom: 0;
  margin-bottom: 0.6rem;
  padding-bottom: 0;
}

.itinerary-days {
  padding-left: 0;
  gap: 0.62rem;
}

.itinerary-days::before {
  display: none;
}

.itinerary-day {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(12, 43, 66, 0.12);
  padding: 0.72rem 0.78rem;
  grid-template-columns: minmax(4rem, auto) minmax(0, 1fr);
}

.itinerary-day:nth-child(2n) {
  background: #f8fbff;
}

.itinerary-day-num {
  border-color: rgba(15, 74, 122, 0.2);
  background: rgba(15, 74, 122, 0.05);
}

.itinerary-day-city {
  background: rgba(15, 74, 122, 0.09);
}

.private-tour-incl-panel {
  background: linear-gradient(
    180deg,
    rgba(22, 93, 146, 0.1),
    rgba(255, 255, 255, 1)
  );
}

.private-tour-foot {
  margin-top: 0.95rem;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 74, 122, 0.2);
  background: linear-gradient(
    180deg,
    rgba(15, 74, 122, 0.08),
    rgba(15, 74, 122, 0.03)
  );
  display: flex;
  justify-content: flex-end;
}

.private-tour-foot-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  justify-content: center;
  padding: 0.7rem 1.12rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  box-shadow: 0 8px 18px rgba(15, 74, 122, 0.34);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.private-tour-foot-cta:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 74, 122, 0.42);
}

@media (max-width: 700px) {
  .private-tour-foot {
    justify-content: stretch;
  }

  .private-tour-foot-cta {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .private-tours-country-head {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .private-tours-country-copy {
    padding: 1.2rem 1rem 1.15rem;
  }

  .private-tour-list {
    padding: 0.8rem 0.72rem 0.9rem;
  }

  .private-tour-card {
    grid-template-columns: 1fr;
  }
}

/* --- Homepage: travel guides feature --- */
.guides-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 560px) {
  .guides-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .guides-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guide-feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.4rem 1.4rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.guide-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.guide-feature-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.guide-feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.guide-feature-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.guide-feature-cta {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
}

.guide-feature-card:hover .guide-feature-cta {
  color: var(--brand-hover);
}

/* Photo-led guide cards */
.guide-feature-card--photo {
  position: relative;
  min-height: 280px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 14px 40px rgba(15, 45, 56, 0.2);
  color: #fff;
}

.guide-feature-card--photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(15, 45, 56, 0.28);
  border-color: transparent;
}

.guide-feature-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.guide-feature-card--photo:hover .guide-feature-photo {
  transform: scale(1.05);
}

.guide-feature-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6, 18, 24, 0.5) 0%,
    rgba(6, 18, 24, 0.2) 42%,
    rgba(6, 18, 24, 0.88) 75%,
    rgba(6, 18, 24, 0.96) 100%
  );
  pointer-events: none;
}

.guide-feature-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.3rem;
  min-height: 280px;
  padding: 1.25rem 1.2rem 1.15rem;
}

.guide-feature-card--photo .guide-feature-kicker {
  color: rgba(255, 255, 255, 0.88);
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.guide-feature-card--photo h3 {
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.55rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.guide-feature-card--photo p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}

.guide-feature-card--photo .guide-feature-cta {
  color: #d4f4f8;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.guide-feature-card--photo:hover .guide-feature-cta {
  color: #fff;
}

.guides-feature-grid {
  gap: 1rem;
}

@media (min-width: 960px) {
  .guides-feature-grid .guide-feature-card--photo {
    min-height: 300px;
  }

  .guides-feature-grid .guide-feature-overlay {
    min-height: 300px;
  }
}

/* --- Homepage: proof strip under testimonials --- */
.proof-strip {
  list-style: none;
  margin: 2rem auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  max-width: 60rem;
}

.proof-strip li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.proof-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.05rem;
  height: 1.05rem;
  transform: translateY(-50%);
  background: var(--accent-soft);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1.5px var(--accent);
}

.proof-strip li::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 50%;
  width: 0.32rem;
  height: 0.16rem;
  transform: translateY(-70%) rotate(-45deg);
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
}

/* --- Homepage: destination grid editorial feature tile --- */
@media (min-width: 1001px) {
  .dest-grid .dest-card--feature {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .dest-grid .dest-card--feature .dest-card-label {
    font-size: 1.7rem;
  }
}

/* --- Floating mobile "Plan a trip" CTA --- */
.floating-cta {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, 150%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition:
    transform 0.35s var(--ease),
    opacity 0.35s var(--ease),
    background 0.2s ease;
}

.floating-cta:hover {
  background: var(--brand-hover);
}

.floating-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.floating-cta.floating-cta--hidden {
  transform: translate(-50%, 150%);
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 860px) {
  .floating-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-cta {
    transition: opacity 0.2s ease;
  }
}

/* --- Dedicated private tour pages --- */
.private-tour-item:hover {
  border-color: rgba(15, 74, 122, 0.22);
  box-shadow: 0 8px 22px rgba(10, 34, 53, 0.1);
}

.tour-detail-page {
  background:
    radial-gradient(circle at 10% 10%, rgba(228, 240, 239, 0.8), transparent 28rem),
    var(--page);
}

.tour-product-hero {
  position: relative;
  min-height: min(82vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.tour-product-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.tour-product-hero-bg img,
.tour-product-hero-bg div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tour-product-hero-bg img {
  object-fit: cover;
}

.tour-product-hero-bg div {
  background:
    linear-gradient(90deg, rgba(6, 18, 24, 0.86), rgba(6, 18, 24, 0.48) 48%, rgba(6, 18, 24, 0.2)),
    linear-gradient(180deg, rgba(6, 18, 24, 0.18), rgba(6, 18, 24, 0.82));
}

.tour-product-hero-content {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--header-h) + 5rem) 0 4.2rem;
}

.tour-product-hero-content .section-eyebrow {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.tour-product-hero-content h1 {
  max-width: 820px;
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.tour-product-hero-content p:not(.section-eyebrow) {
  max-width: 680px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

.hero-immersive--compact .hero-kicker a {
  color: inherit;
  text-decoration: none;
}

.hero-immersive--compact .hero-kicker a:hover {
  text-decoration: underline;
}

.tour-detail-route,
.tour-product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.tour-detail-route span,
.tour-detail-route b {
  display: inline-flex;
  align-items: center;
}

.tour-detail-route span {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  font-weight: 700;
  font-size: 0.82rem;
}

.tour-detail-route b {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.tour-product-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.68rem 1rem;
  background: rgba(253, 254, 254, 0.94);
  border-bottom: 1px solid rgba(26, 77, 74, 0.12);
  backdrop-filter: blur(14px);
}

.tour-product-nav a {
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.tour-product-nav a:hover {
  background: var(--forest-light);
}

.tour-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.tour-fact-card {
  padding: 1rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(20, 45, 50, 0.07);
}

.tour-fact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-fact-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.08;
}

.tour-product-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.tour-product-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 4.4rem);
}

.tour-sidebar-card,
.tour-detail-cta,
.tour-inclusion-grid article {
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(26, 77, 74, 0.12);
  box-shadow: 0 14px 34px rgba(20, 45, 50, 0.08);
}

.tour-sidebar-card {
  padding: 1.1rem;
}

.tour-sidebar-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-sidebar-card h2,
.tour-detail-cta h2,
.tour-section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1;
}

.tour-sidebar-card h2 {
  font-size: 1.55rem;
}

.tour-sidebar-card p,
.tour-detail-cta p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.tour-product-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}

.tour-detail-section {
  scroll-margin-top: calc(var(--header-h) + 4.5rem);
}

.tour-section-heading {
  margin-bottom: 0.85rem;
}

.tour-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.tour-day-shell {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.tour-day-tabs {
  position: sticky;
  top: calc(var(--header-h) + 4.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.36rem;
}

.tour-day-tabs a {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(26, 77, 74, 0.12);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.tour-day-flow {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tour-day-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(20, 45, 50, 0.06);
  scroll-margin-top: calc(var(--header-h) + 4.5rem);
}

.tour-day-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
}

.tour-day-num {
  display: inline-flex;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--forest-light);
  border: 1px solid rgba(26, 77, 74, 0.14);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.tour-day-city {
  display: inline-flex;
  margin: 0;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 74, 122, 0.08);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-day-copy h3 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.tour-day-copy p:not(.tour-day-city),
.tour-transfer-row p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.tour-transfer-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.4rem 0.7rem;
  align-items: center;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest-light), rgba(227, 242, 249, 0.75));
  color: var(--brand);
  font-size: 0.88rem;
}

.tour-transfer-row p {
  grid-column: 2;
  font-size: 0.82rem;
}

.tour-place-grid,
.tour-highlight-grid,
.tour-inclusion-grid {
  display: grid;
  gap: 0.85rem;
}

.tour-place-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.tour-place-card,
.tour-highlight-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(20, 45, 50, 0.06);
}

.tour-place-card img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.tour-place-card div,
.tour-highlight-card {
  padding: 0.9rem;
}

.tour-place-card span,
.tour-highlight-card h3,
.tour-inclusion-grid h3 {
  color: var(--ink);
  font-weight: 800;
}

.tour-place-card p,
.tour-highlight-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.88rem;
}

.tour-highlight-grid,
.tour-inclusion-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tour-highlight-card span {
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-highlight-card h3,
.tour-inclusion-grid h3 {
  margin: 0.3rem 0 0;
}

.tour-inclusion-grid article,
.tour-detail-cta {
  padding: 1.1rem;
}

.tour-inclusion-grid ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.tour-detail-cta {
  background: linear-gradient(135deg, var(--forest-light), var(--ocean-light));
}

@media (max-width: 960px) {
  .tour-facts,
  .tour-product-layout,
  .tour-day-shell,
  .tour-day-card,
  .tour-highlight-grid,
  .tour-inclusion-grid {
    grid-template-columns: 1fr;
  }

  .tour-product-sidebar,
  .tour-day-tabs {
    position: static;
  }

  .tour-day-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tour-day-card {
    gap: 0.65rem;
  }
}

@media (max-width: 640px) {
  .tour-product-hero {
    min-height: 680px;
  }

  .tour-product-hero-content {
    padding-bottom: 2.4rem;
  }

  .tour-facts,
  .tour-product-layout {
    width: min(100% - 1rem, var(--container));
  }
}
