/* ==========================================================================
   servieskopen&huren — design system
   ========================================================================== */

:root {
  /* Kleuren */
  --clay-950: #1c1917;
  --clay-800: #33302c;
  --clay-600: #6b6259;
  --clay-400: #a29a90;
  --clay-200: #ddd6cc;
  --clay-100: #ece7df;
  --clay-50:  #f7f4ef;
  --white:    #ffffff;

  --brass:      #a9843f;
  --brass-dark: #8a6a2f;
  --brass-soft: #f3ead9;

  --sage:      #4f6156;
  --sage-soft: #e5ebe6;

  --danger: #a13a2c;

  /* Typografie */
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Ruimte & vorm */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, .06), 0 1px 3px rgba(28, 25, 23, .04);
  --shadow: 0 4px 12px rgba(28, 25, 23, .07), 0 1px 3px rgba(28, 25, 23, .05);
  --shadow-lg: 0 18px 40px rgba(28, 25, 23, .12);
  --maxw: 1180px;
  --header-h: 76px;
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  overflow-wrap: break-word;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--clay-800);
  background: var(--clay-50);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--brass-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.18; color: var(--clay-950); letter-spacing: -.01em; overflow-wrap: break-word; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

/* Layout ----------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--clay-950); color: var(--clay-200); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-head { max-width: 660px; margin-bottom: 36px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 12px; color: var(--clay-600); font-size: 1.05rem; }
.section--dark .section-head p { color: var(--clay-400); }

.eyebrow {
  display: inline-block; margin-bottom: 12px;
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass-dark);
}
.section--dark .eyebrow { color: var(--brass); }

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* Knoppen ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border: 1px solid transparent; border-radius: var(--radius);
  font-size: .96rem; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn--primary { background: var(--clay-950); color: var(--white); }
.btn--primary:hover { background: var(--clay-800); }
.btn--brass { background: var(--brass); color: var(--white); }
.btn--brass:hover { background: var(--brass-dark); }
.btn--ghost { background: transparent; color: var(--clay-950); border-color: var(--clay-200); }
.btn--ghost:hover { border-color: var(--clay-400); background: var(--white); }
.section--dark .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.28); }
.section--dark .btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--sm { padding: 9px 16px; font-size: .86rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

/* Header ----------------------------------------------------------------- */
.topbar {
  background: var(--clay-950); color: var(--clay-200);
  font-size: .82rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: center; padding-block: 9px; }
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { flex: none; color: var(--brass); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 239, .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clay-200);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 20px; min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name {
  font-family: var(--font-display); font-size: 1.32rem; font-weight: 600;
  color: var(--clay-950); line-height: 1.1; letter-spacing: -.015em; white-space: nowrap;
}
.brand__name em { font-style: normal; color: var(--brass); padding-inline: 1px; }
.brand__tag { display: block; font-family: var(--font-body); font-size: .64rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--clay-400); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px; border-radius: var(--radius-sm);
  font-size: .93rem; font-weight: 500; color: var(--clay-800); text-decoration: none;
}
.nav a:hover { background: var(--clay-100); color: var(--clay-950); }
.nav a[aria-current="page"] { color: var(--clay-950); font-weight: 650; box-shadow: inset 0 -2px 0 var(--brass); border-radius: 0; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.quote-btn { position: relative; }
.quote-btn__count {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px;
  display: grid; place-items: center; border-radius: 999px;
  background: var(--brass); color: var(--white); font-size: .72rem; font-weight: 700;
}
.quote-btn__count[hidden] { display: none; }

.nav-toggle { display: none; padding: 9px; background: none; border: 1px solid var(--clay-200); border-radius: var(--radius-sm); cursor: pointer; }

@media (max-width: 900px) {
  .nav-toggle { display: grid; place-items: center; }
  .site-header .wrap { gap: 12px; }
  .brand { min-width: 0; }
  .brand__name { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
  .nav {
    position: absolute; inset: 100% 0 auto; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 12px 24px 20px; background: var(--clay-50); border-bottom: 1px solid var(--clay-200);
    box-shadow: var(--shadow);
  }
  .nav:not(.is-open) { display: none; }
  .nav a { padding: 12px 10px; }
  .topbar .wrap span:nth-child(n+3) { display: none; }
}

@media (max-width: 620px) {
  .quote-btn > span:not(.quote-btn__count) { display: none; }
  .brand__tag { display: none; }
  .brand__name { white-space: normal; }
  .quote-btn { padding-inline: 11px; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__name { font-size: 1.12rem; }
  .topbar .wrap span:nth-child(n+2) { display: none; }
  .section { padding: 56px 0; }
  .split__actions .btn, .cta__actions .btn { flex: 1 1 auto; }
}

@media (max-width: 480px) {
  .wrap { padding-inline: 18px; }
  .brand__name { font-size: 1.02rem; }
  .tablist { display: flex; width: 100%; }
  .tab { flex: 1; justify-content: center; padding-inline: 10px; font-size: .88rem; }
  .tab svg { display: none; }
  h1 { font-size: 2rem; }
}

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--clay-50); padding: 64px 0 0; }
.hero::before {
  content: ""; position: absolute; inset: -30% -20% auto auto; width: 720px; height: 720px;
  background: radial-gradient(circle, var(--brass-soft) 0%, rgba(243,234,217,0) 68%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero__intro { max-width: 720px; }
.hero__intro h1 { margin-bottom: 18px; }
.hero__lede { font-size: 1.16rem; color: var(--clay-600); max-width: 620px; }

/* Tabs ------------------------------------------------------------------- */
.tabs { margin-top: 34px; }
.tablist {
  display: inline-flex; gap: 4px; padding: 5px;
  background: var(--clay-100); border: 1px solid var(--clay-200); border-radius: 999px;
}
.tab {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 24px; border: 0; border-radius: 999px; background: transparent;
  font-size: .96rem; font-weight: 600; color: var(--clay-600); cursor: pointer;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.tab:hover { color: var(--clay-950); }
.tab[aria-selected="true"] { background: var(--white); color: var(--clay-950); box-shadow: var(--shadow-sm); }
.tab svg { flex: none; }

.tabpanel { padding-top: 36px; }
.tabpanel[hidden] { display: none; }
.tabpanel--enter { animation: fade-up .38s ease both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.split { display: grid; gap: 44px; align-items: center; grid-template-columns: 1.05fr .95fr; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split__body h2 { margin-bottom: 14px; }
.split__body > p { color: var(--clay-600); }
.split__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.split__visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--white); }
.split__visual svg { width: 100%; height: auto; }

.ticks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; }
.ticks svg { flex: none; margin-top: 4px; color: var(--brass); }

/* USP strip -------------------------------------------------------------- */
.usps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--clay-200);
  border-block: 1px solid var(--clay-200); }
.usp { background: var(--white); padding: 28px 26px; }
.usp__icon { width: 34px; height: 34px; color: var(--brass); margin-bottom: 14px; }
.usp h3 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; }
.usp p { font-size: .92rem; color: var(--clay-600); }

/* Kaarten / producten ---------------------------------------------------- */
.card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--clay-200); border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--clay-400); box-shadow: var(--shadow); transform: translateY(-2px); }
.card__media { position: relative; aspect-ratio: 4 / 3; background: var(--clay-100); }
.card__media svg { width: 100%; height: 100%; }
.card__badge {
  position: absolute; top: 12px; left: 12px; padding: 5px 11px; border-radius: 999px;
  background: var(--clay-950); color: var(--white); font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.card__badge--brass { background: var(--brass); }
.card__badge--sage { background: var(--sage); }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.card__cat { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-400); }
.card__title { margin: 7px 0 8px; font-size: 1.1rem; }
.card__desc { font-size: .9rem; color: var(--clay-600); margin-bottom: 16px; text-wrap: pretty; }
.card__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.price { font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; color: var(--clay-950); }
.price small { font-family: var(--font-body); font-size: .78rem; font-weight: 500; color: var(--clay-600); }
.price__unit { display: block; font-size: .78rem; color: var(--clay-600); font-family: var(--font-body); font-weight: 500; }
.price__lease { display: block; margin-top: 3px; font-family: var(--font-body); font-size: .78rem; font-weight: 600; color: var(--brass-dark); }
.card__foot--stack { flex-direction: column; align-items: stretch; gap: 14px; }
.card__specs { font-size: .82rem; color: var(--clay-400); margin: -8px 0 16px; text-wrap: pretty; }

/* Categorie-tegels ------------------------------------------------------- */
.tile {
  position: relative; display: block; padding: 26px; text-decoration: none; color: inherit;
  background: var(--white); border: 1px solid var(--clay-200); border-radius: var(--radius-lg);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.tile:hover { border-color: var(--brass); box-shadow: var(--shadow); transform: translateY(-2px); }
.tile__icon { width: 40px; height: 40px; color: var(--brass); margin-bottom: 16px; }
.tile h3 { margin-bottom: 7px; }
.tile p { font-size: .92rem; color: var(--clay-600); }
.tile__meta { display: block; margin-top: 14px; font-size: .84rem; font-weight: 600; color: var(--brass-dark); }

/* Stappen ---------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { position: relative; padding-top: 20px; border-top: 2px solid var(--clay-200); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; margin-bottom: 10px;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--brass);
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .93rem; color: var(--clay-600); }
.section--dark .step { border-color: rgba(255,255,255,.16); }
.section--dark .step p { color: var(--clay-400); }

/* Filterbalk ------------------------------------------------------------- */
.toolbar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  padding: 16px; margin-bottom: 28px;
  background: var(--white); border: 1px solid var(--clay-200); border-radius: var(--radius-lg);
}
.toolbar__search { position: relative; flex: 1 1 240px; }
.toolbar__search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--clay-400); }
.field {
  width: 100%; padding: 11px 14px; background: var(--white);
  border: 1px solid var(--clay-200); border-radius: var(--radius); font-size: .94rem;
}
.field:focus { border-color: var(--brass); outline: none; box-shadow: 0 0 0 3px var(--brass-soft); }
.toolbar__search .field { padding-left: 40px; }
select.field { appearance: none; padding-right: 38px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6259' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip {
  padding: 8px 16px; border: 1px solid var(--clay-200); border-radius: 999px; background: var(--white);
  font-size: .87rem; font-weight: 500; color: var(--clay-600); cursor: pointer;
  transition: all .18s ease;
}
.chip:hover { border-color: var(--clay-400); color: var(--clay-950); }
.chip[aria-pressed="true"] { background: var(--clay-950); border-color: var(--clay-950); color: var(--white); }

.result-count { font-size: .9rem; color: var(--clay-600); margin-bottom: 20px; }
.empty-state { padding: 60px 20px; text-align: center; color: var(--clay-600);
  border: 1px dashed var(--clay-200); border-radius: var(--radius-lg); background: var(--white); }
.empty-state h3 { margin-bottom: 8px; }

/* Tabel ------------------------------------------------------------------ */
.table-scroll { overflow-x: auto; border: 1px solid var(--clay-200); border-radius: var(--radius-lg); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 520px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--clay-100); font-size: .93rem; }
th { background: var(--clay-50); font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--clay-600); }
tbody tr:last-child td { border-bottom: 0; }

/* Aanvraaglijst (drawer) ------------------------------------------------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 90; background: rgba(28, 25, 23, .45);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100; width: min(420px, 100%);
  display: flex; flex-direction: column; background: var(--clay-50);
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 22px; border-bottom: 1px solid var(--clay-200); background: var(--white); }
.drawer__head h2 { font-size: 1.2rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.drawer__foot { padding: 18px 22px; border-top: 1px solid var(--clay-200); background: var(--white); }
.icon-btn { display: grid; place-items: center; width: 38px; height: 38px; padding: 0;
  background: none; border: 1px solid var(--clay-200); border-radius: var(--radius-sm); cursor: pointer; }
.icon-btn:hover { background: var(--clay-100); }

.qitem { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--clay-200); }
.qitem:last-child { border-bottom: 0; }
.qitem__thumb { width: 60px; height: 60px; flex: none; border-radius: var(--radius); overflow: hidden; background: var(--clay-100); }
.qitem__thumb svg { width: 100%; height: 100%; }
.qitem__main { flex: 1; min-width: 0; }
.qitem__title { font-weight: 650; font-size: .95rem; line-height: 1.35; }
.qitem__meta { font-size: .82rem; color: var(--clay-600); margin-top: 2px; }
.qitem__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 9px; }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--clay-200); border-radius: var(--radius); background: var(--white); }
.stepper button { width: 30px; height: 30px; display: grid; place-items: center; background: none; border: 0; cursor: pointer; color: var(--clay-600); }
.stepper button:hover { color: var(--clay-950); }
.stepper span { min-width: 30px; text-align: center; font-size: .9rem; font-weight: 600; }
.qitem__remove { background: none; border: 0; padding: 0; font-size: .82rem; color: var(--clay-600); cursor: pointer; text-decoration: underline; }
.qitem__remove:hover { color: var(--danger); }

.summary-row { display: flex; justify-content: space-between; font-size: .93rem; margin-bottom: 8px; }
.summary-row--total { font-weight: 700; font-size: 1.06rem; color: var(--clay-950); padding-top: 10px; border-top: 1px solid var(--clay-200); }

/* Formulier -------------------------------------------------------------- */
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field label { display: block; margin-bottom: 6px; font-size: .87rem; font-weight: 650; color: var(--clay-800); }
.form-field .hint { font-size: .8rem; color: var(--clay-600); margin-top: 5px; }
.form-field .error { font-size: .82rem; color: var(--danger); margin-top: 5px; }
.form-field.has-error .field { border-color: var(--danger); }
textarea.field { min-height: 130px; resize: vertical; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; }
.check input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--brass); flex: none; }

.notice { padding: 16px 18px; border-radius: var(--radius); font-size: .93rem; border: 1px solid; }
.notice--ok { background: var(--sage-soft); border-color: #c2d1c6; color: #2f4436; }
.notice--info { background: var(--brass-soft); border-color: #e3d3b4; color: #6d541f; }

/* Panel ------------------------------------------------------------------ */
.panel { background: var(--white); border: 1px solid var(--clay-200); border-radius: var(--radius-lg); padding: 30px; }
.panel + .panel { margin-top: 24px; }

/* Quotes ----------------------------------------------------------------- */
.quote-card { background: var(--white); border: 1px solid var(--clay-200); border-radius: var(--radius-lg); padding: 28px; }
.quote-card blockquote { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.55; color: var(--clay-950); }
.quote-card figcaption { margin-top: 16px; font-size: .87rem; color: var(--clay-600); }
.quote-card figcaption strong { display: block; color: var(--clay-950); font-size: .93rem; }
.stars { display: flex; gap: 3px; color: var(--brass); margin-bottom: 14px; }

/* CTA -------------------------------------------------------------------- */
.cta { text-align: center; }
.cta h2 { margin-bottom: 14px; }
.cta p { max-width: 560px; margin-inline: auto; color: var(--clay-400); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--clay-950); color: var(--clay-400); padding: 60px 0 28px; font-size: .92rem; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1.6fr repeat(3, 1fr); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: var(--clay-400); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer .brand__name { color: var(--white); }
.site-footer .brand__tag { color: var(--clay-600); }
.footer-about { max-width: 320px; margin-top: 16px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .84rem; color: var(--clay-600); }

/* Pagina-kop ------------------------------------------------------------- */
.page-head { background: var(--white); border-bottom: 1px solid var(--clay-200); padding: 52px 0 44px; }
.page-head p { margin-top: 12px; max-width: 640px; color: var(--clay-600); font-size: 1.05rem; }
.crumbs { font-size: .84rem; color: var(--clay-400); margin-bottom: 14px; }
.crumbs a { color: var(--clay-600); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* Toast ------------------------------------------------------------------ */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 120; transform: translate(-50%, 20px);
  display: flex; align-items: center; gap: 10px; padding: 13px 20px; border-radius: 999px;
  background: var(--clay-950); color: var(--white); font-size: .9rem; font-weight: 500;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast svg { color: var(--brass); flex: none; }

/* Utilities -------------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.text-muted { color: var(--clay-600); }
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Contactpagina: kolommen onder elkaar op kleine schermen */
@media (max-width: 860px) {
  #contact-grid { grid-template-columns: 1fr !important; }
}

/* Juridische tekst (algemene voorwaarden) -------------------------------- */
.legal { max-width: 74ch; }
.legal article + article { margin-top: 40px; }
.legal h2 {
  font-size: 1.28rem;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--clay-200);
}
.legal p { margin-bottom: 12px; font-size: .97rem; }
.legal p:last-child { margin-bottom: 0; }
.legal .clause-no {
  display: inline-block;
  min-width: 2.6em;
  font-weight: 700;
  color: var(--brass-dark);
  font-variant-numeric: tabular-nums;
}
.legal ul { margin: 4px 0 12px; padding-left: 0; list-style: none; display: grid; gap: 8px; }
.legal ul li {
  display: flex;
  gap: 12px;
  font-size: .97rem;
  padding-left: 2.6em;
}
.legal ul li::before {
  content: "—";
  color: var(--brass);
  flex: none;
  margin-left: -1.4em;
}
.legal .intro { font-size: 1.02rem; color: var(--clay-600); }
.placeholder {
  background: var(--brass-soft);
  border-bottom: 1px dashed var(--brass);
  padding: 1px 5px;
  font-weight: 600;
  color: var(--brass-dark);
}
.legal-meta {
  display: flex; flex-wrap: wrap; gap: 6px 26px;
  margin-top: 26px; padding-top: 18px;
  border-top: 1px solid var(--clay-200);
  font-size: .87rem; color: var(--clay-600);
}

/* Spamval bij het offerteformulier — voor niemand zichtbaar, ook niet voor
   schermlezers; alleen bots vullen het in. */
.honeypot { display: none !important; }
