/* ============================================================
   Adlår — adlar.com landenkeuze
   Vormgeving conform het origineel; tokens uit het Adlår design system
   ============================================================ */

:root {
  --c-text: #040404;
  --c-white: #ffffff;
  --c-accent: #e8e000;
  --c-accent-hover: #ded600;
  --c-dark: #040404;
  --c-text-on-dark: rgba(255, 255, 255, .72);

  /* bandkleuren — gemeten uit het origineel */
  --band-nl: #ccd7c8;
  --band-de: #e9e6db;
  --band-be: #ccd7c8;
  --band-uk: #eef2f2;

  --font-heading: "Poppins", Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-body: "Inter", Arial, "Helvetica Neue", Helvetica, sans-serif;

  --radius-band: 16px;
  --container: 1280px;
  --gutter: 20px;
  --motion: .3s;
  --ease: ease-in-out;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--c-dark);
  padding-block: 14px;
}
.site-header .container { display: flex; align-items: center; }
.logo img { width: 132px; }

/* ---------- Landenbanden ---------- */
.countries {
  padding-block: 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.band { border-radius: var(--radius-band); overflow: hidden; }
.band--nl { background: var(--band-nl); }
.band--de { background: var(--band-de); }
.band--be { background: var(--band-be); }
.band--uk { background: var(--band-uk); }

.band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 40px;
  min-height: 340px;
}

.band__media img { margin-inline: auto; max-height: 300px; width: auto; }

.band__body { max-width: 42ch; }

.band__body h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.flag { font-size: .9em; }

.band__body address {
  font-style: normal;
  font-size: 1rem;
  margin: 0 0 28px;
}
.band__body address a { color: inherit; text-decoration: none; }
.band__body address a:hover { text-decoration: underline; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--c-accent);
  color: var(--c-text);
  transition: background-color var(--motion) var(--ease);
}
.btn:hover { background: var(--c-accent-hover); }
.btn:focus-visible { outline: 3px solid var(--c-text); outline-offset: 2px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-dark);
  color: var(--c-text-on-dark);
  padding-block: 48px;
  font-size: .875rem;
}
.site-footer .logo { display: block; margin-bottom: 20px; }
.site-footer .logo img { width: 132px; }
.site-footer p { margin: 0; }
.site-footer a { color: var(--c-white); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .band__inner { gap: 24px; padding: 32px; }
}

@media (max-width: 720px) {
  .countries { padding-block: 32px; gap: 10px; }
  .band__inner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    min-height: 0;
    gap: 24px;
  }
  .band__body  { order: 1; max-width: none; }
  .band__media { order: 2; }
  .band__media img { max-height: 240px; }
  .band__body address { margin-bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
