/* --- Base --- */
:root {
  --primary: #f5a300;
  --secondary: #2e7d32;
  --dark: #111111;
  --light: #ffffff;
  --accent: #0d47a1;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
.container { width: min(1100px, 92%); margin: 0 auto; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 .4em; }
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.2rem); }
h2 { font-size: clamp(1.6rem, 2vw + .8rem, 2.2rem); }
h3 { font-size: 1.25rem; }
.mono { font-family: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace; }

.lead { font-size: 1.1rem; opacity: .9; }

.btn {
  display: inline-block;
  padding: .85rem 1.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--dark);
  text-decoration: none;
  font-weight: 800;
  transition: transform .08s ease, background .2s ease, color .2s ease, border-color .2s ease;
  background: var(--light);
  color: var(--dark);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: #ffb300; border-color: #ffb300; }
.btn-ghost { background: transparent; }
.btn-small { padding: .6rem .9rem; font-weight: 700; }

/* --- Header / Nav --- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: .6rem 0; gap: 1rem; position: relative; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--dark); font-weight: 800; }
.brand img { height: 42px; width: auto; max-width: 140px; border-radius: 8px; object-fit: contain; }
.main-nav { display: flex; gap: 1rem; align-items: center; }
.main-nav a { color: var(--dark); text-decoration: none; font-weight: 700; padding: .5rem .8rem; border-radius: 12px; }
.main-nav a:hover, .main-nav a.is-active { background: #f5f5f5; }
.nav-toggle { display: none; background: var(--primary); border: none; font-size: 1.6rem; width: 42px; height: 42px; border-radius: 10px; cursor: pointer; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-grid; place-content: center; }
  .main-nav {
    position: absolute;
    right: 4%;
    left: 4%;
    top: 64px;
    background: #fff;
    padding: .6rem;
    border: 1px solid #eee;
    border-radius: 12px;
    display: none;           /* standaard gesloten */
    flex-direction: column;
    min-width: 230px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    z-index: 2001;           /* boven content/header */
  }
  .main-nav.open { display: flex; }
}

/* --- Hero --- */
.hero {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, var(--primary), #ffd95a);
}
.hero .bg-banner { position: absolute; inset: -10% -10% auto -10%; opacity: .12; filter: saturate(110%); z-index: 0; pointer-events: none; }
.hero-grid { position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0 4rem;
}
.kicker { letter-spacing: .17em; text-transform: uppercase; font-weight: 800; font-size: .8rem; opacity: .8; }
.hero h1 { margin: .2rem 0 .6rem; }
.hero .mission { font-weight: 800; font-size: 1.1rem; }
.hero .sub { opacity: .9; }
.cta { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1rem 0; }
.badges { display: flex; gap: .6rem; padding-left: 1rem; }
.badges li { list-style: '✔ '; }

.hero-photo img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  border: 6px solid rgba(255,255,255,.65);
  background: #fff;
}

@media (max-width: 920px) { .hero-grid { position: relative; z-index: 1; grid-template-columns: 1fr; } }

/* --- Sections --- */
.section { padding: 4rem 0; }
.section-alt { background: #f9fafb; }
.section h2 { margin-bottom: .3rem; }
.section .lead { margin-bottom: 1.5rem; }

/* --- Cards --- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.card {
  background: white;
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.card-icon {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: #000;
  background: #f4f4f4;
  border: 1px solid #ececec;
  display: inline-block;
  padding: .35rem .65rem;
  border-radius: 10px;
  width: max-content;
}
@media (max-width: 960px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: .8rem;
}
.step { background: white; border: 1px solid #eee; border-radius: var(--radius); padding: 1rem; box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.step .num { width: 36px; height: 36px; border-radius: 50%; background: var(--secondary); color: white; display: grid; place-items: center; font-weight: 800; margin-bottom: .4rem; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* --- Inline banner --- */
.inline-banner { margin: 2rem 0 0; }
.inline-banner img { width: 100%; border-radius: var(--radius); border: 1px solid #eee; }

/* --- Photo pair --- */
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.photo-pair img { border-radius: var(--radius); border: 1px solid #eee; }
@media (max-width: 760px) { .photo-pair { grid-template-columns: 1fr; } }

/* --- About --- */
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
.about-photo img { border-radius: 50%; border: 6px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.contact-list { padding-left: 1rem; }
.contact-list li { list-style: '• '; margin-bottom: .3rem; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.2rem; align-items: start; }
.contact-card { background: white; border: 1px solid #eee; padding: 1rem; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,.05); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* --- Footer --- */
.site-footer { padding: 2rem 0; background: #0b0b0b; color: #fff; text-align: center; }
.site-footer a { color: #fff; }

/* Badges fix */
.badges { display:flex; flex-wrap:wrap; gap:.6rem 1rem; padding-left:0; margin:.4rem 0 0; }
.badges li { list-style:none; position:relative; padding-left:1.2rem; }
.badges li::before { content:'✔'; position:absolute; left:0; top:0; font-weight:800; }

/* --- Reviews --- */
.reviews-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 1.2rem; align-items:start; }
.review-summary { background: #fff; border:1px solid #eee; border-radius: var(--radius); padding: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,.05); position:sticky; top:88px; }
.review-summary .stars { font-size: 1.6rem; color: #f5a300; letter-spacing:.1rem; }
.review-summary .bullets { margin:.6rem 0 0; padding-left:1rem; }
.review-summary .bullets li { list-style:'• '; margin:.2rem 0; }
.review-embeds { display:grid; grid-template-columns: 1fr; gap: .9rem; }
.fb-embed iframe { width:100%; max-width:100%; border-radius: 12px; }
.fb-embed { overflow: hidden; }
.g-review { background:#fff; border:1px solid #eee; border-radius: 12px; padding:.8rem; }
.g-stars { color:#f5a300; font-weight:900; letter-spacing:.1rem; margin-bottom:.2rem; }
@media (max-width: 900px){ .reviews-grid { grid-template-columns: 1fr; } .review-summary { position: static; } }

/* --- Promo bar --- */
.promo-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #fde68a;
  color: #1a1a1a;
  padding: .55rem .75rem;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.promo-bar a { color: #0b5d75; text-decoration: underline; }
.promo-bar a:hover { text-decoration: none; }
