@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap");

/* Layout: navigation, page structure, grids, flow layout and footer. */

.navigatie {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 14px 32px;
  margin: 0;
  transform: none;
  background:
    linear-gradient(180deg, rgba(9, 9, 10, 0.88), rgba(9, 9, 10, 0.72));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* Final navigation sizing for the publish build. */
@media (max-width: 980px) {
  .navigatie {
    padding: 12px 22px;
  }

  .logo-frame {
    display: contents;
  }

  .logo-beeld {
    width: 138px;
    max-height: none;
  }

  .nav-menu {
    gap: 14px;
    margin-top: 0;
  }

  .navigatie-links {
    gap: 4px;
  }

  .navigatie-links a {
    padding: 0 11px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navigatie {
    padding: 10px 16px;
  }

  .logo-frame {
    display: contents;
  }

  .logo-beeld {
    width: 122px;
    max-height: none;
  }

  .navigatie-links {
    display: none;
  }

  .navigatie-links.is-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(9, 9, 10, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
  }

  .menu-knop {
    display: flex;
  }

  .navigatie-knop {
    height: 40px;
    padding: 0 16px;
    font-size: 0.9rem;
  }
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.navigatie-merk {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-frame {
  display: contents;
}

.logo-beeld {
  width: 170px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
  transform: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  margin: 0;
  margin-left: auto;
}

.navigatie-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.navigatie-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.navigatie-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.navigatie-acties {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navigatie-knop {
  min-width: 0;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2a15d, #d46f31);
  color: #fff;
  font-weight: 800;
  box-shadow:
    0 12px 28px rgba(212, 111, 49, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.navigatie-knop:hover {
  background: linear-gradient(135deg, #ffb06b, #e07735);
  transform: translateY(-1px);
}

.menu-knop {
  display: none;
  width: 44px;
  height: 42px;
  min-width: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-knop span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

main {
  display: block;
  padding: 0 var(--page-padding) 20px;
  position: relative;
  z-index: 1;
}

.page-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.checker-wrapper {
  max-width: 1000px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  scroll-margin-top: 96px;
}

.hero-section {
  min-height: min(720px, 76svh);
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0 clamp(36px, 6vw, 64px);
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 9% 0 auto auto;
  width: min(460px, 48vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 171, 115, 0.13), transparent 68%);
  pointer-events: none;
}

.hero-copy {
  width: min(780px, 100%);
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: #c9ab73;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-section h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
  color: var(--text);
}

.hero-section h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  max-width: 900px;
}

.hero-subtitle {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(244, 244, 243, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 30px;
}

.hero-link {
  color: rgba(244, 244, 243, 0.82);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(201, 171, 115, 0.45);
  padding-bottom: 3px;
}

.hero-link:hover {
  color: #fff;
  border-color: #c9ab73;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(244, 244, 243, 0.78);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  font-weight: 700;
}

.content-section {
  padding: clamp(42px, 7vw, 78px) 0;
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tips-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  min-width: 0;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
  margin: 8px 0 8px;
  color: rgba(244, 244, 243, 0.95);
  font-size: 1.08rem;
}

.info-card p {
  margin: 0;
  color: rgba(244, 244, 243, 0.68);
}

.step-number {
  display: inline-block;
  color: #c9ab73;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wizard-viewport {
  position: relative;
  width: 100%;
  min-height: 280px;
}

.wizard-viewport > section {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  padding-top: 8px;
  opacity: 1;
  transform: none;
  display: none;
}

.wizard-viewport > section.is-active {
  display: block;
  animation: stepFade 0.25s ease-out both;
}

.wizard-viewport > section.hidden {
  display: none !important;
}

@keyframes stepFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flow-container {
  position: relative;
}

.flow-section {
  margin-top: 18px;
  text-align: center;
  min-width: 0;
}

.flow-section:first-child {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .wizard-viewport > section.is-active {
    animation: none;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 16px;
  margin: 14px auto 0;
  justify-content: center;
  width: 100%;
  max-width: 940px;
}

#step-bbq .grid,
#step-methode .grid,
#step-aansteken .grid,
#step-accessoires .grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 220px));
  gap: 14px;
  margin-top: 12px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.grid > * {
  min-width: 0;
}

#step-methode .grid,
#step-aansteken .grid,
#step-accessoires .grid {
  justify-items: center;
}

#step-accessoires .grid {
  display: grid;
  justify-items: center;
  align-items: stretch;
}

footer {
  text-align: center;
  padding: 30px 16px 40px;
  font-size: 0.9rem;
  color: rgba(244, 244, 243, 0.62);
}

@media (max-width: 980px) {
  .navigatie {
    padding: 10px var(--page-padding);
    transform: none;
  }

  .nav-menu {
    margin-top: 8px;
  }

  .logo-beeld {
    width: clamp(92px, 22vw, 148px);
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-inner {
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .navigatie {
    padding: 4px var(--page-padding) 0;
    gap: 16px;
    transform: none;
  }

  .nav-menu {
    flex: 1;
    min-width: 0;
    margin-top: 0;
    gap: 10px;
  }

  .navigatie-links {
    display: none;
  }

  .navigatie-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.5);
    z-index: 6;
  }

  .navigatie-links.is-open a {
    height: auto;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 10px;
    text-shadow: none;
  }

  .navigatie-links.is-open a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .menu-knop {
    display: flex;
    width: 44px;
    height: 44px;
  }

  main {
    padding: 0 var(--page-padding) 20px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 56px;
  }

  .info-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
    gap: 14px;
    max-width: 520px;
  }

  #step-bbq .grid,
  #step-methode .grid,
  #step-aansteken .grid,
  #step-accessoires .grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .navigatie-acties {
    gap: 8px;
    min-width: 0;
  }

  .navigatie-knop {
    min-height: 44px;
    height: auto;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .logo-beeld {
    width: clamp(92px, 30vw, 128px);
  }
}

@media (max-width: 600px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .nav-menu {
    justify-content: flex-end;
  }

  .navigatie-acties {
    gap: 6px;
  }

  .navigatie-knop {
    min-height: 44px;
    padding: 0 11px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .navigatie-links.is-open {
    width: min(220px, calc(100vw - (var(--page-padding) * 2)));
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .navigatie {
    padding: 8px var(--page-padding);
    margin-bottom: 4px;
  }

  .nav-inner {
    gap: 8px;
  }

  .logo-beeld {
    width: clamp(74px, 26vw, 104px);
  }

  .navigatie-knop {
    font-size: 0.78rem;
    padding: 0 8px;
    min-height: 42px;
    height: auto;
  }

  .menu-knop {
    width: 42px;
    height: 42px;
    padding: 5px 7px;
  }

  #step-bbq .grid,
  #step-methode .grid,
  #step-aansteken .grid,
  #step-accessoires .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .navigatie-links.is-open {
    right: -2px;
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .navigatie-knop {
    font-size: 0.74rem;
    padding: 0 7px;
  }

  .menu-knop {
    width: 40px;
    height: 40px;
  }
}

/* Premium navbar + hero intro */
.navigatie {
  position: sticky;
  top: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.78)),
    radial-gradient(circle at 18% 50%, rgba(201, 128, 72, 0.12), transparent 32%);
  color: #fff;
  padding: 14px 32px;
  z-index: 20;
  margin-bottom: 0;
  transform: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navigatie-merk {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-frame {
  width: 74px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(15, 15, 15, 0.55);
  border: 1px solid rgba(201, 128, 72, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 26px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(201, 128, 72, 0.08);
  overflow: hidden;
}

.logo-beeld {
  width: 64px;
  height: auto;
  max-height: 36px;
  object-fit: contain;
  display: block;
  transform: none;
  opacity: 0.96;
  filter:
    drop-shadow(0 0 8px rgba(201, 128, 72, 0.28))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
}

.logo-tekst {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transform: translateY(1px);
}

.logo-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c98048;
  font-weight: 800;
}

.logo-naam {
  margin-top: 3px;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: rgba(244, 244, 243, 0.94);
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
  margin-top: 0;
}

.site-hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.58) 48%, rgba(8, 8, 8, 0.88) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.22), rgba(8, 8, 8, 0.92)),
    url("https://images.unsplash.com/photo-1529193591184-b1d58069ecdd?q=80&w=1600&auto=format&fit=crop") center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 8px);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 38%, rgba(201, 128, 72, 0.18), transparent 34%),
    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.45), transparent 42%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.hero-kicker {
  color: #c98048;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 0 0 18px;
}

.hero-inner h1 {
  max-width: 760px;
  margin: 0;
  color: #f4f4f3;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.72);
}

.hero-tekst {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(244, 244, 243, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.hero-acties {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.hero-knop,
.hero-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.hero-knop {
  padding: 0 26px;
  color: #fff;
  background: linear-gradient(180deg, #d48a4c, #b86431);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42), 0 0 28px rgba(201, 128, 72, 0.18);
}

.hero-link {
  padding: 0 22px;
  color: rgba(244, 244, 243, 0.82);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  transform: translateX(-50%);
  width: 96px;
  height: 78px;
  border-radius: 48px 48px 0 0;
  display: grid;
  place-items: center;
  color: rgba(244, 244, 243, 0.9);
  text-decoration: none;
  background: rgba(18, 18, 18, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  box-shadow: 0 -16px 34px rgba(0, 0, 0, 0.35);
}

.hero-scroll span {
  font-size: 1.7rem;
  line-height: 1;
  color: #f1dfc2;
}

.hero-scroll small {
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: -12px;
}

@media (max-width: 980px) {
  .navigatie {
    padding: 12px 22px;
    transform: none;
  }

  .logo-frame {
    width: 66px;
    height: 42px;
  }

  .logo-beeld {
    width: 56px;
    max-height: 32px;
  }

  .logo-naam {
    font-size: 0.98rem;
  }

  .nav-menu {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .navigatie {
    padding: 10px 16px;
    transform: none;
  }

  .logo-tekst {
    display: none;
  }

  .logo-frame {
    width: 58px;
    height: 40px;
    border-radius: 12px;
  }

  .logo-beeld {
    width: 50px;
    max-height: 30px;
  }

  .nav-menu {
    margin-top: 0;
  }

  .navigatie-links {
    display: none;
  }

  .navigatie-links.is-open {
    display: flex;
  }

  .menu-knop {
    display: flex;
  }

  .site-hero {
    min-height: 78vh;
    align-items: flex-end;
    background-position: center;
  }

  .hero-inner {
    width: min(calc(100% - 28px), 560px);
    padding: 90px 0 100px;
  }

  .hero-inner h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .hero-acties {
    align-items: stretch;
  }

  .hero-knop,
  .hero-link {
    width: 100%;
  }
}

/* Final navigation override placed after older responsive rules. */
.navigatie {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 14px 32px;
  margin: 0;
  transform: none;
  background:
    linear-gradient(180deg, rgba(9, 9, 10, 0.88), rgba(9, 9, 10, 0.72));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-frame {
  display: contents;
}

.logo-beeld {
  width: 170px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
  transform: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  margin: 0 0 0 auto;
}

.navigatie-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.navigatie-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
}

.navigatie-acties {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navigatie-knop {
  min-width: 0;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2a15d, #d46f31);
  color: #fff;
  font-weight: 800;
  box-shadow:
    0 12px 28px rgba(212, 111, 49, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.menu-knop {
  display: none;
  width: 44px;
  height: 42px;
  min-width: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-knop span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .navigatie {
    padding: 12px 22px;
  }

  .logo-beeld {
    width: 138px;
  }

  .nav-menu {
    gap: 14px;
  }

  .navigatie-links {
    gap: 4px;
  }

  .navigatie-links a {
    padding: 0 11px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navigatie {
    padding: 10px 16px;
  }

  .logo-beeld {
    width: 122px;
  }

  .navigatie-links {
    display: none;
  }

  .navigatie-links.is-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(9, 9, 10, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
  }

  .menu-knop {
    display: flex;
  }

  .navigatie-knop {
    height: 40px;
    padding: 0 16px;
    font-size: 0.9rem;
  }
}
