:root {
  --ink: #1c1d25;
  --muted: #656979;
  --paper: #f7f2ef;
  --panel: #fffdf9;
  --line: rgba(28,29,37,.14);
  --plum: #5c3f6b;
  --blue: #315f7d;
  --green: #2f6b56;
  --gold: #c99a44;
  --rose: #b85d74;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.55; }
a { color: var(--plum); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; gap: 20px; align-items: center; padding: 12px clamp(16px, 4vw, 48px); background: rgba(247,242,239,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); min-width: 220px; }
.brand span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; background: var(--plum); color: white; font-weight: 900; }
nav { display: flex; gap: 16px; overflow-x: auto; white-space: nowrap; font-size: 14px; }
nav a { color: var(--ink); }
.hero { position: relative; min-height: 720px; display: grid; align-items: end; overflow: hidden; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,18,28,.9), rgba(56,34,63,.62), rgba(17,18,28,.08)), linear-gradient(0deg, rgba(17,18,28,.74), transparent 54%); }
.hero-copy { position: relative; width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 110px 0 56px; color: white; }
.eyebrow { margin: 0 0 10px; color: var(--gold); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: 0; }
h1 { max-width: 920px; margin: 0; font-size: clamp(42px, 7vw, 82px); line-height: .98; letter-spacing: 0; }
.hero-copy p:not(.eyebrow) { max-width: 780px; color: rgba(255,255,255,.87); font-size: clamp(18px,2vw,23px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border-radius: 8px; font-weight: 850; }
.primary { background: var(--gold); color: #1f170b; }
.secondary { border: 1px solid rgba(255,255,255,.42); color: white; }
.notice { width: min(1120px, calc(100% - 32px)); margin: -28px auto 0; position: relative; z-index: 2; padding: 18px 20px; background: var(--panel); border: 1px solid var(--line); border-left: 6px solid var(--rose); border-radius: 8px; }
.section { padding: clamp(58px,8vw,98px) clamp(16px,4vw,48px); }
.band { background: #ece4ea; }
.heading { width: min(1060px,100%); margin: 0 auto 30px; }
.heading h2 { max-width: 880px; margin: 0; font-size: clamp(30px,5vw,54px); line-height: 1.04; letter-spacing: 0; }
.heading p:not(.eyebrow) { max-width: 780px; color: var(--muted); font-size: 18px; }
.grid, .country-grid, .split { width: min(1160px,100%); margin: 0 auto; display: grid; gap: 14px; }
.four { grid-template-columns: repeat(4,1fr); }
.country-grid { grid-template-columns: repeat(3,1fr); }
.split { grid-template-columns: 1fr 1fr; }
article { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
article.featured { border-top: 6px solid var(--plum); }
h3 { margin: 0 0 8px; line-height: 1.18; }
p, li { color: var(--muted); }
.image-row { display: grid; grid-template-columns: repeat(3,1fr); }
.image-row figure { position: relative; min-height: 280px; margin: 0; overflow: hidden; }
.image-row img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
figcaption { position: absolute; left: 12px; bottom: 12px; padding: 7px 10px; border-radius: 8px; background: rgba(255,255,255,.9); font-weight: 800; }
footer { display: flex; justify-content: space-between; gap: 18px; padding: 24px clamp(16px,4vw,48px); background: #11121c; color: white; }
footer p, footer a { color: rgba(255,255,255,.78); }
@media (max-width: 920px) { .site-header { flex-direction: column; align-items: flex-start; } .four, .country-grid, .split, .image-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .hero { min-height: 650px; } .brand { min-width: 0; } .four, .country-grid, .split, .image-row { grid-template-columns: 1fr; } footer { flex-direction: column; } }
