:root {
  --anthracite: #1c2126;
  --anthracite-soft: #2a3038;
  --white: #ffffff;
  --offwhite: #f5f6f7;
  --deepblue: #001a72;
  --deepblue-bright: #51639f;
  --grey: #6b7280;
  --line: #e3e5e8;
  --line-dark: #3a4149;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deepblue-bright);
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* Verberg de checkbox ALTIJD op elk scherm */
#menu-toggle-checkbox {
  display: none !important;
}

/* Verberg de streepjes standaard op de desktop computer */
.menu-toggle-label {
  display: none;
  cursor: pointer;
  font-size: 32px;
  color: var(--anthracite);
  padding: 10px;
  z-index: 100;
  user-select: none;
}

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
nav ul a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--anthracite-soft);
  transition: color .2s ease;
}
nav ul a:hover { color: var(--deepblue); }
.nav-cta {
  padding: 11px 22px;
  background: var(--deepblue);
  color: var(--white) !important;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--deepblue-bright); }

/* --- RESPONSIVE / MOBIEL MENU --- */
@media (max-width: 768px) {
  nav.wrap { 
    height: 80px; 
    padding: 0 20px; 
  }
  .logo img { height: 55px; }
  
  /* Toon de hamburgerknop alleen op schermen kleiner dan 768px */
  .menu-toggle-label { 
    display: block !important; 
    visibility: visible !important;
  }
  
  /* Verberg de menubalk standaard op mobiel */
  nav.wrap ul {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 80px; 
    left: 0; 
    width: 100%;
    background: white; 
    padding: 30px 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--line);
    gap: 20px; 
    z-index: 99;
  }
  nav.wrap ul li { width: 100%; text-align: center; }
  nav.wrap ul a { display: block; font-size: 16px; padding: 10px 0; }

  /* ALS DE CHECKBOX IS AANGEVINKT -> TOON HET MENU OP MOBIEL */
  #menu-toggle-checkbox:checked ~ ul { 
    display: flex !important; 
  }
}
/* --- HERO & REST (AFGEKORT) --- */
.hero { position: relative; background: var(--deepblue); color: var(--white); overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
}
.hero-inner { position: relative; padding: 130px 40px 110px; }
.corner { position: absolute; width: 26px; height: 26px; border: 1.5px solid var(--deepblue-bright); opacity: 0.85; }
.corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }
.hero-inner .eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.hero-inner .eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--deepblue-bright); }
.hero h1 { font-size: clamp(36px, 5vw, 58px); line-height: 1.12; max-width: 820px; color: var(--white); }
.hero h1 em { font-style: normal; color: var(--deepblue-bright); }
.hero .subtitle { margin-top: 26px; max-width: 600px; font-size: 18px; color: #c7ccd1; font-weight: 400; }
.measure { margin: 48px 0 44px; max-width: 600px; display: flex; align-items: flex-end; height: 18px; }
.measure span { flex: 1; height: 1px; background: var(--line-dark); position: relative; }
.measure span::before { content: ""; position: absolute; left: 0; top: -7px; width: 1px; height: 8px; background: var(--line-dark); }
.measure span:last-child::after { content: ""; position: absolute; right: 0; top: -7px; width: 1px; height: 8px; background: var(--line-dark); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 28px; font-size: 14.5px; font-weight: 500; border-radius: 2px; transition: all .2s ease; }
.btn-primary { background: var(--deepblue-bright); color: var(--white); }
.btn-primary:hover { background: #6b7aad; }
.btn-ghost { border: 1px solid rgba(255,255,255,0.25); color: var(--white); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); }
.about { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.6fr; gap: 72px; }
.about-label { position: sticky; top: 120px; align-self: start; }
.about-label h2 { margin-top: 18px; font-size: 28px; color: var(--anthracite); max-width: 220px; }
.about-copy p { font-size: 19px; color: var(--anthracite-soft); max-width: 640px; }
.about-copy p + p { margin-top: 20px; }
.about-copy .lead { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 400; line-height: 1.5; color: var(--anthracite); }
.traits { margin-top: 60px; }

/* --- RESPONSIVE / MOBIEL MENU --- */
@media (max-width: 768px) {
  nav.wrap { 
    height: 80px; 
    padding: 0 20px; 
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
 /* Forceer exact dezelfde mobiele witruimte op alle vervolgpagina's */
  .page-hero {
    padding-top: 130px !important;
    padding-bottom: 50px !important;
    margin-top: 0 !important;
 /* Geef de homepage zijn mooie, royale ruimte op mobiel */
  .hero-inner {
    padding-top: 130px !important; 
    padding-bottom: 110px !important;
  }
 /* Dwing de vervolgpagina's (zoals Ervaring) in EXACT dezelfde royale layout */
  .page-hero {
    padding-top: 130px !important;
    padding-bottom: 110px !important;
  }
  
  /* Zorg dat de menubalk op elk scherm even hoog blijft */
  header, nav.wrap {
    height: 80px !important;
  } }
  .logo img { height: 55px; }
  
  /* Toon de hamburgerknop hardnekkig op mobiel */
  .menu-toggle-label { 
    display: block !important; 
    visibility: visible !important;
    cursor: pointer;
    font-size: 32px; /* Dit bepaalt hoe groot de 3 streepjes worden */
    color: #1c2126 !important; /* Gecodeerd naar de donkere kleur van je site */
    padding: 10px;
    z-index: 100;
    user-select: none;
  }
  
  /* Verberg het menu standaard op mobiel */
  nav ul {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 80px; 
    left: 0; 
    width: 100%;
    background: white; 
    padding: 30px 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--line);
    gap: 20px; 
    z-index: 99;
  }
  nav ul li { width: 100%; text-align: center; }
  nav ul a { display: block; font-size: 16px; padding: 10px 0; }

  /* Als de checkbox is aangevinkt, toon het menu */
  #menu-toggle-checkbox:checked ~ nav ul { 
    display: flex !important; 
  }
}