/* ==========================================================================
   Garage Rafid — styles.css
   Intention: "Eerst uitleggen, dan pas sleutelen."
   The site should feel like being explained to, calmly, by someone who has
   nothing to hide. Colour is taken from the workshop's own material world:
   workwear petrol blue, indicator amber, workshop-daylight off-white.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour — see DESIGN-SYSTEM.md for the derivation of each name */
  --papier:        #EFF0EA;  /* page field: daylight on a printed work order */
  --papier-diep:   #E4E6DD;  /* recessed panels, table stripes */
  --papier-warm:   #F7F8F3;  /* raised paper: the werkbon panel */
  --inkt:          #141C22;  /* body text: blue-black ink */
  --inkt-zacht:    #4A5761;  /* secondary text (6.5:1 on --papier) */
  --overall:       #1E4A5E;  /* workwear petrol blue */
  --overall-diep:  #102D3B;  /* dark field: hero, footer, contact */
  --overall-hoog:  #143646;  /* top of the dark gradient */
  --amber:         #DE8B1B;  /* indicator amber: attention + primary action */
  --amber-diep:    #96570A;  /* amber as text on light (5.0:1 on --papier) */
  --licht:         #E4E8E4;  /* text on dark (11.5:1 on --overall-diep) */
  --licht-zacht:   #A9B7BC;  /* secondary text on dark (6.9:1) */

  --rule:          rgba(20, 28, 34, .14);
  --rule-strong:   rgba(20, 28, 34, .30);
  --focus:         #141C22;

  /* Type */
  --display: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body:    'Source Serif 4', Georgia, 'Times New Roman', serif;
  --mono:    'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;

  --fs-hero:  clamp(2.5rem, 1.15rem + 5.6vw, 5rem);
  --fs-h1:    clamp(2.1rem, 1.35rem + 3vw, 3.4rem);
  --fs-h2:    clamp(1.6rem, 1.2rem + 1.7vw, 2.5rem);
  --fs-h3:    clamp(1.2rem, 1.1rem + .5vw, 1.5rem);
  --fs-lead:  clamp(1.125rem, 1.04rem + .42vw, 1.375rem);
  --fs-said:  clamp(1.125rem, 1.02rem + .5vw, 1.4rem);
  --fs-prose: 1.125rem;   /* 18px */
  --fs-body:  1.0625rem;  /* 17px */
  --fs-mono:  .875rem;    /* 14px, uppercase + tracked — the floor for labels */

  /* Spacing */
  --s1: .25rem;  --s2: .5rem;   --s3: .75rem;  --s4: 1rem;
  --s5: 1.5rem;  --s6: 2rem;    --s7: 3rem;    --s8: 4.5rem;
  --s9: 7rem;    --s10: 10rem;

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --r: 3px;
  --r-panel: 6px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}

/* Dark surfaces re-point the surface-dependent tokens. */
.on-dark {
  --rule: rgba(233, 237, 234, .18);
  --rule-strong: rgba(233, 237, 234, .34);
  --focus: var(--amber);
  color: var(--licht);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 6.5rem;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--inkt);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.62;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-variation-settings: 'wdth' 112, 'wght' 700;
  font-weight: 700;
  margin: 0;
  letter-spacing: -.012em;
  line-height: 1.08;
  text-wrap: balance;
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--amber); color: var(--inkt); }

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

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

.skip {
  position: absolute; left: var(--s4); top: -100px; z-index: 100;
  background: var(--amber); color: var(--inkt);
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  padding: var(--s3) var(--s5); border-radius: var(--r);
  transition: top .18s var(--ease);
}
.skip:focus { top: var(--s3); }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 900px; }

.band { padding-block: clamp(3.25rem, 7vw, 6.5rem); }
.band--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

.field-paper-deep { background: var(--papier-diep); }

/* Shared section head ----------------------------------------------------- */
.sec-head { max-width: 44ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }

.label {
  display: block;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber-diep);
  margin-bottom: var(--s3);
}
.on-dark .label { color: var(--amber); }

.sec-head__title { font-size: var(--fs-h2); }

.sec-head__intro {
  margin-top: var(--s4);
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--inkt-zacht);
  max-width: 52ch;
}
.on-dark .sec-head__intro { color: var(--licht-zacht); }

.prose { font-size: var(--fs-prose); line-height: 1.68; max-width: 62ch; }
.prose + .prose { margin-top: var(--s5); }

/* Small spacing utilities, used sparingly where a block needs to sit off
   the one above it without earning a component of its own. */
.stack-s { margin-top: var(--s5); }
.stack-m { margin-top: var(--s6); }

.addr { font-style: normal; }

.link--small { display: inline-block; font-size: 1rem; margin-top: var(--s3); }

/* --------------------------------------------------------------------------
   4. Header and navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--papier);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .2s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 10px 24px -20px rgba(16, 45, 59, .7); }

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4);
  min-height: 68px;
  padding-block: var(--s3);
}

/* Wordmark: no logo exists, so the name itself is the mark. */
.mark { text-decoration: none; display: block; flex: 0 0 auto; }

.mark__pre {
  display: block;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
  line-height: 1;
  margin-bottom: 2px;
}
.on-dark .mark__pre { color: var(--licht-zacht); }

.mark__name {
  display: block;
  font-family: var(--display);
  font-variation-settings: 'wdth' 118, 'wght' 700;
  font-size: 1.3125rem;
  line-height: 1;
  letter-spacing: .005em;
}

.mark__place {
  display: none;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
  padding-left: var(--s4);
  margin-left: var(--s4);
  border-left: 1px solid var(--rule);
}

.nav__list { display: flex; align-items: center; gap: clamp(.9rem, 2.5vw, 1.9rem); }

.nav__link {
  display: block;
  font-family: var(--display);
  font-variation-settings: 'wdth' 106, 'wght' 600;
  font-size: 1rem;
  text-decoration: none;
  color: var(--inkt-zacht);
  padding: var(--s3) 2px;
  border-bottom: 3px solid transparent;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.nav__link:hover { color: var(--inkt); }
.nav__link[aria-current="page"] { color: var(--inkt); border-bottom-color: var(--amber); }

.header-call { display: none; }

@media (min-width: 640px) { .mark__place { display: block; } }

@media (min-width: 860px) {
  .site-header__inner { min-height: 76px; }
  .header-call { display: inline-flex; }
  .nav__list { gap: 1.9rem; }
  .nav__link { font-size: 1.0625rem; }
}

.header-left { display: flex; align-items: center; min-width: 0; }
.header-right { display: flex; align-items: center; gap: var(--s5); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 54px;
  padding: .85rem 1.4rem;
  font-family: var(--display);
  font-variation-settings: 'wdth' 108, 'wght' 700;
  font-size: 1.0625rem;
  line-height: 1.2;
  text-decoration: none;
  border: 0;
  border-radius: var(--r);
  cursor: pointer;
  transition: transform .12s var(--ease), background-color .15s var(--ease),
              border-color .15s var(--ease), color .15s var(--ease),
              box-shadow .15s var(--ease);
}
.btn svg { flex: 0 0 auto; }

/* Primary: the amber switch. Ink on amber is 7.3:1. */
.btn--primary {
  background: var(--amber);
  color: var(--inkt);
  box-shadow: inset 0 -3px 0 rgba(80, 44, 2, .38);
}
.btn--primary:hover { background: #EC9926; }
.btn--primary:active { transform: translateY(2px); box-shadow: inset 0 -1px 0 rgba(80, 44, 2, .38); }

.btn--ghost {
  background: transparent;
  color: var(--inkt);
  box-shadow: inset 0 0 0 1.5px var(--rule-strong);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--inkt); }

.on-dark .btn--ghost { color: var(--licht); box-shadow: inset 0 0 0 1.5px var(--rule-strong); }
.on-dark .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--licht); }

.btn--small { min-height: 46px; padding: .6rem 1.05rem; font-size: 1rem; }

.actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }
.actions .btn { flex: 1 1 auto; }

@media (min-width: 560px) { .actions .btn { flex: 0 0 auto; } }

/* Plain text link with an amber underline that thickens on hover. */
.link {
  font-family: var(--display);
  font-variation-settings: 'wdth' 106, 'wght' 600;
  font-size: 1.0625rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
  transition: border-width .12s var(--ease), color .15s var(--ease);
}
.link:hover { border-bottom-width: 4px; }

/* --------------------------------------------------------------------------
   6. Hero — the ignition moment
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 95% at 16% -12%, rgba(222, 139, 27, .17), transparent 62%),
    linear-gradient(180deg, var(--overall-hoog) 0%, var(--overall-diep) 66%);
  padding-block: clamp(2.75rem, 6.5vw, 5.5rem) clamp(3rem, 7vw, 6rem);
}

/* Faint workshop-wall panel lines. Decorative only. */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(233, 237, 234, .055) 1px, transparent 1px);
  background-size: 92px 100%;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
  pointer-events: none;
}

.hero__inner { position: relative; }

/* The instrument strip: five real dashboard tell-tales. */
.tellstrip {
  display: flex; align-items: center;
  gap: clamp(1rem, 3.5vw, 1.9rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.tell {
  width: clamp(28px, 7vw, 38px);
  height: auto;
  color: rgba(222, 139, 27, .5);
  transition: color .34s var(--ease), filter .34s var(--ease);
}
.tell.is-lit {
  color: var(--amber);
  filter: drop-shadow(0 0 11px rgba(222, 139, 27, .55));
}

.hero__title {
  font-size: var(--fs-hero);
  font-variation-settings: 'wdth' 116, 'wght' 700;
  letter-spacing: -.022em;
  line-height: .98;
  max-width: 15ch;
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
}

.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  max-width: 46ch;
  color: var(--licht);
}

/* Quiet reference card: the facts the buttons do not carry. */
.card-quiet {
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-panel);
  padding: var(--s5);
  background: rgba(233, 237, 234, .035);
}

.card-quiet__title {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s4);
}

.card-quiet__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding-block: var(--s3);
  border-top: 1px solid var(--rule);
}
.card-quiet__row:first-of-type { border-top: 0; padding-top: 0; }

.card-quiet__k {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--licht-zacht);
}
.card-quiet__v { font-size: var(--fs-body); line-height: 1.45; }

.hero__meta {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: var(--s4);
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: .11em;
  text-transform: uppercase;
  line-height: 1.9;
  color: var(--licht-zacht);
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1.3fr) minmax(290px, .78fr); }
  .card-quiet { padding: var(--s6); }
}
/* The card's rows stay label-over-value at every width on purpose: the column
   is never wide enough to give the address a readable second column, and the
   stacked pair reads like the form it is modelled on. */

/* --------------------------------------------------------------------------
   7. Translation rows — the recurring grammar of the site
   -------------------------------------------------------------------------- */
.tr { border-bottom: 1px solid var(--rule); }

.tr__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  padding-block: clamp(1.5rem, 3.2vw, 2.25rem);
  border-top: 1px solid var(--rule);
}

.tr__said {
  font-size: var(--fs-said);
  line-height: 1.4;
  font-style: italic;
  color: var(--inkt);
  max-width: 30ch;
}

.tr__link { display: none; }

.tr__do { display: block; }

.tr__do-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-diep);
  margin-bottom: var(--s2);
}

.tr__do-text { color: var(--inkt-zacht); max-width: 46ch; }

.tr__more { margin-top: clamp(2rem, 4vw, 2.75rem); }

@media (min-width: 820px) {
  .tr__row {
    grid-template-columns: minmax(0, 1.05fr) 5.5rem minmax(0, 1fr);
    gap: var(--s5);
    align-items: center;
  }
  .tr__link {
    display: flex; align-items: center; gap: .4rem;
    color: var(--amber-diep);
  }
  .tr__rule {
    flex: 1 1 auto;
    height: 1px;
    background: var(--rule-strong);
    transform-origin: left center;
  }
  .tr__arrow { flex: 0 0 auto; width: 14px; height: 14px; }
}

/* --------------------------------------------------------------------------
   8. Werkbon — the fixed-price process, set as a tear-off work order
   -------------------------------------------------------------------------- */
.werkbon {
  position: relative;
  background: var(--papier-warm);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-panel);
  box-shadow: 0 1px 0 rgba(20, 28, 34, .04), 0 22px 44px -32px rgba(16, 45, 59, .55);
}

/* Perforated tear edge, punched in the page colour. */
.werkbon::before {
  content: "";
  position: absolute; top: -5px; left: 10px; right: 10px; height: 10px;
  background-image: radial-gradient(circle at 5px 5px, var(--papier) 3.4px, transparent 3.6px);
  background-size: 13px 10px;
  pointer-events: none;
}

.werkbon__head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: var(--s3);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--rule-strong);
}

.werkbon__title { font-size: var(--fs-h3); }

.werkbon__ref {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s2) var(--s4);
  padding: clamp(1.25rem, 2.6vw, 1.75rem) clamp(1.25rem, 3vw, 2.5rem);
  border-top: 1px dashed var(--rule-strong);
}
.step:first-of-type { border-top: 0; }

.step__no {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--amber-diep);
  line-height: 1.4;
}

.step__title { font-size: 1.1875rem; margin-bottom: var(--s1); }
.step__text { color: var(--inkt-zacht); max-width: 54ch; }
.step__body { grid-column: 2; }

.werkbon__foot {
  padding: clamp(1.25rem, 2.6vw, 1.75rem) clamp(1.25rem, 3vw, 2.5rem);
  border-top: 1px solid var(--rule-strong);
  background: rgba(30, 74, 94, .045);
  font-size: var(--fs-body);
  color: var(--inkt-zacht);
}

@media (min-width: 620px) {
  .step { grid-template-columns: 3.5rem 1fr; }
}

/* --------------------------------------------------------------------------
   9. About and languages
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (min-width: 940px) {
  .about-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, .68fr); }
}

.langs {
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-panel);
  padding: var(--s5);
  background: var(--papier-warm);
}

.langs__list {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--s2) var(--s4);
  margin-bottom: var(--s4);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--rule);
}

.lang {
  font-family: var(--display);
  font-variation-settings: 'wdth' 112, 'wght' 700;
  font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem);
  line-height: 1.3;
}
.lang--ar { font-family: var(--body); font-weight: 600; }

.langs__note { color: var(--inkt-zacht); font-size: var(--fs-body); }

/* --------------------------------------------------------------------------
   10. Facts list (practical block, contact page)
   -------------------------------------------------------------------------- */
.facts { border-top: 1px solid var(--rule); }

.facts__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding-block: var(--s4);
  border-bottom: 1px solid var(--rule);
}

.facts__k {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
}
.on-dark .facts__k { color: var(--licht-zacht); }

.facts__v { font-size: var(--fs-prose); line-height: 1.5; }
.facts__v a { color: inherit; }

.placeholder {
  font-family: var(--mono);
  font-size: var(--fs-body);
  color: var(--amber-diep);
  background: rgba(222, 139, 27, .13);
  padding: .1em .5em;
  border-radius: var(--r);
}
.on-dark .placeholder { color: var(--amber); background: rgba(222, 139, 27, .16); }

@media (min-width: 620px) {
  .facts__item { grid-template-columns: 12rem 1fr; gap: var(--s5); align-items: baseline; }
}

/* --------------------------------------------------------------------------
   11. FAQ — open text, nothing hidden behind a click
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--rule); }

.faq__item { padding-block: clamp(1.4rem, 3vw, 2rem); border-bottom: 1px solid var(--rule); }

.faq__q { font-size: var(--fs-h3); margin-bottom: var(--s3); max-width: 34ch; }

.faq__a { color: var(--inkt-zacht); font-size: var(--fs-prose); line-height: 1.66; max-width: 62ch; }

@media (min-width: 900px) {
  .faq__item { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr); gap: var(--s7); }
  .faq__q { margin-bottom: 0; }
}

/* --------------------------------------------------------------------------
   12. Diensten page
   -------------------------------------------------------------------------- */
.page-head { padding-block: clamp(2.5rem, 5.5vw, 4.5rem) clamp(2rem, 4vw, 3rem); }

.page-head__title { font-size: var(--fs-h1); max-width: 20ch; }

.page-head__intro {
  margin-top: var(--s4);
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--inkt-zacht);
  max-width: 54ch;
}
.on-dark .page-head__intro { color: var(--licht-zacht); }

.rail {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: var(--s3);
}

.rail__list { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5); }

.rail__link {
  display: inline-flex; align-items: baseline; gap: .45rem;
  padding: .45rem 0;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--inkt-zacht);
  border-bottom: 2px solid transparent;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.rail__link:hover { color: var(--inkt); border-bottom-color: var(--amber); }
.rail__no { color: var(--amber-diep); font-weight: 600; }

.svc {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
  border-top: 1px solid var(--rule);
  scroll-margin-top: 7rem;
}
.svc:first-of-type { border-top: 0; }

.svc__meta { display: flex; align-items: center; gap: var(--s4); }

.svc__no {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--amber-diep);
}

.svc__glyph { width: 40px; height: 40px; color: var(--overall); }

.svc__title { font-size: var(--fs-h2); }

.svc__said {
  margin-top: var(--s3);
  font-size: var(--fs-said);
  font-style: italic;
  line-height: 1.4;
  color: var(--inkt);
  max-width: 34ch;
}

.svc__list { margin-top: var(--s5); max-width: 58ch; }

.svc__list li {
  position: relative;
  padding-left: 1.6rem;
  padding-block: .3rem;
  font-size: var(--fs-prose);
  line-height: 1.6;
  color: var(--inkt-zacht);
}
.svc__list li::before {
  content: "";
  position: absolute; left: 0; top: 1.05em;
  width: .85rem; height: 2px;
  background: var(--amber);
}

.svc__note {
  margin-top: var(--s5);
  padding: var(--s4) var(--s5);
  border-left: 3px solid var(--amber);
  background: var(--papier-warm);
  font-size: var(--fs-body);
  color: var(--inkt-zacht);
  max-width: 58ch;
}

.svc__price {
  margin-top: var(--s5);
  font-family: var(--mono);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--inkt);
  border-top: 1px dashed var(--rule-strong);
  padding-top: var(--s4);
  max-width: 58ch;
}

@media (min-width: 900px) {
  .svc { grid-template-columns: 13rem minmax(0, 1fr); gap: var(--s7); }
  .svc__meta { flex-direction: column; align-items: flex-start; gap: var(--s4); }
  .svc__glyph { width: 52px; height: 52px; }
}

/* --------------------------------------------------------------------------
   13. Contact page
   -------------------------------------------------------------------------- */
.contact-hero {
  background:
    radial-gradient(110% 90% at 84% -14%, rgba(222, 139, 27, .16), transparent 60%),
    linear-gradient(180deg, var(--overall-hoog) 0%, var(--overall-diep) 70%);
  padding-block: clamp(2.75rem, 6vw, 5rem) clamp(2.75rem, 6vw, 5rem);
}

.big-tel {
  display: inline-block;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(1.75rem, 1rem + 3.6vw, 3.25rem);
  letter-spacing: -.01em;
  line-height: 1.1;
  text-decoration: none;
  color: var(--licht);
  border-bottom: 3px solid var(--amber);
  padding-bottom: .12em;
  transition: color .15s var(--ease);
  font-variant-numeric: tabular-nums;
}
.big-tel:hover { color: var(--amber); }

.contact-sub {
  margin-top: var(--s5);
  font-size: var(--fs-body);
  color: var(--licht-zacht);
  max-width: 48ch;
}

.prep__list { margin-top: var(--s5); max-width: 56ch; }

.prep__list li {
  position: relative;
  padding-left: 2.2rem;
  padding-block: .45rem;
  font-size: var(--fs-prose);
  line-height: 1.55;
  counter-increment: prep;
}
.prep__list li::before {
  content: counter(prep, decimal-leading-zero);
  position: absolute; left: 0; top: .7em;
  font-family: var(--mono);
  font-size: var(--fs-mono);
  font-weight: 600;
  color: var(--amber-diep);
}
.prep__list { counter-reset: prep; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--overall-diep);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
}

.foot-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.foot-mark .mark__name { font-size: 1.75rem; }

.foot-tagline {
  margin-top: var(--s4);
  color: var(--licht-zacht);
  font-size: var(--fs-body);
  max-width: 34ch;
}

.foot-col__title {
  font-family: var(--mono);
  font-size: var(--fs-mono);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s4);
}

.foot-list li { padding-block: .32rem; font-size: var(--fs-body); line-height: 1.5; }
.foot-list a { text-decoration: none; border-bottom: 1px solid var(--rule-strong); padding-bottom: 1px; }
.foot-list a:hover { border-bottom-color: var(--amber); }

.foot-fine {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: var(--s5);
  border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5);
  font-family: var(--mono);
  font-size: var(--fs-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--licht-zacht);
}

@media (min-width: 760px) {
  .foot-grid { grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------------
   15. Mobile call bar — the primary action on every screenful
   -------------------------------------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: var(--s2);
  padding: .6rem .75rem;
  padding-bottom: calc(.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(16, 45, 59, .97);
  border-top: 1px solid rgba(233, 237, 234, .2);
}
/* Sized so the full phone number and the WhatsApp label both survive at
   375px without wrapping — measured, not assumed. */
.callbar .btn {
  min-height: 50px;
  font-size: .9375rem;
  padding: .7rem .8rem;
  gap: .45rem;
  white-space: nowrap;
}
.callbar .btn--primary { flex: 1 1 auto; }
.callbar .btn--ghost { flex: 0 0 auto; }

body { padding-bottom: 76px; }

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

/* --------------------------------------------------------------------------
   16. Motion — announce, guide, settle. Nothing loops, nothing autoplays.
   -------------------------------------------------------------------------- */
.has-js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .62s var(--ease), transform .62s var(--ease);
  transition-delay: var(--d, 0ms);
}
.has-js .reveal.is-in { opacity: 1; transform: none; }

.has-js .tr__rule { transform: scaleX(0); transition: transform .7s var(--ease) .1s; }
.has-js .is-in .tr__rule { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .has-js .reveal { opacity: 1; transform: none; transition: none; }
  .has-js .tr__rule { transform: none; transition: none; }
  .tell { transition: none; }
  .btn, .link, .nav__link, .site-header { transition: none; }
}
