:root{
  /* ===== BASIS: LICHTE STEEN / BETON LOOK ===== */
  --bg:#f2f4f3;
  --bg-2:#e6ece9;
  --card:#1f2a27;
  --border:#c9d6cf;
  --muted:#5f6f68;
  --text:#0f1a17;

  /* ACCENTKLEUREN (TEGELWERK) */
  --brand:#2fbfa7;
  --brand-2:#f0c66e;
  --accent:#4aa3ff;

  --shadow:0 10px 30px rgba(0,0,0,.18);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  color:var(--text);
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;

  /* LICHTE PROFESSIONELE ACHTERGROND */
  background:
    radial-gradient(
      1200px 600px at 10% -10%,
      rgba(47,191,167,.18),
      rgba(0,0,0,0)
    ),
    radial-gradient(
      900px 500px at 90% 10%,
      rgba(240,198,110,.18),
      rgba(0,0,0,0)
    ),
    linear-gradient(
      180deg,
      var(--bg),
      var(--bg-2)
    );
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  width:min(1100px,92%);
  margin-inline:auto;
}

.section{
  padding:64px 0;
}

/* ================= HEADER ================= */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  border-bottom:1px solid var(--border);
  backdrop-filter:saturate(160%) blur(6px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 4%;
}

.brand{
  display:flex;
  gap:.6rem;
  align-items:center;
  color:var(--text);
  text-decoration:none;
  font-weight:700;
}

.brand img{
  width:56px;
  height:56px;
  border-radius:12px;
  box-shadow:var(--shadow);
  object-fit:cover;
  background:#fff;
}

/* NAV */
.nav__list{
  display:flex;
  gap:1rem;
  list-style:none;
  margin:0;
  padding:0;
}

.nav__list a{
  color:var(--text);
  text-decoration:none;
  padding:.45rem .9rem;
  border-radius:10px;
}

.nav__list a[aria-current="page"],
.nav__list a:hover{
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  color:#081014;
}

/* 🚫 MENU-KNOP DEFINITIEF UIT (ALLE PAGINA’S, ALLE SCHERMEN) */
.nav__toggle{
  display:none !important;
}

/* ================= HERO ================= */
.hero{
  position:relative;
  display:grid;
  place-items:center;
  min-height:66vh;
  overflow:hidden;
}

.hero__media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.55),
    rgba(255,255,255,.85)
  );
  z-index:1;
}

.hero__content{
  position:relative;
  z-index:2;
  padding:60px 4%;
  text-align:center;
}

.hero h1{
  font-size:clamp(1.9rem,3.4vw,3rem);
  margin:0 0 .6rem;
}

.hero p{
  max-width:800px;
  margin:0 auto 1.2rem;
  color:var(--muted);
}

/* ================= BUTTONS ================= */
.btn{
  display:inline-block;
  border-radius:14px;
  padding:.8rem 1.2rem;
  text-decoration:none;
  font-weight:700;
  border:1px solid var(--border);
}

.btn--primary{
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  color:#081014;
  box-shadow:var(--shadow);
}

.btn--ghost{
  background:transparent;
  color:var(--text);
}

/* ================= CARDS ================= */
.grid{display:grid;gap:20px}

.card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.45)),
    var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  box-shadow:var(--shadow);
}

/* ================= FOOTER ================= */
.site-footer{
  border-top:1px solid var(--border);
  padding:24px 0;
  background:#eef3f1;
}

.legal{
  text-align:center;
  color:#66756f;
  margin-top:10px;
}

/* ================= FLOATING PHONE ================= */
.floating-phone{
  position:fixed;
  right:20px;
  bottom:20px;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  color:#071013;
  text-decoration:none;
  padding:.9rem 1rem;
  border-radius:999px;
  font-weight:800;
  box-shadow:var(--shadow);
}

/* ================= MOBILE ================= */
@media (max-width:760px){
  .nav__list{
    flex-wrap:wrap;
    justify-content:center;
  }
}
