/* ==========================================================================
   Carrosserie Dieltjens — stylesheet
   Mobile-first. Eén bestand, opgedeeld in duidelijke secties.

   1. Tokens
   2. Reset & basis
   3. Typografie
   4. Layout & helpers
   5. Knoppen
   6. Header & navigatie
   7. Hero
   8. USP-balk
   9. Secties: diensten, ervaring, project, vervangwagen, praktisch
  10. Before/after
  11. Tijdlijn
  12. Formulier
  13. Footer
  14. Mobiele bel-balk
  15. Print & voorkeuren
   ========================================================================== */

/* ------------------------------------------------------------- 1. Tokens -- */

:root {
  /* Donkere basis */
  --ink:        #101215;
  --ink-2:      #191d22;
  --ink-3:      #232830;
  --ink-line:   rgba(255, 255, 255, .13);

  /* Licht */
  --paper:      #ffffff;
  --paper-2:    #f7f6f4;
  --paper-3:    #edebe6;
  --line:       #e0ddd7;

  /* Tekst */
  --text:       #14171a;
  --text-2:     #5c636b;
  --text-3:     #8b9098;
  --text-inv:   #f4f3f1;
  --text-inv-2: #a8adb4;

  /* Accenten uit het logo — spaarzaam gebruiken */
  --red:        #cc1f27;
  --red-dark:   #a3161d;
  --amber:      #f0b400;

  --shadow-sm:  0 1px 2px rgba(16, 18, 21, .06), 0 2px 8px rgba(16, 18, 21, .05);
  --shadow-md:  0 2px 6px rgba(16, 18, 21, .07), 0 12px 32px rgba(16, 18, 21, .09);

  --radius:     3px;
  --radius-lg:  5px;

  --header-h:   68px;
  --maxw:       1180px;
  --gutter:     20px;

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (min-width: 900px) {
  :root { --header-h: 80px; --gutter: 32px; }
}

/* ------------------------------------------------------ 2. Reset & basis -- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

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

.visually-hidden {
  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: 12px; top: -100px; z-index: 200;
  background: var(--ink); color: var(--text-inv);
  padding: 12px 18px; border-radius: var(--radius);
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 12px; }

/* ------------------------------------------------------- 3. Typografie -- */

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 7vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); letter-spacing: -.012em; }
h4 { font-size: 1.02rem; letter-spacing: 0; font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 14px;
}
.eyebrow--accent { color: var(--red); }
.eyebrow--inv    { color: var(--amber); }

.lead {
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 62ch;
}

.muted     { color: var(--text-2); }
.small     { font-size: .9rem; }
.smaller   { font-size: .82rem; }

/* ---------------------------------------------- 4. Layout & helpers -- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 820px; }

.section { padding-block: clamp(56px, 9vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 68px); }

.section--dark  { background: var(--ink);   color: var(--text-inv); }
.section--dark  h2, .section--dark h3 { color: var(--text-inv); }
.section--dark  .lead, .section--dark .muted { color: var(--text-inv-2); }
.section--paper { background: var(--paper-2); }

.section-head { max-width: 68ch; margin-bottom: clamp(32px, 5vw, 56px); }

.rule {
  width: 56px; height: 4px; border: 0; margin: 0 0 22px;
  background: linear-gradient(90deg, var(--red) 0 55%, var(--amber) 55% 100%);
}

.grid { display: grid; gap: 20px; }

@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid { gap: 24px; }
}

.split { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left  { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right { grid-template-columns: .85fr 1.15fr; }
  .split--reverse > :first-child { order: 2; }
}

.figure { margin: 0; }
.figure img { border-radius: var(--radius); width: 100%; }
.figure figcaption {
  margin-top: 10px;
  font-size: .82rem;
  color: var(--text-3);
  line-height: 1.45;
}
.section--dark .figure figcaption { color: var(--text-inv-2); }

.archive-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .7rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--text-2);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 12px; background: var(--paper);
}
.archive-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
}
.section--dark .archive-tag {
  color: var(--text-inv-2); border-color: var(--ink-line); background: transparent;
}

/* -------------------------------------------------------- 5. Knoppen -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px;
  font: inherit; font-weight: 700; font-size: .96rem;
  line-height: 1.2; text-decoration: none;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--text); }

.btn--ghost-inv { background: transparent; color: var(--text-inv); border-color: var(--ink-line); }
.btn--ghost-inv:hover { border-color: var(--text-inv); }

.btn--solid-inv { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--solid-inv:hover { background: var(--paper-3); border-color: var(--paper-3); }

.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.link-arrow::after { content: "→"; transition: transform .16s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------- 6. Header & navigatie -- */

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }
@media (min-width: 900px) { .brand img { height: 36px; } }

.nav-toggle {
  display: inline-flex; align-items: center; gap: 9px;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 9px 13px; font: inherit; font-weight: 700; font-size: .85rem;
  cursor: pointer; color: var(--text);
}
.nav-toggle__bars { display: block; width: 17px; height: 11px; position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after,
.nav-toggle__bars span {
  content: ""; position: absolute; left: 0; right: 0; height: 2px;
  background: var(--text); transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span    { top: 4.5px; }
.nav-toggle__bars::after  { bottom: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span    { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after   { transform: translateY(-4.5px) rotate(-45deg); }

.nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 8px var(--gutter) 24px;
  display: none;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
.nav[data-open="true"] { display: block; }

.nav__list { list-style: none; margin: 0; padding: 0; }
.nav__list a {
  display: block; padding: 15px 2px;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.nav__list a[aria-current="page"] { color: var(--red); }
.nav__cta { margin-top: 22px; }

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .nav {
    position: static; display: block; background: none; border: 0;
    box-shadow: none; padding: 0; max-height: none; overflow: visible;
  }
  .nav__list { display: flex; align-items: center; gap: 4px; }
  .nav__list a {
    padding: 9px 13px; border: 0; font-size: .95rem; border-radius: var(--radius);
  }
  .nav__list a:hover { background: var(--paper-2); }
  .nav__list a[aria-current="page"] { color: var(--text); box-shadow: inset 0 -3px 0 var(--red); }
  .nav__cta { margin: 0 0 0 12px; }
  .nav__cta .btn { padding: 11px 18px; font-size: .9rem; }
  .header__inner { gap: 28px; }
}

/* ----------------------------------------------------------- 7. Hero -- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-inv);
  overflow: hidden;
  isolation: isolate;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 50%; }

.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(16,18,21,.72) 0%, rgba(16,18,21,.55) 40%, rgba(16,18,21,.88) 100%),
    linear-gradient(90deg, rgba(16,18,21,.82) 0%, rgba(16,18,21,.34) 62%, rgba(16,18,21,.2) 100%);
}

.hero__inner {
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: clamp(500px, 82vh, 760px);
  padding-block: clamp(72px, 12vw, 110px);
}

.hero h1 { color: #fff; margin-bottom: 18px; }
.hero .lead { color: rgba(255, 255, 255, .82); max-width: 44ch; }
.hero .eyebrow { color: var(--amber); }
.hero .btn-row { margin-top: 30px; }

.hero__credit {
  position: absolute; right: var(--gutter); bottom: 14px;
  font-size: .7rem; color: rgba(255, 255, 255, .45);
}

/* Compacte hero voor subpagina's */
.pagehead {
  background: var(--ink); color: var(--text-inv);
  padding-block: clamp(48px, 8vw, 88px);
}
.pagehead h1 { color: #fff; font-size: clamp(1.9rem, 5.2vw, 3.2rem); }
.pagehead .lead { color: var(--text-inv-2); }
.pagehead .eyebrow { color: var(--amber); }

.breadcrumb { font-size: .82rem; color: var(--text-inv-2); margin-bottom: 18px; }
.breadcrumb a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.25); }
.breadcrumb span { opacity: .55; margin-inline: 7px; }

/* ------------------------------------------------------- 8. USP-balk -- */

.usp {
  background: var(--ink-2);
  color: var(--text-inv);
  border-top: 3px solid var(--red);
}
.usp__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0;
}
.usp__item {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ink-line);
}
.usp__item:last-child { border-bottom: 0; }
.usp__num {
  flex-shrink: 0; margin-top: 2px;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  color: var(--amber);
}
.usp__label { font-weight: 700; display: block; line-height: 1.3; }
.usp__note { font-size: .85rem; color: var(--text-inv-2); }

@media (min-width: 760px) {
  .usp__list { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
  .usp__item:nth-last-child(2) { border-bottom: 0; }
}
@media (min-width: 1060px) {
  .usp__list { grid-template-columns: repeat(4, 1fr); column-gap: 32px; }
  .usp__item { border-bottom: 0; border-left: 1px solid var(--ink-line); padding: 26px 0 26px 20px; }
  .usp__item:first-child { border-left: 0; padding-left: 0; }
}

/* ------------------------------------------------------- 9. Diensten -- */

.svc-grid { display: grid; gap: 18px; }
@media (min-width: 720px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.svc {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  text-decoration: none;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
a.svc:hover { border-color: var(--text-3); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.svc h3 { margin-bottom: 8px; }
.svc p  { color: var(--text-2); font-size: .95rem; margin-bottom: 0; }
.svc__more { margin-top: 18px; font-weight: 700; font-size: .9rem; color: var(--red); }
.svc__more::after { content: " →"; }

/* Uitgelicht: chassis richten */
.svc--feature {
  grid-column: 1 / -1;
  background: var(--ink); color: var(--text-inv);
  border-color: var(--ink);
  padding: 0; overflow: hidden;
}
.svc--feature .svc__body { padding: 30px 26px 30px; }
.svc--feature h3 { color: #fff; font-size: clamp(1.4rem, 3.4vw, 2rem); }
.svc--feature p  { color: var(--text-inv-2); font-size: 1rem; max-width: 52ch; }
.svc--feature .svc__more { color: var(--amber); }
.svc--feature .svc__media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
a.svc--feature:hover { border-color: var(--ink-3); transform: none; }

@media (min-width: 720px) {
  .svc--feature { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
  .svc--feature .svc__body { padding: 40px 38px; display: flex; flex-direction: column; justify-content: center; }
  .svc--feature .svc__media { height: 100%; }
}

/* ------------------------------------------------------ 9b. Ervaring -- */

.craft__frames { display: grid; gap: 16px; }
@media (min-width: 560px) { .craft__frames { grid-template-columns: 1fr 1fr; align-items: start; } }

/* "Toen" en "nu" naast elkaar: de archieffoto is liggend, de recente foto
   staand. Eenzelfde beeldverhouding houdt het paar rustig. */
.craft__frames .figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;   /* iets hoger: houdt Kurt in beeld, minder vloer */
}

.quote {
  margin: 0;
  border-left: 4px solid var(--red);
  padding: 4px 0 4px 22px;
}
.quote p {
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  line-height: 1.4; font-weight: 600; letter-spacing: -.012em;
}
.quote footer { font-size: .88rem; color: var(--text-2); margin-top: 10px; }
.section--dark .quote footer { color: var(--text-inv-2); }

.factlist { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 2px; }
.factlist li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 13px 0; border-top: 1px solid var(--line);
}
.section--dark .factlist li { border-color: var(--ink-line); }
.factlist dt, .factlist b {
  flex: 0 0 auto; min-width: 92px; font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------- 9c. Vervangwagen -- */

.notice {
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: .92rem;
}
.section--dark .notice { background: var(--ink-2); border-color: var(--ink-line); border-left-color: var(--amber); }

/* -------------------------------------------------- 10. Before/after -- */

.ba {
  --pos: 50%;
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  line-height: 0;
  touch-action: pan-y;
}
.ba__base { display: block; width: 100%; height: 100%; object-fit: cover; }
.ba__overlay {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba__overlay img { width: 100%; height: 100%; object-fit: cover; }

.ba__range {
  position: absolute; inset: 0;
  width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none; background: none;
  z-index: 3;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 56px; height: 100%; }
.ba__range::-moz-range-thumb { width: 56px; height: 100%; border: 0; background: transparent; }

.ba__divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 3px; margin-left: -1.5px; background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.28);
  pointer-events: none; z-index: 2;
}
.ba__grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.32);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--ink); font-weight: 700; letter-spacing: -.06em;
}
.ba__range:focus-visible ~ .ba__divider .ba__grip { outline: 3px solid var(--amber); outline-offset: 3px; }

.ba__tag {
  position: absolute; bottom: 12px; z-index: 2;
  font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  background: rgba(16,18,21,.78); color: #fff;
  padding: 6px 11px; border-radius: 999px; line-height: 1;
  pointer-events: none;
}
.ba__tag--l { left: 12px; }
.ba__tag--r { right: 12px; }

.ba-caption {
  margin-top: 12px; font-size: .85rem; color: var(--text-2);
  display: flex; align-items: center; gap: 8px;
}
.section--dark .ba-caption { color: var(--text-inv-2); }

/* ---------------------------------------------------- 11. Tijdlijn -- */

.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 40px; }
@media (min-width: 900px) { .timeline { gap: 72px; } }

.step { display: grid; gap: 18px; }
@media (min-width: 860px) {
  .step { grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
  .step:nth-child(even) .step__media { order: 2; }
}

.step__media img { width: 100%; border-radius: var(--radius); }

.step__num {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px;
}
.step__num::before {
  content: ""; width: 26px; height: 2px; background: var(--red); display: block;
}
.step h3 { margin-bottom: 10px; }
.step p  { color: var(--text-inv-2); max-width: 46ch; margin-bottom: 0; }

/* -------------------------------------------------- 12. Formulier -- */

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .9rem; }
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem;
  padding: 13px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); color: var(--text);
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--text-3); }
.field textarea { min-height: 150px; resize: vertical; }
.field__hint { font-size: .82rem; color: var(--text-2); }

@media (min-width: 640px) { .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } }

.form__status {
  border-radius: var(--radius); padding: 14px 16px; font-size: .92rem;
  background: var(--paper-3); border: 1px solid var(--line);
}

/* ---------------------------------------------------------- 12b. Kaart -- */
/* De kaart laadt pas na een klik. Zo gaat er niets naar OpenStreetMap
   voordat de bezoeker daar zelf voor kiest — geen cookiebanner nodig. */

.map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
}

.map__consent {
  aspect-ratio: 4 / 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 28px 24px;
}
.map__consent p { color: var(--text-2); font-size: .9rem; max-width: 34ch; margin: 0; }
.map__pin {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; line-height: 1;
}

.map__frame { display: block; width: 100%; aspect-ratio: 4 / 3; border: 0; }

.map__links {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  padding: 14px 16px; border-top: 1px solid var(--line);
  font-size: .88rem; background: var(--paper);
}
.map__links a { font-weight: 600; }

/* --------------------------------------------------------- 13. Footer -- */

.footer {
  background: var(--ink); color: var(--text-inv-2);
  padding-block: clamp(46px, 6vw, 72px) 26px;
  font-size: .93rem;
}
.footer a { color: var(--text-inv); }
.footer__grid { display: grid; gap: 34px; }
@media (min-width: 760px)  { .footer__grid { grid-template-columns: 1.25fr 1fr 1fr; gap: 40px; } }

.footer__wordmark {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em;
  color: #fff; line-height: 1; margin-bottom: 4px;
}
.footer__wordmark span {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .34em; color: var(--amber); margin-top: 6px;
}
.footer h4 { color: #fff; margin-bottom: 12px; font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer address { font-style: normal; }

.footer__bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--ink-line);
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between;
  font-size: .82rem; color: var(--text-3);
}

.hours { display: grid; gap: 7px; }
.hours__row { display: flex; justify-content: space-between; gap: 18px; }
.hours__row--closed { color: var(--text-3); }
.footer .hours__row { border-bottom: 1px solid var(--ink-line); padding-bottom: 7px; }
.footer .hours__row:last-child { border-bottom: 0; }

/* ------------------------------------------------ 14. Mobiele belbalk -- */

.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ink); border-top: 1px solid var(--ink-line);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px; text-decoration: none;
  font-weight: 700; font-size: .95rem; color: var(--text-inv);
}
.callbar a:first-child { background: var(--red); color: #fff; }

@media (min-width: 980px) { .callbar { display: none; } }
@media (max-width: 979px) { body { padding-bottom: 58px; } }

/* --------------------------------------------- 15. Print & voorkeuren -- */

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

@media print {
  .header, .nav, .callbar, .btn { display: none !important; }
  body { color: #000; }
}
