:root {
  --navy-950: #050C30;
  --navy-900: #0E1D47;
  --navy-500: #364464;
  --amber-500: #FDB210;
  --gold-500: #FBC305;
  --cream-100: #FEF7E7;
  --cream-50: #FCE9A8;
  --slate-500: #737B8E;
  --slate-300: #ACB4C2;
  --border-100: #E6E8EE;
  --bg: #FDFDFD;
  --white: #FFFFFF;
  --font-display: "Merriweather", Georgia, "Times New Roman", serif;
  --font-ui: "Nunito Sans", "Open Sans", "Segoe UI", sans-serif;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 16px rgba(14, 29, 71, .06);
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--navy-900);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--amber-500);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border-100);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-shell,
.value-row,
.footer-inner {
  width: min(var(--maxw), calc(100% - 48px));
  margin-inline: auto;
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.brand em {
  margin-left: 3px;
  color: var(--amber-500);
  font-style: italic;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 15px;
  font-weight: 700;
}

.primary-nav a {
  transition: color .18s ease, text-decoration-color .18s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.primary-nav a:hover {
  color: var(--amber-500);
  text-decoration-color: var(--amber-500);
}

.primary-nav a.is-active {
  color: var(--navy-900);
  text-decoration-color: var(--amber-500);
}

.search-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-content: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--border-100);
  border-radius: var(--radius-btn);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy-900);
}

.hero {
  position: relative;
  width: min(var(--maxw), calc(100% - 48px));
  min-height: 390px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--cream-100);
  border-inline: 1px solid var(--border-100);
  border-bottom: 1px solid var(--border-100);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(253, 253, 253, .98) 0%, rgba(253, 253, 253, .88) 27%, rgba(253, 253, 253, .18) 54%, rgba(253, 253, 253, 0) 100%),
    linear-gradient(0deg, rgba(253, 253, 253, .14), rgba(253, 253, 253, .14));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-content {
  position: relative;
  width: 100%;
  min-height: 390px;
  margin-inline: 0;
  padding: 68px 32px 62px;
  display: grid;
  align-content: center;
}

.eyebrow,
.badge,
.meta {
  color: var(--amber-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 520px;
  margin: 8px 0 14px;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 520px;
  margin: 0;
  color: var(--navy-900);
  font-size: 18px;
  line-height: 1.6;
}

.category-hero {
  position: relative;
  width: min(var(--maxw), calc(100% - 48px));
  min-height: 272px;
  margin-inline: auto;
  overflow: hidden;
  border-inline: 1px solid var(--border-100);
  border-bottom: 1px solid var(--border-100);
  background: var(--white);
}

.category-hero-media {
  position: absolute;
  inset: 0;
}

.category-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(253, 253, 253, .98) 0%, rgba(253, 253, 253, .91) 33%, rgba(253, 253, 253, .34) 62%, rgba(253, 253, 253, .02) 100%),
    linear-gradient(0deg, rgba(253, 253, 253, .1), rgba(253, 253, 253, .1));
}

.category-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.category-hero-content {
  position: relative;
  min-height: 272px;
  display: grid;
  align-content: center;
  padding: 34px 32px 44px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--navy-500);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--amber-500);
}

.category-hero h1 {
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.16;
}

.category-hero p {
  max-width: 610px;
  margin: 0;
  color: var(--navy-900);
  font-size: 17px;
  line-height: 1.62;
}

.category-strip {
  width: min(var(--maxw), calc(100% - 48px));
  margin: -1px auto 0;
  padding: 20px 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border-100);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  box-shadow: var(--shadow-card);
}

.category-topic {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-btn);
  transition: background-color .18s ease, transform .18s ease;
}

.category-topic:hover {
  background: var(--cream-100);
  transform: translateY(-1px);
}

.category-topic strong,
.category-topic small {
  display: block;
}

.category-topic strong {
  margin-bottom: 1px;
  color: var(--navy-900);
  font-size: 14px;
  line-height: 1.25;
}

.category-topic small {
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.category-featured {
  padding-top: 34px;
}

.travel-feature-card,
.travel-list-card {
  background: var(--white);
  border: 1px solid var(--border-100);
  box-shadow: var(--shadow-card);
}

.travel-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border-radius: var(--radius-card);
}

.travel-feature-card::after {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: calc(46% - 1px);
  width: 2px;
  content: "";
  background-image: linear-gradient(var(--border-100) 45%, transparent 0);
  background-size: 2px 14px;
  pointer-events: none;
}

.travel-feature-image {
  min-height: 310px;
  overflow: hidden;
}

.travel-feature-image img,
.travel-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease-out;
}

.travel-feature-card:hover .travel-feature-image img,
.travel-list-card:hover .travel-list-image img {
  transform: scale(1.03);
}

.travel-feature-copy {
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  align-content: center;
}

.travel-feature-copy h3 {
  max-width: 520px;
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.25;
}

.travel-feature-copy h3 a:hover,
.travel-list-copy h3 a:hover {
  color: var(--amber-500);
}

.travel-feature-copy p {
  max-width: 560px;
  margin: 16px 0 18px;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.65;
}

.travel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 700;
}

.travel-article-list {
  padding-bottom: 64px;
}

.category-empty {
  max-width: 760px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--border-100);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.category-empty h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
}

.category-empty p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.65;
}

.travel-list-card {
  max-width: 760px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-card);
  transition: box-shadow .18s ease, transform .18s ease;
}

.travel-list-card:hover {
  box-shadow: 0 12px 26px rgba(14, 29, 71, .1);
  transform: translateY(-2px);
}

.travel-list-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-btn);
}

.travel-list-copy h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
}

.travel-list-copy p {
  margin: 8px 0 10px;
  color: var(--slate-500);
  font-size: 15px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-btn);
  padding: 12px 24px;
  font-weight: 700;
  line-height: 1;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}

.button-primary:hover {
  background: #E6AE00;
}

.button-secondary {
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--border-100);
}

.button-secondary:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.value-row {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border-100);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  box-shadow: var(--shadow-card);
}

.value-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

.icon-chip,
.category-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
}

.icon-chip {
  width: 48px;
  height: 48px;
  background: var(--gold-500);
}

.icon-chip svg,
.category-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--navy-900);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.value-item h2 {
  margin: 0 0 2px;
  font-size: 15px;
  line-height: 1.25;
}

.value-item p {
  margin: 0;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.35;
}

.section-shell {
  padding-top: 32px;
  margin-top: 32px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 28px);
  line-height: 1.25;
}

.section-heading a {
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}

.section-heading a:hover,
.read-more:hover {
  color: var(--amber-500);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.guide-card,
.category-tile,
.brand-card,
.post-card {
  background: var(--white);
  border: 1px solid var(--border-100);
  box-shadow: var(--shadow-card);
}

.guide-card {
  overflow: hidden;
  border-radius: var(--radius-card);
  transition: box-shadow .18s ease, transform .18s ease;
}

.guide-card:hover {
  box-shadow: 0 12px 30px rgba(14, 29, 71, .11);
  transform: translateY(-2px);
}

.card-image,
.post-image {
  display: block;
  overflow: hidden;
}

.card-image {
  aspect-ratio: 16 / 9;
}

.card-image img,
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease-out;
}

.guide-card:hover .card-image img,
.post-card:hover .post-image img {
  transform: scale(1.03);
}

.card-body {
  padding: 20px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 22px;
  margin-bottom: 12px;
  padding: 5px 10px 4px;
  border-radius: var(--radius-pill);
  background: var(--cream-50);
  color: var(--navy-900);
}

.guide-card h3,
.post-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
}

.guide-card h3 a:hover,
.post-card h3 a:hover {
  color: var(--amber-500);
}

.guide-card p {
  margin: 12px 0 18px;
  color: var(--slate-500);
  font-size: 15px;
  line-height: 1.55;
}

.read-more {
  color: var(--amber-500);
  font-size: 14px;
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-tile {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: var(--radius-card);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.category-tile:hover {
  border-color: var(--amber-500);
  box-shadow: 0 12px 26px rgba(14, 29, 71, .08);
  transform: translateY(-2px);
}

.category-icon {
  width: 50px;
  height: 50px;
}

.category-icon.blue {
  background: #DCEBFF;
}

.category-icon.green {
  background: #DDEECF;
}

.category-icon.gold {
  background: var(--cream-50);
}

.category-tile strong,
.category-tile small {
  display: block;
}

.category-tile strong {
  margin-bottom: 2px;
  font-size: 15px;
  line-height: 1.25;
}

.category-tile small {
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.35;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.brand-card {
  min-height: 78px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  transition: transform .18s ease, box-shadow .18s ease;
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(14, 29, 71, .08);
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 132px;
  max-height: 44px;
  object-fit: contain;
}

.brand-logo-wide {
  max-width: 148px;
  max-height: 38px;
}

.brand-logo-tall {
  max-width: 118px;
  max-height: 48px;
}

.brand-logo-square {
  max-width: 68px;
  max-height: 52px;
}

.latest {
  padding-bottom: 64px;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.post-card {
  overflow: hidden;
  border-radius: var(--radius-card);
  transition: box-shadow .18s ease, transform .18s ease;
}

.post-card:hover {
  box-shadow: 0 12px 26px rgba(14, 29, 71, .1);
  transform: translateY(-2px);
}

.post-image {
  aspect-ratio: 16 / 8.7;
}

.post-card div {
  padding: 16px 18px 18px;
}

.post-card h3 {
  margin-top: 8px;
  font-size: 16px;
}

.site-footer {
  background: var(--navy-900);
  color: var(--slate-300);
}

.footer-inner {
  min-height: 220px;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px 60px;
  align-items: start;
}

.footer-brand span {
  color: var(--white);
}

.footer-inner p {
  max-width: 500px;
  margin: 14px 0 0;
  color: var(--slate-300);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
  font-size: 14px;
  font-weight: 700;
}

.footer-inner nav a:hover {
  color: var(--amber-500);
}

/* ---------- Legal pages ---------- */
.legal-shell {
  width: min(860px, calc(100% - 48px));
  margin: 34px auto 78px;
  padding: 44px;
  border: 1px solid var(--border-100);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-body h2 {
  margin-top: 34px;
}

.legal-body strong {
  color: var(--navy-900);
}

/* ---------- Article / blog post ---------- */
.article-shell {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-header .breadcrumb {
  color: var(--slate-500);
  margin-bottom: 20px;
}

.article-badge {
  margin-bottom: 16px;
}

.article-title {
  max-width: 640px;
  margin: 0 0 14px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
}

.article-lead {
  max-width: 640px;
  margin: 0 0 24px;
  color: var(--slate-500);
  font-size: 18px;
  line-height: 1.6;
}

.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 26px;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 700;
}

.byline-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.byline b {
  color: var(--navy-900);
}

.byline .dot {
  color: var(--slate-300);
}

.article-hero {
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-100);
  aspect-ratio: 16 / 8.4;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding-top: 28px;
}

.article-body p {
  margin: 0 0 20px;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.7;
}

.article-body h2 {
  scroll-margin-top: 88px;
  margin: 38px 0 14px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(21px, 2.2vw, 24px);
  line-height: 1.3;
}

.article-body h2 .num {
  color: var(--amber-500);
  font-style: italic;
}

.feature-grid {
  margin: 4px 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.feature-item {
  min-width: 0;
}

.feature-item .icon-chip {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
}

.feature-item .icon-chip svg {
  width: 21px;
  height: 21px;
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 15px;
  line-height: 1.25;
}

.feature-item > span:not(.icon-chip) {
  display: block;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.4;
}

.callout {
  display: flex;
  gap: 16px;
  margin: 22px 0;
  padding: 20px 22px;
  background: var(--cream-100);
  border: 1px solid var(--cream-50);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-btn);
}

.callout .icon-chip {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
}

.callout .icon-chip svg {
  width: 20px;
  height: 20px;
}

.callout-text strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-900);
  font-size: 15px;
}

.callout-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.article-figure {
  margin: 8px 0 24px;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-100);
  aspect-ratio: 16 / 6.6;
}

.article-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-grid {
  margin: 4px 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.option-card {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border-100);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.option-card .icon-chip {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
}

.option-card .icon-chip svg {
  width: 19px;
  height: 19px;
}

.option-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-900);
  font-size: 15px;
}

.option-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.5;
}

/* ---- Sidebar ---- */
.article-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 22px;
}

.sidebar-box {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border-100);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.sidebar-title {
  margin: 0 0 14px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.3;
}

.toc {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.toc li {
  counter-increment: toc;
  border-top: 1px solid var(--border-100);
}

.toc li:first-child {
  border-top: 0;
}

.toc a {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  color: var(--navy-500);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: color .18s ease;
}

.toc a::before {
  content: counter(toc);
  flex: 0 0 auto;
  color: var(--amber-500);
  font-weight: 800;
}

.toc a:hover {
  color: var(--amber-500);
}

.sidebar-cta {
  background: var(--cream-100);
  border-color: var(--cream-50);
  box-shadow: none;
}

.sidebar-cta p {
  margin: 0 0 16px;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.55;
}

.sidebar-cta .button {
  width: 100%;
  min-height: 46px;
}

.tips-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.tips-list li {
  display: flex;
  gap: 12px;
}

.tips-list .icon-chip {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-top: 1px;
}

.tips-list .icon-chip svg {
  width: 17px;
  height: 17px;
}

.tips-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 14px;
}

.tips-list span {
  display: block;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.45;
}

.article-shell + .site-footer {
  margin-top: 72px;
}

@media (max-width: 1000px) {
  .primary-nav {
    gap: 18px;
    font-size: 14px;
  }

  .value-row,
  .card-grid,
  .category-grid,
  .category-strip,
  .latest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(253, 253, 253, .98) 0%, rgba(253, 253, 253, .86) 44%, rgba(253, 253, 253, .18) 100%),
      linear-gradient(0deg, rgba(253, 253, 253, .16), rgba(253, 253, 253, .16));
  }

  .category-hero-media::after {
    background:
      linear-gradient(90deg, rgba(253, 253, 253, .98) 0%, rgba(253, 253, 253, .9) 48%, rgba(253, 253, 253, .3) 100%),
      linear-gradient(0deg, rgba(253, 253, 253, .12), rgba(253, 253, 253, .12));
  }

  .travel-feature-card {
    grid-template-columns: 1fr;
  }

  .travel-feature-card::after {
    display: none;
  }

  .travel-feature-image {
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
  }
}

@media (max-width: 900px) {
  .article-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    inset: 65px 0 auto 0;
    display: none;
    padding: 22px 24px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-100);
    box-shadow: 0 16px 30px rgba(14, 29, 71, .09);
  }

  body.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 0;
  }

  .search-link svg {
    margin-top: 4px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(253, 253, 253, .98) 0%, rgba(253, 253, 253, .88) 46%, rgba(253, 253, 253, .24) 100%);
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-content {
    min-height: 520px;
    padding-top: 54px;
    align-content: start;
  }

  .category-hero,
  .category-hero-content {
    min-height: 340px;
  }

  .category-hero-content {
    align-content: start;
    padding-top: 42px;
  }

  .category-strip {
    margin-top: 0;
    border-radius: 0;
  }

  .value-row {
    margin-top: 0;
    border-radius: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .section-shell,
  .value-row,
  .category-hero,
  .category-strip,
  .footer-inner,
  .article-shell,
  .hero {
    width: min(var(--maxw), calc(100% - 32px));
  }

  .legal-shell {
    width: min(100%, calc(100% - 32px));
    padding: 28px;
  }

  .hero-content {
    width: 100%;
    padding-inline: 24px;
  }

  .brand {
    font-size: 25px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 42px;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 16px;
  }

  .category-hero-content {
    padding-inline: 24px;
  }

  .breadcrumb {
    margin-bottom: 18px;
  }

  .category-hero h1 {
    max-width: 340px;
    font-size: 34px;
  }

  .category-hero p {
    max-width: 330px;
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    flex: 1 1 100%;
  }

  .value-row,
  .card-grid,
  .category-grid,
  .category-strip,
  .latest-grid,
  .brand-strip {
    grid-template-columns: 1fr;
  }

  .category-strip {
    padding: 14px;
    gap: 10px;
  }

  .travel-feature-image {
    min-height: 210px;
  }

  .travel-feature-copy {
    padding: 24px;
  }

  .travel-feature-copy h3 {
    font-size: 24px;
  }

  .travel-list-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .travel-list-image {
    aspect-ratio: 16 / 9;
  }

  .feature-grid,
  .option-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-hero {
    aspect-ratio: 16 / 10;
  }

  .article-figure {
    aspect-ratio: 16 / 9;
  }

  .value-row {
    padding: 18px 0;
    gap: 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .latest {
    padding-bottom: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
