:root{
  --bg:#f6f7f8;
  --ink:#111827;
  --muted:#6b7280;
  --card:#ffffff;
  --brand:#f59e0b; /* orange */
  --dark:#2f3b43;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--ink);background:var(--bg)}
a{color:inherit}
.container{max-width:1050px;margin:0 auto;padding:0 22px}
.header{
  background:var(--dark);
  color:#fff;
  padding:18px 0 22px;
}
.header-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:74px;
}
.brand img{
  height:120px; /* logo */
  width:auto;
  display:block;
}
.tagline{
  color:rgba(255,255,255,.85);
  margin:8px 0 0;
  font-size:15px;
}
.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:999px;
  color:rgba(255,255,255,.9);
  border:1px solid rgba(255,255,255,.18);
}
.nav a:hover{border-color:rgba(255,255,255,.5)}
.nav a.active{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.55);
}
.hero{
  padding:36px 0 18px;
}
h2{
  margin:0 0 10px;
  font-size:30px;
}
p{line-height:1.55;color:var(--muted);margin:0 0 14px}
.section{padding:26px 0}
.cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.card h3{margin:0 0 8px;font-size:18px;color:var(--ink)}
.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.thumb{
  background:var(--card);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.thumb img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.badge{
  display:inline-block;
  background:rgba(245,158,11,.15);
  color:#92400e;
  border:1px solid rgba(245,158,11,.35);
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  margin-bottom:10px;
}
.footer{
  margin-top:28px;
  padding:18px 0 26px;
  color:var(--muted);
  font-size:14px;
}
hr.sep{border:none;border-top:1px solid rgba(17,24,39,.12);margin:26px 0}
.toc{background:var(--card);border-radius:var(--radius);box-shadow:var(--shadow);padding:16px}
.toc a{display:block;text-decoration:none;color:var(--muted);padding:6px 0}
.toc a:hover{color:var(--ink)}
article h1{font-size:30px;margin:0 0 8px}
article h2{font-size:20px;margin:22px 0 8px}
article p{color:var(--muted)}
.visually-hidden{
  position:absolute!important;height:1px;width:1px;overflow:hidden;
  clip:rect(1px,1px,1px,1px);white-space:nowrap;
}
@media (max-width:900px){
  .cards,.grid{grid-template-columns:1fr}
  .thumb img{height:200px}
  .brand img{height:70px}
}

/* --- Voorbeelden pagina: 2-koloms grid + captions --- */
.intro-split{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:28px;
  align-items:center;
  margin-top:18px;
}
.intro-photos{
  display:flex;
  gap:14px;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.intro-photos img{
  width:140px;
  height:140px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow);
  background:#fff;
}
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-top:16px;
}
.gallery-item{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.gallery-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}
.gallery-caption{
  padding:10px 12px;
  color:var(--muted);
  font-size:14px;
}
@media (max-width:900px){
  .intro-split{grid-template-columns:1fr}
  .intro-photos{justify-content:flex-start}
  .intro-photos img{width:110px;height:110px}
  .gallery-grid{grid-template-columns:1fr}
  .gallery-item img{height:200px}
}

/* --- Home: Hero met foto --- */
.hero.hero-image{
  padding: 0; /* voorkom dubbele padding door .hero */
  margin-top: 18px;
}

.hero-image{
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 40px 20px;
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  background:
     linear-gradient(90deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.10) 40%, rgba(0,0,0,0) 75%),
  url("images/bakfiets.jpg") 62% 55% / cover no-repeat;
}
.hero-title{
  white-space: nowrap;
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 26px;
  margin: 0;
  font-size: clamp(20px, 2.4vw, 38px);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 6px 22px rgba(0,0,0,.55);
}

.btn:hover{filter:brightness(.95)}

.hero-text{
  padding: 18px 0 0;
}

@media (max-width: 600px) {
  .hero-title{
    white-space: normal;
    font-size: 22px;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .hero-image{
    background-position: 50% 50%;
    min-height: 360px;
  }
}
