/* ==========================================================================
   Klusbedrijf H&H
   Eén stylesheet. De kleuren komen uit het logo: het zwarte dak, en de vier
   gekleurde vlakken erin (blauw, rood, oranje, groen). Die vier kleuren komen
   terug als "keep": het schuine viervlaksstreepje onder de koppen.
   ========================================================================== */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #14161b;
  --ink-2: #1e222a;
  --ink-3: #2b313b;
  --paper: #ffffff;
  --sand: #f4f2ee;
  --sand-2: #eae7e0;
  --line: #e2ded6;
  --line-dark: #333a45;
  --text: #23272e;
  --muted: #5d636d;
  --muted-light: #a9b0ba;

  --rood: #bd2429;
  --rood-dark: #9c1a1f;
  --blauw: #00b4e9;
  --groen: #64a748;
  --oranje: #f78a21;

  --wrap: 1180px;
  --r: 4px;
  --r-lg: 6px;
  --shadow: 0 1px 2px rgba(20, 22, 27, .06), 0 8px 24px rgba(20, 22, 27, .07);
  --shadow-lg: 0 2px 6px rgba(20, 22, 27, .08), 0 22px 50px rgba(20, 22, 27, .14);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Archivo', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}

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

a { color: var(--rood); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--rood-dark); }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; font-weight: 600;
}
.skip:focus { left: 0; }

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }

/* --- signatuur: de vierkleurenkeep ---------------------------------------- */
.keep { display: flex; gap: 4px; width: 92px; height: 7px; margin: 0 0 1.4rem; }
.keep i { flex: 1; transform: skewX(-22deg); border-radius: 1px; }
.keep i:nth-child(1) { background: var(--blauw); }
.keep i:nth-child(2) { background: var(--rood); }
.keep i:nth-child(3) { background: var(--oranje); }
.keep i:nth-child(4) { background: var(--groen); }
.center .keep { margin-inline: auto; }

.stripe { display: flex; height: 8px; }
.stripe i { flex: 1; }
.stripe i:nth-child(1) { background: var(--blauw); }
.stripe i:nth-child(2) { background: var(--rood); }
.stripe i:nth-child(3) { background: var(--oranje); }
.stripe i:nth-child(4) { background: var(--groen); }

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--rood); margin: 0 0 .7rem;
}
.eyebrow--light { color: #ff9ea1; }

/* --- knoppen -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: .97rem;
  letter-spacing: -.01em; text-decoration: none;
  padding: .82rem 1.35rem; border-radius: var(--r); border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.03rem; }

.btn--call { background: var(--rood); color: #fff; }
.btn--call:hover { background: var(--rood-dark); color: #fff; }
.btn--call svg { width: 18px; height: 18px; }

.btn--wa { background: var(--groen); color: #fff; }
.btn--wa:hover { background: #4e8c36; color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.link {
  font-family: 'Archivo', sans-serif; font-weight: 700; color: var(--rood);
  text-decoration: none; border-bottom: 2px solid rgba(189, 36, 41, .3);
  padding-bottom: 1px;
}
.link:hover { border-bottom-color: var(--rood); }
.link::after { content: ' \203A'; }

/* --- header --------------------------------------------------------------- */
.hdr { position: sticky; top: 0; z-index: 100; background: #fff; }
.hdr__strip { height: 5px; background:
  linear-gradient(90deg, var(--blauw) 0 25%, var(--rood) 25% 50%, var(--oranje) 50% 75%, var(--groen) 75% 100%); }
.hdr--stuck { box-shadow: 0 1px 0 var(--line), 0 6px 20px rgba(20, 22, 27, .07); }

.hdr__bar {
  display: flex; align-items: center; gap: 1.2rem;
  min-height: 76px; padding-block: .55rem;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 42px; height: 38px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.13rem;
  letter-spacing: -.025em; color: var(--ink);
}
.brand__name b { color: var(--rood); }
.brand__sub { font-size: .72rem; color: var(--muted); letter-spacing: .01em; }
.brand--light .brand__name { color: #fff; }
.brand--light .brand__name b { color: #ff8f93; }
.brand--light .brand__sub { color: var(--muted-light); }

.nav { display: flex; align-items: center; }
.nav__list { display: flex; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  display: block; padding: .5rem .8rem; border-radius: var(--r);
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: .97rem;
  color: var(--ink); text-decoration: none;
}
.nav__list a:hover { background: var(--sand); }
.nav__list a[aria-current="page"] { color: var(--rood); box-shadow: inset 0 -3px 0 var(--rood); border-radius: 0; }
.nav__sub, .nav__call { display: none; }

.hdr__call { flex: none; }
.hdr__call svg { width: 17px; height: 17px; }

.burger {
  display: none; align-items: center; gap: .5rem; background: none; border: 0;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--ink);
  padding: .5rem .2rem; cursor: pointer;
}
.burger__box { display: flex; flex-direction: column; gap: 4px; width: 22px; }
.burger__box i { display: block; height: 2.5px; background: var(--ink); border-radius: 2px; }

/* --- hero ----------------------------------------------------------------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(20, 22, 27, .96) 0%, rgba(20, 22, 27, .82) 46%, rgba(20, 22, 27, .5) 100%);
}
.hero__in { position: relative; z-index: 2; padding: clamp(3.2rem, 8vw, 6.4rem) 0 clamp(2.8rem, 6vw, 5rem); }
.hero__h {
  color: #fff; font-size: clamp(2.15rem, 5.2vw, 3.7rem); max-width: 19ch;
  margin-bottom: .55em;
}
.hero__p { max-width: 58ch; font-size: 1.09rem; color: #dfe3e9; }
.hero__act { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.9rem; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem .55rem; list-style: none; margin: 2.1rem 0 0; padding: 0; }
.chips li {
  font-size: .84rem; font-weight: 500; color: #e7eaee;
  border: 1px solid rgba(255, 255, 255, .24); border-radius: 100px;
  padding: .34rem .85rem; background: rgba(255, 255, 255, .05);
}
.chips li::before { content: '\2713'; color: var(--groen); font-weight: 700; margin-right: .4rem; }

/* --- secties -------------------------------------------------------------- */
.sec { padding: clamp(3.2rem, 6.5vw, 5.4rem) 0; }
.sec--sand { background: var(--sand); }
.sec--dark { background: var(--ink); color: #d7dce3; }
.sec--dark h2, .sec--dark h3 { color: #fff; }
.sec--dark a:not(.btn) { color: #ffb9bc; }
.sec__t { font-size: clamp(1.65rem, 3.3vw, 2.4rem); margin-bottom: .5rem; }
.sec__foot { margin-top: 2.2rem; }
.lead { font-size: 1.08rem; max-width: 68ch; color: var(--muted); }
.sec--dark .lead { color: #b8c0ca; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.center__act { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.8rem; }

/* --- voordelen ------------------------------------------------------------ */
.usps { display: grid; gap: 1.6rem 2rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); margin-top: 2.4rem; }
.usp { position: relative; padding-top: 1.5rem; border-top: 3px solid var(--line); }
.usp:nth-child(1) { border-top-color: var(--blauw); }
.usp:nth-child(2) { border-top-color: var(--rood); }
.usp:nth-child(3) { border-top-color: var(--oranje); }
.usp:nth-child(4) { border-top-color: var(--groen); }
.usp__n {
  display: block; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: .8rem;
  letter-spacing: .12em; color: var(--muted); margin-bottom: .5rem;
}
.usp h3 { font-size: 1.12rem; margin-bottom: .35em; }
.usp p { font-size: .96rem; color: var(--muted); margin: 0; }
.sec--dark .usp { border-top-color: var(--line-dark); }
.sec--dark .usp p, .sec--dark .usp__n { color: var(--muted-light); }

/* --- dienstkaarten -------------------------------------------------------- */
.cards { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 2.4rem; }
.card {
  display: flex; flex-direction: column; background: #fff; text-decoration: none;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card__body { display: flex; flex-direction: column; gap: .45rem; padding: 1.25rem 1.35rem 1.45rem; position: relative; }
.card__body::before {
  content: ''; position: absolute; top: 0; left: 1.35rem; width: 46px; height: 5px;
  transform: skewX(-22deg) translateY(-50%); background: var(--rood);
}
.card--blauw .card__body::before { background: var(--blauw); }
.card--groen .card__body::before { background: var(--groen); }
.card--oranje .card__body::before { background: var(--oranje); }
.card__t { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.19rem; color: var(--ink); letter-spacing: -.02em; }
.card__d { font-size: .95rem; color: var(--muted); }
.card__more {
  margin-top: .35rem; font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: .88rem; color: var(--rood);
}
.card__more::after { content: ' \203A'; }

/* --- split ---------------------------------------------------------------- */
.split { display: grid; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; grid-template-columns: 1fr; }
.split__img img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4 / 3; object-fit: cover; }
.split__txt > .keep { margin-bottom: 1.5rem; }

.ticks { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .55rem; }
.ticks li { position: relative; padding-left: 1.8rem; font-size: 1rem; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .52em; width: 11px; height: 11px;
  transform: skewX(-22deg); background: var(--rood);
}
.ticks li:nth-child(4n+2)::before { background: var(--blauw); }
.ticks li:nth-child(4n+3)::before { background: var(--oranje); }
.ticks li:nth-child(4n+4)::before { background: var(--groen); }
.ticks--cols { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: .55rem 2rem; }

.also { margin-top: 3.2rem; padding-top: 2.4rem; border-top: 1px solid var(--line); }
.also h3 { font-size: 1.25rem; }

.shot { margin-top: 2.8rem; }
.shot img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 16 / 9; object-fit: cover; }

/* --- projecten ------------------------------------------------------------ */
.projs { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 2.4rem; }
.proj { display: flex; flex-direction: column; }
.proj__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-lg); }
.proj__body { padding-top: 1.2rem; }
.proj__body h3 { font-size: 1.2rem; }
.proj__body p { font-size: .96rem; color: var(--muted); }

.cases { padding-bottom: 0; }
.case { display: grid; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; padding-bottom: clamp(3rem, 6vw, 5rem); }
.case__imgs { display: grid; gap: .8rem; grid-template-columns: 1fr 1fr; }
.case__imgs img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--r-lg); }
.case__img2 { margin-top: 2rem; }
.tags { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 1.3rem 0 1.4rem; padding: 0; }
.tags li {
  font-size: .82rem; font-weight: 600; color: var(--ink); background: var(--sand);
  border: 1px solid var(--line); border-radius: 100px; padding: .28rem .8rem;
}

/* --- stappen -------------------------------------------------------------- */
.steps { list-style: none; margin: 2.4rem 0 0; padding: 0; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.step { display: flex; gap: .95rem; align-items: flex-start; }
.step__n {
  flex: none; width: 38px; height: 38px; display: grid; place-items: center;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1rem; color: #fff;
  background: var(--ink); border-radius: 50%;
}
.step:nth-child(1) .step__n { background: var(--blauw); }
.step:nth-child(2) .step__n { background: var(--rood); }
.step:nth-child(3) .step__n { background: var(--oranje); }
.step:nth-child(4) .step__n { background: var(--groen); }
.step h3 { font-size: 1.06rem; margin-bottom: .3em; }
.step p { font-size: .95rem; color: var(--muted); margin: 0; }
.sec--dark .step p { color: var(--muted-light); }

/* --- plaatsen ------------------------------------------------------------- */
.places { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 2rem 0 0; padding: 0; }
.places li {
  font-size: .9rem; font-weight: 500; background: var(--sand); border: 1px solid var(--line);
  border-radius: var(--r); padding: .4rem .85rem;
}
.places li a { text-decoration: none; }

/* --- faq ------------------------------------------------------------------ */
.faq { display: grid; gap: 1.5rem 2.6rem; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); margin-top: 2.4rem; }
.faq__i { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.35rem 1.5rem; }
.faq__i h3 { font-size: 1.05rem; margin-bottom: .45em; }
.faq__i p { font-size: .96rem; color: var(--muted); margin: 0; }

/* --- paginakop ------------------------------------------------------------ */
.crumbs { background: var(--sand); border-bottom: 1px solid var(--line); font-size: .85rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: .7rem 0; }
.crumbs li + li::before { content: '\203A'; margin-right: .5rem; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--rood); text-decoration: underline; }
.crumbs li:last-child { color: var(--ink); font-weight: 600; }

.ph { padding: clamp(2.6rem, 5.5vw, 4.4rem) 0 clamp(2.2rem, 4vw, 3.2rem); border-bottom: 1px solid var(--line); }
.ph__h { font-size: clamp(1.95rem, 4.6vw, 3.15rem); max-width: 18ch; }
.ph__p { max-width: 66ch; font-size: 1.08rem; color: var(--muted); }
.ph__act { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.7rem; }
.ph--404 { border-bottom: 0; }

/* --- contactroutes -------------------------------------------------------- */
.ways { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.way {
  display: flex; flex-direction: column; gap: .2rem; text-decoration: none; color: var(--text);
  background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--rood);
  border-radius: var(--r-lg); padding: 1.5rem 1.6rem 1.7rem;
  transition: transform .16s ease, box-shadow .16s ease;
}
.way:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--text); }
.way--groen { border-top-color: var(--groen); }
.way--blauw { border-top-color: var(--blauw); }
.way svg { width: 28px; height: 28px; margin-bottom: .7rem; color: var(--rood); }
.way--groen svg { color: var(--groen); }
.way--blauw svg { color: var(--blauw); }
.way__t { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.way__v { font-size: 1.02rem; font-weight: 600; word-break: break-word; }
.way__d { font-size: .9rem; color: var(--muted); margin-top: .35rem; }

.nap { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.nap li { display: flex; flex-wrap: wrap; gap: .4rem 1rem; padding: .62rem 0; border-bottom: 1px solid var(--line); }
.nap li span { flex: 0 0 130px; color: var(--muted); font-size: .92rem; }
.nap li strong { font-weight: 600; }
.note { font-size: .9rem; color: var(--muted); }

.map-link { display: block; text-decoration: none; }
.map-link img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); }
.map-link span {
  display: inline-block; margin-top: .7rem; font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: .9rem; color: var(--rood);
}
.map-link span::after { content: ' \203A'; }

.factgrid { display: grid; gap: 1.8rem 2.4rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 2.2rem; }
.factgrid h3 { font-size: 1.05rem; margin-bottom: .35em; }
.factgrid p { font-size: .96rem; color: var(--muted-light); margin: 0; }

.prose { max-width: 72ch; }
.prose h2 { font-size: 1.35rem; margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }

/* --- cta-balk ------------------------------------------------------------- */
.cta-bar { background: var(--ink-2); color: #fff; padding: clamp(2.4rem, 5vw, 3.4rem) 0; }
.cta-bar__in { display: grid; gap: 1.6rem; align-items: center; }
.cta-bar__t { color: #fff; font-size: clamp(1.35rem, 2.6vw, 1.85rem); max-width: 24ch; margin: 0; }
.cta-bar__act { display: flex; flex-wrap: wrap; gap: .7rem; }

/* --- footer --------------------------------------------------------------- */
.ftr { background: var(--ink); color: var(--muted-light); padding: clamp(2.8rem, 5vw, 4rem) 0 0; font-size: .95rem; }
.ftr__grid { display: grid; gap: 2.2rem 2.6rem; grid-template-columns: 1fr; }
.ftr__brand .brand { margin-bottom: 1rem; }
.ftr__pitch { max-width: 42ch; font-size: .93rem; }
.ftr__ig { display: inline-flex; align-items: center; gap: .5rem; color: #fff; text-decoration: none; font-weight: 600; margin-top: .4rem; }
.ftr__ig svg { width: 20px; height: 20px; }
.ftr__ig:hover { color: #ff9ea1; }
.ftr__h { font-family: 'Archivo', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: .9rem; }
.ftr__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.ftr__list a { color: var(--muted-light); text-decoration: none; }
.ftr__list a:hover { color: #fff; text-decoration: underline; }
.ftr__list--nap li { color: var(--muted-light); }
.ftr__base {
  display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between;
  margin-top: 2.6rem; padding: 1.3rem 0; border-top: 1px solid var(--line-dark);
  font-size: .85rem;
}
.ftr__base p { margin: 0; }

/* --- vaste actiebalk op mobiel -------------------------------------------- */
.actionbar { display: none; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (min-width: 700px) {
  .cta-bar__in { grid-template-columns: 1.2fr auto; }
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide { grid-template-columns: 1fr 1.05fr; }
  .case { grid-template-columns: 1fr 1fr; }
  .case--alt .case__imgs { order: 2; }
  .ftr__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

@media (max-width: 979px) {
  .hdr__bar { min-height: 66px; gap: .8rem; }
  .brand__sub { display: none; }
  .brand__name { white-space: nowrap; font-size: 1.05rem; }
  .brand__mark { width: 36px; height: 33px; }
  .burger { display: inline-flex; }
  .hdr__call span { display: none; }
  .hdr__call { padding: .72rem .9rem; }
  .hdr__call svg { width: 19px; height: 19px; }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px);
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 5.4rem 1.5rem 2rem; overflow-y: auto;
    transform: translateX(102%); transition: transform .22s ease;
    box-shadow: -10px 0 40px rgba(20, 22, 27, .2); z-index: 99;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: .1rem; }
  .nav__list a { padding: .8rem .6rem; font-size: 1.08rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__list a[aria-current="page"] { box-shadow: none; }
  .nav__sub {
    display: grid; gap: .1rem; list-style: none; margin: 1.4rem 0 0; padding: 1.2rem 0 0;
    border-top: 3px solid var(--sand-2);
  }
  .nav__sub a { display: block; padding: .5rem .6rem; font-size: .95rem; color: var(--muted); text-decoration: none; }
  .nav__sub a:hover { color: var(--rood); }
  .nav__call { display: inline-flex; margin-top: 1.4rem; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: ''; position: fixed; inset: 0; background: rgba(20, 22, 27, .45); z-index: 98;
  }
}

@media (max-width: 699px) {
  body { font-size: 16.5px; padding-bottom: 68px; }
  .hero__act .btn, .ph__act .btn, .center__act .btn { flex: 1 1 100%; }
  .case__imgs { grid-template-columns: 1fr; }
  .case__img2 { margin-top: 0; }
  .case__imgs img { aspect-ratio: 4 / 3; }
  .nap li span { flex: 0 0 110px; }

  .actionbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    display: grid; grid-template-columns: repeat(3, 1fr);
    background: var(--ink); border-top: 3px solid var(--rood);
  }
  .actionbar a {
    display: flex; flex-direction: column; align-items: center; gap: .15rem;
    padding: .55rem .3rem .6rem; color: #fff; text-decoration: none;
    font-family: 'Archivo', sans-serif; font-size: .76rem; font-weight: 700;
    letter-spacing: .02em;
  }
  .actionbar a + a { border-left: 1px solid var(--line-dark); }
  .actionbar svg { width: 21px; height: 21px; }
  .actionbar a:first-child svg { color: #ff8f93; }
  .actionbar a:nth-child(2) svg { color: #8fd076; }
  .actionbar a:nth-child(3) svg { color: #6fd6f7; }
}

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

@media print {
  .hdr, .actionbar, .cta-bar, .crumbs { display: none; }
  body { font-size: 11pt; }
}
