:root {
  --ink: #14171a;
  --ink-soft: #4a4f56;
  --paper: #ffffff;
  --muted: #f4f3ef;
  --accent: #f5c21d;
  --accent-dark: #d9a800;
  --border: #e5e3dc;
  --radius: 14px;
  --maxw: 1100px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand span { color: var(--accent-dark); }
.nav__brand img {
  height: 30px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--ink);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 100px;
}
.nav__lang {
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.05em;
}
.nav__lang:hover { border-color: var(--ink); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 24px 96px;
}
.hero__blob {
  position: absolute;
  top: -180px;
  right: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
  z-index: -1;
}
.hero__inner { flex: 1.3; min-width: 0; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
}
.hero__sub {
  max-width: 46ch;
  font-size: 1.05rem;
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero__photo { flex: 1; min-width: 220px; }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover { background: #000; }
.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

/* SECTIONS */
.section { padding: 88px 24px; }
.section--muted { background: var(--muted); }
.section--dark {
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.section--dark p { color: #c7cad0; }
.section--dark .section__title { color: #fff; }

.section__inner { max-width: var(--maxw); margin: 0 auto; }
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.section__lead {
  font-size: 1.1rem;
  max-width: 62ch;
  margin-top: -0.4em;
}

/* DIENSTEN PHOTOS */
.diensten-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.diensten-photos .photo-placeholder { min-height: 0; }
.diensten-photos .photo-placeholder img { min-height: 0; aspect-ratio: 4 / 3; }

@media (max-width: 720px) {
  .diensten-photos { grid-template-columns: 1fr; }
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.service-card p:last-child { margin-bottom: 0; }
.service-card .plainlist { margin-top: 12px; }
.service-card .plainlist li { font-size: 0.95rem; }

@media (max-width: 860px) {
  .services { grid-template-columns: 1fr; }
}
.section__subtitle {
  font-size: 1.1rem;
  margin-top: 1.6em;
}
.section__subtitle-plain {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin: 1.8em 0 0.6em;
}
.section__subtitle-plain:first-of-type { margin-top: 0; }

/* TAGS */
.tags {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tags li {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* PHOTO PLACEHOLDER */
.photo-placeholder {
  background: linear-gradient(135deg, #23272c, #14171a);
  border-radius: var(--radius);
  min-height: 260px;
  overflow: hidden;
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
.photo-placeholder--tall img { min-height: 420px; }

/* TIMELINE */
.timeline {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  border-left: 2px solid var(--border);
}
.timeline__item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--ink);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__period {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  margin-bottom: 6px;
}
.timeline__content h3 { font-size: 1.15rem; margin-bottom: 2px; }
.timeline__org {
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

/* PLAIN LISTS */
.plainlist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plainlist li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.plainlist--loose li { border-bottom: none; padding: 4px 0; color: var(--ink-soft); }

/* CONTACT */
.contactlist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.contactlist li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.contactlist span {
  min-width: 90px;
  color: #8a8f98;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contactlist a { text-decoration: none; font-weight: 600; }
.contactlist a:hover { color: var(--accent); }

.contact-form {
  background: #1e2126;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #3a3e45;
  background: #14171a;
  color: #fff;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
}
.contact-form .btn { align-self: flex-start; }
.form-note {
  display: none;
  margin: 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-note--visible { display: block; }
.form-note--ok { background: rgba(245,194,29,0.15); color: var(--accent); }
.form-note--error { background: rgba(220,80,80,0.15); color: #ff8080; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 28px 28px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.footer__logo {
  height: 56px;
  width: auto;
  display: block;
  margin: 0 auto 12px;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
  .hero { flex-direction: column-reverse; padding-top: 48px; }
  .hero__photo { width: 100%; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 64px 0 0 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    align-items: flex-start;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__burger { display: flex; }
}
