:root {
  --ink: #17212b;
  --muted: #53616f;
  --line: #d9e0e6;
  --paper: #f6f7f5;
  --white: #ffffff;
  --blue: #1c5d84;
  --green: #3f7652;
  --red: #a34835;
  --gold: #b88a2c;
  --shadow: 0 18px 48px rgba(23, 33, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--ink);
  border-radius: 7px;
  font-size: 0.8rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 22, 30, 0.84) 0%, rgba(13, 22, 30, 0.64) 42%, rgba(13, 22, 30, 0.16) 100%),
    linear-gradient(0deg, rgba(13, 22, 30, 0.35) 0%, rgba(13, 22, 30, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 9vh 0 16vh;
}

.eyebrow,
.section-kicker,
.topic-meta {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2.4vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions a {
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 7px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.hero-actions a:first-child {
  color: var(--ink);
  background: var(--white);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) 0;
}

.intro {
  padding-bottom: clamp(32px, 5vw, 54px);
}

.section h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section > p,
.section-lead {
  max-width: 880px;
  color: var(--muted);
  font-size: 1.06rem;
}

.category-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.category-grid article,
.trust-grid article,
.topic-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(23, 33, 43, 0.05);
}

.category-grid article,
.trust-grid article {
  min-height: 220px;
  padding: 22px;
}

.category-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 800;
}

.category-grid h3,
.trust-grid h3,
.topic-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.category-grid p,
.trust-grid p,
.topic-card p {
  color: var(--muted);
}

.article-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.article-grid a {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(23, 33, 43, 0.05);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.article-grid a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.featured-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.featured-articles a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.06);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.featured-articles a:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.featured-articles span {
  margin-bottom: auto;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-articles strong {
  margin-top: 28px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.featured-articles small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-action {
  margin-top: 24px;
}

.section-action a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.destination-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 17, 23, 0.92) 0%, rgba(10, 17, 23, 0.12) 68%);
}

.destination-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.destination-card:hover > img {
  transform: scale(1.035);
}

.destination-card > div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 24px;
}

.destination-card p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.destination-card h3 {
  margin-bottom: 6px;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1;
}

.destination-link {
  font-weight: 800;
}

.country-code {
  position: relative;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  min-width: 50px;
  height: 34px;
  padding: 0 10px;
  margin: 18px;
  overflow: hidden;
  color: var(--white);
  background: rgba(23, 33, 43, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
}

.country-code::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
}

.flag-nl::after {
  background: linear-gradient(90deg, #ae1c28 0 33%, #fff 33% 66%, #21468b 66%);
}

.flag-uk::after {
  background: linear-gradient(90deg, #012169 0 38%, #fff 38% 43%, #c8102e 43% 57%, #fff 57% 62%, #012169 62%);
}

.flag-de::after {
  background: linear-gradient(90deg, #171717 0 33%, #dd0000 33% 66%, #ffce00 66%);
}

.flag-be::after {
  background: linear-gradient(90deg, #171717 0 33%, #ffd90c 33% 66%, #ef3340 66%);
}

.service-band {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--ink);
}

.service-band div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px clamp(18px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.service-band strong {
  color: var(--white);
  font-size: 1.28rem;
}

.service-band span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.destination-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.destination-hero > img,
.destination-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.destination-hero > img {
  object-fit: cover;
}

.destination-hero-overlay {
  background: linear-gradient(0deg, rgba(11, 18, 25, 0.92) 0%, rgba(11, 18, 25, 0.1) 72%);
}

.destination-hero-content {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0 58px;
}

.destination-hero-content .country-code {
  margin: 0 0 20px;
}

.destination-hero-content h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

.destination-hero-content > p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.destination-content {
  padding-top: 42px;
}

.editorial-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.editorial-strip article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(23, 33, 43, 0.05);
}

.editorial-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.editorial-strip div {
  padding: 18px;
}

.editorial-strip h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.22;
}

.editorial-strip p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.inline-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.topic-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.25fr) minmax(220px, 0.75fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
}

.topic-meta {
  color: var(--green);
}

.answer strong {
  color: var(--ink);
}

.geo {
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
}

.link-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background: #e9eee9;
}

.muted-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background: #e9eee9;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.link-table {
  display: grid;
  gap: 0;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #cbd5cd;
  border-radius: 8px;
  background: var(--white);
}

.link-table [role="row"] {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 1fr 0.75fr;
  border-top: 1px solid var(--line);
}

.link-table [role="row"]:first-child {
  border-top: 0;
}

.link-table span {
  min-width: 0;
  padding: 16px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.link-table .table-head {
  background: var(--ink);
}

.link-table .table-head span {
  color: var(--white);
  font-weight: 800;
}

.trust {
  padding-bottom: clamp(70px, 9vw, 110px);
}

.article-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 104px) 0 clamp(28px, 5vw, 54px);
}

.article-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1;
}

.article-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.compact-hero {
  padding-bottom: clamp(20px, 4vw, 34px);
}

.article-page-list {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(70px, 9vw, 110px);
}

.full-article {
  margin: 0 0 22px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(23, 33, 43, 0.05);
  scroll-margin-top: 86px;
}

.full-article h2 {
  max-width: 830px;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  line-height: 1.08;
}

.full-article h3 {
  margin: 24px 0 8px;
  font-size: 1.1rem;
}

.full-article p,
.full-article li {
  color: var(--muted);
}

.full-article .answer {
  padding: 16px;
  color: var(--ink);
  background: #f0f4f1;
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
}

.article-media {
  width: 100%;
  max-height: 420px;
  margin: 6px 0 20px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: block;
}

.full-article a {
  color: var(--blue);
  font-weight: 800;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.source-list a {
  padding: 14px;
  color: var(--ink);
  background: #f0f4f1;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.source-list a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.full-article ul {
  margin: 0;
  padding-left: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  max-width: 620px;
}

@media (max-width: 920px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--line);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .category-grid,
  .trust-grid,
  .article-grid,
  .editorial-strip,
  .featured-articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inline-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    grid-template-columns: 1fr;
  }

  .link-table {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .link-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .link-table .table-head {
    display: none;
  }

  .link-table span {
    padding: 12px 16px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding-bottom: 110px;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .category-grid,
  .trust-grid,
  .article-grid,
  .editorial-strip,
  .featured-articles,
  .destination-grid,
  .source-list {
    grid-template-columns: 1fr;
  }

  .destination-card {
    min-height: 320px;
  }

  .service-band {
    grid-template-columns: 1fr 1fr;
  }

  .service-band div {
    min-height: 106px;
  }

  .destination-hero {
    min-height: 560px;
  }

  .category-grid article,
  .trust-grid article {
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .article-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.6rem);
  }
}
