@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blauw:     #1656C8;
  --antraciet: #21262C;
  --groen:     #15A05A;
  --wit:       #FFFFFF;
  --licht:     #F4F6F8;
  --lijn:      #E0E5EA;
  --inkgrijs:  #6B7480;
  --radius:    8px;
  --max:       1140px;
  --font:      'Space Grotesk', Arial, sans-serif;
  --mono:      'Space Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--antraciet); background: var(--wit); line-height: 1.6; }
a { color: var(--blauw); }
img { max-width: 100%; display: block; }

/* ── CONTAINER ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ── NAVIGATIE ── */
.nav { background: var(--antraciet); position: sticky; top: 0; z-index: 100; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.nav__logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav__logo-tekst { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-ew  { font-size: 22px; font-weight: 700; color: var(--wit); letter-spacing: 1px; }
.nav__logo-tag { font-family: var(--mono); font-size: 10px; color: var(--inkgrijs); letter-spacing: 2px; }

.nav__links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav__links a { color: #9aa5b0; text-decoration: none; font-size: 15px; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--wit); }
.nav__links a.actief { color: var(--wit); border-bottom: 2px solid var(--groen); padding-bottom: 3px; }
.nav__cta { background: var(--blauw) !important; color: var(--wit) !important;
  padding: 9px 22px !important; border-radius: var(--radius); font-weight: 600 !important;
  transition: background .2s !important; border-bottom: none !important; }
.nav__cta:hover { background: #1248a8 !important; }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--wit); border-radius: 2px; transition: .3s; }

/* ── KNOPPEN ── */
.btn { display: inline-block; padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font); font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; transition: all .2s; }
.btn--primair  { background: var(--blauw); color: var(--wit); }
.btn--primair:hover { background: #1248a8; color: var(--wit); }
.btn--outline  { background: transparent; color: var(--wit); border: 2px solid rgba(255,255,255,.3); }
.btn--outline:hover { border-color: var(--wit); }
.btn--groen    { background: var(--groen); color: var(--wit); }
.btn--groen:hover { background: #0e8049; color: var(--wit); }

/* ── HERO ── */
.hero { background: var(--antraciet); color: var(--wit); padding: 96px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.hero__label { font-family: var(--mono); font-size: 12px; color: var(--groen); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.hero__titel { font-size: clamp(30px, 4.5vw, 52px); font-weight: 700; line-height: 1.15; margin-bottom: 22px; }
.hero__titel span { color: var(--blauw); }
.hero__sub { font-size: 18px; color: #9aa5b0; margin-bottom: 40px; max-width: 500px; line-height: 1.65; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__deco { opacity: .1; flex-shrink: 0; }

/* ── SECTIE UTILITIES ── */
.sectie { padding: 80px 0; }
.sectie--licht  { background: var(--licht); }
.sectie--donker { background: var(--antraciet); color: var(--wit); }

.sectie__label { font-family: var(--mono); font-size: 11px; color: var(--groen); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.sectie__titel { font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; margin-bottom: 16px; }
.sectie__sub   { font-size: 17px; color: var(--inkgrijs); max-width: 560px; margin-bottom: 48px; line-height: 1.65; }
.sectie--donker .sectie__sub { color: #9aa5b0; }

/* ── KAARTEN ── */
.kaarten { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.kaart { background: var(--wit); border: 1px solid var(--lijn); border-radius: 12px; padding: 36px 32px; transition: box-shadow .2s, transform .2s; }
.kaart:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-3px); }
.kaart__icoon { width: 52px; height: 52px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.kaart__icoon--blauw { background: #EEF3FB; }
.kaart__icoon--groen { background: #EAF7F0; }
.kaart__titel { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.kaart__tekst { color: var(--inkgrijs); font-size: 15px; line-height: 1.65; }
.kaart__link  { display: inline-block; margin-top: 20px; color: var(--blauw); font-weight: 600; text-decoration: none; font-size: 14px; }
.kaart__link:hover { text-decoration: underline; }

/* ── USP'S ── */
.usps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 44px; }
.usp__getal { font-family: var(--mono); font-size: 38px; font-weight: 700; color: var(--blauw); line-height: 1; margin-bottom: 10px; }
.usp__titel { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.usp__tekst { color: var(--inkgrijs); font-size: 14px; line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--blauw); padding: 72px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(22px, 3vw, 34px); color: var(--wit); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 17px; }

/* ── PAGE HEADER ── */
.page-header { background: var(--antraciet); padding: 56px 0 48px; color: var(--wit); }
.page-header__label { font-family: var(--mono); font-size: 11px; color: var(--groen); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.page-header__titel { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
.page-header__sub { font-size: 17px; color: #9aa5b0; margin-top: 12px; max-width: 560px; }

/* ── DIENSTEN PAGINA ── */
.dienst { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; padding: 72px 0; border-bottom: 1px solid var(--lijn); }
.dienst:last-child { border-bottom: none; }
.dienst__label { font-family: var(--mono); font-size: 11px; color: var(--groen); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.dienst__titel { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.dienst__tekst { color: var(--inkgrijs); font-size: 16px; line-height: 1.75; margin-bottom: 24px; }
.dienst__punten { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.dienst__punten li { display: flex; gap: 12px; font-size: 15px; color: var(--inkgrijs); line-height: 1.5; }
.dienst__punten li::before { content: ''; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--groen); flex-shrink: 0; margin-top: 6px; }
.dienst__visual { background: var(--licht); border-radius: 12px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; border: 1px solid var(--lijn); }

/* ── DIENST FOTO-MOZAÏEK ── */
.dienst__fotos { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; border: 1px solid var(--lijn); }
.dienst__fotos img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dienst__fotos__groot { grid-row: 1 / 3; }
.dienst__fotos--liggend { grid-template-columns: 1fr 1fr; grid-template-rows: 1.4fr 1fr; }
.dienst__fotos--liggend .dienst__fotos__breed { grid-column: 1 / 3; }
.dienst__foto-badge { position: absolute; right: 14px; bottom: 14px; width: 42px; height: 42px; background: rgba(33,38,44,.82); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,.3); }

/* ── OVER MIJ ── */
.profiel { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; }
.profiel__kaart { background: var(--licht); border-radius: 12px; padding: 36px 28px; text-align: center; border: 1px solid var(--lijn); }
.profiel__avatar { width: 88px; height: 88px; background: var(--antraciet); border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; }
.profiel__naam  { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.profiel__functie { color: var(--inkgrijs); font-size: 14px; margin-bottom: 24px; }
.profiel__certs { display: flex; flex-direction: column; gap: 8px; }
.cert-badge { background: var(--wit); border: 1px solid var(--lijn); border-radius: 6px; padding: 9px 14px; font-family: var(--mono); font-size: 11px; color: var(--blauw); letter-spacing: 1px; font-weight: 700; }
.profiel__inhoud h2 { font-size: 28px; font-weight: 700; margin-bottom: 20px; }
.profiel__inhoud p  { color: var(--inkgrijs); font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.profiel__inhoud h3 { font-size: 18px; font-weight: 700; margin: 32px 0 14px; }

.werkgebied { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-top: 14px; }
.werkgebied__item { background: var(--licht); border: 1px solid var(--lijn); border-radius: 6px; padding: 10px 14px; font-size: 14px; color: var(--inkgrijs); display: flex; align-items: center; gap: 8px; }
.werkgebied__item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blauw); flex-shrink: 0; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form .form-groep { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--lijn); border-radius: var(--radius);
  font-family: var(--font); font-size: 15px; color: var(--antraciet);
  background: var(--wit); transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--blauw); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icoon { width: 46px; height: 46px; border-radius: 10px; background: var(--licht); border: 1px solid var(--lijn); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 19px; }
.contact-item__label  { font-size: 11px; font-weight: 700; color: var(--inkgrijs); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 4px; font-family: var(--mono); }
.contact-item__waarde { font-size: 16px; color: var(--antraciet); font-weight: 500; text-decoration: none; display: block; }
.contact-item__waarde:hover { color: var(--blauw); }
.contact-cert { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--lijn); }
.contact-cert__label { font-family: var(--mono); font-size: 11px; color: var(--inkgrijs); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.contact-cert__badges { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--antraciet); color: var(--inkgrijs); padding: 56px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__omschrijving { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 240px; }
.footer__titel { font-size: 11px; font-weight: 700; color: var(--wit); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; font-family: var(--mono); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--inkgrijs); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer__links a:hover { color: var(--wit); }
.footer__contact-item { font-size: 14px; margin-bottom: 9px; }
.footer__contact-item a { color: var(--blauw); text-decoration: none; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer__cert { font-family: var(--mono); font-size: 11px; color: var(--groen); letter-spacing: 1px; }

/* ── MOBIEL ── */
@media (max-width: 900px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--antraciet); padding: 20px 28px 28px; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); }
  .nav__links.open { display: flex; }
  .nav__hamburger { display: flex; }
  .nav { position: relative; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__deco { display: none; }
  .dienst { grid-template-columns: 1fr; gap: 36px; }
  .profiel { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .sectie { padding: 56px 0; }
  .kaarten { grid-template-columns: 1fr; }
}
