/* ============================================================
   StampPath — warm travel-blog visual identity
   Palette: sand cream + ocean teal + sunset coral + sage
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #fbf6ec;
  --bg-soft:   #f4ecdb;
  --card:      #ffffff;
  --border:    #ece4d4;
  --border-strong: #ddd1b8;

  /* Text */
  --fg:        #2a2520;
  --fg-soft:   #4a4239;
  --muted:     #807366;

  /* Accents */
  --teal:      #0d7377;
  --teal-dark: #0a5b5e;
  --coral:     #e76f51;
  --coral-dark:#c75a3f;
  --sage:      #6a8e63;
  --sage-bg:   #e9efe1;
  --amber:     #c4863b;
  --amber-bg:  #fbecd0;
  --rust:      #b85a3a;
  --rust-bg:   #fbe1d4;
  --sky:       #3a7ca5;
  --sky-bg:    #dfecf5;

  /* System */
  --max-w:     1080px;
  --radius:    12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(60,40,20,0.04), 0 1px 1px rgba(60,40,20,0.06);
  --shadow:    0 4px 12px rgba(60,40,20,0.06), 0 2px 4px rgba(60,40,20,0.04);
  --shadow-lg: 0 10px 30px rgba(60,40,20,0.08), 0 4px 10px rgba(60,40,20,0.05);
  --transition: 180ms cubic-bezier(.4,0,.2,1);

  /* Type */
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font: 18px/1.65 var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }

::selection { background: var(--coral); color: #fff; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.88);
}
.site-header > * { max-width: var(--max-w); margin: 0 auto; }
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font: 700 1.5rem/1 var(--font-serif);
  letter-spacing: -0.01em;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-dot { color: var(--coral); font-size: 1.6rem; line-height: 0; }
.site-header nav { display: flex; gap: 22px; align-items: center; }
.site-header nav a {
  font: 500 0.95rem/1 var(--font-sans);
  color: var(--fg-soft);
}
.lang-switcher {
  position: relative;
  font-size: 0.85rem;
  border-left: 1px solid var(--border);
  padding-left: 16px;
}
.lang-switcher summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--fg-soft);
  font-weight: 500;
  padding: 4px 0;
  user-select: none;
}
.lang-switcher summary::-webkit-details-marker { display: none; }
.lang-switcher .lang-current { color: var(--teal); font-weight: 700; }
.lang-switcher .lang-caret {
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform 0.15s ease;
}
.lang-switcher[open] .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  min-width: 80px;
  z-index: 10;
}
.lang-menu li { padding: 0; }
.lang-menu a,
.lang-menu strong {
  display: block;
  padding: 7px 14px;
  font-size: 0.88rem;
  text-decoration: none;
}
.lang-menu a { color: var(--fg-soft); }
.lang-menu a:hover { background: var(--bg-soft); color: var(--teal); }
.lang-menu strong { color: var(--teal); font-weight: 700; background: var(--bg-soft); }

/* ============================================================
   Main
   ============================================================ */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 24px 80px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--fg);
  line-height: 1.2;
}
h1 { font-size: 2.4rem; margin: 16px 0 20px; }
.title-pair {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 10px;
}
.title-arrow {
  color: var(--coral);
  font-weight: 400;
  font-size: 2.2rem;
}
.title-flag {
  font-size: 2.2rem;
  vertical-align: -0.15em;
  margin-right: 4px;
}
h2 { font-size: 1.55rem; margin: 44px 0 16px; }
h3 { font-size: 1.15rem; margin: 22px 0 10px; font-family: var(--font-sans); font-weight: 600; }
p, li { margin: 0 0 12px; color: var(--fg-soft); }

/* ============================================================
   Breadcrumbs
   ============================================================ */
.breadcrumbs {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--teal); }

/* ============================================================
   Draft warning
   ============================================================ */
.draft-warning {
  background: var(--amber-bg);
  border: 1px solid #f0d394;
  color: #6b4810;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin: 16px 0 24px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   Verdict box
   ============================================================ */
.verdict {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 1.1rem/1 var(--font-sans);
  padding: 14px 22px;
  border-radius: 999px;
  margin: 10px 0 22px;
  box-shadow: var(--shadow-sm);
}
.verdict-icon { font-size: 1.25rem; }
.verdict-visa_required   { background: var(--rust-bg);  color: var(--rust);  border: 1px solid #f3b59c; }
.verdict-visa_free       { background: var(--sage-bg);  color: var(--sage);  border: 1px solid #c5d6b8; }
.verdict-e_visa,
.verdict-eta,
.verdict-esta,
.verdict-etias,
.verdict-eta_or_visa     { background: var(--sky-bg);   color: var(--sky);   border: 1px solid #b3cfe4; }
.verdict-visa_on_arrival { background: var(--amber-bg); color: var(--amber); border: 1px solid #f0d394; }

.lede {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--fg-soft);
  margin-bottom: 18px;
}

/* ============================================================
   Verified stamp
   ============================================================ */
.verified-stamp {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--muted);
  margin: 18px 0 32px;
  box-shadow: var(--shadow-sm);
}
.verified-stamp strong { color: var(--fg); font-weight: 600; }

/* ============================================================
   Facts table
   ============================================================ */
.facts {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 18px 0 12px;
}
.facts h2 {
  margin: 0;
  padding: 18px 22px 14px;
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.facts table { width: 100%; border-collapse: collapse; }
.facts th, .facts td {
  text-align: left;
  padding: 13px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  vertical-align: top;
}
.facts tr:last-child th, .facts tr:last-child td { border-bottom: none; }
.facts th {
  font-weight: 500;
  color: var(--muted);
  width: 42%;
}

/* ============================================================
   Steps
   ============================================================ */
.steps { margin-top: 30px; }
.steps ol {
  list-style: none;
  counter-reset: step;
  padding: 0;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 12px 16px 12px 60px;
  margin-bottom: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-sans);
}

/* ============================================================
   Affiliate / CTA blocks
   ============================================================ */
.affiliate-block {
  background: linear-gradient(135deg, var(--bg-soft) 0%, #f8efd9 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 36px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.affiliate-block::before {
  content: "✈";
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 5rem;
  opacity: 0.06;
  transform: rotate(-15deg);
}
.affiliate-block h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--fg);
}
.affiliate-block p {
  margin-bottom: 14px;
  color: var(--fg-soft);
}
.affiliate-block .cta {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(13,115,119,0.25);
}
.affiliate-block .cta:hover {
  background: var(--teal-dark);
  text-decoration: none;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13,115,119,0.35);
}

/* ============================================================
   Checklist
   ============================================================ */
.checklist ul {
  list-style: none;
  padding: 0;
}
.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px dashed var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--sage-bg);
  color: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: var(--teal);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform var(--transition);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(270deg); }
.faq details p {
  margin: 12px 0 4px;
  color: var(--fg-soft);
}

/* ============================================================
   Trust + changes
   ============================================================ */
.changes, .trust {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}
.trust h2, .changes h2 { margin-top: 0; }
.changes ul { padding-left: 22px; }

/* ============================================================
   Home page
   ============================================================ */
.hero {
  text-align: center;
  padding: 30px 0 24px;
  background: radial-gradient(ellipse 800px 300px at 50% 0%, #fde8c8 0%, transparent 70%);
  margin: -36px -24px 24px;
  padding: 60px 24px 40px;
}
.hero h1 {
  font-size: 3rem;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
}
.hero .lede {
  font-size: 1.2rem;
  max-width: 580px;
  margin: 0 auto 4px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 50px 0 18px;
}
.section-heading::before,
.section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-strong), transparent);
}
.section-heading h2 { margin: 0; font-size: 1.4rem; }

.country-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0 28px;
}
.country-grid a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--fg);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.country-grid a:hover {
  background: var(--card);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.country-grid a { min-height: 56px; }
.country-grid .country-name {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.country-grid .country-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.country-grid .flag { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }

/* Hero search */
.search-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 36px auto 0;
  text-align: left;
  padding: 0 16px;
  box-sizing: border-box;
}
.search-input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 22px 28px;
  font: 400 1.25rem/1.4 var(--font-sans);
  color: var(--fg);
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-input::placeholder { color: var(--muted); }
.search-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(11, 100, 100, 0.10), var(--shadow);
}
.search-results {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.10);
  max-height: 380px;
  overflow-y: auto;
  z-index: 20;
}
.sr-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.sr-item:last-child { border-bottom: none; }
.sr-item:hover { background: var(--bg-soft); }
.sr-flag { font-size: 1.3rem; line-height: 1; flex-shrink: 0; }
.sr-name { flex: 1; font-weight: 500; }
.sr-type {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.sr-type-p { background: rgba(11, 100, 100, 0.10); color: var(--teal); }
.sr-type-d { background: rgba(229, 105, 79, 0.12); color: var(--coral); }
.sr-count { font-size: 0.85rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.sr-empty { padding: 14px 16px; color: var(--muted); text-align: center; }

/* Collapsible continent blocks */
.continent-block {
  margin: 0 0 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.continent-block:hover { box-shadow: var(--shadow); }
.continent-block[open] {
  background: var(--bg);
  border-color: var(--border-strong);
}
.continent-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  user-select: none;
  transition: background var(--transition);
}
.continent-summary:hover { background: var(--bg-soft); }
.continent-summary::-webkit-details-marker { display: none; }

.continent-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.continent-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  flex-shrink: 0;
}
.continent-preview {
  display: flex;
  gap: 4px;
  flex: 1;
  overflow: hidden;
  margin-left: 4px;
}
.preview-flag {
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.85;
}
.continent-block[open] .continent-preview { display: none; }
.continent-count {
  font-size: 0.78rem;
  color: var(--teal);
  background: rgba(11, 100, 100, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.continent-caret {
  font-size: 0.85rem;
  color: var(--coral);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.continent-block[open] .continent-caret { transform: rotate(180deg); }
.continent-block .country-grid,
.continent-block .destination-grid {
  margin: 4px 16px 18px;
}

@media (max-width: 640px) {
  .continent-preview { display: none; }
  .continent-name { font-size: 1rem; }
}
.country-grid .count {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.85rem;
  background: var(--bg-soft);
  padding: 2px 10px;
  border-radius: 999px;
}

/* ============================================================
   Destination cards (rich, themed gradients per region)
   ============================================================ */
.destination-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin: 18px 0 28px;
}
.destination-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 16px 20px;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.10), transparent 50%);
  pointer-events: none;
}
.destination-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: #fff;
}
.destination-icon {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
  position: relative;
  z-index: 1;
}
.destination-name {
  font: 600 1.05rem/1.2 var(--font-sans);
  margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}
.destination-count {
  font-size: 0.78rem;
  opacity: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}

/* Region-themed gradients */
.region-europe       { background: linear-gradient(135deg, #2c5f8d 0%, #4a8bbf 100%); }
.region-tropical     { background: linear-gradient(135deg, #e76f51 0%, #f4a261 50%, #e9c46a 100%); }
.region-asia-city    { background: linear-gradient(135deg, #5a3e7c 0%, #b35970 100%); }
.region-oceania      { background: linear-gradient(135deg, #2a9d8f 0%, #7fb069 100%); }
.region-americas     { background: linear-gradient(135deg, #c75a3f 0%, #8b3e3a 100%); }
.region-subcontinent { background: linear-gradient(135deg, #d4801e 0%, #b85a3a 100%); }
.region-default      { background: linear-gradient(135deg, #5b6e7c 0%, #6b8392 100%); }

/* About-blurb / feature cards */
.about-blurb {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 40px;
  box-shadow: var(--shadow);
}
.about-blurb h2 { margin-top: 0; }
.feature-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 14px;
}
.feature-grid li {
  margin: 0;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--coral);
}
.feature-grid strong { color: var(--fg); display: block; margin-bottom: 4px; }

/* ============================================================
   Country index page (per-passport / per-destination)
   ============================================================ */
.pair-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}
.pair-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--fg);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.pair-list a:hover {
  text-decoration: none;
  transform: translateX(3px);
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.pair-list .pair-title { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.pair-list .flag { font-size: 1.3rem; }
.pair-verdict {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

/* ============================================================
   Change-feed page
   ============================================================ */
.change-list {
  list-style: none;
  padding: 0;
}
.change-list li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   Legal pages
   ============================================================ */
.legal { max-width: 680px; }
.legal h2 { margin-top: 28px; font-size: 1.2rem; font-family: var(--font-sans); }
.legal ul { padding-left: 22px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #f1e8d2;
  padding: 36px 24px 30px;
  margin-top: 80px;
  border-top: 1px solid var(--border-strong);
}
.site-footer > * { max-width: var(--max-w); margin-left: auto; margin-right: auto; }
.disclaimer {
  background: #fde8c8;
  border-left: 3px solid var(--coral);
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #5b3a1a;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
}
.footer-nav {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
}
.footer-nav a { color: var(--fg-soft); }
.copyright { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 640px) {
  main { padding: 24px 18px 60px; }
  .hero { padding: 40px 18px 28px; margin: -24px -18px 16px; }
  .hero h1 { font-size: 2.1rem; }
  .hero .lede { font-size: 1.05rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  body { font-size: 17px; }
  .site-header { padding: 14px 18px; }
  .brand { font-size: 1.3rem; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .facts th, .facts td { padding: 11px 16px; font-size: 0.93rem; }
  .facts th { width: 48%; }
  .steps li { padding-left: 54px; }
  .affiliate-block { padding: 18px 20px; }
  .about-blurb { padding: 22px 22px; }
}
