:root {
  --bg: #faf8f5;
  --bg-alt: #f0ebe3;
  --surface: #ffffff;
  --text: #1c2834;
  --text-muted: #4a5560;
  --accent: #c45c3e;
  --accent-dark: #9e4529;
  --teal: #2f6f6f;
  --sage: #4a7c59;
  --ocean: #3d6b8c;
  --slate: #5a6578;
  --indigo: #5c5480;
  --rose: #9e5a66;
  --amber: #8a7344;
  --olive: #6b7a4a;
  --border: #e4ddd3;
  --shadow: 0 8px 30px rgba(28, 40, 52, 0.08);
  --shadow-lift: 0 14px 40px rgba(28, 40, 52, 0.11);
  --brand-gradient: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
  --brand-stripe: linear-gradient(90deg, var(--accent), var(--teal), var(--sage));
  --radius: 12px;
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --max: 1120px;
  --article: 720px;
  --hub-accent: var(--teal);
  --hub-tint: var(--bg-alt);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 111, 111, 0.05), transparent 42%),
    radial-gradient(circle at 88% 92%, rgba(196, 92, 62, 0.04), transparent 38%),
    var(--bg);
}
::selection {
  background: rgba(47, 111, 111, 0.22);
  color: var(--text);
}
body.splash-active { overflow: hidden; }

.site-splash {
  position: fixed; inset: 0; z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  background: linear-gradient(145deg, #1c2834 0%, #2f4f4f 55%, #1c2834 100%);
  color: #fff;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}
.site-splash[hidden],
.site-splash.site-splash--done {
  display: none !important;
}
.site-splash.site-splash--active {
  display: flex;
}
.site-splash--out { opacity: 0; visibility: hidden; pointer-events: none; }
.site-splash-inner { text-align: center; padding: 2rem; max-width: 28rem; }
.site-splash-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.site-splash-logo {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  margin: 0;
  letter-spacing: 0.02em;
}
.site-splash-tagline {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.site-splash-loader {
  width: min(240px, 70vw);
  height: 4px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
}
.site-splash-loader-bar {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--brand-gradient);
  border-radius: inherit;
  animation: splash-load 1.1s ease-in-out infinite;
}
@keyframes splash-load {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
@media (prefers-reduced-motion: reduce) {
  .site-splash { transition: none; }
  .site-splash-loader-bar { animation: none; width: 100%; }
  .card:hover, .btn.primary:hover { transform: none; }
}

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
a { color: var(--teal); text-decoration-thickness: 1px; }
a:hover { color: var(--accent); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-stripe);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.35rem; font-weight: 700;
  color: var(--text); text-decoration: none;
}
.logo:hover { color: var(--text); }
.logo-text { letter-spacing: 0.01em; }
.logo-mark {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 7px;
  background: var(--brand-gradient);
  box-shadow: 0 2px 10px rgba(196, 92, 62, 0.28);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 3px;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(-45deg) translate(1px, -1px);
}
.logo-mark--lg {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(196, 92, 62, 0.35);
}
.logo-mark--lg::after { inset: 9px; border-width: 2.5px; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem 0.7rem;
  flex: 1;
  min-width: 0;
}
.site-nav a, .search-open {
  color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.88rem;
  background: none; border: none; cursor: pointer; font-family: inherit;
  white-space: nowrap;
}
.nav-group { position: relative; flex-shrink: 0; }
.nav-group-head {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-group-label {
  font-weight: 600;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
}
.nav-subtoggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}
.nav-subtoggle:hover { background: var(--bg-alt); color: var(--text); }
.nav-group:hover .nav-group-label,
.nav-group:focus-within .nav-group-label,
.nav-group.is-open .nav-group-label {
  border-bottom-color: var(--accent, #c45c26);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 12rem;
  padding: 0.5rem 0;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 50;
}
.nav-dropdown a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--bg-muted, #f4f6f8); }
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown { display: block; }
.destination-region { margin-bottom: 2.5rem; }
.destination-region .section-title {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; }

.search-overlay {
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.5rem;
  background: var(--surface);
}
.search-overlay input {
  width: 100%; padding: 0.85rem 1rem; font-size: 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.search-results { margin-top: 0.75rem; }
.search-results a {
  display: block; padding: 0.65rem 0;
  border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text);
}
.search-results small { color: var(--text-muted); }

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 92% 8%, rgba(47, 111, 111, 0.11), transparent),
    radial-gradient(ellipse 55% 45% at 6% 88%, rgba(196, 92, 62, 0.09), transparent),
    linear-gradient(168deg, #f3ece2 0%, var(--bg) 48%, #f7f4ef 100%);
}
.home-hero::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -12%;
  width: min(480px, 55vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 107, 140, 0.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.home-hero .eyebrow {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: rgba(47, 111, 111, 0.1);
  border: 1px solid rgba(47, 111, 111, 0.16);
  border-radius: 999px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.78rem; font-weight: 600; color: var(--teal);
}
.home-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15; max-width: 16ch; margin: 0.75rem 0 0.5rem;
}
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 42ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.btn {
  display: inline-block; padding: 0.75rem 1.25rem;
  border-radius: 999px; font-weight: 600; text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn.primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 14px rgba(196, 92, 62, 0.28);
}
.btn.primary:hover {
  background: var(--accent-dark); color: #fff;
  box-shadow: 0 6px 20px rgba(196, 92, 62, 0.34);
  transform: translateY(-1px);
}
.btn.secondary { border-color: var(--text); color: var(--text); }
.btn.secondary:hover { background: var(--text); color: #fff; }

section { padding: 3rem 0; }
.section-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-serif);
  font-size: 1.75rem; margin-bottom: 1.5rem;
}
.section-title::before {
  content: "";
  flex-shrink: 0;
  width: 2.25rem;
  height: 3px;
  border-radius: 2px;
  background: var(--brand-gradient);
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.intent-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem; text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  border-left: 3px solid var(--intent-accent, var(--teal));
}
.intent-card:nth-child(1) { --intent-accent: var(--ocean); }
.intent-card:nth-child(2) { --intent-accent: var(--amber); }
.intent-card:nth-child(3) { --intent-accent: var(--sage); }
.intent-card:nth-child(4) { --intent-accent: var(--slate); }
.intent-card:nth-child(5) { --intent-accent: var(--teal); }
.intent-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); color: inherit; }
.intent-card h2 { font-size: 1rem; margin: 0 0 0.35rem; }
.intent-card p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card-grid > .card { min-width: 0; }
.card-grid.large { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  text-decoration: none; color: inherit;
  display: block;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  min-width: 0;
}
.card--media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}
.card-media {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--bg-alt);
  line-height: 0;
}
.card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  border: 0;
}
.card-body {
  display: block;
  padding: 1.25rem;
  flex: 1;
}
.card--media .card-body h2,
.card--media .card-body h3 {
  margin-top: 0;
}
.card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
  color: inherit;
}
.card.featured {
  border-color: rgba(196, 92, 62, 0.22);
  box-shadow: 0 4px 22px rgba(28, 40, 52, 0.06);
}
.card.featured:not(.card--media) {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(196, 92, 62, 0.35), rgba(47, 111, 111, 0.25)) border-box;
  border: 1px solid transparent;
}
.card h2, .card h3 { font-family: var(--font-serif); font-size: 1.15rem; margin: 0.5rem 0; }
.card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.card .meta { display: block; margin-top: 0.75rem; font-size: 0.82rem; color: var(--text-muted); }

.cluster-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--teal); background: rgba(47, 111, 111, 0.1);
  padding: 0.2rem 0.55rem; border-radius: 999px; text-decoration: none;
  border: 1px solid rgba(47, 111, 111, 0.12);
}
.cluster-badge.small { font-size: 0.68rem; }
.cluster-badge[data-cluster="destination-systems"] { color: var(--ocean); background: rgba(61, 107, 140, 0.12); }
.cluster-badge[data-cluster="airport-transit"] { color: var(--slate); background: rgba(90, 101, 120, 0.12); }
.cluster-badge[data-cluster="connected-travel"] { color: var(--teal); background: rgba(47, 111, 111, 0.12); }
.cluster-badge[data-cluster="travel-safety"] { color: #7a5c4e; background: rgba(122, 92, 78, 0.12); }
.cluster-badge[data-cluster="booking-money"] { color: var(--amber); background: rgba(138, 115, 68, 0.14); }
.cluster-badge[data-cluster="packing-gear"] { color: var(--sage); background: rgba(74, 124, 89, 0.12); }
.cluster-badge[data-cluster="digital-nomad"] { color: var(--indigo); background: rgba(92, 84, 128, 0.12); }
.cluster-badge[data-cluster="family-travel"] { color: var(--rose); background: rgba(158, 90, 102, 0.12); }
.cluster-badge[data-cluster="route-blueprints"] { color: #3d5a80; background: rgba(61, 90, 128, 0.12); }
.cluster-badge[data-cluster="smart-checklists"] { color: #4a6b7c; background: rgba(74, 107, 124, 0.12); }
.cluster-badge[data-cluster="travel-hacks"] { color: var(--accent); background: rgba(196, 92, 62, 0.12); }
.cluster-badge[data-cluster="seasonal-event"] { color: var(--olive); background: rgba(107, 122, 74, 0.12); }

.hub-page {
  padding: 2rem 0 4rem;
  background: linear-gradient(180deg, var(--hub-tint) 0%, var(--bg) 320px);
}
.hub-page--destination-systems { --hub-accent: var(--ocean); --hub-tint: #eef3f7; }
.hub-page--airport-transit { --hub-accent: var(--slate); --hub-tint: #eef0f3; }
.hub-page--connected-travel { --hub-accent: var(--teal); --hub-tint: #edf4f4; }
.hub-page--travel-safety { --hub-accent: #7a5c4e; --hub-tint: #f6f0ed; }
.hub-page--booking-money { --hub-accent: var(--amber); --hub-tint: #f7f3ea; }
.hub-page--packing-gear { --hub-accent: var(--sage); --hub-tint: #eef4ef; }
.hub-page--digital-nomad { --hub-accent: var(--indigo); --hub-tint: #f0eef6; }
.hub-page--family-travel { --hub-accent: var(--rose); --hub-tint: #f8eff1; }
.hub-page--route-blueprints { --hub-accent: #3d5a80; --hub-tint: #eef2f7; }
.hub-page--smart-checklists { --hub-accent: #4a6b7c; --hub-tint: #eef2f5; }
.hub-page--travel-hacks { --hub-accent: var(--accent); --hub-tint: #faf0ec; }
.hub-page--seasonal-event { --hub-accent: var(--olive); --hub-tint: #f2f5ec; }
.hub-header { margin-bottom: 2rem; }
.hub-header .eyebrow { color: var(--hub-accent); }
.hub-desc { color: var(--text-muted); max-width: 52ch; }

.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.system-tile {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem; text-decoration: none; color: inherit;
  border-top: 3px solid var(--tile-accent, var(--teal));
  transition: box-shadow 0.2s, transform 0.2s;
}
.system-tile:hover { box-shadow: var(--shadow); transform: translateY(-2px); color: inherit; }
.system-tile[data-cluster="destination-systems"] { --tile-accent: var(--ocean); }
.system-tile[data-cluster="airport-transit"] { --tile-accent: var(--slate); }
.system-tile[data-cluster="connected-travel"] { --tile-accent: var(--teal); }
.system-tile[data-cluster="travel-safety"] { --tile-accent: #7a5c4e; }
.system-tile[data-cluster="booking-money"] { --tile-accent: var(--amber); }
.system-tile[data-cluster="packing-gear"] { --tile-accent: var(--sage); }
.system-tile[data-cluster="digital-nomad"] { --tile-accent: var(--indigo); }
.system-tile[data-cluster="family-travel"] { --tile-accent: var(--rose); }
.system-tile[data-cluster="route-blueprints"] { --tile-accent: #3d5a80; }
.system-tile[data-cluster="smart-checklists"] { --tile-accent: #4a6b7c; }
.system-tile[data-cluster="travel-hacks"] { --tile-accent: var(--accent); }
.system-tile[data-cluster="seasonal-event"] { --tile-accent: var(--olive); }
.system-tile h3 { font-size: 1rem; margin: 0 0 0.35rem; }
.system-tile p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

.two-col {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem;
}
.persona-block {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.75rem 1rem; margin-bottom: 0.75rem; background: var(--surface);
}
.persona-block summary { cursor: pointer; }
.persona-block ul { margin: 0.75rem 0 0; padding-left: 1.2rem; }
.pick-list { list-style: none; padding: 0; }
.pick-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--border); }

.newsletter-card, .newsletter-footer {
  background: var(--text); color: #fff; border-radius: var(--radius);
  padding: 1.25rem; margin-top: 1.5rem;
}
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.newsletter-form input {
  flex: 1; padding: 0.6rem 0.75rem; border: none; border-radius: 8px;
}
.newsletter-form button {
  padding: 0.6rem 1rem; background: var(--accent); color: #fff;
  border: none; border-radius: 8px; font-weight: 600; cursor: pointer;
}

.trust-strip {
  background: var(--bg-alt); text-align: center; padding: 2rem 0;
}
.trust-strip a { font-weight: 600; }

.video-highlight {
  overflow-x: clip;
  max-width: 100%;
}
.video-highlight .video-wrapper {
  max-width: 100%;
}
.videos-index {
  overflow-x: clip;
  max-width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  line-height: 0;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
  display: block;
}
.video-embed {
  width: 100%;
  max-width: 100%;
  margin: 2rem 0;
  overflow: hidden;
}
.video-embed h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}
.video-note {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Article */
.article-page {
  overflow-x: clip;
  max-width: 100%;
}
#main {
  overflow-x: clip;
  max-width: 100%;
}
.hero-placeholder {
  min-height: 280px; background: linear-gradient(135deg, #3d4f5f, #6b7f8f);
  color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
}
.article-hero {
  margin: 0; width: 100%; max-height: 480px; overflow: hidden;
  background: var(--bg-alt);
}
.article-hero img {
  width: 100%; height: auto; max-height: 480px; object-fit: cover; display: block;
}
.hero-label { font-size: 0.75rem; text-transform: uppercase; opacity: 0.8; }
.hero-placeholder p { max-width: 50ch; margin: 0.5rem 0 0; font-size: 0.95rem; opacity: 0.95; }

.article-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 2.5rem;
  padding: 2rem 0 4rem;
  max-width: 100%;
  overflow-x: clip;
}
.article-main {
  min-width: 0;
  max-width: 780px;
  width: 100%;
  overflow-x: clip;
}
.article-main > * {
  max-width: 100%;
}
.article-sidebar {
  min-width: 0;
  max-width: 280px;
  overflow-x: clip;
}
.prose {
  font-size: 1.05rem;
  line-height: 1.75;
}
.prose p { margin: 0 0 1.15rem; }
.article-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2; margin: 0.75rem 0;
}
.article-excerpt { font-size: 1.15rem; color: var(--text-muted); }

.trust-bar {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  font-size: 0.82rem; color: var(--text-muted);
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.trust-badge {
  background: var(--bg-alt); padding: 0.15rem 0.5rem; border-radius: 999px;
}

.callout {
  background: var(--bg-alt); border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.callout h2 { font-size: 1rem; margin: 0 0 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; }
.quick-plan ul { margin: 0; padding-left: 1.2rem; }

.toc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1.5rem 0;
}
.toc h2 { font-size: 0.9rem; margin: 0 0 0.75rem; }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc-h3 { margin-left: 1rem; font-size: 0.92rem; }

.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem; margin: 2.5rem 0 1rem;
  scroll-margin-top: 80px;
}
.prose h3 { font-size: 1.15rem; margin: 1.75rem 0 0.75rem; scroll-margin-top: 80px; }
.prose ul, .prose ol { margin: 0 0 1.15rem; padding-left: 1.4rem; }
.prose iframe,
.prose video,
.prose embed {
  max-width: 100%;
}
.prose li { margin-bottom: 0.35rem; }

.table-wrap { overflow-x: auto; margin: 1rem 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th, td { border: 1px solid var(--border); padding: 0.6rem 0.75rem; text-align: left; }
th { background: var(--bg-alt); }

.checklist { list-style: none; padding: 0; }
.checklist li { padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.checklist li.is-done label { opacity: 0.72; }
.checklist li.is-done { color: var(--text-muted); }
.checklist label { cursor: pointer; display: flex; gap: 0.5rem; align-items: flex-start; }
.checklist-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.checklist-progress {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
}

.sidebar-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem;
}
.sidebar-box h3 { font-size: 0.85rem; text-transform: uppercase; margin: 0 0 0.5rem; letter-spacing: 0.04em; }
.tag-list { list-style: none; padding: 0; margin: 0; }
.tag-list li {
  display: inline-block; background: var(--bg-alt);
  padding: 0.2rem 0.5rem; border-radius: 6px; font-size: 0.82rem; margin: 0.2rem 0.2rem 0 0;
}

.site-footer {
  position: relative;
  background: linear-gradient(165deg, #1a2632 0%, #1c2834 45%, #243838 100%);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 1.5rem; margin-top: 2rem;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-stripe);
}
.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}
.footer-brand-wrap .logo-mark {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.footer-brand { font-family: var(--font-serif); font-size: 1.25rem; color: #fff; margin: 0; }
.footer-tagline { margin: 0.35rem 0 0; }
.footer-heading { color: #fff; font-weight: 600; margin: 0 0 0.5rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: rgba(255,255,255,0.85); }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.85rem; }

.filter-bar { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.filter-primary { display: flex; flex-wrap: wrap; gap: 1rem; }
.filter-advanced { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.75rem 1rem; }
.filter-advanced summary { cursor: pointer; font-weight: 600; }
.filter-advanced-inner { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.75rem; align-items: center; }
.filter-bar label { font-size: 0.9rem; font-weight: 600; }
.filter-bar select { margin-left: 0.35rem; padding: 0.4rem; }
.filter-count { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.btn.small { padding: 0.45rem 0.85rem; font-size: 0.85rem; }
.search-badge { display: block; font-size: 0.75rem; color: var(--teal); margin-top: 0.25rem; }
.no-results-suggest { font-size: 0.9rem; color: var(--text-muted); }

.btn-save-board { margin-top: 1rem; }
.btn-save-board.saved { border-color: var(--teal); color: var(--teal); }

.boards-toolbar { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.travel-log-stats {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.travel-log-stats .section-title { margin: 0 0 1rem; font-size: 1.15rem; }
.travel-log-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}
.travel-log-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.travel-log-stat strong {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1.1;
  color: var(--ocean);
}
.travel-log-stat span { font-size: 0.85rem; color: var(--text-muted); }
.travel-log-hint { margin: 1rem 0 0; font-size: 0.88rem; color: var(--text-muted); }

.travel-passport {
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.travel-passport .section-title { margin: 0 0 1rem; font-size: 1.15rem; }
.passport-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.passport-columns h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.passport-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.passport-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}
.passport-meta { font-size: 0.82rem; color: var(--text-muted); }
.passport-empty { font-size: 0.9rem; color: var(--text-muted); }

.board-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.board-header h2 { margin: 0; font-size: 1.15rem; font-family: var(--font-serif); }
.board-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.board-notes-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.board-notes {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  resize: vertical;
  min-height: 4.5rem;
}
.dest-filter-bar { margin-bottom: 1.5rem; }
.destination-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.destination-card-link {
  display: block;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  flex: 1;
}
.destination-card-link:hover { color: inherit; }
.dest-tracker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.dest-status-btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  color: inherit;
}
.dest-status-btn:hover { border-color: var(--accent); }
.dest-status-btn.is-active[data-status="visited"] {
  background: rgba(46, 125, 96, 0.14);
  border-color: #2e7d60;
  color: #2e7d60;
}
.dest-status-btn.is-active[data-status="planned"] {
  background: rgba(201, 122, 26, 0.12);
  border-color: var(--amber);
  color: #9a5c10;
}
.boards-toolbar input { flex: 1; min-width: 200px; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); }
.boards-empty { text-align: center; padding: 2rem; background: var(--bg-alt); border-radius: var(--radius); }
.boards-list { display: flex; flex-direction: column; gap: 1.5rem; }
.board-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.btn-delete-board, .btn-remove-item {
  background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.85rem; font-family: inherit;
}
.btn-delete-board:hover, .btn-remove-item:hover { color: var(--accent); }
.board-items { list-style: none; padding: 0; margin: 1rem 0 0; }
.board-items li { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--border); gap: 1rem; }
.board-empty { color: var(--text-muted); margin: 0.75rem 0 0; }

@media (max-width: 1120px) {
  .two-col, .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 120;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem 1rem;
    box-shadow: var(--shadow);
    max-height: min(70vh, 32rem);
    overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .site-nav > a,
  .site-nav .nav-group-head {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .site-nav > a,
  .search-open {
    display: block;
    padding: 0.65rem 0;
    font-size: 0.95rem;
    white-space: normal;
  }
  .nav-group { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.15rem 0;
  }
  .nav-group-label {
    flex: 1;
    padding: 0.5rem 0;
    border-bottom: none;
  }
  .nav-subtoggle { display: inline-flex; flex-shrink: 0; }
  .nav-subtoggle[aria-expanded="true"] span { transform: rotate(180deg); }
  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown { display: none; }
  .nav-dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    min-width: 0;
    padding: 0 0 0.5rem 0.75rem;
    margin: 0;
  }
  .nav-group.is-open .nav-dropdown { display: block; }
  .nav-dropdown a {
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    white-space: normal;
  }
}

@media (min-width: 1121px) {
  .site-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .site-nav::-webkit-scrollbar { display: none; }
}

@media (max-width: 600px) {
  body { font-size: 17px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

.destination-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem; margin: 0.25rem 0;
}
.destination-hero p { max-width: 50ch; opacity: 0.95; }
.destination-hero--image {
  position: relative; min-height: 320px; overflow: hidden;
  color: #fff; background: #2a3540;
}
.destination-hero--image img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.destination-hero-overlay {
  position: relative; z-index: 1; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(20, 28, 36, 0.15) 0%, rgba(20, 28, 36, 0.82) 72%);
}

.guides-load-more-wrap {
  display: flex; justify-content: center; margin: 2rem 0 1rem;
}

.video-list { display: flex; flex-direction: column; gap: 2.5rem; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.video-thumb-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.video-thumb-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(20, 28, 36, 0.08);
}
.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}
.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-badge {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.1rem;
}
.video-thumb-meta {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.video-thumb-meta h2 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0;
}
.video-channel,
.video-guide-link {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.video-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  max-width: 100%;
}
.video-card .video-wrapper {
  border-radius: 0;
}
.video-meta { padding: 1.25rem; }
.video-meta h2 { font-family: var(--font-serif); font-size: 1.25rem; margin: 0 0 0.5rem; }

.page-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  margin: 0 0 0.5rem;
}
.page-header h1::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: var(--brand-gradient);
}

.checklist-header {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 0.75rem; margin-bottom: 0.5rem;
}
.checklist-header h2 { margin: 0; }
.btn-print-checklist {
  padding: 0.45rem 0.9rem; font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--border); border-radius: 999px;
  background: var(--surface); cursor: pointer; font-family: inherit;
}
.btn-print-checklist:hover { border-color: var(--accent); color: var(--accent); }

@media print {
  .site-header, .site-footer, .article-sidebar, .toc, .related-content,
  .video-embed, .btn-print-checklist, .trust-bar,
  .affiliate-panel, .affiliate-inline, .affiliate-end-panel, .tpwidg-widget-wrap { display: none !important; }
  .article-layout { grid-template-columns: 1fr; }
  .checklist-block { break-inside: avoid; }
  body { font-size: 12pt; background: #fff; }
  a { color: #000; text-decoration: none; }
}

.flights-editorial { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.flights-editorial ul { margin: 0.5rem 0 0; padding-left: 1.25rem; }
.flights-page .flights-widget-hero { margin: 1.5rem 0 2.5rem; }
.flights-map-widget { margin: 0 0 2.5rem; }
.flights-widgets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }

.tpwidg-section { padding: 1.25rem 0; }
.tpwidg-widget-wrap {
  margin: 1.5rem 0;
  min-height: 100px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  contain: layout inline-size;
}
.tpwidg-widget-wrap iframe,
.tpwidg-widget-wrap > div,
.tpwidg-widget-wrap > span {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box;
}
.tpwidg-section .tpwidg-widget-wrap { margin: 0; }
.article-main > .tpwidg-widget-wrap {
  margin: 2.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.article-sidebar .tpwidg-widget-wrap {
  margin-top: 0.5rem;
  border: 1px solid var(--border);
  padding: 0.65rem;
  border-radius: var(--radius);
  background: var(--surface);
}
.tpwidg-widget-wrap--search { border: 1px solid var(--border); padding: 0.5rem; background: var(--surface); }
.tpwidg-widget-wrap--booking { border-radius: 5px; overflow: hidden; }
.tpwidg-widget-wrap--avia { border-radius: 5px; overflow: hidden; min-height: 120px; }
.tpwidg-widget-wrap--avia-map {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
}
.tpwidg-section--map { margin: 2rem 0; }

.affiliate-box, .affiliate-panel, .affiliate-end-panel, .affiliate-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; margin: 2rem 0;
}
.affiliate-panel-intro { margin: 0 0 0.75rem; font-size: 0.95rem; }
.affiliate-disclosure { font-size: 0.82rem; color: var(--text-muted); margin: 0 0 1rem; }
.affiliate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.affiliate-grid--panel { margin-top: 0.25rem; }
.affiliate-module h3, .affiliate-card h2, .affiliate-card h3 { font-size: 1.05rem; margin: 0 0 0.5rem; }
.yesim-esim-panel { border-left: 4px solid var(--ocean); }
.destination-booking-panel { margin-top: 2rem; }

.tool-page .narrow { max-width: 560px; }
.tool-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.tool-form label { display: flex; flex-direction: column; gap: 0.35rem; font-weight: 600; font-size: 0.95rem; }
.tool-form input, .tool-form select { padding: 0.6rem; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; }
.tool-results { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; }
.tool-note { font-size: 0.9rem; color: var(--text-muted); }

.route-builder { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .route-builder { grid-template-columns: 1fr; } }
.blueprint-list { display: flex; flex-direction: column; gap: 0.5rem; }
.blueprint-item { display: flex; gap: 0.5rem; padding: 0.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }

.personalize-bar-wrap { background: var(--surface); border-bottom: 1px solid var(--border); padding: 0.75rem 0; }
.personalize-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem; font-size: 0.92rem; }
.profile-chip {
  padding: 0.35rem 0.75rem; border: 1px solid var(--border); border-radius: 999px;
  background: var(--bg); cursor: pointer; font-family: inherit; font-size: 0.85rem;
}
.profile-chip:hover { border-color: var(--accent); }

.deals-editorial { margin-top: 2rem; }
.deals-grid { margin-top: 1rem; }

.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.35rem; list-style: none; padding: 0; margin: 0 0 1rem; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 0.35rem; }
.breadcrumbs a { color: var(--text-muted); }

.error-page { padding: 4rem 0; text-align: center; }
.error-page h1 { font-family: var(--font-serif); }

.newsletter-fallback { margin-top: 0.75rem; }
.newsletter-page-form { margin-top: 2rem; max-width: 420px; }
.airports-index .featured { display: block; margin-bottom: 2rem; }
