:root {
  --primary: #ff5800;   /* oranje zoals de oude website */
  --primary-dark: #dd4814;
  --accent: #111111;    /* accentkleur: zwart */
  --accent-dark: #000000;
  --ink: #1a1a1a;
  --muted: #5b6b7a;
  --bg: #f8f7f5;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(221, 72, 20, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1; }

h1, h2, h3 { line-height: 1.2; }
a { color: var(--primary); }
img { max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e3e9ef;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 32px; width: auto; display: block; }
nav ul { display: flex; gap: 22px; list-style: none; align-items: center; }
nav a.navlink {
  text-decoration: none; color: var(--muted); font-weight: 600; font-size: 0.93rem;
  transition: color .2s;
}
nav a.navlink:hover { color: var(--primary); }
nav a.navlink.active { color: var(--primary); }
.nav-cta {
  background: var(--primary); color: #fff !important; padding: 9px 18px;
  border-radius: 999px; font-weight: 700;
}
.nav-cta:hover { background: var(--primary-dark); }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ===== Hero (homepage) ===== */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(255,144,53,0.45), transparent 60%),
    linear-gradient(160deg, var(--primary-dark), var(--primary) 65%);
  color: #fff;
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: .04em;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; max-width: 700px; }
.hero h1 em { color: #111111; font-style: normal; }
.hero p { margin-top: 16px; font-size: 1.1rem; max-width: 560px; color: #ffe9d2; }
.hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Page-hero (subpagina's, compact) ===== */
.page-hero {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary) 65%);
  color: #fff;
  padding: 44px 0;
}
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; }
.page-hero p { margin-top: 10px; max-width: 620px; color: #ffe9d2; font-size: 1.05rem; }
/* ===== Buttons ===== */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 13px 26px; border-radius: 999px; font-size: 1rem;
  transition: transform .15s, box-shadow .15s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,0.35); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-orange { background: var(--primary); color: #fff; box-shadow: 0 6px 20px rgba(221,72,20,0.35); }
.btn-orange:hover { background: var(--primary-dark); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ===== Secties ===== */
section { padding: 48px 0; }
.section-head { max-width: 640px; margin: 0 0 30px; }
.section-head.center { text-align: center; margin: 0 auto 30px; }
.kicker {
  color: var(--primary); font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; font-size: 0.8rem;
}
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 6px; }
.section-head p { color: var(--muted); margin-top: 10px; }

/* ===== Kaarten ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow); border: 1px solid #e8eef4;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none; color: var(--ink); display: block;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(221,72,20,0.18); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 16px;
  background: linear-gradient(135deg, #ffe4d6, #f1f1f1);
}
.card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 0.93rem; }
.card .more { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--primary); font-size: 0.9rem; }

/* ===== Tekstblokken op subpagina's ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.panel {
  background: var(--white); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow); border: 1px solid #e8eef4;
}
.panel h2, .panel h3 { margin-bottom: 10px; font-size: 1.25rem; }
.panel p { color: var(--muted); font-size: 0.97rem; }
.panel p + p { margin-top: 10px; }
.panel ul { margin: 10px 0 0 18px; color: var(--muted); font-size: 0.97rem; }
.panel ul li { margin-bottom: 4px; }

/* ===== Quote ===== */
.quote {
  background: var(--white); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); border: 1px solid #e8eef4;
  display: flex; flex-direction: column; gap: 14px;
}
.quote p { color: var(--ink); font-style: italic; }
.quote p::before { content: "\201C"; color: var(--primary); font-size: 1.4em; font-weight: 800; }
.quote p::after { content: "\201D"; color: var(--primary); font-size: 1.4em; font-weight: 800; }
.quote footer { font-size: 0.9rem; color: var(--muted); }
.quote footer strong { color: var(--ink); display: block; }

/* ===== CTA-band ===== */
.cta-band {
  background: var(--accent); color: #fff; border-radius: 20px;
  padding: 34px 36px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-band h2 { font-size: 1.4rem; }
.cta-band p { color: #cccccc; margin-top: 6px; }

/* ===== Stappenlijst ===== */
.steps { list-style: none; counter-reset: step; display: grid; gap: 16px; }
.steps li {
  background: var(--white); border: 1px solid #e8eef4; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px 22px 20px 74px; position: relative;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 20px; top: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: 1.05rem;
}
.steps h3 { font-size: 1.05rem; margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: 0.95rem; }

/* ===== Formulier ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid #d5dde4; border-radius: 10px;
  font: inherit; font-size: 0.95rem; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 88, 0, 0.15);
}
.field textarea { resize: vertical; }
.form-hint { margin-top: 14px; font-size: 0.85rem; color: var(--muted); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; }
.contact-list { list-style: none; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ico {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  background: #ffe4d6; display: grid; place-items: center; font-size: 1.1rem;
}
.contact-list a { text-decoration: none; font-weight: 600; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 9px 0; border-bottom: 1px solid #eef2f6; font-size: 0.96rem; }
.hours td:last-child { text-align: right; font-weight: 600; }
.hours tr:last-child td { border-bottom: 0; }
.note {
  margin-top: 14px; background: #f2f2f2; border: 1px solid #dddddd;
  border-radius: 10px; padding: 12px 16px; font-size: 0.9rem; color: #333333;
}

/* ===== Footer ===== */
footer.site {
  background: var(--accent); color: #cccccc; padding: 28px 0; font-size: 0.9rem;
  margin-top: auto;
}
footer.site .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer.site a { color: #fff; text-decoration: none; }
footer.site a:hover { color: var(--primary); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  nav ul {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0;
    border-bottom: 1px solid #e3e9ef; padding: 10px 24px 18px;
    align-items: flex-start;
  }
  nav ul.open { display: flex; }
  nav ul li { padding: 9px 0; }
  .menu-toggle { display: block; }
  .hero { padding: 48px 0 56px; }
  .split, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 28px 24px; }
  section { padding: 40px 0; }
}
