/* Aluminium-specialist — style.css (DESIGN.md) — LockDry-restyle 13-09-2026 */

/* optional (niet swap) op alle vier: elk gewicht zit in tekst die al bij eerste
   render zichtbaar is (labels/knoppen in Lato 700, koppen/legends in Mulish
   700/800), dus een late swap reflowt zichtbare content — gemeten CLS ~0,49
   op de offertewizard (deel C-audit, Lighthouse mobile). Preload + optional
   zorgt dat het echte lettertype verschijnt zodra het op tijd binnen is,
   anders blijft de fallback staan: nooit een late, layoutverschuivende swap. */
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-latin-800-normal.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: optional;
}

:root {
  --navy: #0e1b2c;
  --ink: #16202b;
  --paper: #ffffff;
  --mist: #f4f3f8;
  --line: #dcdde3;
  --muted: #5c6470;
  --muted-on-navy: #aab3c0;
  --accent: #61714a;
  --accent-hover: #4f5c3c;
  --link: #234769;
  --wash: #e9e9ee;
  --error: #b42318;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Lato", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.6;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
[hidden] { display: none !important; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* Layout helpers */
.wrap {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
main { display: flow-root; }

/* Reveal-on-scroll: .js added to <html> by an inline head script (motion.js arms it
   further). Without .js, or when motion.js bails out, everything stays visible. */
.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal:not(.is-in) { opacity: 0; transform: translateY(24px); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal:not(.is-in) { opacity: 1; transform: none; }
}

.band { padding-block: 64px; }
@media (min-width: 820px) { .band { padding-block: 110px; } }
.band--black { background: var(--navy); color: #fff; }
.band--carbon { background: var(--navy); color: #fff; }
.band--white { background: var(--paper); color: var(--ink); }
.band--mist { background: var(--mist); color: var(--ink); }

/* Closing CTA band (band--black without .hero): centered */
.band--black:not(.hero):not(.exploded) { text-align: center; }
.band--black:not(.hero):not(.exploded) .wrap { display: flex; flex-direction: column; align-items: center; }
.band--black:not(.hero):not(.exploded) .lede { text-align: center; margin-inline: auto; }
.band--black:not(.hero):not(.exploded) .slot-actions { justify-content: center; }

/* Secondary text on navy bands (hero, closing CTA, calculator band) */
.band--black .lede, .band--carbon .lede,
.band--black .eyebrow, .band--carbon .eyebrow,
.band--black .crumb, .band--carbon .crumb {
  color: var(--muted-on-navy);
}

/* Type */
.display {
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-align: center;
}
.eyebrow {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.h-lg {
  font-family: "Mulish", sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0;
}
.lede {
  font-size: clamp(19px, 2vw, 21px);
  line-height: 1.4;
  max-width: 52ch;
  color: var(--muted);
  text-align: left;
}
.label {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Skip link + announcement bar */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  z-index: 100;
}
.skip:focus {
  left: 20px;
  top: 20px;
}
.announce {
  background: var(--mist);
  color: var(--ink);
  font-size: 13px;
  text-align: center;
  padding: 10px 20px;
}
.announce a { color: var(--link); text-decoration: underline; }

/* Nav */
.nav {
  background: var(--navy);
  color: #fff;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: clamp(20px, 5vw, 40px);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
/* .nav--overlay used to make the nav transparent until scrolled; the nav is now
   always solid navy for legibility over the hero photo (see DESIGN.md "Navigatie"
   deel-C fix). The class may still be present in markup — harmless, no rule left
   to key off it. .is-scrolled keeps its subtle shadow. */
.nav.is-scrolled { box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08); }
.nav__brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: "Mulish", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  color: #fff;
}
.nav__brand img { display: block; width: auto; height: 36px; }
.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 4px;
  color: var(--muted-on-navy);
}
.nav__toggle:hover, .nav__toggle:focus-visible { color: #fff; }
.nav__menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px clamp(20px, 5vw, 40px) 32px;
}
.nav__menu[data-open] { display: flex; }
.nav__menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
@media (min-width: 820px) {
  .nav__toggle { display: none; }
  .nav__menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    background: none;
    border-bottom: 0;
    padding: 0;
    gap: 28px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--accent-hover); }
.btn--white { background: #fff; border-color: transparent; color: var(--ink); }
.btn--outline { background: transparent; border: 1.5px solid currentColor; color: inherit; }
.nav__menu .btn--primary { padding: 7px 14px; min-height: 44px; }
.nav__menu a.btn--primary { color: #fff; }

/* Crumb */
.crumb {
  font-size: 14px;
  color: var(--muted);
  padding-block: 16px;
}
.crumb a { text-decoration: underline; color: var(--link); }
.wrap.crumb-wrap { padding-block: 16px; }

/* Cards & grid */
.card {
  background: var(--mist);
  border-radius: 14px;
  padding: 28px;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 820px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.photo {
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  width: 100%;
}

/* Maatcijfers */
.maat { font-family: "Mulish", sans-serif; color: inherit; font-weight: 700; font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }

/* Profiel-doorsnede */
.profiel { max-width: 100%; height: auto; }

/* Placeholder */
.ph {
  background: #fff3c4;
  color: #000;
  text-decoration: underline dotted;
  text-underline-offset: 3px;
  padding: 0 2px;
}

/* Hero */
.hero { min-height: min(100svh, 900px); display: flex; align-items: center; }
.hero--short { min-height: min(60svh, 480px); align-items: flex-start; padding-top: 24px; }
.hero--short .wrap { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.hero--short .h-lg { text-align: left; }

/* Full-bleed photo heroes (home hero + service hero--short variants) */
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; }
/* Opaque dark ground under the photo itself: if the image fails to load (or
   before it decodes) the hero text still sits on solid navy, never bare white. */
.hero--photo, .hero--home { position: relative; overflow: hidden; background-color: var(--navy); }
.hero--photo .wrap, .hero--home .wrap { position: relative; z-index: 2; width: 100%; }
.hero--photo .hero__scrim { background: rgba(14, 27, 44, 0.72); }

/* Home hero: full-bleed, left-aligned. The nav is solid navy (no overlay), so the
   hero sits normally below it — no pull-up hack needed. */
.hero--home {
  height: min(100svh, 880px);
  min-height: 560px;
  align-items: flex-end;
  padding-bottom: clamp(40px, 8vw, 88px);
}
@media (max-width: 819px) {
  /* Leave room for the fixed .mbar so the hero CTAs are never covered by it. */
  .hero--home { height: min(calc(100svh - 72px), 880px); }
}
.hero--home .hero__scrim {
  background: linear-gradient(90deg, rgba(14, 27, 44, 0.85) 0%, rgba(14, 27, 44, 0.55) 35%, rgba(14, 27, 44, 0) 65%);
}
@media (max-width: 819px) {
  /* On narrow widths the text column spans (near) the full photo width, including
     the part where the left-to-right gradient above has already faded out — use a
     strong, near-uniform scrim instead so the text always sits on a dark ground. */
  .hero--home .hero__scrim {
    background: rgba(14, 27, 44, 0.82);
  }
}
.hero__content { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 620px; }
.hero--home .eyebrow { text-align: left; color: var(--muted-on-navy); }
.hero--home .display { text-align: left; color: #fff; }
.hero--home .lede { text-align: left; color: var(--muted-on-navy); margin: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero entrance: text is opacity:1 from first paint, always — the H1 is the LCP
   element and must never start invisible (a prior opacity:0 keyframe start held
   the hero text, incl. the LCP H1, invisible well past 1.5s and inflated LCP/
   render-delay in Lighthouse). Only transform animates a short rise; disabled
   under reduced motion — see motion.js "Hero" step. */
.js .hero__content > * { animation: hero-rise 0.4s ease both; }
.js .hero__content > *:nth-child(1) { animation-delay: 0s; }
.js .hero__content > *:nth-child(2) { animation-delay: 0.04s; }
.js .hero__content > *:nth-child(3) { animation-delay: 0.07s; }
.js .hero__content > *:nth-child(4) { animation-delay: 0.1s; }
@keyframes hero-rise {
  from { transform: translateY(16px); }
  to { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .js .hero__content > * { animation: none; transform: none; }
}

/* Section heads */
.section-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }

/* Exploded profile section (home, GSAP ScrollTrigger pin+scrub — see motion.js) */
.exploded { position: relative; overflow: hidden; }
.exploded__atmos {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}
.exploded__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 820px) { .exploded__grid { grid-template-columns: 1.3fr 1fr; gap: 64px; } }
.exploded__visual { width: 100%; }
.exploded__visual .profiel { width: 100%; height: auto; display: block; }
.exploded__text { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.exploded__text .eyebrow { text-align: left; color: var(--muted-on-navy); }
.exploded__text .h-lg { color: #fff; }
.exploded__text .lede { text-align: left; color: var(--muted-on-navy); margin: 0; }
.exploded__text .v-card__more { color: #fff; }

/* Toepassingen: full-bleed alternating photo bands */
.toep__intro { margin-bottom: 48px; }
.toep__band { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; margin-bottom: 64px; }
.toep__band:last-of-type { margin-bottom: 0; }
@media (min-width: 820px) {
  .toep__band { grid-template-columns: 1fr 1fr; gap: 56px; }
  .toep__band--reverse .toep__media { order: 2; }
  .toep__band--reverse .toep__text { order: 1; }
}
.toep__frame { position: relative; overflow: hidden; border-radius: 14px; aspect-ratio: 4 / 3; }
.toep__frame img {
  position: absolute;
  left: 0;
  top: -10%;
  width: 100%;
  height: 120%;
  object-fit: cover;
}
.toep__text { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.toep__text .eyebrow { text-align: left; }
.toep__text h3 { font-family: "Mulish", sans-serif; font-size: 26px; line-height: 1.2; font-weight: 700; margin: 0; }
.toep__text p.lede { margin: 0; }
.toep__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.toep__more { margin-top: 56px; }
.toep__more .grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 640px; margin-inline: auto; }
@media (min-width: 560px) { .toep__more .grid-2 { grid-template-columns: 1fr 1fr; } }

/* USP row: thin-line icons, ink only — never the accent color (see DESIGN.md) */
.usp__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 32px; text-align: center; }
@media (min-width: 600px) { .usp__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 820px) { .usp__grid { grid-template-columns: repeat(4, 1fr); } }
.usp__item { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.usp__icon { width: 40px; height: 40px; color: var(--ink); }
.usp__item p { font-family: "Mulish", sans-serif; font-weight: 700; font-size: 16px; margin: 0; }

/* Voertuigkeuze */
.v-card { display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit; }
.v-card h3 { font-family: "Mulish", sans-serif; font-size: 24px; line-height: 1.2; margin: 0; font-weight: 700; }
.v-card h3 a { text-decoration: none; color: inherit; }
.v-card p { color: var(--muted); }
.v-card__more {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  color: var(--link);
  text-decoration: none;
}
.v-card__more::after { content: " \203A"; }

/* Dikte-kaarten */
.dikte-card { display: flex; flex-direction: column; gap: 12px; }
.dikte-card .maat { font-size: 28px; }
.dikte-card p { color: var(--muted); }
.dikte-note { margin-top: 32px; }

/* Werkwijze */
.werkwijze { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 820px) {
  .werkwijze { grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
}
.werkwijze__list { display: flex; flex-direction: column; gap: 16px; padding-left: 1.25em; margin: 0; }
.werkwijze__list li { padding-left: 4px; }
.werkwijze__photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 559px) { .werkwijze__photos { grid-template-columns: 1fr 1fr; } }
.werkwijze__photos .photo { aspect-ratio: 3 / 4; }

/* Google-reviews widget (SociableKIT-stijl masonry grid, src/reviews.json -> scripts/reviews_render.py) */
.gr-band { padding-block: 56px; }
@media (min-width: 820px) { .gr-band { padding-block: 72px; } }

/* Doorlopende reviewband: samenvatting vast, kaarten schuiven van links naar rechts. */
.gr-marquee { --gr-card-w: 280px; --gr-card-h: 300px; margin-top: 32px; display: grid; gap: 16px; align-items: start; }
@media (min-width: 1024px) { .gr-marquee { grid-template-columns: var(--gr-card-w) minmax(0, 1fr); } }
.gr-marquee__viewport {
  min-width: 0;
  overflow: hidden;
  padding-block: 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 32px, #000 calc(100% - 32px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 32px, #000 calc(100% - 32px), transparent);
}
.gr-marquee__viewport:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.gr-marquee__track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: max-content;
  animation: gr-scroll var(--gr-duration, 120s) linear infinite;
}
.gr-marquee__viewport:hover .gr-marquee__track,
.gr-marquee__viewport:focus-within .gr-marquee__track { animation-play-state: paused; }
@keyframes gr-scroll { from { transform: translateX(calc(-50% - 8px)); } to { transform: translateX(0); } }
/* Alle kaarten (samenvatting + reviews) exact dezelfde maat. */
.gr-marquee .gr-card { width: var(--gr-card-w); height: var(--gr-card-h); margin: 0; }
.gr-marquee__track .gr-card { flex: none; }
.gr-marquee .gr-summary .gr-write-btn { margin-top: auto; }
.gr-marquee .gr-review { overflow: hidden; }
.gr-marquee .gr-review__footer { margin-top: auto; }
.js .gr-marquee .gr-review__text.is-clamped { -webkit-line-clamp: 3; }
/* Uitgeklapt met "Meer lezen": alleen die kaart groeit mee. */
.gr-marquee .gr-review:has(.gr-more[aria-expanded="true"]) { height: auto; }
@media (prefers-reduced-motion: reduce) {
  .gr-marquee__viewport { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .gr-marquee__track { animation: none; }
  .gr-review--dup { display: none; }
}

.gr-card {
  display: block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 16px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(60, 64, 67, .15);
}

/* Samenvattingskaart: altijd het eerste item in de grid */
.gr-summary { padding: 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.gr-wordmark {
  font-family: "Mulish", "Arial", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.2px;
}
.gr-summary__name { font-family: "Mulish", sans-serif; font-weight: 700; font-size: 15px; color: #202124; margin: 0; }
.gr-summary__score { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.gr-summary__num { font-family: "Mulish", sans-serif; font-weight: 800; font-size: 26px; color: #202124; }
.gr-summary__link {
  font-size: 14px;
  color: var(--link);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.gr-summary__link:hover { text-decoration: underline; }
.gr-write-btn {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding-inline: 22px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.gr-write-btn:hover, .gr-write-btn:focus-visible { background: #000; }

/* Reviewkaart */
.gr-review { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.gr-review__head { display: flex; align-items: center; gap: 12px; margin: 0; }
.gr-avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.gr-review__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gr-review__name { font-family: "Lato", sans-serif; font-style: normal; font-weight: 600; font-size: 15px; color: #202124; }
.gr-review__date { font-size: 13px; color: #5f6368; }
.gr-stars { display: inline-flex; gap: 2px; }
.gr-star { display: block; }
.gr-review__text { margin: 0; }
.gr-review__text p { margin: 0 0 8px; font-size: 15px; line-height: 1.5; color: #3c4043; }
.gr-review__text p:last-child { margin-bottom: 0; }
.js .gr-review__text.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.js .gr-review__text.is-clamped p { display: inline; margin: 0; }
.js .gr-review__text.is-clamped p + p::before { content: " "; }

.gr-more {
  display: none;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  color: var(--link);
  min-height: 44px;
  padding: 0;
}
.gr-more.is-visible { display: inline-flex; align-items: center; }
.gr-more:hover, .gr-more:focus-visible { text-decoration: underline; }

.gr-review__footer {
  margin: 4px 0 0;
  padding-top: 8px;
  border-top: 1px solid #f1f3f4;
  display: flex;
  align-items: center;
  gap: 4px;
}
.gr-google-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  color: #5f6368;
  font-size: 13px;
  text-decoration: none;
}
.gr-google-link:hover { text-decoration: underline; }
.gr-share {
  margin-left: auto;
  flex: none;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
  border-radius: 50%;
}
.gr-share:hover, .gr-share:focus-visible { background: #f1f3f4; }
.gr-status { font-size: 12px; color: #5f6368; }

.review-cta { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }

/* Calculator band */
.calc-band__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 820px) { .calc-band__grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.calc-band__grid > div:first-child {
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 40px);
}
/* The calc card sits inside .band--carbon, whose ".lede" rule (above) is styled
   for navy backgrounds. This card is a white surface, so its own lede/eyebrow
   text needs the light-surface colour, not --muted-on-navy (2.12:1 on white —
   real audit finding on both /aluminium-op-maat and the home calculator). */
.calc-band__grid > div:first-child .lede,
.calc-band__grid > div:first-child .eyebrow {
  color: var(--muted);
}
.calc-band__field { display: flex; flex-direction: column; gap: 8px; font-size: 15px; font-weight: 700; max-width: 320px; }
.calc-band__field input {
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 44px;
  padding: 10px 16px;
  font-size: 17px;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
}
.calc-band__out { margin-top: 20px; font-size: 19px; }
.calc-band__out .maat { font-size: 56px; }
.calc-band__grid .btn { margin-top: 24px; }

/* Slot-band */
.slot-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Blogs */
article.band { padding-block: 64px; }
article .crumb { padding-block: 0; margin-bottom: 16px; }
article .h-lg { margin-bottom: 20px; text-align: left; }
article .lede { max-width: 68ch; margin-bottom: 32px; }
article h2 { font-family: "Mulish", sans-serif; font-size: 28px; line-height: 1.2; margin-top: 40px; margin-bottom: 16px; font-weight: 700; }
article h3 { font-family: "Mulish", sans-serif; font-size: 22px; line-height: 1.2; margin-top: 28px; margin-bottom: 12px; font-weight: 700; }
article p { font-size: 19px; line-height: 1.55; max-width: 68ch; margin-bottom: 20px; color: var(--ink); }
article ul, article ol { max-width: 68ch; }
article a { color: var(--link); }
article .btn { margin-top: 12px; }

/* Footer */
.foot {
  background: var(--navy);
  color: var(--muted-on-navy);
  padding-block: 64px;
  padding-inline: clamp(20px, 5vw, 40px);
}
.foot__nap { line-height: 1.6; color: var(--muted-on-navy); }
.foot__nap strong { color: #fff; }
.foot__logo { display: block; width: 200px; height: auto; margin-bottom: 18px; }
.foot__nap a { text-decoration: underline; color: #fff; }
.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 32px;
}
.foot__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding-inline: 4px;
  text-decoration: none;
  font-size: 14px;
  color: var(--muted-on-navy);
}
.foot__links a:hover, .foot__links a:focus-visible { color: #fff; }

/* Mobile bar */
.mbar {
  display: none;
}
@media (max-width: 819px) {
  body { padding-bottom: 72px; }
  .mbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 50;
  }
  .mbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
  }
  .mbar .btn--primary { border-radius: 0; min-height: 56px; color: #fff; }
}

/* ---- Offertewizard ---- */
.wizard-wrap { padding-block: 48px; }

.wz { display: flex; flex-direction: column; gap: 40px; margin-top: 24px; }

.wz-step { border: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.wz-step legend {
  font-family: "Mulish", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  padding: 0;
  margin-bottom: 4px;
}

.wz label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}

.wz input[type="text"],
.wz input[type="number"],
.wz input[type="tel"],
.wz input[type="email"],
.wz input[type="file"],
.wz input:not([type="radio"]):not([type="checkbox"]),
.wz textarea,
.wz select {
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 44px;
  padding: 10px 16px;
  font-size: 17px;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
}
.wz textarea { min-height: 96px; padding-top: 12px; }

.choices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.choices label {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 980px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.choices label:has(input:checked) {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.wz-error {
  color: var(--error);
  font-size: 16px;
}

.wz-nav { display: flex; gap: 12px; flex-wrap: wrap; }

.wz-progress {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.wz-progressbar {
  height: 4px;
  border-radius: 2px;
  background: var(--wash);
  margin-top: 8px;
  overflow: hidden;
}
.wz-progressbar__bar {
  height: 100%;
  background: var(--ink);
  border-radius: inherit;
  transition: width 0.2s ease;
}

.calc-out { font-size: 16px; }
