/* =========================================================================
   Garage Rafid — styles.css
   Feel: "werkplaatslicht" — a clean workshop on a grey Antwerp morning,
   one warm lamp on, someone showing you what is wrong with your car.
   Palette, type and motion are documented in ../DESIGN-SYSTEM.md
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Colour — workshop */
  --blauw:        #12323C;   /* werkplaatsblauw: overalls, deep panels */
  --blauw-diep:   #0B1F27;   /* footer, deepest ground */
  --blauw-mid:    #1C4553;   /* raised surface on dark */
  --staal:        #4F6268;   /* secondary text, borders on light */
  --staal-licht:  #7C8C91;   /* hairlines, non-text only */
  --papier:       #F2F1ED;   /* page ground */
  --papier-2:     #E5E4DC;   /* recessed band, cards */
  --lijn:         #D5D4CA;   /* rules on light */
  --lamp:         #E3922E;   /* the one accent: lamplight + primary action */
  --lamp-donker:  #8F5210;   /* amber that is safe as text on light */
  --groen:        #4C6B55;   /* "in orde" — checks, keuring */
  --wit:          #FBFAF7;

  /* Colour — on dark */
  --op-donker:      #E6EDEE;
  --op-donker-zacht:#A9BEC3;
  --op-donker-lijn: rgba(198, 220, 225, .18);

  /* Focus */
  --focus: var(--blauw);

  /* Type */
  --display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body:    "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Spacing scale (4px base) */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;

  /* Layout */
  --gutter: clamp(20px, 5vw, 48px);
  --maxw: 1180px;
  --hdr: 64px;
  --radius: 14px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-draw: cubic-bezier(.55, .06, .28, 1);
}

@media (min-width: 860px) { :root { --hdr: 76px; } }

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--papier);
  color: var(--blauw);
  font-family: var(--body);
  font-size: clamp(1.0625rem, 0.25vw + 1rem, 1.125rem);   /* 17 → 18px */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
svg { display: block; }

p { margin: 0 0 var(--s4); }
p:last-child { margin-bottom: 0; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 92%;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 var(--s4);
  text-wrap: balance;
}

ul, ol { margin: 0; padding: 0; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip {
  position: fixed; left: var(--s4); top: -100px; z-index: 200;
  background: var(--lamp); color: var(--blauw);
  font-family: var(--mono); font-size: 15px; font-weight: 500;
  padding: 12px 18px; border-radius: var(--radius-sm);
  text-decoration: none;
}
.skip:focus { top: var(--s3); }

/* ---------- 3. Shared type roles ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.875rem;          /* 14px */
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lamp);
  margin: 0 0 var(--s4);
}
.eyebrow--light { color: var(--lamp-donker); }

.h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  margin-bottom: var(--s5);
}

.lead {
  font-size: clamp(1.125rem, 1.2vw + 0.9rem, 1.3125rem);
  line-height: 1.55;
  color: var(--staal);
  max-width: 62ch;
}
.lead--dark { color: var(--op-donker-zacht); }

.panel-dark {
  background: var(--blauw);
  color: var(--op-donker);
  --focus: var(--lamp);
}
.panel-dark h1, .panel-dark h2, .panel-dark h3 { color: var(--wit); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 100%;
  font-size: 1rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--lamp);
  color: var(--blauw);
  box-shadow: 0 6px 20px -8px rgba(227, 146, 46, .8);
}
.btn--primary:hover { background: #F0A03A; box-shadow: 0 12px 26px -10px rgba(227, 146, 46, .9); }

.btn--ghost {
  background: transparent;
  color: var(--op-donker);
  border-color: rgba(230, 237, 238, .45);
}
.btn--ghost:hover { border-color: var(--op-donker); background: rgba(230, 237, 238, .08); }

.btn--quiet {
  background: transparent;
  color: var(--blauw);
  border-color: var(--staal);
}
.btn--quiet:hover { background: rgba(18, 50, 60, .06); }

.btn--lg { min-height: 60px; padding: 14px 28px; font-size: 1.0625rem; }

.ico { width: 22px; height: 22px; flex: none; fill: none;
       stroke: currentColor; stroke-width: 1.9;
       stroke-linecap: round; stroke-linejoin: round; }

.btnrow { display: flex; flex-wrap: wrap; gap: var(--s3); }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(18, 50, 60, .96);
  color: var(--op-donker);
  --focus: var(--lamp);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(227, 146, 46, .22);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 10px 30px -18px rgba(4, 20, 26, .9); }

.site-header__inner {
  min-height: var(--hdr);
  display: flex; align-items: center; gap: var(--s4);
}

.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
  margin-right: auto;
}
.brand__mark {
  width: 30px; height: 30px; flex: none;
  fill: none; stroke: var(--op-donker-zacht); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.brand__bulb { fill: var(--lamp); stroke: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__small {
  font-family: var(--mono); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lamp); margin-bottom: 3px;
}
.brand__big {
  font-family: var(--display); font-weight: 800; font-stretch: 88%;
  font-size: 1.3125rem; letter-spacing: -0.02em; color: var(--wit);
}

.nav { display: none; }
@media (min-width: 860px) { .nav { display: block; } }

.nav__list { display: flex; gap: var(--s2); list-style: none; }
.nav__link {
  position: relative;
  display: block;
  padding: 10px 14px;
  min-height: 44px;
  font-family: var(--display); font-weight: 600; font-stretch: 100%;
  font-size: 1rem;
  color: var(--op-donker-zacht);
  text-decoration: none;
  border-radius: 8px;
  transition: color .18s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--lamp);
  transform: scaleX(0); transform-origin: left;
  transition: transform .24s var(--ease);
}
.nav__link:hover { color: var(--wit); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--wit); }
.nav__link.is-active::after { transform: scaleX(1); }

.btn--call { min-height: 46px; padding: 10px 18px; font-size: 0.9375rem; }
.btn__short { display: inline; }
.btn__long { display: none; }
@media (min-width: 980px) {
  .btn__short { display: none; }
  .btn__long { display: inline; }
}

/* ---------- 6. Mobile tab bar ---------- */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--blauw-diep);
  border-top: 1px solid rgba(227, 146, 46, .28);
  padding-bottom: env(safe-area-inset-bottom);
  --focus: var(--lamp);
}
.tabbar__link {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; min-height: 62px; padding: 8px 4px;
  text-decoration: none; color: var(--op-donker-zacht);
  font-family: var(--display); font-weight: 600; font-size: 0.875rem;
  border-top: 3px solid transparent;
}
.tabbar__link svg {
  width: 22px; height: 22px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.tabbar__link.is-active { color: var(--lamp); border-top-color: var(--lamp); background: rgba(227, 146, 46, .08); }

body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }

@media (min-width: 860px) {
  .tabbar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- 7. Sections ---------- */
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--mist { background: var(--papier-2); }

.sec-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: var(--s5);
  margin-bottom: var(--s6);
}
.sec-head .h2 { margin-bottom: 0; }

.linkarrow {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  color: var(--blauw); text-decoration: none;
  border-bottom: 2px solid var(--lamp);
  padding-bottom: 2px;
}
.linkarrow .ico { width: 20px; height: 20px; transition: transform .2s var(--ease); }
.linkarrow:hover .ico { transform: translateX(4px); }

/* ---------- 8. Hero (home) ---------- */
.hero { padding-block: clamp(40px, 7vw, 88px) clamp(48px, 7vw, 96px); overflow: hidden; }
.hero__grid { display: grid; gap: clamp(32px, 5vw, 56px); align-items: center; }
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: minmax(0, 46fr) minmax(0, 54fr); }
}

.hero__title {
  font-size: clamp(2.5rem, 6.4vw, 4.4rem);
  font-stretch: 86%;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: var(--s5);
}
.hero__lead {
  font-size: clamp(1.0625rem, 0.9vw + 0.9rem, 1.25rem);
  line-height: 1.6;
  color: var(--op-donker-zacht);
  max-width: 52ch;
  margin-bottom: var(--s6);
}
.hero__note {
  margin-top: var(--s4);
  font-family: var(--mono); font-size: 0.9375rem;
  color: var(--op-donker-zacht);
}

/* ---------- 9. Signature: the drawn car under the lamp ---------- */
.art { position: relative; }
.carart { width: 100%; height: auto; }

.art-body   { fill: none; stroke: #CFDCDF; stroke-width: 2.6; stroke-linejoin: round; stroke-linecap: round; }
.art-glass  { fill: rgba(169, 190, 195, .10); stroke: #8FA8AE; stroke-width: 2; stroke-linejoin: round; }
.art-line   { fill: none; stroke: #8FA8AE; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.art-ground { stroke: rgba(198, 220, 225, .3); stroke-width: 2; stroke-linecap: round; }
.art-wheel circle { fill: none; stroke: #CFDCDF; stroke-width: 2.6; }
.art-spoke  { fill: none; stroke: #8FA8AE; stroke-width: 2; stroke-linecap: round; }
.art-highlight { fill: none; stroke: var(--lamp); stroke-width: 3; stroke-linecap: round; opacity: .9; }
.art-lamp line, .art-lamp path {
  fill: none; stroke: var(--op-donker-zacht); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
/* the flex hangs out of frame — fade it into the dark instead of cutting it */
.art-lamp .art-cord { stroke: url(#cordfade); }
.art-bulb { fill: var(--lamp); stroke: none; }

/* Annotation tags */
.tags { position: absolute; inset: 0; list-style: none; margin: 0; padding: 0; }
.tag { position: absolute; left: var(--x); top: var(--y); width: 0; height: 0; }
.tag::before {
  content: ""; position: absolute; left: -5px; top: -5px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lamp); box-shadow: 0 0 0 4px rgba(227, 146, 46, .18);
}
.tag::after {
  content: ""; position: absolute; left: -1px; width: 2px;
  background: rgba(227, 146, 46, .5);
}
.tag--up::after   { bottom: 2px; height: var(--len); }
.tag--down::after { top: 2px;    height: var(--len); }

.tag__label {
  position: absolute; left: 0; transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--mono); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--wit);
  background: rgba(11, 31, 39, .82);
  border: 1px solid rgba(227, 146, 46, .4);
  border-radius: 999px;
  padding: 5px 13px;
}
.tag--up   .tag__label { bottom: calc(var(--len) + 6px); }
.tag--down .tag__label { top:    calc(var(--len) + 6px); }

@media (max-width: 819px) {
  .tags {
    position: static; display: flex; flex-wrap: wrap;
    gap: var(--s2); justify-content: center;
    margin-top: var(--s5); padding-inline: var(--gutter);
  }
  .tag { position: static; width: auto; height: auto; }
  .tag::before, .tag::after { display: none; }
  .tag__label { position: static; transform: none; }
}

/* Below the two-column breakpoint the drawing runs edge to edge: it reads as a
   workshop scene band rather than a small picture squeezed into a text column. */
@media (max-width: 939px) {
  .hero__art { margin-inline: calc(var(--gutter) * -1); }
}

/* ---------- 10. Trust strip ---------- */
.trust { list-style: none; display: grid; gap: var(--s5); }
@media (min-width: 620px) { .trust { grid-template-columns: 1fr 1fr; gap: var(--s6); } }
@media (min-width: 1000px) { .trust { grid-template-columns: repeat(4, 1fr); } }

.trust__item { border-top: 2px solid var(--lijn); padding-top: var(--s4); }
.trust__ico {
  width: 34px; height: 34px; margin-bottom: var(--s3);
  fill: none; stroke: var(--blauw); stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}
.trust__h {
  font-size: 1.125rem; font-stretch: 96%; letter-spacing: -0.01em;
  margin-bottom: var(--s2);
}
.trust__item p { color: var(--staal); font-size: 1rem; line-height: 1.6; }

/* ---------- 11. Steps ---------- */
.steps { list-style: none; display: grid; gap: var(--s6); margin-top: var(--s7); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s7); } }

.step { position: relative; padding-top: var(--s5); border-top: 2px solid rgba(227, 146, 46, .35); }
.step__num {
  display: block;
  font-family: var(--mono); font-size: 0.9375rem; font-weight: 500;
  letter-spacing: 0.14em; color: var(--lamp); margin-bottom: var(--s3);
}
.step__h { font-size: 1.3125rem; font-stretch: 96%; margin-bottom: var(--s3); }
.step p { color: var(--op-donker-zacht); font-size: 1rem; }

/* ---------- 12. Service list (home) ---------- */
.svclist { list-style: none; border-top: 1px solid var(--lijn); }
.svcrow { border-bottom: 1px solid var(--lijn); }
.svcrow > a {
  display: grid; gap: 2px var(--s5);
  align-items: baseline;
  min-height: 68px;
  padding: var(--s4) var(--s3) var(--s4) 0;
  text-decoration: none;
  transition: background-color .18s var(--ease), padding-left .18s var(--ease);
}
@media (min-width: 720px) {
  .svcrow > a { grid-template-columns: 15rem minmax(0, 1fr); align-items: center; }
}
.svcrow > a:hover { background: rgba(18, 50, 60, .05); padding-left: var(--s3); }

.svcrow__name {
  font-family: var(--display); font-weight: 700; font-stretch: 96%;
  font-size: 1.1875rem; letter-spacing: -0.01em; color: var(--blauw);
}
.svcrow__desc { color: var(--staal); font-size: 1rem; }

/* ---------- 13. Over Rafid ---------- */
.over { display: grid; gap: clamp(32px, 5vw, 56px); align-items: start; }
@media (min-width: 940px) { .over { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); } }

.over__copy p { color: var(--staal); max-width: 56ch; }
.over__copy .h2 { color: var(--blauw); }
.over__copy .over__langs {
  margin-top: var(--s5); padding-top: var(--s4);
  border-top: 2px solid var(--lijn);
  font-family: var(--mono); font-size: 1rem; color: var(--blauw);
}

.over__card {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-top: 4px solid var(--lamp);
  border-radius: var(--radius);
  padding: var(--s6) var(--s5);
  box-shadow: 0 22px 50px -34px rgba(11, 31, 39, .55);
}
.card__eyebrow {
  font-family: var(--mono); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lamp-donker); margin-bottom: var(--s4);
}
.minidl { margin: 0; }
.minidl > div {
  display: grid; gap: 2px;
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--lijn);
}
.minidl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.minidl dt {
  font-family: var(--mono); font-size: 0.8125rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--staal);
}
.minidl dd { margin: 0; font-weight: 600; color: var(--blauw); }

/* ---------- 14. FAQ ---------- */
.faq { display: grid; gap: var(--s5); margin-top: var(--s6); }
@media (min-width: 900px) { .faq { grid-template-columns: 1fr 1fr; gap: var(--s6) var(--s7); } }

.qa { border-left: 3px solid var(--lamp); padding-left: var(--s5); }
.qa__q { font-size: 1.1875rem; font-stretch: 96%; margin-bottom: var(--s2); }
.qa p { color: var(--staal); font-size: 1.0625rem; }

/* ---------- 15. Closer band ---------- */
.closer { padding-block: clamp(56px, 8vw, 96px); }
.closer__inner {
  display: grid; gap: var(--s6); align-items: center;
}
@media (min-width: 900px) {
  .closer__inner { grid-template-columns: minmax(0, 1.3fr) auto; gap: var(--s8); }
}
.closer .h2 { margin-bottom: var(--s4); }

/* ---------- 16. Footer ---------- */
.site-footer {
  background: var(--blauw-diep);
  color: var(--op-donker-zacht);
  --focus: var(--lamp);
  padding-top: clamp(48px, 6vw, 80px);
}
.site-footer__grid { display: grid; gap: var(--s7); }
@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s6); } }

.brand--footer { margin-bottom: var(--s4); }
.site-footer__blurb { max-width: 34ch; font-size: 1rem; }
.site-footer__langs, .pcard__langs, .chero__langs {
  font-family: var(--mono); font-size: 0.9375rem; color: var(--lamp);
}
.site-footer__h {
  font-family: var(--mono); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lamp); margin: 0 0 var(--s3);
  font-stretch: normal;
}
.site-footer__nav ul { list-style: none; margin-bottom: var(--s5); }
.site-footer__nav a, .nap a {
  display: inline-block; padding: 7px 0; min-height: 38px;
  color: var(--op-donker); text-decoration: none;
  border-bottom: 1px solid transparent;
}
.site-footer__nav a:hover, .nap a:hover { border-bottom-color: var(--lamp); }

.nap { font-style: normal; display: flex; flex-direction: column; align-items: flex-start; }
.nap span { padding-top: var(--s3); line-height: 1.5; }
.nap a.nap__tel {
  font-family: var(--mono); font-size: 1.0625rem; font-weight: 500;
  color: var(--lamp);
}
.site-footer__hint { margin-top: var(--s4); font-size: 0.9375rem; }

.site-footer__base {
  margin-top: clamp(40px, 5vw, 64px);
  padding-block: var(--s5);
  border-top: 1px solid var(--op-donker-lijn);
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s6);
  justify-content: space-between;
  font-family: var(--mono); font-size: 0.875rem;
}
.site-footer__base p { margin: 0; }

/* ---------- 17. Page hero (diensten) ---------- */
.phero {
  background: var(--papier-2);
  border-bottom: 1px solid var(--lijn);
  padding-block: clamp(32px, 5vw, 64px) clamp(40px, 6vw, 72px);
}
.phero__grid { display: grid; gap: clamp(32px, 5vw, 56px); align-items: center; }
@media (min-width: 980px) { .phero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.phero__title { font-size: clamp(2.125rem, 4.6vw, 3.4rem); font-stretch: 88%; margin-bottom: var(--s5); }

.crumbs {
  font-family: var(--mono); font-size: 0.875rem;
  color: var(--staal); margin-bottom: var(--s5);
}
.crumbs a { color: var(--staal); text-decoration: none; border-bottom: 1px solid var(--staal-licht); }
.crumbs a:hover { color: var(--blauw); border-bottom-color: var(--blauw); }
.crumbs span { color: var(--blauw); }
.crumbs--dark { color: var(--op-donker-zacht); }
.crumbs--dark a { color: var(--op-donker-zacht); border-bottom-color: rgba(198, 220, 225, .4); }
.crumbs--dark a:hover { color: var(--wit); border-bottom-color: var(--lamp); }
.crumbs--dark span { color: var(--wit); }

/* ---------- 18. Service tiles ---------- */
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
@media (min-width: 560px) { .tiles { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 980px) { .tiles { gap: var(--s4); } }

.tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s2);
  min-height: 108px; padding: var(--s4) var(--s2);
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-sm);
  text-decoration: none; color: var(--blauw);
  font-family: var(--display); font-weight: 700; font-stretch: 96%;
  font-size: 0.9375rem; text-align: center;
  transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.tile:hover {
  transform: translateY(-3px);
  border-color: var(--lamp);
  box-shadow: 0 16px 30px -22px rgba(11, 31, 39, .6);
}
.tile__art { width: 44px; height: 44px; }
.tile--cta { background: var(--blauw); color: var(--wit); border-color: var(--blauw); }
.tile__q { font-family: var(--display); font-size: 1.75rem; color: var(--lamp); line-height: 1; }

/* Shared line-art rules for the service drawings */
.ln { fill: none; stroke: currentColor; stroke-width: 2.6;
      stroke-linecap: round; stroke-linejoin: round; }
.ln-amber { fill: none; stroke: var(--lamp); stroke-width: 3;
            stroke-linecap: round; stroke-linejoin: round; }
.fill-amber { fill: var(--lamp); stroke: none; }

/* ---------- 19. Diensten page body ---------- */
.svcpage__grid { display: grid; gap: var(--s7); align-items: start; }
@media (min-width: 1080px) { .svcpage__grid { grid-template-columns: 230px minmax(0, 1fr); gap: var(--s9); } }

.rail { display: none; }
@media (min-width: 1080px) {
  .rail { display: block; position: sticky; top: calc(var(--hdr) + 32px); }
}
.rail__h {
  font-family: var(--mono); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--staal); margin-bottom: var(--s3);
}
.rail__list { list-style: none; border-left: 2px solid var(--lijn); }
.rail__link {
  display: block; padding: 10px var(--s4); min-height: 44px;
  margin-left: -2px; border-left: 2px solid transparent;
  color: var(--staal); text-decoration: none; font-size: 1rem;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.rail__link:hover { color: var(--blauw); border-left-color: var(--staal); }
.rail__link.is-active { color: var(--blauw); font-weight: 600; border-left-color: var(--lamp); }

.rail__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: var(--s5); min-height: 48px; padding: 12px 18px;
  background: var(--lamp); color: var(--blauw);
  border-radius: 999px; text-decoration: none;
  font-family: var(--display); font-weight: 700; font-size: 0.9375rem;
}
.rail__cta:hover { background: #F0A03A; }

.svc {
  display: grid; gap: var(--s5);
  padding-block: clamp(36px, 5vw, 56px);
  border-top: 1px solid var(--lijn);
}
.svc:first-child { border-top: 0; padding-top: 0; }
@media (min-width: 700px) { .svc { grid-template-columns: 120px minmax(0, 1fr); gap: var(--s6); } }

.svc__art { width: 96px; height: 96px; color: var(--blauw); }
.svc__art svg { width: 100%; height: 100%; }
@media (min-width: 700px) { .svc__art { width: 112px; height: 112px; } }

.svc__h { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: var(--s2); }
.svc__lead {
  font-family: var(--display); font-weight: 600; font-stretch: 100%;
  font-size: 1.1875rem; color: var(--lamp-donker);
  margin-bottom: var(--s4); line-height: 1.35;
}
.svc__body p { color: var(--staal); max-width: 62ch; }
.svc__note {
  background: var(--papier-2); border-left: 3px solid var(--groen);
  padding: var(--s3) var(--s4); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1rem;
}
.svc__when { font-size: 1rem; }
.svc__whenlab {
  display: inline-block; margin-right: 8px;
  font-family: var(--mono); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blauw); background: rgba(227, 146, 46, .28);
  padding: 3px 9px; border-radius: 999px;
  vertical-align: 2px;
}

.promise {
  margin-top: var(--s7);
  background: var(--papier-2);
  border-radius: var(--radius);
  border-left: 5px solid var(--lamp);
  padding: clamp(28px, 4vw, 44px);
}
.promise__h { font-size: clamp(1.375rem, 2.4vw, 1.875rem); margin-bottom: var(--s4); }
.promise p { color: var(--staal); max-width: 60ch; margin-bottom: var(--s5); }

/* ---------- 20. Contact page ---------- */
.chero { padding-block: clamp(36px, 5vw, 72px) clamp(56px, 7vw, 96px); overflow: hidden; }
.chero__grid { display: grid; gap: clamp(40px, 6vw, 64px); align-items: center; }
@media (min-width: 940px) { .chero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 460px); } }

.chero__title { font-size: clamp(2.5rem, 6vw, 4rem); font-stretch: 86%; letter-spacing: -0.03em; margin-bottom: var(--s5); }
.chero__langs { margin-top: var(--s5); }

/* The lamp hangs above the card and its light pools on it: the card is the
   thing in the light. Padding reserves exactly the fixture's height. */
.chero__stage { position: relative; padding-top: 158px; }
.lampart {
  position: absolute; left: 50%; top: 0;
  width: 210px; margin-left: -105px;
  pointer-events: none;
}
@media (min-width: 940px) {
  .chero__stage { padding-top: 200px; }
  .lampart { width: 260px; margin-left: -130px; }
}

.actiekaart {
  position: relative;
  background: var(--wit);
  color: var(--blauw);
  --focus: var(--blauw);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 40px 80px -40px rgba(4, 20, 26, .9);
}

.bigcall {
  display: grid; gap: 2px;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: var(--s4);
  padding: var(--s5);
  margin-bottom: var(--s5);
  background: var(--lamp); color: var(--blauw);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform .18s var(--ease), background-color .18s var(--ease);
}
.bigcall:hover { transform: translateY(-2px); background: #F0A03A; }
.bigcall .ico { grid-row: 1 / 3; width: 30px; height: 30px; stroke-width: 1.7; }
.bigcall__num {
  font-family: var(--mono); font-weight: 500;
  font-size: clamp(1.375rem, 4.6vw, 1.75rem);
  letter-spacing: -0.02em; line-height: 1.15;
}
.bigcall__lab {
  font-family: var(--display); font-weight: 700; font-size: 0.9375rem;
  letter-spacing: 0.01em;
}

.altlist { list-style: none; display: grid; gap: var(--s2); }
.altlist a {
  display: flex; gap: var(--s4); align-items: flex-start;
  min-height: 60px; padding: var(--s3) var(--s3) var(--s3) 0;
  text-decoration: none; color: var(--blauw);
  border-radius: var(--radius-sm);
  transition: background-color .18s var(--ease);
}
.altlist a:hover { background: rgba(18, 50, 60, .06); }
.altlist .ico { width: 26px; height: 26px; margin-top: 3px; color: var(--lamp-donker); }
.altlist span { font-size: 1rem; line-height: 1.5; color: var(--staal); }
.altlist strong { color: var(--blauw); font-size: 1.0625rem; }

.actiekaart__note {
  margin-top: var(--s5); padding-top: var(--s4);
  border-top: 1px solid var(--lijn);
  font-size: 0.9375rem; color: var(--staal);
}

.praktisch { display: grid; gap: var(--s6); }
@media (min-width: 780px) { .praktisch { grid-template-columns: repeat(3, 1fr); } }

.pcard { border-top: 3px solid var(--blauw); padding-top: var(--s5); }
.pcard__ico {
  width: 34px; height: 34px; margin-bottom: var(--s4);
  fill: none; stroke: var(--blauw); stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}
.pcard__h { font-size: 1.25rem; font-stretch: 96%; margin-bottom: var(--s3); }
.pcard p { color: var(--staal); font-size: 1rem; }
.pcard__addr {
  font-style: normal; font-family: var(--mono); font-size: 1rem;
  line-height: 1.75; color: var(--blauw); margin-bottom: var(--s4);
}
.pcard .pcard__langs { margin-top: var(--s4); color: var(--lamp-donker); }

.ticks, .crosses { list-style: none; display: grid; gap: var(--s2); margin-bottom: var(--s4); }
.ticks li, .crosses li { position: relative; padding-left: 30px; font-size: 1rem; line-height: 1.5; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 16px; height: 9px;
  border-left: 2.5px solid var(--groen); border-bottom: 2.5px solid var(--groen);
  transform: rotate(-45deg);
}
.crosses li::before {
  content: "×"; position: absolute; left: 2px; top: -2px;
  font-size: 1.375rem; line-height: 1.4; color: var(--staal);
}

.eerlijk {
  margin-top: clamp(48px, 6vw, 80px);
  background: var(--blauw); color: var(--op-donker);
  --focus: var(--lamp);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
}
.eerlijk__h { color: var(--wit); font-size: clamp(1.375rem, 2.4vw, 1.75rem); margin-bottom: var(--s5); }
.eerlijk__cols { display: grid; gap: var(--s6); }
@media (min-width: 720px) { .eerlijk__cols { grid-template-columns: 1fr 1fr; gap: var(--s8); } }
.eerlijk__lab {
  font-family: var(--mono); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lamp); margin-bottom: var(--s3);
}
.eerlijk .ticks li::before { border-color: var(--lamp); }
.eerlijk .crosses li::before { color: var(--op-donker-zacht); }
.eerlijk .ticks li, .eerlijk .crosses li { color: var(--op-donker); }

/* ---------- 21. Motion ---------- */
/* Base state = final state, keyframes run FROM the initial state.
   That way "animation: none" (reduced motion, no JS) lands on the finished view. */

@keyframes draw   { from { stroke-dashoffset: 1; } }
@keyframes fadein { from { opacity: 0; } }
@keyframes rise   { from { opacity: 0; transform: translateY(14px); } }
@keyframes breathe{ 50% { opacity: .72; } }

.d {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  animation: draw 1.15s var(--ease-draw) both;
}
.d-1 { animation-delay: .10s; }
.d-2 { animation-delay: .22s; }
.d-3 { animation-delay: .30s; animation-duration: 1.5s; }
.d-4 { animation-delay: .70s; }
.d-5 { animation-delay: .95s; }
.d-6 { animation-delay: 1.15s; }

/* The windows carry a fill as well as a stroke, so they fade in on the same
   beat as they are drawn — otherwise the glass shows up before the car does.
   Duration, delay, easing and fill-mode are inherited from .d / .d-5 above. */
.art-glass { animation-name: draw, fadein; }

.art-glow  { opacity: 1;  animation: fadein 1.4s var(--ease) both, breathe 16s ease-in-out 1.6s infinite; }
.art-cone  { opacity: .9; animation: fadein 1.6s var(--ease) .2s both; }
.art-shadow{ opacity: 1;  animation: fadein 1.2s var(--ease) .5s both; }
.art-bulb  { opacity: 1;  animation: fadein .8s var(--ease) .5s both; }

.load { animation: rise .7s var(--ease) both; }
.load-1 { animation-delay: .06s; }
.load-2 { animation-delay: .14s; }
.load-3 { animation-delay: .24s; }
.load-4 { animation-delay: .34s; }
.load-5 { animation-delay: .44s; }

/* Scroll reveal — armed by JS only, so no-JS keeps everything visible */
.reveal--armed { opacity: 0; transform: translateY(18px); }
.reveal--armed.is-in {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
  .reveal--armed { opacity: 1; transform: none; }
  .btn:hover, .tile:hover, .bigcall:hover { transform: none; }
}

/* ---------- 22. Print ---------- */
/* Someone will print the contact page and stick it on the fridge. Make that work. */
@media print {
  .site-header, .tabbar, .skip, .rail, .art, .lampart { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .panel-dark, .eerlijk, .closer, .site-footer { background: #fff !important; color: #000 !important; }
  .panel-dark h1, .panel-dark h2, .panel-dark h3, .eerlijk__h { color: #000 !important; }
  /* light-on-dark text would vanish on paper */
  .panel-dark p, .panel-dark li, .panel-dark span, .panel-dark a,
  .eerlijk p, .eerlijk li, .site-footer p, .site-footer li, .site-footer a,
  .lead--dark, .hero__note, .step__num, .eyebrow { color: #222 !important; }
  a[href^="tel:"], a[href^="mailto:"] { font-weight: 700; }
}
