:root {
  --bg: #fff8ef;
  --paper: #ffffff;
  --cream: #f5e5d2;
  --cream-2: #edd2b8;
  --ink: #26160f;
  --muted: #6f5c50;
  --line: #e4cdb8;
  --brand: #7a3d21;
  --brand-2: #a46135;
  --purple: #6e3aa7;
  --purple-dark: #38204f;
  --green: #607646;
  --shadow: 0 22px 70px rgba(38, 22, 15, .12);
  --radius: 24px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-underline-offset: .22em; }
a:hover { color: var(--brand); }
.container { width: min(var(--max), calc(100% - 32px)); margin: auto; }
.narrow { max-width: 840px; }
.section { padding: 76px 0; }
.section-soft { background: linear-gradient(180deg, var(--cream), #f8ebdc); }
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { top: 16px; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 239, .94);
  border-bottom: 1px solid rgba(228, 205, 184, .9);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -.03em;
  text-decoration: none;
}
.mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ink), var(--brand));
  color: #fff8ef;
  box-shadow: 0 12px 28px rgba(122, 61, 33, .25);
  font-size: 1.45rem;
  line-height: 1;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: .94rem;
}
.nav a { text-decoration: none; font-weight: 700; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(237, 178, 118, .55), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(110, 58, 167, .18), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #f8e7d5 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 420px;
  height: 300px;
  border-radius: 50%;
  background: rgba(122, 61, 33, .10);
}
.hero-grid,
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .82fr);
  gap: 46px;
  align-items: center;
}
.hero-grid { min-height: 660px; position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 900;
}
h1, h2, h3 {
  margin: 0 0 18px;
  line-height: 1.07;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(2.55rem, 7vw, 5.7rem); max-width: 940px; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; }
.lead { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.32rem); max-width: 760px; }
.notice { color: var(--muted); font-size: .95rem; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 16px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.primary { background: var(--ink); color: #fff8ef; }
.primary:hover { background: var(--brand); color: #fff; }
.secondary { background: rgba(255,255,255,.72); border: 1px solid var(--line); color: var(--ink); }

.card,
.side,
.warning,
.item,
.benefits article,
.countries article,
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card { position: relative; overflow: hidden; }
.card::before {
  content: "";
  display: block;
  width: 150px;
  height: 96px;
  margin: 0 0 24px auto;
  border-radius: 50% 44% 48% 52%;
  background: linear-gradient(135deg, #8f5530, #d49a66 54%, #f1c899);
  box-shadow: inset -18px -20px 32px rgba(38, 22, 15, .16);
  transform: rotate(-10deg);
}
.facts { display: grid; gap: 14px; margin: 0; }
.facts div { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.facts div:last-child { border-bottom: 0; padding-bottom: 0; }
.facts dt { color: var(--muted); font-size: .84rem; font-weight: 800; }
.facts dd { margin: 4px 0 0; font-weight: 900; }
.checks { margin: 20px 0 0; padding-left: 22px; }
.checks li { margin: 8px 0; }
.heading { max-width: 860px; margin-bottom: 34px; }
.heading p { color: var(--muted); font-size: 1.08rem; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; min-width: 760px; border-collapse: collapse; background: #fff; }
th, td { padding: 17px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
thead th { background: var(--ink); color: #fff8ef; font-size: .9rem; }
tbody th { color: var(--brand); }
.cards,
.benefits,
.countries { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.item p,
.benefits p,
.countries p { color: var(--muted); margin-bottom: 0; }
.tag { display: inline-block; margin-bottom: 18px; color: var(--brand); font-weight: 900; }
.accent { background: linear-gradient(160deg, var(--purple), #4b236f); color: #fff; border-color: transparent; }
.accent p { color: rgba(255,255,255,.86); }
.accent .tag { color: #f7ddff; }
.purple { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); color: #fff; }
.purple .eyebrow { color: #f3ceff; }
.purple p, .purple li { color: rgba(255,255,255,.86); }
.purple .side { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.24); box-shadow: none; }
.steps { padding-left: 22px; }
.steps li { margin-bottom: 12px; }
.warning { margin-top: 26px; background: #fff4eb; border-color: #d8aa92; }
.countries { grid-template-columns: repeat(3, minmax(0, 1fr)); }
details { box-shadow: none; margin-bottom: 12px; }
summary { cursor: pointer; font-weight: 900; }
details p { color: var(--muted); margin-top: 14px; }
.sources,
.footer { background: var(--ink); color: #fff8ef; }
.sources p,
.sources li,
.footer p { color: rgba(255,248,239,.76); }
.sources .eyebrow { color: #f0cda8; }
.footer { padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: center; }
.footer nav { display: flex; flex-wrap: wrap; gap: 16px; }
.footer a { color: #fff8ef; }
:focus-visible { outline: 3px solid #9f6dff; outline-offset: 3px; }

@media (max-width: 960px) {
  .section { padding: 58px 0; }
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 46px 0; }
  .cards, .benefits, .countries { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .header-inner { display: block; padding: 14px 0; }
  .nav { justify-content: flex-start; margin-top: 12px; gap: 10px 14px; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .cards, .benefits, .countries { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.25rem, 13vw, 3.85rem); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
