*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #0e3d28;
  --forest-m: #155236;
  --leaf:     #1e7a4a;
  --leaf-l:   #27a263;
  --gold:     #b8902a;
  --gold-l:   #d4a93c;
  --cream:    #f5f1e8;
  --cream-d:  #ede8dc;
  --white:    #ffffff;
  --ink:      #111810;
  --muted:    #556052;
  --border:   #d6d0c2;
  --r:        10px;
  --max:      1140px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

.label {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .7rem;
}

h2 {
  font-family: 'Lora', serif; font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15;
  color: var(--forest);
}
h2 em { font-style: italic; font-weight: 400; color: var(--leaf); }

.btn {
  display: inline-block; padding: .8rem 2rem;
  border-radius: var(--r); font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: .95rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: all .22s ease;
}
.btn-primary { background: var(--leaf); color: #fff; border-color: var(--leaf); }
.btn-primary:hover { background: var(--leaf-l); border-color: var(--leaf-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,122,74,.25); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,144,42,.3); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 0 2rem; height: 92px;
}

/* Logo: fits neatly inside the header height */
.logotop { display: flex; align-items: center; }
.logotop img {
  display: block;
  height: 72px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 2px 6px;
}

.nav-menu { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-menu a {
  font-size: .88rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s;
}
.nav-menu a:hover { color: var(--gold-l); }
.nav-cta a { padding: .5rem 1.3rem !important; font-size: .85rem !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.bar { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ── HERO ── */
.hero {
  background: var(--forest);
  position: relative; overflow: hidden;
  padding: 7rem 2rem 5rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(184,144,42,.07) 0%, transparent 50%),
    repeating-linear-gradient(-55deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px);
  pointer-events: none;
}
.hero-inner {
  position: relative; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center;
}
.hero-copy .label { color: var(--gold-l); }
.hero-copy h1 {
  font-family: 'Lora', serif; font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.1;
  color: #fff; letter-spacing: -.01em; margin-bottom: 1.4rem;
}
.hero-copy h1 em { font-style: italic; font-weight: 400; color: var(--gold-l); }
.hero-copy p {
  font-size: 1.08rem; color: rgba(255,255,255,.65);
  max-width: 500px; margin-bottom: 2.4rem; line-height: 1.75;
}
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 2.4rem;
  backdrop-filter: blur(8px);
}
.hero-card .card-title {
  font-family: 'Lora', serif; font-size: 1.05rem;
  color: var(--gold-l); margin-bottom: 1.6rem; font-style: italic;
}
.trust-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.trust-list li {
  display: flex; align-items: flex-start; gap: .85rem;
  font-size: .95rem; color: rgba(255,255,255,.8); line-height: 1.5;
}
.t-icon {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: rgba(184,144,42,.2); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-l); font-size: .7rem;
}

/* ── STATS BAND ── */
.stats-band { background: var(--gold); padding: 3.5rem 2rem; }
.stats-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.2);
  border-radius: 4px; overflow: hidden;
}
.stat-item {
  background: var(--gold); padding: 2.2rem 2rem; text-align: center;
  transition: background .2s;
}
.stat-item:hover { background: var(--gold-l); }
.stat-num {
  font-family: 'Lora', serif; font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: #fff;
  display: block; margin-bottom: .3rem;
}
.stat-num sup { font-size: .45em; vertical-align: super; }
.stat-label { font-size: .88rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.stat-sub { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .25rem; }

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-alt { background: var(--white); }
.section-header { margin-bottom: 3.5rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin-top: .8rem; line-height: 1.75; }

/* ── DIENSTEN ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }

.card {
  background: var(--cream); border: 1px solid var(--border); border-radius: 14px;
  padding: 2rem 1.8rem; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--gold));
  opacity: 0; transition: opacity .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(14,61,40,.1); }
.card:hover::after { opacity: 1; }
.card-icon { display: none; }
.card h3 {
  font-family: 'Lora', serif; font-weight: 700;
  font-size: 1.1rem; margin-bottom: .5rem; color: var(--forest);
  display: flex; align-items: center; gap: .55rem;
}
.card h3 svg { flex-shrink: 0; color: var(--leaf); width: 22px; height: 22px; }
.card p { font-size: .95rem; color: var(--muted); line-height: 1.65; }

/* ── OVER ONS ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-copy .section-header { margin-bottom: 2rem; }
.why-copy > p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1.2rem; }

.proof-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; margin: 1.5rem 0 2rem; }
.proof-list li { display: flex; align-items: center; gap: .9rem; font-size: .98rem; color: var(--ink); }
.proof-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.why-visual {
  background: var(--forest); border-radius: 20px;
  padding: 3rem 2.5rem; position: relative; overflow: hidden;
}
.why-visual::before {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(184,144,42,.12);
}
.experience-num {
  font-family: 'Lora', serif; font-weight: 700;
  font-size: 5.5rem; line-height: 1; color: var(--gold); margin-bottom: .2rem;
}
.experience-label { font-size: 1.1rem; color: rgba(255,255,255,.65); margin-bottom: 2.5rem; font-weight: 300; letter-spacing: .04em; }
.mini-stats { display: flex; flex-direction: column; gap: 1.2rem; }
.mini-stat { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.2rem; }
.mini-stat-num { font-family: 'Lora', serif; font-weight: 700; font-size: 1.8rem; color: #fff; line-height: 1; }
.mini-stat-label { font-size: .82rem; color: rgba(255,255,255,.45); letter-spacing: .05em; text-transform: uppercase; margin-top: .1rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 5rem; align-items: start; }
.contact-side .section-header { margin-bottom: 1.5rem; }
.contact-side > p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: .6rem; }
.contact-note {
  display: flex; align-items: flex-start; gap: .7rem;
  background: rgba(14,61,40,.06); border-left: 3px solid var(--leaf);
  border-radius: 0 var(--r) var(--r) 0; padding: .9rem 1rem; margin-top: 1.5rem;
  font-size: .9rem; color: var(--forest); line-height: 1.55;
}
.contact-form {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 2.8rem; box-shadow: 0 4px 40px rgba(14,61,40,.07);
}
.form-section-title {
  font-family: 'Lora', serif; font-size: .95rem; font-weight: 700;
  color: var(--forest); margin: 1.8rem 0 .9rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.form-section-title:first-child { margin-top: 0; }
.form-row { margin-bottom: .9rem; }
label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .03em; margin-bottom: .35rem; color: var(--forest); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: .7rem 1rem;
  background: var(--cream); color: var(--ink);
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: .93rem;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(30,122,74,.1);
}
textarea { resize: vertical; }
.check-label { display: flex; align-items: center; gap: .55rem; font-size: .93rem; font-weight: 400; color: var(--ink); }
input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--leaf); flex-shrink: 0; }
.submit-btn { width: 100%; margin-top: .6rem; padding: .9rem; font-size: 1rem; letter-spacing: .02em; }
#contact-status { margin-top: .7rem; font-size: .86rem; color: var(--muted); }

/* ── FOOTER ── */
.site-footer { background: var(--forest); padding: 4rem 0 0; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand-col p { color: rgba(255,255,255,.4); font-size: .88rem; line-height: 1.75; margin-top: .8rem; max-width: 260px; }
.footer-brand-col img { width: 130px; height: auto; opacity: .85; }
.footer-col h4 { font-family: 'Lora', serif; font-weight: 700; color: rgba(255,255,255,.9); font-size: .95rem; margin-bottom: 1rem; }
.footer-col p { color: rgba(255,255,255,.4); font-size: .88rem; line-height: 2; }
.footer-col a { color: rgba(255,255,255,.4); font-size: .88rem; line-height: 2; text-decoration: none; display: block; }
.footer-col a:hover { color: var(--gold-l); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; font-size: .82rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-l); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp .7s .1s ease both; }
.anim-2 { animation: fadeUp .7s .25s ease both; }
.anim-3 { animation: fadeUp .7s .4s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .stats-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none; flex-direction: column; position: absolute;
    top: 92px; left: 0; right: 0;
    background: var(--forest); border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.2rem 2rem;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { padding: .5rem 0; }
  .nav-cta { display: none; }
}