/* Inside Vietnam Travel — Design System */

:root {
  --rice: #FAF7F2;
  --rice-dark: #F0EBE3;
  --ink: #1A1A18;
  --ink-soft: #4A4845;
  --ink-muted: #7A7772;
  --teal: #1B4D4A;
  --teal-deep: #0F3330;
  --teal-light: #2A6B66;
  --gold: #C4A053;
  --gold-light: #D4B86A;
  --terracotta: #C4654A;
  --lotus: #E8D5C4;
  --jade: #3D6B5E;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(26, 26, 24, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 26, 24, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 26, 24, 0.12);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--rice);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 77, 74, 0.08);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}
.logo:hover { color: var(--teal); }

.logo-icon {
  width: 40px;
  height: 40px;
  color: var(--teal);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.main-nav > ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--teal);
  background: rgba(27, 77, 74, 0.06);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: rgba(27, 77, 74, 0.08);
  border: 1px solid rgba(27, 77, 74, 0.15);
  border-radius: 999px;
  gap: 2px;
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: all var(--transition);
  text-decoration: none;
}

.lang-switch__btn:hover {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.6);
}

.lang-switch__btn.is-active {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 1px 3px rgba(27, 77, 74, 0.25);
  pointer-events: none;
  cursor: default;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 40%, var(--jade) 100%);
  opacity: 0.97;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  color: var(--white);
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--lotus);
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 540px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.35rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--teal-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* Category pills */
.categories-strip {
  background: var(--white);
  border-bottom: 1px solid var(--rice-dark);
  padding: 1.25rem 0;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  background: var(--rice);
  border: 1px solid var(--rice-dark);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all var(--transition);
}
.category-pill:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pill-icon { font-size: 1rem; }

/* Sections */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.featured-section,
.articles-section {
  padding: 5rem 0;
}

.featured-section { background: var(--rice); }
.articles-section { background: var(--white); }

/* Cards */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rice-dark);
  transition: all var(--transition);
  height: 100%;
}

.card--article .card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--teal-deep);
}

.card-visual--sm,
.card--featured .card-visual {
  aspect-ratio: 16 / 9;
  height: auto;
}

.card-visual__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.card-link:hover { color: inherit; }
.card-visual--1,
.card-visual__placeholder.card-visual--1 { background: linear-gradient(160deg, #1B4D4A 0%, #3D6B5E 50%, #C4A053 100%); }
.card-visual--2,
.card-visual__placeholder.card-visual--2 { background: linear-gradient(160deg, #0F3330 0%, #2A6B66 60%, #E8D5C4 100%); }
.card-visual--3,
.card-visual__placeholder.card-visual--3 { background: linear-gradient(160deg, #C4654A 0%, #C4A053 50%, #1B4D4A 100%); }
.card-visual--4,
.card-visual__placeholder.card-visual--4 { background: linear-gradient(160deg, #3D6B5E 0%, #1B4D4A 70%, #D4B86A 100%); }
.card-visual--5,
.card-visual__placeholder.card-visual--5 { background: linear-gradient(160deg, #2A6B66 0%, #E8D5C4 40%, #C4654A 100%); }
.card-visual--6,
.card-visual__placeholder.card-visual--6 { background: linear-gradient(160deg, #1B4D4A 0%, #C4A053 30%, #0F3330 100%); }

.card-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.badge-nouveau {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--gold);
  color: var(--teal-deep);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.badge-nouveau--hero {
  position: static;
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.article-hero--with-image {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
}

.article-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.article-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 51, 48, 0.92) 0%, rgba(15, 51, 48, 0.45) 55%, rgba(15, 51, 48, 0.2) 100%);
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-hero--with-image .article-hero-inner {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-top: 8rem;
  padding-bottom: 3rem;
}

.article-hero--with-image .breadcrumb a,
.article-hero--with-image .article-excerpt,
.article-hero--with-image .article-meta,
.article-hero--with-image .tag {
  color: rgba(255, 255, 255, 0.88);
}

.article-hero--with-image h1 {
  color: var(--white);
}

.article-hero__labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.card-visual:has(.card-visual__img)::after {
  background: linear-gradient(to top, rgba(26, 26, 24, 0.55) 0%, transparent 60%);
  opacity: 1;
}

.card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.5'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title,
.card-body h2,
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0.5rem 0 0.75rem;
  color: var(--ink);
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.card-excerpt,
.card-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin: 0;
}

.card-body time {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.card:hover .card-title,
.card:hover h2,
.card:hover h3 { color: var(--teal); }

.card-meta {
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.card--featured .card-body h3,
.card--featured .card-title { font-size: 1.25rem; }

.card-category-inline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}

/* CTA */
.cta-section {
  padding: 5rem 0;
  background: var(--teal-deep);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-content p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.cta-decoration { opacity: 0.15; }
.lotus-svg { width: 180px; height: 180px; color: var(--gold); }

/* Page hero */
.page-hero,
.article-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, var(--rice-dark) 0%, var(--rice) 100%);
}

.page-hero h1,
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero p,
.article-excerpt {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 640px;
}

.article-count {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.4rem 1rem;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal);
}

/* Breadcrumb */
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: var(--ink-muted);
}

.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--teal); }

/* Article */
.article-hero {
  padding-bottom: 2rem;
}

.article-category {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.tag {
  padding: 0.3rem 0.75rem;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 3rem 1.5rem 5rem;
  align-items: start;
}

/* Prose */
.prose {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}

.prose h2:first-child { margin-top: 0; }

.prose p { margin-bottom: 1.25rem; }

.prose ul, .prose ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.prose li { margin-bottom: 0.5rem; }

.prose strong { color: var(--ink); font-weight: 600; }

.prose blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: var(--rice-dark);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--ink);
}

/* Sidebar */
.article-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--rice-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
}

.sidebar-card ul { list-style: none; }
.sidebar-card li { margin-bottom: 0.65rem; }
.sidebar-card a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.4;
  display: block;
}
.sidebar-card a:hover { color: var(--teal); }

.sidebar-card--accent {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  border: none;
  color: var(--white);
}
.sidebar-card--accent h3 { color: var(--white); }
.sidebar-card--accent p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Related */
.related-section {
  padding: 4rem 0 5rem;
  background: var(--rice);
}

.related-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* About */
.about-section { padding: 4rem 0 5rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.about-aside .sidebar-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Error */
.error-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
}

.error-code {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: var(--rice-dark);
  line-height: 1;
  display: block;
}

.error-inner h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.error-inner p {
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

.empty-state {
  text-align: center;
  color: var(--ink-muted);
  padding: 3rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline { font-size: 0.9rem; line-height: 1.6; }

.footer-links h3 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.footer-note { opacity: 0.5; }

/* Responsive */
@media (max-width: 1024px) {
  .featured-grid,
  .articles-grid,
  .articles-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex: none;
    justify-content: flex-start;
    background: var(--rice);
    border-bottom: 1px solid var(--rice-dark);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav > ul {
    flex-direction: column;
    gap: 0.25rem;
    align-items: stretch;
  }

  .main-nav a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .hero-stats { gap: 1.5rem; }

  .featured-grid,
  .articles-grid,
  .articles-grid--3 {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-decoration { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Affiliate components ───────────────────────────── */
.affiliate-card {
  background: var(--white);
  border: 1px solid var(--rice-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.affiliate-card__badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.affiliate-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.affiliate-card__desc { font-size: 0.9rem; color: var(--ink-soft); flex: 1; }
.affiliate-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.75rem; flex-wrap: wrap; }
.affiliate-card__price { font-size: 0.85rem; font-weight: 600; color: var(--teal); }

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

.affiliate-banner {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--rice-dark);
}
.affiliate-banner--sim { background: linear-gradient(135deg, #e8f4f3 0%, var(--rice) 100%); }
.affiliate-banner--insurance { background: linear-gradient(135deg, #fdf6e8 0%, var(--rice) 100%); }
.affiliate-banner--pdf { background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%); color: var(--white); border: none; }
.affiliate-banner--pdf .affiliate-banner__eyebrow,
.affiliate-banner--pdf .affiliate-banner__title,
.affiliate-banner--pdf .affiliate-banner__text,
.affiliate-banner--pdf .pdf-features li { color: rgba(255,255,255,0.9); }
.affiliate-banner--pdf .affiliate-banner__eyebrow { color: var(--gold-light); }
.affiliate-banner--pdf .affiliate-banner__price { color: var(--gold-light); font-size: 1.5rem; font-weight: 700; }
.affiliate-banner__eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); }
.affiliate-banner__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin: 0.35rem 0 0.5rem; }
.affiliate-banner__text { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.6; }
.affiliate-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.affiliate-banner__footer { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 1rem; }
.pdf-features { list-style: none; margin: 0 0 1rem; }
.pdf-features li { font-size: 0.9rem; padding: 0.25rem 0; padding-left: 1.25rem; position: relative; }
.pdf-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-light); }

.btn-ghost-dark {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-ghost-dark:hover { background: var(--teal); color: var(--white); }

.affiliate-disclosure { margin-top: 1rem; color: var(--ink-muted); line-height: 1.5; }

/* ── Newsletter ───────────────────────────────────── */
.newsletter {
  background: var(--teal-deep);
  color: var(--white);
  padding: 3.5rem 1.5rem;
}
.newsletter__inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter__title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; margin-bottom: 0.5rem; }
.newsletter__subtitle { opacity: 0.85; margin-bottom: 1.5rem; font-size: 0.95rem; }
.newsletter__form { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.newsletter__input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.15rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
}
.newsletter__consent {
  flex: 1 1 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}
.newsletter__consent input { margin-top: 0.2rem; flex-shrink: 0; }
.newsletter__consent a { color: inherit; text-decoration: underline; }
.newsletter__privacy { margin-top: 0.75rem; opacity: 0.6; }
.newsletter__privacy a { color: inherit; text-decoration: underline; }

/* Legal pages */
.legal-section { padding: 0 0 5rem; }
.legal-content { max-width: 760px; padding: 2rem 1.5rem 0; }
.legal-updated { margin-top: 0.5rem; opacity: 0.7; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 1rem 0; }
.legal-table th, .legal-table td { border: 1px solid var(--rice-dark); padding: 0.65rem 0.85rem; text-align: left; }
.legal-table th { background: var(--rice-dark); font-weight: 600; }
.legal-nav { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--rice-dark); }
.link-button {
  background: none; border: none; padding: 0; font: inherit; color: var(--teal);
  text-decoration: underline; cursor: pointer;
}
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; justify-content: center;
  margin-top: 0.75rem; font-size: 0.85rem;
}
.footer-legal a, .footer-legal__cookies {
  color: var(--ink-muted); background: none; border: none; padding: 0;
  font: inherit; cursor: pointer; text-decoration: none;
}
.footer-legal a:hover, .footer-legal__cookies:hover { color: var(--teal); text-decoration: underline; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
  background: rgba(26, 26, 24, 0.96); color: var(--rice);
  padding: 1rem 0; box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.cookie-banner__title { font-weight: 600; margin-bottom: 0.25rem; }
.cookie-banner__desc { font-size: 0.88rem; opacity: 0.9; max-width: 640px; }
.cookie-banner__desc a { color: var(--gold-light); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-settings {
  position: fixed; inset: 0; z-index: 9991;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15, 51, 48, 0.5); padding: 1rem;
}
.cookie-settings[hidden] { display: none !important; }
.cookie-settings__panel {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  max-width: 420px; width: 100%; box-shadow: var(--shadow-lg);
}
.cookie-settings__item {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--rice-dark);
}
.cookie-settings__item p { font-size: 0.85rem; color: var(--ink-muted); margin-top: 0.2rem; }
.cookie-settings__badge { font-size: 0.75rem; color: var(--ink-muted); font-weight: 600; }
.cookie-settings__footer { display: flex; justify-content: flex-end; gap: 0.5rem; margin-top: 1rem; }
.cookie-toggle { position: relative; display: inline-block; width: 44px; height: 24px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle__slider {
  position: absolute; inset: 0; background: var(--rice-dark); border-radius: 24px; cursor: pointer;
  transition: var(--transition);
}
.cookie-toggle__slider::before {
  content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px;
  background: var(--white); border-radius: 50%; transition: var(--transition);
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--teal); }
.cookie-toggle input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }

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

/* ── Destinations grid ────────────────────────────── */
.section { padding: 5rem 0; }
.section--alt { background: var(--white); }
.section--monetize { background: var(--rice); padding: 3rem 0; }
.section-cta { text-align: center; margin-top: 2.5rem; }
.section-intro { color: var(--ink-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--rice-dark);
  border-radius: var(--radius-md);
  background: var(--white);
  margin-bottom: 0.75rem;
  padding: 0.25rem 1.25rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 0;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  display: inline;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}
.faq-item p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.dest-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  color: var(--white);
  min-height: 220px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--white); }
.dest-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 51, 48, 0.92) 0%, rgba(15, 51, 48, 0.35) 55%, rgba(15, 51, 48, 0.15) 100%);
  z-index: 1;
}
.dest-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  min-height: 220px;
  margin-top: auto;
}
.dest-card:not(:has(.dest-card__img)) {
  background: linear-gradient(160deg, #0F3330, #2A6B66);
}
.dest-card__name { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; }
.dest-card__tag { font-size: 0.85rem; opacity: 0.9; margin: 0.5rem 0 1rem; flex: 1; line-height: 1.5; }
.dest-card__cta { font-size: 0.85rem; font-weight: 600; opacity: 0.95; }

.page-hero--destination.page-hero--with-image {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  color: var(--white);
}
.page-hero--destination.page-hero--with-image .container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 2.5rem;
}
.page-hero--destination.page-hero--with-image h1,
.page-hero--destination.page-hero--with-image .page-hero__lead {
  color: var(--white);
}
.page-hero--destination.page-hero--with-image .breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 51, 48, 0.9) 0%, rgba(15, 51, 48, 0.4) 60%, rgba(15, 51, 48, 0.25) 100%);
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.itin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.itin-card {
  background: var(--white);
  border: 1px solid var(--rice-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.itin-card__days {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.itin-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.itin-card h3 a { color: var(--ink); }
.itin-card h3 a:hover { color: var(--teal); }
.itin-card p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.75rem; }
.itin-card__budget { font-size: 0.8rem; color: var(--ink-muted); display: block; margin-bottom: 0.75rem; }
.card-link-text { font-size: 0.85rem; font-weight: 600; color: var(--teal); }

.monetize-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ── Page layout ──────────────────────────────────── */
.page-hero__lead { font-size: 1.125rem; color: var(--ink-soft); max-width: 640px; }
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding: 3rem 1.5rem 5rem;
  align-items: start;
}
.page-content { min-width: 0; }
.page-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); display: flex; flex-direction: column; gap: 1.25rem; }

.content-block { margin-bottom: 3rem; }
.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
}

.things-list { list-style: none; }
.things-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rice-dark);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.things-list strong { color: var(--ink); }
.things-list span { font-size: 0.9rem; color: var(--ink-soft); }

.tips-list { margin-left: 1.25rem; }
.tips-list li { margin-bottom: 0.5rem; color: var(--ink-soft); }

.badge, .budget-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.budget-badge { background: var(--rice-dark); color: var(--teal); margin-top: 1rem; }

/* Timeline */
.timeline { list-style: none; }
.timeline__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}
.timeline__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--rice-dark);
}
.timeline__day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
}
.timeline__body h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.35rem; }
.timeline__location { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 0.75rem; }
.timeline__body ul { margin-left: 1.25rem; color: var(--ink-soft); }
.timeline__body li { margin-bottom: 0.35rem; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.nav-dropdown__toggle::after {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
}
.nav-dropdown.is-open .nav-dropdown__toggle,
.nav-dropdown__toggle:hover {
  color: var(--teal);
  background: rgba(27, 77, 74, 0.06);
}
.nav-dropdown.is-open .nav-dropdown__toggle::after {
  transform: rotate(-135deg) translateY(1px);
}
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--rice-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  list-style: none;
  padding: 0.5rem;
  z-index: 50;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-dropdown.is-open .nav-dropdown__menu { display: flex; }
.nav-dropdown__menu a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
}
.nav-dropdown__menu a:hover { background: var(--rice); color: var(--teal); }

/* Flash messages */
.flash-messages { position: fixed; top: calc(var(--header-h) + 0.5rem); right: 1rem; z-index: 200; max-width: 360px; }
.flash {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}
.flash--success { background: #d4edda; color: #155724; }
.flash--error { background: #f8d7da; color: #721c24; }

.about-content { max-width: 720px; padding: 3rem 1.5rem 5rem; }

@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .itin-grid, .monetize-grid { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
}

@media (max-width: 768px) {
  .dest-grid { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { width: 100%; }
  .nav-dropdown__menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 0.5rem;
    margin-top: 0.25rem;
  }
  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

/* Page loader */
.page-loader {
  background: var(--rice);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.page-loader__logo {
  width: 88px;
  height: 88px;
  color: var(--teal);
}

.page-loader__ring {
  transform-origin: 20px 20px;
  animation: loader-ring-breathe 2.2s ease-in-out infinite;
}

.page-loader__arc {
  stroke-dasharray: 42;
  stroke-dashoffset: 42;
  animation: loader-arc-draw 2.2s ease-in-out infinite;
}

.page-loader__traveler {
  filter: drop-shadow(0 1px 3px rgba(27, 77, 74, 0.35));
}

.page-loader__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.15rem;
}

.page-loader__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-loader__sub {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.page-loader__hint {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 400;
  animation: loader-hint-pulse 2.2s ease-in-out infinite;
}

@keyframes loader-ring-breathe {
  0%, 100% { opacity: 0.45; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes loader-arc-draw {
  0% { stroke-dashoffset: 42; opacity: 0.4; }
  40%, 60% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -42; opacity: 0.4; }
}

@keyframes loader-hint-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .page-loader__arc { stroke-dashoffset: 0; animation: none; }
  .page-loader__ring { animation: none; opacity: 1; transform: none; }
  .page-loader__hint { animation: none; opacity: 0.85; }
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
  max-width: 960px;
}

.contact-form.card {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--rice-dark);
  border-radius: var(--radius-md);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--rice-dark);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
}

.contact-form__consent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.875rem;
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.admin-nav__badge {
  display: inline-flex;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .contact-layout,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Blog categories ───────────────────────────────── */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.blog-categories__chip {
  display: inline-flex;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--rice-dark);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.blog-categories__chip:hover,
.blog-categories__chip.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.card--article .card-visual__link { display: block; height: 100%; }
.card--article .card-category { z-index: 2; text-decoration: none; }
a.article-category { text-decoration: none; }
a.article-category:hover { text-decoration: underline; }

/* ── Préparer mon voyage ───────────────────────────── */
.nav-highlight { color: var(--teal) !important; font-weight: 600; }
.page-hero--prepare {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: var(--white);
}
.page-hero--prepare .breadcrumb a,
.page-hero--prepare .breadcrumb li { color: rgba(255,255,255,0.85); }
.prepare-trip__inner { max-width: 820px; margin: 0 auto; }
.prepare-wizard {
  background: var(--white);
  border: 1px solid var(--rice-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.prepare-wizard__progress {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.prepare-wizard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rice-dark);
}
.prepare-wizard__dot.is-active { background: var(--teal); }
.prepare-step h2 { font-size: 1.35rem; margin-bottom: 1.25rem; text-align: center; }
.prepare-options { display: grid; gap: 0.75rem; }
.prepare-options--grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.prepare-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border: 2px solid var(--rice-dark);
  border-radius: var(--radius-md);
  background: var(--rice);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition), background var(--transition);
}
.prepare-option:hover { border-color: var(--teal-light); }
.prepare-option.is-selected {
  border-color: var(--teal);
  background: rgba(27, 77, 74, 0.06);
}
.prepare-option__label { font-weight: 600; color: var(--ink); }
.prepare-option__desc { font-size: 0.85rem; color: var(--ink-muted); }
.prepare-wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}
.prepare-results__header { text-align: center; margin-bottom: 2rem; }
.prepare-results__block { margin-bottom: 2rem; }
.prepare-results__block h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--teal);
}
.prepare-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.prepare-card {
  display: block;
  padding: 1.15rem;
  border: 1px solid var(--rice-dark);
  border-radius: var(--radius-md);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}
.prepare-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: inherit;
}
.prepare-card h3 { font-size: 1rem; margin: 0.35rem 0; color: var(--teal); }
.prepare-card p { font-size: 0.875rem; color: var(--ink-muted); margin: 0; }
.prepare-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.prepare-card__hint { display: block; margin-top: 0.5rem; font-size: 0.8rem; color: var(--ink-soft); }
.prepare-results__cta { text-align: center; margin-top: 2rem; }
