/* Eén navigatie voor homepage en prijzen; aansluitend op de goedgekeurde homepage. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--home-ground, #edeff3);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}
.site-header, .site-header * { box-sizing: border-box; }
.site-header .wrap { max-width: 1100px; margin: 0 auto; padding-inline: 24px; }
.site-header .header-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.site-header a { color: inherit; text-decoration: none; }
.site-header .brand { display: flex; align-items: center; gap: 6px; font-size: 23px; font-weight: 750; letter-spacing: -.035em; line-height: 1; white-space: nowrap; }
.site-header .brand svg { width: 29px; height: 29px; flex-shrink: 0; color: var(--brand); }
.site-header .header-actions { display: flex; align-items: center; gap: 4px; }
.site-header .nav-cta { display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 9px; font-size: 12px; font-weight: 650; color: var(--brand); white-space: nowrap; }
.site-header .menu-toggle { width: 48px; height: 48px; padding: 0; border: 0; display: grid; place-items: center; background: transparent; color: var(--ink); cursor: pointer; }
.site-header .icon { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.site-header .desktop-navigation { display: none; }
.site-header #site-menu { padding-bottom: 16px; max-height: calc(100dvh - 72px); overflow: auto; }
.site-header #site-menu[hidden] { display: none; }
.site-header #site-menu a { display: flex; align-items: center; justify-content: space-between; min-height: 52px; border-top: 1px solid var(--line); font-size: 15px; font-weight: 400; }
.site-header a[aria-current="page"] { color: var(--brand); text-decoration: underline; text-underline-offset: 5px; }
.site-header :focus-visible { outline: 3px solid var(--brand); outline-offset: 4px; }
@media (min-width: 700px) {
  .site-header .wrap { padding-inline: 40px; }
  .site-header .header-inner { height: 80px; }
  .site-header .brand { font-size: 26px; }
  .site-header .nav-cta { font-size: 14px; padding-inline: 18px; }
  .site-header #site-menu { max-height: calc(100dvh - 80px); }
}
@media (min-width: 1000px) {
  .site-header .wrap { max-width: 1320px; padding-inline: 48px; }
  .site-header .header-inner { height: 88px; gap: 32px; }
  .site-header .brand { font-size: 28px; gap: 9px; }
  .site-header .brand svg { width: 33px; height: 33px; }
  .site-header .desktop-navigation { display: flex; align-items: center; justify-content: flex-end; gap: 27px; margin-left: auto; }
  .site-header .desktop-navigation a { font-size: 14px; font-weight: 550; min-height: 48px; display: flex; align-items: center; white-space: nowrap; }
  .site-header .menu-toggle, .site-header #site-menu { display: none; }
  .site-header .nav-cta { background: var(--brand); color: var(--brand-ink); border-radius: var(--r-md); padding-inline: 20px; font-size: 13px; }
}
@media (min-width: 1000px) and (max-width: 1179px) {
  .site-header .wrap { padding-inline: 32px; }
  .site-header .header-inner, .site-header .desktop-navigation { gap: 18px; }
}
@media (max-width: 359px) {
  .site-header .wrap { padding-inline: 20px; }
  .site-header .brand { font-size: 21px; }
  .site-header .brand svg { width: 25px; }
  .site-header .nav-cta { font-size: 11px; padding-inline: 8px; }
  .site-header .header-actions { gap: 0; }
}
@media (hover: hover) {
  .site-header .desktop-navigation a:hover, .site-header #site-menu a:hover { color: var(--brand); }
  .site-header .menu-toggle:hover { background: var(--line-2); border-radius: 9px; }
}
@media (hover: hover) and (min-width: 1000px) {
  .site-header .nav-cta:hover { background: var(--brand-pressed); }
}
@media print { .site-header { display: none; } }
