:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-900: #134e4a;
  --coral-100: #ffe4e6;
  --coral-400: #fb7185;
  --coral-500: #f43f5e;
  --ink-900: #0b1f24;
  --ink-700: #1f3a40;
  --ink-500: #4b6166;
  --ink-300: #8aa1a6;
  --paper: #fbfaf6;
  --paper-2: #f3efe6;
  --line: #e3dccd;
  --shadow: 0 1px 0 rgba(15, 23, 42, .04), 0 8px 24px -16px rgba(15, 23, 42, .14);
  --radius: 14px;
  --max-w: 1140px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink-900);
  line-height: 1.55;
  font-size: 17px;
}
h1, h2, h3, h4 {
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  line-height: 1.18;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 2.2rem; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
a { color: var(--teal-700); text-underline-offset: 3px; }
a:hover { color: var(--coral-500); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--ink-500); }
.small { font-size: .87rem; }

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 1.15rem; text-decoration: none; color: var(--ink-900);
}
.brand-mark {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--teal-500), var(--coral-400));
  color: white; font-size: 14px;
}
.primary-nav a {
  margin-left: 18px;
  color: var(--ink-700); text-decoration: none; font-weight: 500;
}
.primary-nav a:hover { color: var(--teal-700); }

/* Hero */
.hero {
  background:
    radial-gradient(1200px 400px at 80% -120px, var(--coral-100), transparent 60%),
    radial-gradient(900px 380px at 0% -80px, var(--teal-100), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 56px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: .35em; }
.hero p.lede { font-size: 1.18rem; color: var(--ink-700); max-width: 56ch; }
.hero-stats {
  display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap;
}
.hero-stat strong { display: block; font-size: 1.6rem; color: var(--teal-700); }
.hero-stat span { color: var(--ink-500); font-size: .92rem; }
.hero-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* Buttons */
.btn {
  display: inline-block; padding: 11px 18px; border-radius: 10px;
  background: var(--teal-700); color: white; text-decoration: none;
  font-weight: 600; border: 1px solid transparent;
}
.btn:hover { background: var(--teal-900); color: white; }
.btn-secondary { background: var(--paper-2); color: var(--ink-900); border-color: var(--line); }
.btn-secondary:hover { background: var(--paper); color: var(--ink-900); }
.btn-link { background: none; padding: 0; color: var(--teal-700); }
.btn-link:hover { background: none; color: var(--coral-500); }

/* Sections */
section.section { padding: 56px 0; }
section.section + section.section { border-top: 1px solid var(--line); }
.section-head { margin-bottom: 28px; }
.section-head p { color: var(--ink-500); max-width: 60ch; }

/* Cards */
.grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr; } }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
  display: block; text-decoration: none; color: inherit;
}
.card:hover { border-color: var(--teal-500); }
.card h3 { margin: 0 0 6px; font-size: 1.12rem; }
.card h3 a { color: var(--ink-900); text-decoration: none; }
.card h3 a:hover { color: var(--teal-700); }
.chip-row { list-style: none; padding: 0; margin: 12px 0 0; display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  display: inline-block; padding: 3px 9px; border-radius: 999px;
  background: var(--teal-100); color: var(--teal-900);
  font-size: .78rem; font-weight: 600;
}
.chip-soft { background: var(--paper-2); color: var(--ink-700); }
.card-cta { margin: 14px 0 0; }

.country-card { padding: 16px; }
.country-card h3 { font-size: 1rem; margin: 0 0 4px; }

/* Article body */
article.prose {
  max-width: 760px; margin: 0 auto;
}
article.prose h2 { margin-top: 1.6em; }
article.prose ul, article.prose ol { padding-left: 1.4em; }
article.prose li { margin-bottom: .35em; }
article.prose blockquote {
  border-left: 3px solid var(--teal-500);
  padding: 8px 16px; margin: 1.4em 0; color: var(--ink-700); background: var(--paper-2);
  border-radius: 0 8px 8px 0;
}
.prose-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 40px; align-items: start;
}
@media (max-width: 980px) { .prose-grid { grid-template-columns: 1fr; } }
.sidebar {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  position: sticky; top: 80px;
}
.sidebar h4 { margin-top: 0; }
.sidebar ul { padding-left: 1.2em; margin: 0 0 1em; }

/* In-content adsense */
.ad-slot {
  display: block; margin: 28px 0;
  background: var(--paper-2);
  border: 1px dashed var(--line); color: var(--ink-300);
  text-align: center; font-size: .8rem;
  padding: 20px; border-radius: 12px;
}

/* Forms */
.form-card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); margin: 24px 0;
}
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 10px 12px; border-radius: 8px; border: 1px solid var(--line);
  font: inherit; background: var(--paper);
}
.form-row textarea { min-height: 140px; resize: vertical; }

/* Breadcrumb */
.breadcrumb { font-size: .88rem; color: var(--ink-500); margin: 24px 0 0; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; gap: 6px; flex-wrap: wrap; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--ink-300); }
.breadcrumb a { color: var(--ink-500); }

/* Footer */
.site-footer {
  margin-top: 80px; background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { font-size: .95rem; font-family: inherit; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-700); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 6px 0; }
.footer-links a { color: var(--ink-700); text-decoration: none; }
.footer-links a:hover { color: var(--teal-700); }
.footer-bottom { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 16px; }

/* Pagination */
.pagination {
  display: flex; gap: 8px; justify-content: center; margin: 32px 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  padding: 8px 12px; border-radius: 8px;
  border: 1px solid var(--line); background: white;
  color: var(--ink-700); text-decoration: none; font-size: .9rem;
}
.pagination .current { background: var(--teal-700); color: white; border-color: transparent; }

/* Tables */
table.simple {
  width: 100%; border-collapse: collapse; margin: 16px 0;
}
table.simple th, table.simple td {
  text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line);
}
table.simple th { background: var(--paper-2); font-size: .9rem; }

/* Listing detail */
.listing-meta {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px; margin: 18px 0 28px;
}
@media (max-width: 700px) { .listing-meta { grid-template-columns: repeat(2, 1fr); } }
.listing-meta .item {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 12px;
}
.listing-meta .item small { color: var(--ink-500); display: block; margin-bottom: 2px; }
.listing-meta .item strong { color: var(--ink-900); font-weight: 600; }

/* FAQ */
details.faq {
  background: white; border: 1px solid var(--line);
  border-radius: 10px; padding: 14px 16px; margin-bottom: 10px;
}
details.faq[open] { border-color: var(--teal-500); }
details.faq summary { cursor: pointer; font-weight: 600; }

/* Misc */
.center { text-align: center; }
.note {
  background: var(--coral-100); border-left: 3px solid var(--coral-500);
  padding: 10px 14px; border-radius: 0 8px 8px 0; margin: 16px 0;
  color: var(--ink-900);
}
