:root {
  --page: #f3f6fb;
  --page-dark: #e8eef6;
  --white: #ffffff;
  --ink: #0f2438;
  --ink-soft: #2e4459;
  --muted: #51667b;
  --muted-2: #7b8ea1;
  --brand: #0f4a7a;
  --brand-hover: #0c3b61;
  --accent: #1b7dbf;
  --accent-soft: rgba(27, 125, 191, 0.11);
  --line: rgba(15, 36, 56, 0.11);
  --line-strong: rgba(15, 36, 56, 0.18);
  --shadow: 0 6px 24px rgba(11, 34, 57, 0.08);
  --shadow-lg: 0 26px 64px rgba(11, 34, 57, 0.15);
  --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);
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
}

@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.6;
  color: var(--ink);
  background: var(--page);
  -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;
}

/* ——— Header ——— */
.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 30, 48, 0.8);
  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(12, 36, 58, 0.92);
  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;
}

.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: var(--brand);
}

.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);
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--brand-hover);
}

.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;
}

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

@media (max-width: 720px) {
  .nav a:not(.nav-cta) {
    display: none;
  }
}

/* ——— Main ——— */
main {
  padding-top: var(--header-h);
}

/* ——— 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 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 18, 18, 0.86) 0%,
    rgba(18, 18, 18, 0.46) 46%,
    rgba(18, 18, 18, 0.24) 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-title {
  max-width: 16ch;
  font-size: clamp(2.35rem, 5vw, 3.4rem);
}

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

.hero-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.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: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.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);
}

.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 {
  padding: 0.8rem 1.35rem;
  border: none;
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.btn-search:hover {
  filter: brightness(1.05);
}

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

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

.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;
}

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

.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;
}

.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 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

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

.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-spotlight-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

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

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

.btn-spotlight-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.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;
}

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

.section-block--tint {
  background: var(--page-dark);
  max-width: none;
  padding-left: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - 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;
}

.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(--muted);
  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);
  }
}

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

.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.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);
}

/* ——— Contact ——— */
.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 */
.form-header {
  margin-bottom: 1.5rem;
}

.form-steps-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.form-progress {
  display: flex;
  gap: 0.5rem;
}

.form-progress span {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: var(--line);
  transition: background 0.35s var(--ease);
}

.form-progress span.is-active {
  background: linear-gradient(90deg, var(--brand), #2d7a76);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
  animation: fadeUp 0.4s var(--ease) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.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 {
  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;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

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

.btn.primary {
  background: var(--brand);
  color: #fff;
}

.btn.primary:hover:not(:disabled) {
  background: var(--brand-hover);
}

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

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

/* [hidden] must win over .btn { display: inline-flex } or both nav buttons show */
.trip-form button[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-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: 1.25rem 1.5rem 0;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  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;
}

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

/* Private land tours (country hero + text rows) */
.private-tours-controls {
  max-width: 520px;
  margin: 0 auto 2rem;
}

.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 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: 2.5rem;
}

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

.private-tours-country-head {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 0;
  align-items: stretch;
}

@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 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.private-tour-item {
  border-top: 1px solid var(--line);
}

.private-tour-item details {
  padding: 0.65rem 0.15rem;
}

.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: center;
  justify-content: space-between;
  gap: 0.5rem 0.85rem;
  width: 100%;
}

.private-tour-summary-text {
  flex: 1 1 14rem;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}

.private-tour-summary-cta {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 74, 122, 0.28);
  background: var(--accent-soft);
  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);
}

.private-tour-meta {
  font-size: 0.88rem;
  color: var(--muted);
}

.private-tour-body {
  margin-top: 0.85rem;
  border-left: 2px solid var(--line-strong);
  padding-left: 1rem;
}

.private-tour-overview {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.65;
  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.15rem;
}

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

.private-tour-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 0.65rem;
}

.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);
}

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

.itinerary-day {
  display: grid;
  grid-template-columns: minmax(4.25rem, auto) minmax(0, 1fr);
  gap: 0.75rem 1rem;
  align-items: stretch;
  padding: 0.95rem 1rem;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius-md, 10px);
  box-shadow: 0 1px 0 rgba(15, 74, 122, 0.04);
}

.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;
}

.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;
}

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

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

@media (max-width: 520px) {
  .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.85rem 0.95rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md, 10px);
  box-shadow: 0 1px 2px rgba(15, 74, 122, 0.06);
}

.private-tour-incl-panel--yes {
  border-left: 3px solid rgba(26, 122, 74, 0.55);
}

.private-tour-incl-panel--no {
  border-left: 3px solid rgba(179, 58, 58, 0.45);
}

.private-tour-incl-panel .private-tour-sub {
  margin: 0 0 0.65rem;
}

.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: var(--page);
  border: 1px solid var(--line);
  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;
}

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

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

/* 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.4fr 1fr 1fr;
  gap: 2rem;
}

@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-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(--page-dark) 0%, var(--page) 100%);
  max-width: none;
  padding-left: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  position: relative;
  border-top: 1px solid rgba(15, 74, 122, 0.08);
  border-bottom: 1px solid rgba(15, 74, 122, 0.08);
}

.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;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--accent-soft);
  border: 1px solid rgba(15, 74, 122, 0.18);
  border-radius: 999px;
}

.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;
  }
}

.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.28rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--accent-soft);
  border: 1px solid rgba(15, 74, 122, 0.18);
  border-radius: 999px;
  margin-bottom: 0.15rem;
}

.signature-grid .mode-card-text h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  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 .mode-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#line-compare .mode-card-img {
  flex-shrink: 0;
}

#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);
}
/* ——— end line-compare uniformity ——— */

