/* Tijdelijke landingspagina — volgt het tokensysteem van de site (zie DEV/DESIGN.md). */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #091a0f;
  --forest: #08311b;
  --forest-2: #027737;
  --green: #00da63;
  --green-hover: #00e96a;
  --green-pale: #e3f9eb;
  --green-soft: #f3faf6;
  --white: #ffffff;
  --muted: #667269;
  --line: #d9dedb;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(9, 26, 15, 0.045);
  --shadow-md: 0 18px 44px rgba(9, 26, 15, 0.085);
  --radius-sm: 10px;
  --radius-md: 18px;
  --container: 1100px;
  --header-height: 64px;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--white);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, p, ul { margin-top: 0; }
h1, h2 { line-height: 1.08; letter-spacing: -0.035em; font-weight: 500; text-wrap: balance; }
p { text-wrap: pretty; }
[hidden] { display: none !important; }

::selection { background: var(--green); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 40;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-sm);
}
.skip-link:focus-visible { top: 12px; }

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* Knoppen */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 160ms var(--ease-out), box-shadow 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button--signal { background: var(--green); color: var(--white); box-shadow: 0 10px 24px rgba(0, 218, 99, 0.13); }
.button--signal:hover { background: var(--green-hover); box-shadow: 0 13px 28px rgba(0, 218, 99, 0.19); }
.button--small { min-height: 40px; padding: 0 18px; font-size: 13px; }
.button:disabled { opacity: 0.6; cursor: default; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand img { width: 154px; height: auto; }

/* Hero */
.hero { padding: clamp(40px, 5vw, 72px) 0 clamp(32px, 4vw, 56px); }
.hero-inner {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 40px clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 29% 43% at 76% 43%, #e2f2e8 0%, #edf7f1 47%, rgba(255, 255, 255, 0) 100%);
}
.hero-copy { min-width: 0; }

.hero h1 {
  font-size: clamp(34px, 4.1vw, 52px);
  font-weight: 500;
  line-height: 1.13;
  color: #326349;
  margin-bottom: 24px;
}

.hero-lead {
  max-width: 640px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: #506b5b;
  margin-bottom: 30px;
}

.hero-actions { margin-bottom: 0; }
.hero-actions .button--signal { color: #175232; }

.hero-proof {
  grid-column: 1 / -1;
  max-width: 680px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* Dienstverlening */
.services { padding: clamp(32px, 4vw, 56px) 0 clamp(56px, 7vw, 96px); }
.services-inner { max-width: 640px; text-align: center; margin-inline: auto; }
.services h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 22px; }

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: #2e4437;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23027737' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* Contact */
.contact {
  background: linear-gradient(var(--green-soft), var(--green-pale));
  padding: clamp(56px, 7vw, 96px) 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 620px);
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-intro h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 14px; }
.contact-intro p { color: #2e4437; max-width: 36ch; }
.contact-direct { font-size: 14.5px; }
.contact-direct a { color: var(--forest-2); font-weight: 600; }
.contact-direct a:hover { text-decoration: underline; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 3vw, 36px);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.hp-veld { position: absolute; left: -9999px; opacity: 0; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13.5px; font-weight: 600; }
.field label b { color: var(--forest-2); font-weight: 600; }
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 140ms var(--ease-out);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 218, 99, 0.18);
}

.contact-submit { align-self: flex-start; }

.contact-toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  color: var(--forest);
  font-size: 14.5px;
  line-height: 1.5;
}
.contact-toast svg { flex: none; margin-top: 2px; fill: none; stroke: var(--forest-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-toast.is-error { background: #fff1f0; color: var(--danger); }
.contact-toast.is-error svg { stroke: var(--danger); }

/* Juridische pagina's */
.legal { padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 110px); }
.legal-inner { max-width: 680px; }
.legal h1 { font-size: clamp(30px, 3.4vw, 42px); font-weight: 600; margin-bottom: 8px; }
.legal-meta { font-size: 14px; color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-size: 20px; margin: 34px 0 10px; }
.legal p, .legal li { color: #2e4437; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--forest-2); font-weight: 600; }
.legal a:hover { text-decoration: underline; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.82); }
.site-footer__inner {
  padding: 44px 0 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.site-footer p { margin: 0; font-size: 14.5px; }
.site-footer small { font-size: 12.5px; color: rgba(255, 255, 255, 0.6); }
.site-footer small a:hover { text-decoration: underline; }

/* Responsief */
@media (max-width: 760px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .hero-copy { max-width: 580px; margin-inline: auto; }
  .hero h1 { font-size: clamp(31px, 5.8vw, 42px); }
  .hero-inner::before { background: radial-gradient(ellipse 60% 29% at 50% 66%, #e2f2e8 0%, #edf7f1 47%, rgba(255, 255, 255, 0) 100%); }
}

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: minmax(0, 620px); }
  .contact-intro { text-align: center; }
  .contact-intro p { margin-inline: auto; }
}

@media (max-width: 560px) {
  .container, .header-inner { width: calc(100% - 40px); }
  .field-row { grid-template-columns: 1fr; }
  .contact-submit { align-self: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
