:root{
  /* Style A — Warm & professioneel (logo-based) */
  --bg: #FFFBF5;                 /* warm off-white */
  --panel: rgba(255,255,255,.78);/* cards/panels */
  --panel2: rgba(255,243,222,.78);/* zachte highlight-panel */
  --text: #1F2328;               /* bijna zwart */
  --muted: #5B6672;              /* grijsblauw */
  --muted2: rgba(31,35,40,.62);  /* tweede niveau */
  --line: rgba(108,53,23,.18);   /* cocoa border */

  /* Accents */
  --accent: #EFA528;             /* brand gold */
  --accent2: #2F6B4F;            /* sage/forest */
  --cocoa: #6C3517;              /* extra: cocoa (logo) */

  --shadow: 0 12px 30px rgba(17, 24, 39, .10);
  --radius: 18px;
  --max: 1120px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font);
  background:
    radial-gradient(1100px 560px at 18% 0%, rgba(239,165,40,.20), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(47,107,79,.14), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: var(--text); text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip-link{
  position:absolute; left:-999px; top:10px; padding:10px 12px; background:#fff; color:#000; border-radius:12px; z-index:9999;
}
.skip-link:focus{ left:10px; }

.header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 251, 245, .78);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

.brand{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand__mark{
  display:inline-grid;
  place-items:center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(125,211,252,.25), rgba(167,139,250,.22));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.brand__text{ font-size: 16px; }
.brand--footer .brand__mark{ width:34px; height:34px; border-radius: 12px; }

.nav{ display:flex; align-items:center; gap:14px; }
.nav__menu{
  display:flex;
  gap:16px;
  align-items:center;
}
.nav__menu a{
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
}
.nav__menu a:hover{
  background: rgba(239,165,40,.12);
  text-decoration: none;
  color: var(--text);
}

.nav__toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  color: var(--text);
}
.nav__toggle-lines{
  display:block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  position: relative;
}
.nav__toggle-lines::before,
.nav__toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.nav__toggle-lines::before{ top:-6px; }
.nav__toggle-lines::after{ top: 6px; }

.hero{
  padding: 54px 0 18px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(239,165,40,.14);
  border: 1px solid rgba(239,165,40,.28);
  color: #3a2a12;
  width: fit-content;
}
h1{
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  margin: 14px 0 12px;
}
.lead{
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
}
.hero__cta{ display:flex; gap:12px; margin-top: 18px; flex-wrap:wrap; }
.hero__note{
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px dashed rgba(222,131,14,.28);
  color: #7a4b1c;
  background: rgba(222,131,14,.10);
}

.hero__card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  padding: 16px;
}
.stat{
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
}
.stat__num{ font-weight: 800; font-size: 22px; }
.stat__label{ color: var(--muted); margin-top: 2px; }
.hero__card-footer{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted2);
  padding: 8px 2px 0;
}
.dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(125,211,252,1), rgba(167,139,250,1));
}

.section{ padding: 56px 0; }
.section--soft{
  background: rgba(255,243,222,.42);
  border-top: 1px solid rgba(108,53,23,.10);
  border-bottom: 1px solid rgba(108,53,23,.10);
}
.section__head{ margin-bottom: 18px; }
.section__head h2{ margin:0 0 10px; font-size: 28px; }
.muted{ color: var(--muted); }
.tiny{ font-size: 13px; color: var(--muted2); }

.grid{ display:grid; gap: 16px; }
.grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--center{ align-items: center; }

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(108,53,23,.14);
  background: rgba(255,255,255,.82);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
}
.card--hover{ transition: transform .15s ease, background .15s ease; }
.card--hover:hover{ transform: translateY(-2px); background: rgba(255,255,255,.92); }

.h3{ font-size: 18px; margin: 0 0 8px; }
.h4{ font-size: 16px; margin: 0 0 10px; }

.list{ margin: 12px 0 0; padding-left: 18px; color: var(--muted); }
.list li{ margin: 6px 0; }

.callout{
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(47,107,79,.18);
  background:
    radial-gradient(80% 80% at 10% 30%, rgba(47,107,79,.16), transparent 55%),
    radial-gradient(80% 80% at 90% 40%, rgba(239,165,40,.20), transparent 60%),
    rgba(255,255,255,.80);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(108,53,23,.18);
  background: rgba(255,255,255,.70);
  color: var(--text);
  text-decoration:none;
  font-weight: 600;
}
.btn:hover{ text-decoration:none; background: rgba(255,255,255,.88); }

.btn--primary{
  background: var(--accent);
  border-color: rgba(222,131,14,.45);
  color: #1A1A1A;
}
.btn--primary:hover{ filter: brightness(.98); }

.btn--ghost{
  background: transparent;
  border-color: rgba(108,53,23,.18);
}

.steps{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  display:grid;
  gap: 12px;
}
.steps__item{
  display:flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(108,53,23,.12);
  background: rgba(255,255,255,.72);
}
.steps__nr{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 800;
  background: rgba(239,165,40,.16);
  border: 1px solid rgba(239,165,40,.28);
  color: #3a2a12;
}

.badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47,107,79,.18);
  background: rgba(47,107,79,.10);
  color: #184032;
  font-size: 13px;
}

.profile .dl{ margin: 0; }
.dl div{ display:flex; justify-content:space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.dl div:last-child{ border-bottom:none; }
dt{ color: var(--muted2); }
dd{ margin:0; color: var(--text); text-align:right; }

.form__row{ display:flex; flex-direction:column; gap: 8px; margin-bottom: 12px; }
label{ color: var(--muted); font-weight: 600; font-size: 14px; }
input, textarea{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(108,53,23,.18);
  background: rgba(255,255,255,.92);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(239,165,40,.65);
  box-shadow: 0 0 0 4px rgba(239,165,40,.18);
}
label{ color: var(--muted); font-weight: 600; font-size: 14px; }
.form__row--inline{ flex-direction: row; align-items: flex-start; gap: 10px; }
.form__row--inline label{ font-weight: 500; margin-top: -1px; }
.hp{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

.contact__item{ margin: 10px 0; }
.contact__label{ display:block; color: var(--muted2); font-size: 13px; margin-bottom: 4px; }
.sep{ border: none; border-top: 1px solid rgba(255,255,255,.10); margin: 14px 0; }

.footer{
  border-top: 1px solid rgba(108,53,23,.14);
  padding: 22px 0;
}
.footer__inner{ display:flex; align-items:center; justify-content:space-between; gap: 12px; flex-wrap:wrap; }
.footer__right{ display:flex; gap: 14px; }
.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); text-decoration:none; }


@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .grid--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .nav__toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav__menu{
    position:absolute;
    right: 18px;
    top: 64px;
    display:none;
    flex-direction: column;
    width: min(260px, calc(100vw - 36px));
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open{ display:flex; }
  .nav__menu a{ width:100%; }
}
.brand__logo{
  height: 100px;
  width: auto;
  display: block;
}
@media (max-width: 760px){
  .brand__logo{ height: 34px; }
}
