/* Renovaraam — modern, image-forward, geen geneste kaarten-blokken */
:root {
  --color-red: #ae1c28;
  --color-blue: #21468b;
  --ink: #0c0d10;
  --muted: #5c616b;
  --line: #e2e4e9;
  --bg: #f0f1ee;
  --surface: #ffffff;
  --surface-2: #fafaf8;
  --focus: #21468b;
  --max: 1240px;
  --header-sticky-h: 57px;
  --font-body: "Instrument Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Syne", var(--font-body);
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
  --t-fast: 0.2s var(--ease-smooth);
  --t-med: 0.35s var(--ease-smooth);
  --section-y: clamp(2.75rem, 6vh, 5rem);
  --section-header-gap: clamp(1.5rem, 3.5vw, 2.35rem);
  --content-gap: clamp(1.25rem, 3vw, 1.85rem);
  --slide-h: min(48dvh, 48vh, 440px);
  --slide-h-sm: min(42dvh, 42vh, 380px);
  --radius: 0;
  --radius-lg: 0;
  --hairline: rgba(12, 13, 16, 0.08);
  --brand-panel: #fafaf8;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-sticky-h, 57px);
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  min-height: 100vh;
  min-height: 100dvh;
  overscroll-behavior-y: none;
}

/* Alleen scroll locken wanneer menu/chat/modal echt open is */
html.rv-scroll-locked {
  overflow: hidden;
}

body.rv-scroll-locked {
  overflow: hidden;
  touch-action: none;
}

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

.partner-tile__logo {
  max-width: none;
  vertical-align: middle;
}

a {
  color: var(--color-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color var(--t-fast), opacity var(--t-fast);
}

a:hover {
  color: var(--color-red);
}

@media (prefers-reduced-motion: no-preference) {
  .btn,
  .btn-outline,
  .nav-cta,
  .filter-pill,
  .nav-list a,
  .footer-nav a,
  .partner-tile,
  .product-row,
  .product-card,
  .fence-home__card,
  input,
  textarea,
  select,
  button {
    transition:
      color var(--t-fast),
      background-color var(--t-fast),
      border-color var(--t-fast),
      box-shadow var(--t-med),
      transform var(--t-med),
      opacity var(--t-fast);
  }

  .product-row__media img,
  .product-card__media img,
  .fence-home__thumb img,
  .gallery-item img {
    transition: transform 0.5s var(--ease);
  }

  .product-row:hover .product-row__media img,
  .product-card:hover .product-card__media img,
  .fence-home__card:hover .fence-home__thumb img {
    transform: scale(1.03);
  }

  .site-nav {
    transition: transform 0.32s var(--ease), visibility 0.32s;
  }

  .nav-backdrop {
    transition: opacity 0.28s var(--ease);
  }

  .nav-backdrop:not([hidden]) {
    animation: fade-in 0.28s var(--ease);
  }

  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}

/* Legacy — vervangen door .bottom-dock in brand-ui.css */
.mobile-cta {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, 720px);
}

/* Typografie */
.headline-xl {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.headline-lg {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin: 0 0 0.65rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0;
}

.lead--wide {
  max-width: 46rem;
}

/* Sectiekop — consequent merkbeeld */
.section-header {
  margin-bottom: var(--section-header-gap);
  max-width: 38rem;
}

.section-header + .flat-slider,
.section-header + .partner-slider,
.section-header + .fence-slider,
.section-header + .split-panel,
.section-header + .process-strip,
.section-header + .quality-trust__grid,
.section-header + .faq-accordion {
  margin-top: 0;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: clamp(2rem, 4.5vw, 2.85rem) 0 0;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
  max-width: 44rem;
}

.section-header--center .section-header__lead {
  margin-inline: auto;
}

.section-header__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.section-header__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
}

.section-header__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}

.section-header__rule {
  width: 3rem;
  height: 3px;
  background: var(--color-red);
  margin-top: 0.85rem;
}

.section-header--center .section-header__rule {
  margin-inline: auto;
}

.section-header .section-intro,
.section-header .lead {
  margin-top: clamp(0.85rem, 2vw, 1.1rem);
}

.section-header .reveal-title {
  margin-bottom: clamp(1.15rem, 2.5vw, 1.5rem);
}

/* Header — vast bovenaan (niet meescrollen) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

body.rv-site > main#main {
  padding-top: var(--header-sticky-h, 57px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 52;
}

.brand-logo {
  width: min(188px, 44vw);
  height: auto;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--ink);
  background: var(--surface);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  position: relative;
  z-index: 52;
}

.nav-toggle__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.nav-toggle__lines span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] {
  position: relative;
  z-index: 210;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 13, 16, 0.45);
  z-index: 199;
  border: 0;
}

.nav-backdrop[hidden] {
  display: none;
}

.site-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(100%, 20rem);
  z-index: 200;
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.28s var(--ease);
  visibility: hidden;
  opacity: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.site-nav__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 5.5rem 1.75rem 2rem;
  gap: 2rem;
}

@media (max-width: 959px) {
  .site-nav__inner {
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-list a {
  display: block;
  padding: 0.85rem 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--hairline);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--color-blue);
}

.nav-cta {
  display: block;
  margin-top: auto;
  padding: 0.65rem 1rem 0.5rem;
  text-align: center;
  text-decoration: none;
  border: 0;
  border-bottom: 2px solid var(--color-blue);
  background: transparent;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: transparent;
  border-bottom-color: var(--color-red);
  color: var(--color-red);
}

@media (min-width: 960px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .nav-toggle {
    display: none;
  }

  .nav-backdrop {
    display: none !important;
  }

  .site-nav {
    position: static;
    width: auto;
    margin-left: auto;
    transform: none;
    visibility: visible;
    border: 0;
    background: transparent;
  }

  .site-nav__inner {
    flex-direction: row;
    align-items: center;
    min-height: 0;
    padding: 0;
    gap: 0;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    margin-right: 1.25rem;
  }

  .nav-list a {
    padding: 0.35rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 500;
    border-bottom: 0;
  }

  .nav-list a[aria-current="page"] {
    box-shadow: inset 0 -2px 0 var(--color-blue);
  }

  .nav-cta {
    margin-top: 0;
    padding: 0.35rem 0.75rem 0.3rem;
    font-size: 0.88rem;
  }
}

/* Hero */
.hero {
  position: relative;
  background: var(--ink);
}

.hero-slides {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
}

/* Full-bleed foto + donkere leesbare laag */
.hero-slide.has-image {
  position: relative;
  min-height: min(62vh, 580px);
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
}

.hero-slide.has-image .hero-overlay {
  min-height: min(58vh, 540px);
  display: flex;
  align-items: flex-end;
  padding-block: clamp(2rem, 5vw, 3rem);
  background: none;
}

.hero-slide.has-image .container {
  padding-bottom: 0.5rem;
}

.hero-slide.has-image h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  color: #fff;
  max-width: 18ch;
  margin: 0 0 1.25rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-slide.has-image .hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  max-width: 36rem;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.hero-slide.has-image .btn {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.hero-slide.has-image .btn:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
}

.hero-slide.has-image .btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero-slide.has-image .btn-outline:hover {
  border-color: #fff;
  color: #fff;
}

/* Split hero zonder DB-foto */
.hero-split {
  display: grid;
  min-height: min(72vh, 760px);
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr 42%;
  }
}

.hero-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(3rem, 8vw, 5rem);
  padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem));
  background: var(--surface);
}

.hero-split__copy .kicker {
  color: var(--color-red);
}

.hero-split__visual {
  position: relative;
  min-height: 280px;
}

.hero-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide--split .headline-xl {
  margin-bottom: 1.25rem;
}

.hero-slide--split .hero-lead {
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.65rem;
  margin-top: 0;
  padding: 1.35rem max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem)) 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 9, 12, 0.82);
  position: relative;
  z-index: 3;
}

.hero-dots {
  display: flex;
  gap: 0.7rem;
  flex: 1;
  justify-content: center;
  padding-inline: 0.25rem;
}

.hero-arrow {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  border-color: #fff;
  background: var(--color-blue);
  color: #fff;
}

.hero-dot {
  width: 2.5rem;
  height: 4px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border-radius: 0;
  transition: background 0.25s var(--ease);
}

.hero-dot[aria-current="true"] {
  background: var(--color-red);
}

/* Knoppen */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 600;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.btn:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--surface);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  background: transparent;
}

/* Secties */
.section {
  padding-block: var(--section-y);
}

.section--surface {
  background: transparent;
}

.section--edge {
  border-top: 1px solid var(--line);
}

.section--edge.section--surface {
  border-bottom: 0;
}

.section--tight {
  padding-block: clamp(1.25rem, 4vw, 2rem);
}

/* Proces: geen kaarten — alleen nummer + typografie */
.process-strip {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  margin-top: 0;
}

@media (min-width: 880px) {
  .process-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: start;
  }

  .process-item + .process-item {
    border-left: 1px solid var(--line);
    padding-left: 2.25rem;
  }

  .process-item:first-child {
    padding-left: 0;
    border-left: 0;
  }
}

.process-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(33, 70, 139, 0.14);
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.process-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 34ch;
}

@media (max-width: 879px) {
  .process-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
  }

  .process-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* Split content + foto — geen geneste kaart */
.split-panel {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  margin-top: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

@media (min-width: 880px) {
  .split-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.25rem, 5vw, 3.5rem);
    align-items: center;
  }
}

.split-panel__media {
  position: relative;
  min-height: min(260px, 48vw);
  background: transparent;
  display: flex;
  overflow: hidden;
}

.split-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.split-panel__body {
  padding: clamp(0.5rem, 2vw, 1rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.split-panel__title,
.split-panel__body .headline-lg {
  margin: 0 0 0.35rem;
}

.split-panel__note {
  margin: clamp(1.25rem, 3vw, 1.65rem) 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 42ch;
}

.split-panel__cta {
  margin: clamp(1.35rem, 3vw, 1.75rem) 0 0;
}

.feature-list {
  list-style: none;
  margin: clamp(1.15rem, 2.5vw, 1.5rem) 0 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: clamp(0.85rem, 2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.6;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 2px;
  background: var(--color-red);
}

/* CTA band */
.cta-band {
  margin-top: var(--section-y);
  padding-block: clamp(2.5rem, 6vh, 4rem);
  background: var(--ink);
  color: #fff;
}

.cta-band .container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.65rem);
  align-items: flex-start;
}

.cta-band .headline-lg {
  color: #fff;
  margin: 0;
  max-width: 20ch;
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .btn {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.cta-band .btn:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
}

/* Page hero — hoog + optioneel beeld */
.page-hero {
  position: relative;
  padding-block: clamp(3.5rem, 10vw, 6rem);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.page-hero--cover {
  min-height: min(36vh, 400px);
  display: flex;
  align-items: flex-end;
  padding-block: clamp(2.25rem, 6vw, 4rem);
  background-size: cover;
  background-position: center;
  border-bottom: 0;
}

.page-hero--cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 9, 12, 0.82) 0%,
    rgba(8, 9, 12, 0.35) 100%
  );
  pointer-events: none;
}

.page-hero--cover .container {
  position: relative;
  z-index: 1;
}

.page-hero--cover h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.page-hero--cover .kicker {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

.page-hero--cover .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.page-hero.section--surface {
  background: var(--surface);
}

.page-hero--tall {
  padding-block: clamp(4rem, 12vw, 7rem);
}

/* Producten: rijen met grote beeldlaag */
.category-anchor {
  scroll-margin-top: 5rem;
}

.category-intro {
  margin-bottom: 1.25rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.category-block + .category-block {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.page-cta-panel {
  padding: clamp(2rem, 5vw, 3rem) 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.page-cta-panel .section-header {
  margin-bottom: 1.25rem;
}

.page-cta-panel__actions {
  margin: 0;
  text-align: center;
}

.product-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-row {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--line);
  min-height: min(260px, 42vw);
}

.product-row:last-child {
  border-bottom: 0;
}

@media (min-width: 880px) {
  .product-row {
    grid-template-columns: 46% 54%;
  }

  .product-row:nth-child(even) .product-row__media {
    order: 2;
  }

  .product-row:nth-child(even) .product-row__body {
    order: 1;
  }
}

.product-row__media {
  position: relative;
  min-height: min(200px, 38vw);
  max-height: var(--slide-h-sm);
  overflow: hidden;
  background: var(--surface-2);
}

.product-row__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: var(--slide-h-sm);
  object-fit: cover;
  display: block;
}

.product-row__body {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.product-row__body .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(33, 70, 139, 0.22);
  border-radius: var(--radius);
  background: rgba(33, 70, 139, 0.04);
}

.product-row__body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.product-row__body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 42ch;
}

.product-row__cta {
  margin: 1.15rem 0 0 !important;
  font-size: 0.92rem !important;
  max-width: none !important;
}

.product-row__cta a {
  font-weight: 600;
  text-decoration: none;
}

/* Galerij — filters als pills */
.filter-bar {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.filter-bar__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}

.filter-pill:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.filter-pill.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.filter-pill.is-active:hover {
  color: #fff;
  border-color: var(--ink);
}

.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  background: transparent;
  border: 0;
}

.gallery-item {
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
}

@media (min-width: 900px) {
  .gallery-item--feature {
    grid-column: span 2;
  }

  .gallery-item--feature img {
    aspect-ratio: 21 / 9;
    max-height: 420px;
  }
}

@media (max-width: 899px) {
  .gallery-item--feature {
    grid-column: span 1;
  }
}

.gallery-item__zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--surface-2);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item__zoom img,
.gallery-item > img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .gallery-item:hover .gallery-item__zoom img,
  .gallery-item:hover > img {
    transform: scale(1.02);
  }
}

.gallery-item--feature .gallery-item__zoom img {
  aspect-ratio: 21 / 9;
  max-height: 420px;
}

.gallery-body {
  padding: 1.25rem 1.35rem 1.55rem;
  border-top: 1px solid var(--hairline);
}

.gallery-body h3 {
  font-family: var(--font-display);
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.gallery-body p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.55;
}

.gallery-item__slug {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
}

/* Reveal */
[data-reveal] {
  opacity: 0.02;
  transform: translateY(20px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-title {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 700;
  margin: 0 0 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.reveal-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  height: 3px;
  width: 100%;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.85s var(--ease);
}

[data-reveal].is-visible .reveal-title::after {
  transform: scaleX(1);
}

.section-intro {
  max-width: 44rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.section-header .section-intro,
.section-header .lead {
  margin-top: 0.85rem;
}

/* Formulieren */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

/* Formuliervelden: zie forms-ui.css (geen native browser-styling) */

.form-hint {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.alert {
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  background: var(--surface-2);
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
}

.alert-error {
  border-color: var(--color-red);
  border-left-width: 4px;
}

.alert-success {
  border-color: var(--color-blue);
  border-left-width: 4px;
}

/* Wizard — geen wit vlak; loopt door op pagina-achtergrond */
.wizard {
  background: transparent;
  border: 0;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  max-width: 52rem;
  border-radius: var(--radius);
}

.wizard-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.wizard-steps .wizard-step-label {
  display: inline-block;
}

.wizard-step-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 0;
  background: var(--surface-2);
  color: var(--muted);
}

.wizard-step-label.is-current {
  background: var(--ink);
  color: #fff;
}

.wizard-panel {
  display: none;
}

.wizard-panel.is-active {
  display: block;
}

.wizard-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.85rem;
}

.canvas-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  max-width: 100%;
  overflow: auto;
}

#sketchCanvas {
  display: block;
  max-width: 100%;
  cursor: crosshair;
}

.product-picks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-pick {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  cursor: pointer;
}

.product-pick:last-child {
  border-bottom: 0;
}

.product-pick:hover {
  background: linear-gradient(90deg, rgba(33, 70, 139, 0.04), transparent);
}

.product-pick input {
  margin-top: 0.35rem;
  accent-color: var(--color-blue);
}

.product-pick span strong {
  font-size: 1rem;
}

.wizard-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-section__inner {
  max-width: 52rem;
  margin-inline: auto;
}

.wizard--pro {
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.wizard--pro .wizard-steps {
  margin-bottom: 1.25rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding-block: clamp(3rem, 7vw, 4.5rem) 1.5rem;
  margin-top: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: minmax(200px, 1fr) 2fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.footer-brand-col {
  padding-bottom: 0.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  max-width: 36ch;
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2.5rem;
  }
}

.footer-heading {
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-text {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-link {
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-cookie-reset {
  font: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-cookie-reset:hover {
  color: var(--color-blue);
}

.footer-bottom__note {
  letter-spacing: 0.04em;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.85rem;
}

.footer-social__link {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
}

.footer-social__link:hover {
  color: var(--color-blue);
}

/* Trust strip (Google) */
.trust-strip {
  position: relative;
  padding-block: 0;
  background: transparent;
  border-top: 1px solid var(--line);
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding-block: clamp(1.35rem, 3vw, 2rem);
  border-left: 0;
  padding-left: 0;
  margin-left: 0;
  text-align: center;
}

.trust-strip__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-strip__g {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--color-blue);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-blue);
}

.trust-strip__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-strip__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.trust-strip__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: baseline;
  justify-content: center;
}

.trust-strip__rating {
  margin: 0;
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.trust-strip__rating span {
  color: var(--color-red);
}

.trust-strip__count {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip__rating + .trust-strip__count::before {
  content: "·";
  margin-right: 0.5rem;
  margin-left: 0.15rem;
  opacity: 0.45;
}

.trust-strip__cta {
  margin-left: 0;
}

@media (max-width: 720px) {
  .trust-strip__cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

/* Partners — logo wall */
.partners-section {
  position: relative;
  padding-block: var(--section-y);
  background: transparent;
  border-top: 1px solid var(--line);
}

.partners-section::before {
  display: none;
}

.partners-section .container {
  position: relative;
  z-index: 1;
}

/* Partner carousel — 2 logo's per slide, compact & gecentreerd */
.partner-slider {
  max-width: min(100%, 26rem);
  margin: 0.35rem auto 0;
}

.partner-slider__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
  align-items: start;
  justify-items: center;
  padding: 0.15rem 0.25rem;
}

.flat-slider--autoplay-only {
  pointer-events: none;
  user-select: none;
}

.flat-slider--autoplay-only .flat-slider__track {
  transition-timing-function: ease-in-out;
}

.partner-slider .partner-tile {
  min-height: 0;
  width: 100%;
  padding: 0;
  gap: 0.5rem;
  background: transparent;
  border: 0;
}

.partner-slider .partner-tile__logo {
  max-height: 2.75rem;
  max-width: 7.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-slider .partner-tile__label {
  font-size: 0.62rem;
  margin-top: 0;
}

.partner-slider .partner-tile__link {
  font-size: 0.72rem;
}

.partner-slider__pair .partner-tile:only-child {
  grid-column: 1 / -1;
  max-width: 9rem;
}

@media (max-width: 479px) {
  .partner-slider {
    max-width: min(100%, 20rem);
  }

  .partner-slider .partner-tile__logo {
    max-height: 2.35rem;
    max-width: 6.5rem;
  }
}

.partner-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  text-decoration: none;
  color: inherit;
}

.partner-tile:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}

.partner-tile__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.partner-tile__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.partner-tile__monogram {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--color-blue);
  background: linear-gradient(145deg, #fff 0%, var(--surface-2) 100%);
}

.partner-tile__label {
  margin-top: auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.35;
  max-width: 18ch;
}

.partner-tile__link {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.partner-tile__link a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.partners-section__footnote {
  margin: clamp(2rem, 4vw, 2.5rem) 0 0;
  padding-top: clamp(1.25rem, 3vw, 1.65rem);
  border-top: 1px solid var(--line);
  font-size: 0.81rem;
  color: var(--muted);
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  line-height: 1.5;
}

.section-header--center + .partner-slider {
  margin-top: clamp(0.35rem, 1.5vw, 0.75rem);
}

/* Testimonials */
.testimonials-section {
  padding-block: var(--section-y);
}

.testimonials-section .section-header {
  margin-bottom: var(--section-header-gap);
}

.flat-slider--testimonials .testimonial-card__quote {
  font-size: clamp(0.98rem, 2.2vw, 1.05rem);
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  background: transparent;
  border: 0;
}

.testimonial-card {
  margin: 0;
  padding: clamp(1.15rem, 3vw, 1.65rem) 0;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 0;
}

.testimonial-card__quote {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.62;
  color: var(--ink);
  position: relative;
  padding: 0.35rem 0 0.35rem 1.65rem;
  border-left: 3px solid var(--color-red);
}

.testimonial-card__quote::before {
  content: "“";
  position: absolute;
  left: 0.5rem;
  top: 0.05rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: rgba(174, 28, 40, 0.2);
  pointer-events: none;
}

.testimonial-card__foot {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  font-size: 0.92rem;
}

.testimonial-card__foot strong {
  font-weight: 700;
}

.testimonial-card__note {
  color: var(--muted);
}

.testimonial-card__stars {
  letter-spacing: 0.08em;
  color: #c4a000;
  font-size: 0.85rem;
}

/* FAQ accordion: zie forms-ui.css */

/* Map */
.map-section {
  padding-block: 0;
  background: transparent;
  border-top: 1px solid var(--line);
}

.map-section.section--edge {
  border-block: 0;
}

.section:has(+ .map-section) {
  padding-bottom: 0;
  border-bottom: 0;
}

/* Kaart direct tegen donkere CTA — geen witte tussenruimte of lijn */
.map-section + .cta-band {
  margin-top: 0;
}

.map-section:has(+ .cta-band) {
  padding-bottom: 0;
  margin-bottom: 0;
}

.map-section:has(+ .cta-band) .map-frame-wrap {
  border-bottom: 0;
}

.cta-band + .site-footer.footer-pro {
  border-top: 0;
}

.faq-home--flush-map {
  padding-bottom: 0;
  margin-bottom: 0;
}

.map-section__head {
  margin-bottom: 0;
  padding-block: clamp(1.75rem, 4vw, 2.25rem) clamp(1rem, 2.5vw, 1.35rem);
}

.map-section__head .headline-lg {
  margin: 0;
}

.map-section__head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
}

.map-section__route {
  flex-shrink: 0;
}

.contact-visit-strip {
  padding-top: 0;
  padding-bottom: 1.25rem;
}

.contact-visit-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.contact-visit-strip__addr {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  flex: 1 1 16rem;
}

.contact-visit-strip__maplink {
  margin: 0;
  flex-shrink: 0;
}

/* Producten — snel naar categorie */
.product-jump-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  padding: 0.35rem 0;
  border: 0;
  background: transparent;
}

.product-jump-nav__link {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  background: var(--surface-2);
  border: 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.product-jump-nav__link:hover {
  background: rgba(33, 70, 139, 0.08);
  color: var(--color-blue);
  border-bottom-color: var(--color-blue);
}

.product-jump-nav__link.is-active {
  background: var(--color-blue);
  color: #fff;
  border-bottom-color: var(--color-red);
}

.product-jump-nav__link.is-active:hover {
  background: var(--ink);
  color: #fff;
}

.wizard-panel.is-active {
  animation: wizard-in 0.35s var(--ease-smooth);
}

@keyframes wizard-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wizard-panel.is-active {
    animation: none;
  }
}

.map-frame-wrap {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.map-frame {
  display: block;
  width: 100%;
  height: min(360px, 48vh);
  border: 0;
}

.admin-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2rem 0 0.5rem;
}

.admin-section-title:first-of-type {
  margin-top: 0;
}

/* Admin */
.admin-wrap {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1.25rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.admin-table th,
.admin-table td {
  border: 1px solid var(--line);
  padding: 0.45rem 0.5rem;
  text-align: left;
  vertical-align: top;
}

/* Geen afgeronde hoeken — overal strak */
input,
textarea,
select,
button,
.btn,
.filter-pill,
.wizard,
.wizard--pro,
.alert,
.contact-visit-strip__inner,
.page-cta-panel,
.partner-tile__frame {
  border-radius: 0 !important;
}

/* WPC productkaarten (legacy grid) */
.product-card-grid {
  display: grid;
  gap: 1rem;
  background: transparent;
  border: 0;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.product-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  margin: 0;
  border: 1px solid var(--line);
}

.product-card__media {
  overflow: hidden;
  background: var(--surface-2);
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.product-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__spec {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.product-card__body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.product-card__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.category-block--wpc {
  margin-inline: 0;
  padding: 0;
  background: transparent;
  border-block: 0;
}

.category-wpc-block {
  max-width: none;
}

.category-wpc-block__intro {
  margin-bottom: 1.75rem !important;
  color: var(--ink);
  max-width: 62ch;
}

.flat-slider--wpc-showcase {
  margin-top: 0.25rem;
}

.flat-slider--wpc-showcase .flat-slider__viewport {
  border: 0;
  background: transparent;
}

.wpc-showcase-slide {
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
  background: var(--surface);
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .wpc-showcase-slide {
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-rows: auto;
    min-height: 0;
    align-items: stretch;
  }
}

.wpc-showcase-slide__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
  min-height: 220px;
}

@media (min-width: 768px) {
  .wpc-showcase-slide__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
  }
}

.wpc-showcase-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wpc-showcase-slide__body {
  padding: clamp(1.15rem, 2.5vw, 1.65rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .wpc-showcase-slide__body {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

.wpc-showcase-slide__spec {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.wpc-showcase-slide__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  margin: 0;
  letter-spacing: -0.02em;
}

.wpc-showcase-slide__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 52ch;
}

.wpc-showcase-slide__body .showcase-slide__link {
  margin-top: 0.35rem;
}

/* Home — WPC teaser */
.fence-home {
  padding-block: var(--section-y);
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.fence-slider {
  max-width: min(100%, 44rem);
  margin-inline: auto;
}

.fence-slide__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
  align-items: stretch;
}

.fence-slide__pair .fence-slide:only-child {
  grid-column: 1 / -1;
  max-width: 18rem;
  margin-inline: auto;
  width: 100%;
}

@media (max-width: 599px) {
  .fence-slide__pair {
    grid-template-columns: 1fr;
    max-width: 18rem;
    margin-inline: auto;
  }
}

.flat-slider--fence-duo .flat-slider__slide {
  flex: 0 0 100%;
  margin-right: 0;
}

.flat-slider--fence-duo .flat-slider__bar--fence {
  justify-content: center;
  gap: 1rem;
  padding-top: clamp(1.15rem, 3vw, 1.5rem);
}

.fence-home__grid {
  display: grid;
  gap: 1rem;
  background: transparent;
  border: 0;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.fence-home__card {
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  margin: 0;
}

@media (max-width: 520px) {
  .fence-home__card {
    grid-template-columns: 1fr;
  }
}

.fence-home__thumb img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  display: block;
}

.fence-home__body {
  padding: 1rem 1.15rem;
}

.fence-home__spec {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.fence-home__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.fence-home__body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.contact-visit-strip__inner {
  border-radius: 0;
  transition: border-color var(--t-fast), box-shadow var(--t-med);
}

.contact-visit-strip__inner:focus-within {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 1px var(--color-blue);
}

.contact-visit-strip .btn-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.wizard-step-label {
  border-radius: 0;
}

/* ——— Flat sliders (showcases, projecten, testimonials) ——— */
.flat-slider {
  position: relative;
  outline: none;
}

.flat-slider__viewport {
  overflow: hidden;
  border: 0;
  background: transparent;
}

.flat-slider--visual .flat-slider__viewport,
.flat-slider--projects .flat-slider__viewport {
  border: 0;
}

.flat-slider__track {
  display: flex;
  align-items: stretch;
  will-change: transform;
}

.flat-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}

.flat-slider--peek .flat-slider__slide {
  flex: 0 0 min(78%, 20rem);
  margin-right: 0.85rem;
}

.flat-slider__bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.65rem;
  padding: clamp(1.1rem, 2.5vw, 1.5rem) 0 0;
}

.flat-slider--showcase .flat-slider__bar,
.flat-slider--wpc-showcase .flat-slider__bar,
.flat-slider--testimonials .flat-slider__bar {
  justify-content: center;
}

.flat-slider__bar--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.15rem max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem)) clamp(1.15rem, 3vw, 1.5rem);
  background: linear-gradient(transparent, rgba(8, 9, 12, 0.75));
  z-index: 2;
}

.flat-slider__bar--inset {
  padding-top: 1.25rem;
}

.flat-slider__arrow {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flat-slider__arrow:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.flat-slider__arrow--on-dark {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(8, 9, 12, 0.45);
  color: #fff;
}

.flat-slider__arrow--on-dark:hover {
  border-color: #fff;
  color: #fff;
  background: var(--color-blue);
}

.flat-slider__dots {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-inline: 0.15rem;
}

.flat-slider__dot {
  width: 2.25rem;
  height: 3px;
  border: 0;
  padding: 0;
  background: var(--line);
  cursor: pointer;
}

.flat-slider__dot[aria-current="true"] {
  background: var(--color-red);
}

.flat-slider__dots--light .flat-slider__dot {
  background: rgba(255, 255, 255, 0.35);
}

.flat-slider__dots--light .flat-slider__dot[aria-current="true"] {
  background: #fff;
}

.section-header--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
  margin-bottom: var(--section-header-gap);
  max-width: none;
}

.section-header--row > div {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
  min-width: min(100%, 28rem);
}

.section-header--row .section-header__eyebrow,
.section-header--row .reveal-title,
.section-header--row .section-intro {
  margin-bottom: 0;
}

.section-header__aside {
  flex-shrink: 0;
  align-self: center;
}

/* Product showcase slides */
.showcase-slide {
  display: grid;
  align-items: stretch;
  background: var(--surface);
  min-height: 0;
  border: 1px solid var(--line);
}

@media (min-width: 880px) {
  .showcase-slide {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .flat-slider--showcase-wide .showcase-slide {
    grid-template-columns: 1.12fr 0.88fr;
    min-height: 0;
  }
}

.showcase-slide__media {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  background: var(--surface-2);
}

.showcase-slide__media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: min(38vh, 340px);
  object-fit: cover;
  display: block;
}

@media (min-width: 880px) {
  .showcase-slide__media img {
    min-height: 200px;
    max-height: min(42vh, 380px);
  }
}

.flat-slider--showcase .flat-slider__viewport,
.flat-slider--showcase-wide .flat-slider__viewport {
  max-height: var(--slide-h);
}

.flat-slider--showcase .showcase-slide,
.flat-slider--showcase-wide .showcase-slide {
  max-height: var(--slide-h);
  overflow: hidden;
}

@media (max-width: 879px) {
  .showcase-slide__body {
    border-top: 1px solid var(--line);
  }
}

@media (min-width: 880px) {
  .showcase-slide__body {
    border-left: 1px solid var(--line);
  }
}

.showcase-slide__body {
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.35rem;
}

.showcase-slide__cat {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.showcase-slide__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.showcase-slide__body p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 44ch;
}

.showcase-slide__link {
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.showcase-slide__link:hover {
  color: var(--color-red);
}

.product-spotlight {
  padding-block: clamp(1.75rem, 4vh, 3rem);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.product-page-spotlight {
  padding-bottom: 0;
}

/* Full-bleed visual strip */
.visual-strip {
  padding: 0;
  background: var(--ink);
}

.flat-slider--visual .flat-slider__viewport {
  border: 0;
  height: var(--slide-h);
  max-height: var(--slide-h);
}

.flat-slider--visual .flat-slider__track,
.flat-slider--visual .flat-slider__slide,
.flat-slider--visual .visual-slide {
  height: var(--slide-h);
  max-height: var(--slide-h);
  min-height: 0;
}

.visual-slide {
  position: relative;
  margin: 0;
  aspect-ratio: 21 / 9;
  max-height: var(--slide-h);
  min-height: min(200px, 36vw);
}

.visual-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-slide__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(2.5rem, 8vw, 4rem) max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem)) clamp(5.25rem, 14vw, 6.5rem);
  background: linear-gradient(transparent, rgba(8, 9, 12, 0.82));
  color: #fff;
  pointer-events: none;
}

.visual-slide__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.visual-slide__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 40ch;
}

.flat-slider--visual .flat-slider__bar--overlay {
  gap: 1.75rem;
  padding-top: 0.5rem;
}

/* WPC card slides */
.fence-slide {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  height: auto;
  min-height: 100%;
}

.fence-slide__media {
  overflow: hidden;
  background: transparent;
  flex-shrink: 0;
}

.fence-slide__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(32vh, 220px);
  object-fit: cover;
  display: block;
}

.fence-slide__body {
  padding: clamp(0.85rem, 2vw, 1.1rem) 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.fence-slide__spec {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.fence-slide__body h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.fence-slide__body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.flat-slider--cards .flat-slider__viewport {
  background: transparent;
  border: 0;
}

/* Testimonials slider */
.flat-slider--testimonials .flat-slider__viewport {
  border: 0;
  background: transparent;
}

.flat-slider--testimonials .testimonial-card {
  margin: 0;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.flat-slider--testimonials .testimonial-card:last-child {
  border-right: 0;
}

/* Project slides */
.project-slide {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  min-height: min(200px, 38vw);
  max-height: var(--slide-h);
  background: var(--ink);
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-slide--large {
  aspect-ratio: 16 / 9;
  min-height: min(200px, 38vw);
  max-height: var(--slide-h);
}

@media (min-width: 900px) {
  .flat-slider--projects-page .flat-slider__viewport {
    height: var(--slide-h);
    max-height: var(--slide-h);
  }

  .flat-slider--projects-page .project-slide--large {
    aspect-ratio: 2 / 1;
    min-height: 0;
    height: var(--slide-h);
    max-height: var(--slide-h);
  }

  .flat-slider--projects-page .project-slide--large img {
    max-height: 100%;
  }
}

.project-slide__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(transparent, rgba(8, 9, 12, 0.88));
  color: #fff;
}

.project-slide__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.35rem;
}

.project-slide__cap h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.project-slide__cap p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
  max-width: 52ch;
}

.projects-home {
  background: transparent;
  border-top: 1px solid var(--line);
  padding-block: var(--section-y);
}

.flat-slider--projects .flat-slider__viewport {
  height: var(--slide-h);
  max-height: var(--slide-h);
}

.flat-slider--projects .flat-slider__track,
.flat-slider--projects .flat-slider__slide,
.flat-slider--projects .project-slide {
  height: var(--slide-h);
  max-height: var(--slide-h);
  min-height: 0;
}

.flat-slider--projects-page {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .section-header__aside {
    width: 100%;
    text-align: center;
  }

  .hero-controls {
    padding-inline: 1rem;
    gap: 1rem;
  }

  .hero-count {
    min-width: 3.25rem;
    font-size: 0.7rem;
  }

  .home-quick-nav__inner {
    flex-wrap: wrap;
  }

  .home-quick-nav__item {
    flex: 1 1 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-quick-nav__item:nth-child(2n) {
    border-right: 0;
  }

  .visual-slide {
    aspect-ratio: 4/3;
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flat-slider__track {
    transition: none !important;
  }

  .partner-marquee__track {
    animation: none;
  }
}

/* Home quick nav — onder hero, één rij icoon links */
.home-quick-nav {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.home-quick-nav__inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
}

.home-quick-nav__item {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.75rem 0.85rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 2px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.home-quick-nav__item.btn--icon {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: left;
}

.home-quick-nav__item .rv-icon {
  flex-shrink: 0;
}

.home-quick-nav__item:last-child {
  border-right: 0;
}

.home-quick-nav__item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.home-quick-nav__item--primary {
  background: transparent;
  color: #fff;
  border-bottom-color: var(--color-red);
}

.home-quick-nav__item--primary:hover {
  background: rgba(174, 28, 40, 0.12);
  color: #fff;
  border-bottom-color: #fff;
}

/* Stats strip */
.stats-strip {
  background: transparent;
  border-top: 1px solid var(--line);
  padding-block: clamp(1.5rem, 3.5vw, 2rem);
}

.stats-strip__grid {
  display: grid;
  gap: 0;
  background: transparent;
  border: 0;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stats-strip__item {
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 2.5vw, 1.5rem);
  background: transparent;
  border-left: 1px solid var(--line);
}

.stats-strip__item:first-child {
  border-left: 0;
  padding-left: 0;
}

@media (max-width: 639px) {
  .stats-strip__grid {
    grid-template-columns: 1fr;
  }

  .stats-strip__item {
    border-left: 0;
    padding-left: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }

  .stats-strip__item:first-child {
    padding-top: 0;
    border-top: 0;
  }
}

.stats-strip__value {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-blue);
}

.stats-strip__label {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Partner marquee */
.partner-marquee {
  overflow: hidden;
  margin-bottom: 2rem;
  border: 0;
  background: transparent;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  padding: 1.25rem 0;
  animation: partner-marquee 45s linear infinite;
}

.partner-marquee__item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
}

.partner-marquee__item .partner-tile__logo {
  max-width: none;
}

.partner-marquee:hover .partner-marquee__track {
  animation-play-state: paused;
}

@keyframes partner-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Honeypot (spam) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Slider slide counter */
.flat-slider__count {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  min-width: 3.75rem;
  padding-inline: 0.35rem;
  text-align: center;
}

.flat-slider__bar--overlay .flat-slider__count {
  color: rgba(255, 255, 255, 0.75);
}

/* Wizard progress */
.wizard-progress {
  height: 3px;
  background: var(--line);
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.wizard-progress__fill {
  display: block;
  height: 100%;
  background: var(--color-red);
  transition: width 0.35s var(--ease-smooth);
}

/* Contact product picks with thumbs */
.product-picks--visual {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  border: 0;
}

.product-picks--visual .product-pick {
  border: 1px solid var(--line);
  padding: 0.75rem;
  margin: 0;
  align-items: center;
}

.product-pick__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.product-pick__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-pick__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.product-pick__meta,
.product-pick__cat {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}

.product-pick__cat {
  font-weight: 600;
  color: var(--color-blue);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-pick:has(input:checked) {
  background: rgba(33, 70, 139, 0.06);
  box-shadow: inset 3px 0 0 var(--color-blue);
}

.flat-slider--wpc {
  margin-bottom: 0;
}

.product-card--slide .fence-slide__body p {
  -webkit-line-clamp: 4;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: #fff;
  margin: 0 0 0.5rem;
}

/* Sticky product category nav */
.category-block {
  scroll-margin-top: calc(var(--header-sticky-h) + 2.85rem);
}

.product-jump-nav--sticky {
  position: relative;
  top: auto;
  z-index: 45;
  margin-bottom: 1.75rem;
  padding: 0.5rem 0;
  transition: box-shadow var(--t-fast), background var(--t-fast);
}

.product-jump-nav--sticky.product-jump-nav--can-stick {
  position: sticky;
  top: var(--header-sticky-h);
}

/* Vastgeplakt: zelfde witte balk als header, tabs zonder losse pillen */
.product-jump-nav--sticky.product-jump-nav--can-stick.is-stuck {
  margin-bottom: 1.75rem;
  padding: 0.35rem 0 0.5rem;
  gap: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.product-jump-nav--sticky.product-jump-nav--can-stick.is-stuck::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  top: 0;
  bottom: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  z-index: -1;
}

.product-jump-nav--sticky.product-jump-nav--can-stick.is-stuck .product-jump-nav__link {
  background: transparent;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 0.55rem 1rem 0.45rem;
}

.product-jump-nav--sticky.product-jump-nav--can-stick.is-stuck .product-jump-nav__link:hover {
  background: rgba(33, 70, 139, 0.06);
  color: var(--color-blue);
  border-bottom-color: var(--color-blue);
}

.product-jump-nav--sticky.product-jump-nav--can-stick.is-stuck .product-jump-nav__link.is-active {
  background: var(--color-blue);
  color: #fff;
  border-bottom-color: var(--color-red);
}

.product-jump-nav--sticky.product-jump-nav--can-stick.is-stuck .product-jump-nav__link.is-active:hover {
  background: var(--color-blue);
  color: #fff;
}

/* Gallery lightbox + hint */
.gallery-item__zoom {
  position: relative;
}

.gallery-item__zoom::after {
  content: "+";
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 9, 12, 0.65);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.gallery-item:hover .gallery-item__zoom::after,
.project-slide:hover .gallery-item__zoom::after {
  opacity: 1;
}

.project-slide .gallery-item__zoom {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.project-slide .gallery-item__zoom img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: unset;
  object-fit: cover;
}

/* Lightbox */
.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 12, 0.92);
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1100px);
  max-height: 92vh;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
}

.lightbox__figure {
  margin: 0;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lightbox__img {
  max-width: 100%;
  max-height: min(72vh, 720px);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox__cap {
  margin: 0.75rem 0 0;
  color: #fff;
  text-align: center;
}

.lightbox__title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.lightbox__text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.lightbox__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.lightbox__arrow {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 9, 12, 0.5);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}

.lightbox__arrow:hover,
.lightbox__close:hover {
  border-color: #fff;
  background: var(--color-blue);
}

@media (max-width: 640px) {
  .lightbox__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 3rem 0.75rem 1rem;
  }

  .lightbox__arrow--prev,
  .lightbox__arrow--next {
    position: absolute;
    bottom: 1rem;
  }

  .lightbox__arrow--prev {
    left: 0.75rem;
  }

  .lightbox__arrow--next {
    right: 0.75rem;
  }

  .lightbox__close {
    top: 0.5rem;
    right: 0.75rem;
  }
}

/* Page loader (flat circle) */
.rv-page-loader {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  place-items: center;
  background: rgba(240, 241, 238, 0.94);
  pointer-events: none;
  visibility: hidden;
}

.rv-page-loader.is-active {
  display: grid;
  pointer-events: auto;
  visibility: visible;
}

.rv-page-loader[hidden] {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.rv-page-loader__circle {
  width: 2.75rem;
  height: 2.75rem;
  border: 3px solid var(--line);
  border-top-color: var(--color-blue);
  border-radius: 50%;
  animation: rv-spin 0.75s linear infinite;
}

@keyframes rv-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv-page-loader__circle {
    animation: none;
    border-top-color: var(--color-red);
  }
}

/* Cookiebanner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11000;
  padding: 0 0 max(0.85rem, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(transparent, rgba(240, 241, 238, 0.92) 28%);
  pointer-events: none;
}

.cookie-banner__inner {
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(8, 9, 12, 0.12);
}

.cookie-banner__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.cookie-banner__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}

.cookie-banner__desc a {
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

body.cookie-banner-open .bottom-dock {
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

/* Juridische pagina's */
.page-hero--legal {
  padding-block: clamp(2.5rem, 8vw, 4rem);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero--legal .section-header__eyebrow {
  margin-bottom: 0.75rem;
}

.page-hero--legal h1 {
  margin: 0 0 1rem;
}

.page-hero--legal .lead {
  margin: 0;
  max-width: 42ch;
}

.section--legal {
  padding-block: clamp(2rem, 5vh, 3.5rem);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.35rem;
  margin: 0 0 2rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.legal-nav__link {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 0.15rem 0.45rem;
  min-height: 0;
}

.legal-nav__link[aria-current="page"] {
  border-bottom-color: var(--color-blue);
  color: var(--color-blue);
}

.legal-prose {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
}

.legal-prose h2 {
  margin: 2rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.legal-prose p,
.legal-prose ul {
  margin: 0 0 1rem;
  color: var(--muted);
}

.legal-prose ul {
  padding-left: 1.25rem;
}

.legal-prose li {
  margin-bottom: 0.45rem;
}

.legal-prose a {
  font-weight: 600;
}

.legal-prose code {
  font-size: 0.88em;
  padding: 0.1rem 0.35rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.legal-prose__meta {
  margin-top: 2rem !important;
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-prose__back {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

/* Kwaliteit & productie (NL, Uw, garantie, merken) */
.quality-trust__grid {
  list-style: none;
  margin: clamp(0.5rem, 2vw, 1rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.15rem, 3vw, 1.65rem);
}

@media (min-width: 640px) {
  .quality-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .quality-trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quality-trust__card {
  padding: 1.15rem 0 1.35rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  height: 100%;
}

@media (min-width: 960px) {
  .quality-trust__card {
    padding-inline: 0.75rem;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .quality-trust__card:last-child {
    border-right: 0;
  }
}

.quality-trust__card h3 {
  margin: 0.5rem 0 0.35rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.quality-trust__card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.quality-trust__icon {
  display: inline-flex;
  color: var(--color-blue);
}

.wizard-photo-hint {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.wizard-photo-preview {
  margin-top: 0.75rem;
  max-width: 280px;
  border: 1px solid var(--line);
}

.wizard-photo-preview img {
  display: block;
  width: 100%;
  height: auto;
}
