
:root {
  /* Palet afgestemd op Fineo-logo: navy-slate + raspberry */
  --cream:    #F7F5F2;
  --cream-2:  #EFECE6;
  --cream-3:  #E6E2DA;
  --ink:      #3D4B5C;       /* navy-slate uit het logo */
  --ink-deep: #2A3543;       /* donkere variant voor footer / hero overlay */
  --ink-2:    #5A6573;
  --ink-3:    #7A8493;
  --bronze:   #C8324E;       /* raspberry uit het logo */
  --bronze-d: #A82740;       /* donkere raspberry voor hover */
  --sage:     #8A9A86;
  --line:     #D8D4CC;
  --line-soft:#E8E4DC;

  --serif: "Ubuntu", "Helvetica Neue", sans-serif;
  --sans:  "Ubuntu", "Helvetica Neue", system-ui, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { width: 100%; max-width: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }
::selection { background: var(--bronze); color: var(--cream); }
h1,h2,h3,h4 { margin: 0; }

/* ─────────── TYPE ─────────── */
.serif { font-family: var(--serif); font-weight: 400; }
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--bronze); font-weight: 400; }
.h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h1 em { font-style: italic; color: var(--bronze); }
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--bronze); }
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
}
.label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.label-bronze { color: var(--bronze); }
.micro { font-size: 13px; color: var(--ink-2); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 10vw, 140px) 0; }

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover { background: var(--bronze-d); border-color: var(--bronze-d); transform: translateY(-1px); }
.btn:hover .arr { transform: translateX(4px); }

.btn-bronze {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--cream);
}
.btn-bronze:hover { background: var(--bronze-d); border-color: var(--bronze-d); }

.btn-out {
  background: transparent;
  color: var(--ink);
}
.btn-out:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-out.light { color: var(--cream); border-color: rgba(247,245,242,0.5); }
.btn-out.light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: color .25s ease;
}
.btn-text:hover { color: var(--bronze); }
.btn-text .arr { transition: transform .25s ease; }
.btn-text:hover .arr { transform: translateX(3px); }

/* ─────────── TOP UTILITY BAR ─────────── */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247,245,242,0.85);
  white-space: nowrap;
}
.topbar-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--bronze);
}
.topbar-stars span { font-size: 12px; line-height: 1; }
.topbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247,245,242,0.85);
  transition: color .25s ease;
  font-size: 13px;
  white-space: nowrap;
}
.topbar-links a:hover { color: var(--bronze); }
.topbar-links a.phone {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--cream);
  font-weight: 500;
}
.topbar-pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--bronze);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(176,139,87,0.6);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(176,139,87,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(176,139,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(176,139,87,0); }
}
@media (max-width: 1100px) {
  .topbar-rating { display: none; }
  .topbar-links { gap: 16px; }
  .topbar-links a:not(.phone):not(:nth-last-child(2)) { display: none; }
}
@media (max-width: 540px) {
  .topbar-links a:not(.phone) { display: none; }
  .topbar-inner { justify-content: flex-end; }
}

/* ─────────── MAIN NAV ─────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.brand-name b { color: var(--bronze); font-weight: inherit; }
.brand {
  /* container override */
}
.brand img { transition: transform .25s ease; }
.brand:hover img { transform: scale(1.02); }
.brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
  padding-left: 12px;
  border-left: 1px solid var(--line);
  align-self: center;
  line-height: 1.2;
}
@media (max-width: 720px) {
  .brand { flex-direction: column; align-items: flex-start; gap: 3px; }
  .brand-sub {
    display: block;
    padding-left: 0;
    border-left: 0;
    align-self: flex-start;
    font-size: 11px;
    letter-spacing: 0.01em;
  }
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-link {
  position: relative;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .25s ease;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--bronze); }
.nav-link .caret {
  width: 6px; height: 6px;
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
}
.nav-item { position: relative; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item:hover .nav-link .caret { transform: rotate(-135deg) translateX(2px); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}
.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 4px;
  transition: background .2s ease;
}
.nav-dropdown a:hover { background: var(--cream-2); }
.nav-dropdown a strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
  color: var(--ink);
}
.nav-dropdown a span {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
}
.nav-cta { padding: 12px 22px; font-size: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
}
.mob-nav {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 70;
  display: none;
  flex-direction: column;
  padding: 150px var(--gutter) calc(96px + env(safe-area-inset-bottom, 0px));
  gap: 0;
  overflow-y: auto;
}
body.menu-open .mob-nav { display: flex; }
.mob-nav a {
  font-family: var(--serif);
  font-size: 28px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mob-nav a:hover { color: var(--bronze); }
.mob-nav .btn { margin-top: 32px; align-self: flex-start; }

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--cream-3);
}
.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,20,20,0.20) 0%, transparent 35%, transparent 50%, rgba(20,20,20,0.60) 100%),
    linear-gradient(90deg, rgba(20,20,20,0.45) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px var(--gutter) clamp(48px, 8vw, 96px);
  width: 100%;
  color: var(--cream);
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
  color: rgba(247,245,242,0.85);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--bronze); }
.hero h1 { color: var(--cream); margin-bottom: 32px; max-width: 14ch; }
.hero h1 em { color: var(--bronze); font-style: italic; }
.hero-usps {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
}
.hero-usps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(247,245,242,0.95);
  font-size: 16px;
  font-weight: 400;
}
.hero-usps li svg {
  width: 18px;
  height: 18px;
  flex: none;
}
.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-cta-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(247,245,242,0.85);
}
.hero-rating {
  position: absolute;
  top: 32px;
  right: var(--gutter);
  z-index: 2;
  background: rgba(247,245,242,0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 4px;
}
.hero-rating-num {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
}
.hero-rating-num span { font-size: 18px; color: var(--ink-2); }
.hero-rating-stars { color: var(--bronze); font-size: 13px; line-height: 1; display: flex; gap: 1px; }
.hero-rating-meta { font-size: 11px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.12em; }
@media (max-width: 720px) {
  .hero-rating { top: 16px; right: 16px; padding: 10px 14px; }
  .hero-rating-num { font-size: 22px; }
  .hero-rating-meta { font-size: 10px; }
}

/* ─────────── SERVICE SELECTOR — "Waar ben je naar op zoek?" ─────────── */
.services-section { padding: clamp(64px, 9vw, 120px) 0; }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(48px, 6vw, 72px);
  align-items: end;
}
.services-head .label { display: inline-block; margin-bottom: 18px; }
@media (max-width: 820px) { .services-head { grid-template-columns: 1fr; gap: 20px; } }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.service-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--cream);
  transition: transform .5s var(--ease);
}
.service-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform .8s var(--ease);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.1) 0%, rgba(20,20,20,0.4) 50%, rgba(20,20,20,0.85) 100%);
  z-index: 1;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-num {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 18px;
  margin-bottom: 12px;
}
.service-card h3 {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 14px;
  text-wrap: balance;
}
.service-card p {
  position: relative;
  z-index: 2;
  color: rgba(247,245,242,0.85);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 24px;
  max-width: 28ch;
}
.service-card-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(247,245,242,0.4);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: color .25s ease, border-color .25s ease;
}
.service-card:hover .service-card-cta { color: var(--bronze); border-color: var(--bronze); }
@media (max-width: 900px) {
  .services { grid-template-columns: 1fr; }
}

/* ─────────── PROCESS — 4 steps ─────────── */
.process-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-2);
}
.process-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 96px);
  margin-bottom: clamp(56px, 8vw, 96px);
  align-items: end;
}
.process-intro-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.process-intro-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.process-intro-rating .num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--bronze);
  line-height: 1;
  font-weight: 500;
}
.process-intro-rating .num span { font-size: 22px; color: var(--ink-2); }
.process-intro-rating .meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.3;
}
.process-intro-rating .meta strong { display: block; color: var(--ink); font-weight: 500; }
@media (max-width: 820px) { .process-intro { grid-template-columns: 1fr; gap: 24px; } }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
.step {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step-img {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-3);
  position: relative;
}
.step-img::before {
  content: "";
  display: block;
  padding-top: 125%;
}
.step-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.step:hover .step-img img { transform: scale(1.03); }
.step-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(20,20,20,0.25) 100%);
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 18px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.step p { color: var(--ink-2); font-size: 14px; line-height: 1.55; margin: 0; }
@media (max-width: 980px) { .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }

/* ─────────── WHY US (3 features) ─────────── */
.why-section { padding: clamp(80px, 10vw, 140px) 0; }
.why-head { margin-bottom: clamp(48px, 6vw, 72px); }
.why-head .lede { margin-top: 24px; max-width: 64ch; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-cell {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-cell:nth-child(2) { padding-left: 32px; }
.why-cell:last-child { border-right: 0; padding-left: 32px; padding-right: 0; }
.why-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.why-cell h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
}
.why-cell p { color: var(--ink-2); font-size: 14px; margin: 0; line-height: 1.55; }
@media (max-width: 820px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-cell { padding: 32px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .why-cell:last-child { border-bottom: 0; }
}

/* ─────────── TESTIMONIALS ─────────── */
.testi-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.testi-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 72px);
  align-items: end;
}
.testi-rating {
  text-align: right;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-rating-num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--bronze);
  line-height: 1;
  font-weight: 500;
}
.testi-rating-num span { font-size: 28px; color: var(--ink-2); }
.testi-rating-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  font-weight: 500;
  text-align: left;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.testi {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-stars { color: var(--bronze); font-size: 13px; letter-spacing: 2px; }
.testi-body {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.testi-attr {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
  color: var(--ink-2);
}
.testi-attr strong { color: var(--ink); font-weight: 500; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 820px) {
  .testi-head { grid-template-columns: 1fr; }
  .testi-rating { text-align: left; }
}

/* ─────────── PRODUCT COMPARE (Uitvoeringen) — herbouwd 2026-07-10 ─────────── */
.products-section { padding: clamp(80px, 10vw, 140px) 0; }
.products-head { margin-bottom: clamp(44px, 6vw, 72px); max-width: 680px; }
.products-head .lede { margin-top: 24px; }

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.product {
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-width: 0;                 /* voorkomt grid-blowout op smalle schermen */
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.product:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(26,31,38,.08); }
.product.featured {
  border-color: var(--bronze);
  background: linear-gradient(180deg, color-mix(in srgb, var(--bronze) 6%, var(--cream)) 0%, var(--cream) 55%);
}
@media (hover: none) { .product:hover { transform: none; box-shadow: none; } }

.product-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: var(--bronze);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 11px;
  font-weight: 500;
}

/* Beeld — vaste 4:3 verhouding.
   aspect-ratio staat OP het <img> (een replaced element), NIET op een flex-item
   container met een ::before-hack. Precies die combinatie klapte vroeger op iOS
   Safari uit. aspect-ratio op het beeld zelf wordt door alle iOS ≥15 correct
   ondersteund en kan nooit verticaal exploderen. flex:0 0 auto houdt het beeld
   bovendien op zijn eigen hoogte binnen de flex-kolom. */
.product-img {
  margin: 0;
  display: block;
  overflow: hidden;
  background: var(--cream-2);
  flex: 0 0 auto;
}
.product-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-body {
  padding: clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}
.product-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.product-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 6px;
}
.product-specs {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 13px;
}
.product-specs li span {
  font-family: var(--sans);
  color: var(--ink-2);
  letter-spacing: 0.04em;
  min-width: 0;
}
.product-specs li strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  text-align: right;
}
.product-specs li.highlight strong { color: var(--bronze); }
.product-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  transition: color .25s ease, border-color .25s ease;
}
.product-cta:hover { color: var(--bronze); border-color: var(--bronze); }

/* Twee kolommen op tablet, één kolom op telefoon */
@media (max-width: 980px) { .products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .products { grid-template-columns: 1fr; } }

/* ─────────── REGIO / AVAILABILITY ─────────── */
.regio-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.regio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.regio-body { display: flex; flex-direction: column; gap: 24px; }
.regio-body h2 { color: var(--cream); }
.regio-body .label { color: var(--bronze); }
.regio-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.regio-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: rgba(247,245,242,0.92);
}
.regio-list li svg { width: 18px; height: 18px; flex: none; color: var(--bronze); }
.regio-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(247,245,242,0.15);
  margin-top: 16px;
}
.regio-rating .num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--bronze);
  font-weight: 500;
  line-height: 1;
}
.regio-rating .num span { color: rgba(247,245,242,0.6); font-size: 20px; }
.regio-rating .meta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.7);
  line-height: 1.3;
}
.regio-rating .meta strong { color: var(--cream); display: block; }

.regio-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: #2a2622;
}
.regio-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.regio-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,20,20,0.5) 100%);
}
@media (max-width: 900px) {
  .regio-grid { grid-template-columns: 1fr; }
}

/* ─────────── ARTICLES (Kenniscentrum) ─────────── */
.articles-section { padding: clamp(80px, 10vw, 140px) 0; }
.articles-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 72px);
  align-items: end;
}
.articles-head .lede { margin-top: 20px; max-width: 50ch; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.article-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
.article-img {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}
.article-img::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.article-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.article-card:hover .article-img img { transform: scale(1.04); }
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.article-meta .cat { color: var(--bronze); }
.article-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.article-card p { color: var(--ink-2); font-size: 14px; margin: 0; }
.article-card .btn-text { align-self: flex-start; margin-top: 4px; }
@media (max-width: 900px) {
  .articles-head { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
}

/* ─────────── FAQ ─────────── */
.faq-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 24px;
  align-items: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  cursor: pointer;
}
.faq-q:hover { color: var(--bronze); }
.faq-icon {
  position: relative;
  width: 16px; height: 16px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 16px; height: 1.2px;
  transition: transform .3s ease;
}
.faq-icon::after { transform: translateY(-50%) rotate(90deg); }
.faq-item.open .faq-icon::after { transform: translateY(-50%) rotate(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding: 0 0 24px;
  max-width: 64ch;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 400px; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ─────────── CONTACT FORM ─────────── */
.form-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.form-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 110px;
}
.form-bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.form-bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  color: var(--ink-2);
}
.form-bullets li svg { width: 22px; height: 22px; color: var(--bronze); margin-top: 2px; }
.form-bullets strong { display: block; color: var(--ink); font-weight: 500; font-size: 15px; margin-bottom: 2px; }
.form-quick {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-quick a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink);
  transition: color .2s ease;
}
.form-quick a:hover { color: var(--bronze); }
.form-quick a svg { width: 20px; height: 20px; color: var(--bronze); flex: none; }
.form-quick a small { color: var(--ink-2); margin-left: auto; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.field label .req { color: var(--bronze); margin-left: 4px; }
.field input[type="text"],
.field input[type="password"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field textarea,
.field select {
  appearance: none;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  width: 100%;
  outline: none;
  letter-spacing: -0.005em;
  transition: border-color .25s ease;
}
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  resize: vertical;
  min-height: 96px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-3); opacity: 0.7; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--bronze); }
.field-error {
  color: var(--bronze);
  font-size: 12px;
  font-family: var(--sans);
  display: none;
  margin-top: 4px;
}
.field.invalid input,
.field.invalid textarea { border-color: var(--bronze); }
.field.invalid .field-error { display: block; }

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.radio-card {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  position: relative;
  text-transform: none;
  letter-spacing: -0.005em;
  font-weight: 400;
}
.radio-card small {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card:hover { border-color: var(--ink); }
.radio-card.selected { border-color: var(--bronze); background: color-mix(in srgb, var(--bronze) 4%, var(--cream)); }
.radio-card.selected::after {
  content: "";
  position: absolute;
  top: 14px; right: 14px;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--bronze);
}
@media (max-width: 600px) {
  .radio-grid { grid-template-columns: 1fr; }
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.form-fineprint {
  font-size: 12px;
  color: var(--ink-2);
  font-family: var(--serif);
  font-style: italic;
  max-width: 36ch;
}
.form-fineprint a { color: var(--ink); border-bottom: 1px solid var(--line); }
.form-fineprint a:hover { color: var(--bronze); border-color: var(--bronze); }

.form-success {
  display: none;
  padding: 48px 32px;
  text-align: center;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bronze) 6%, var(--cream)) 0%, var(--cream) 100%);
  border: 1px solid var(--bronze);
}
.form-success.show { display: block; animation: successIn .6s var(--ease); }
@keyframes successIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.form-success h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--ink);
}
.form-success p { color: var(--ink-2); max-width: 42ch; margin: 0 auto; }
.form-success svg {
  width: 48px; height: 48px;
  color: var(--bronze);
  margin: 0 auto 20px;
  display: block;
}

@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-side { position: static; }
}

/* ─────────── CONTACT FORM END ─────────── */
.closing-section {
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}
.closing-section .h1 { max-width: 18ch; margin: 16px auto 24px; }
.closing-section .lede { margin: 0 auto 40px; }
.closing-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.closing-contact {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.closing-contact div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  text-align: left;
}
.closing-contact .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.closing-contact .val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.closing-contact .val:hover { color: var(--bronze); }
.closing-contact .sub { font-size: 13px; color: var(--ink-2); }

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(64px, 8vw, 96px) 0 32px;
}
.footer a:hover { color: var(--bronze); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,245,242,0.12);
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: rgba(247,245,242,0.8); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-name b { color: var(--bronze); }
.footer-brand p {
  color: rgba(247,245,242,0.7);
  font-size: 14px;
  max-width: 36ch;
  margin: 16px 0 0;
}
.footer-certs {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer-dealer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 9px 16px;
  border: 1px solid var(--bronze);
  border-radius: 2px;
  background: rgba(200,50,78,0.12);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #F7F5F2;
}
.footer-dealer strong { font-weight: 600; }
.footer-dealer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bronze);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--sans);
}
.footer-cert {
  border: 1px solid rgba(247,245,242,0.2);
  padding: 6px 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: rgba(247,245,242,0.7);
}
.footer-base {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.5);
  font-weight: 500;
}
.footer-base a { color: rgba(247,245,242,0.6); }
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-base { flex-direction: column; gap: 12px; }
}

/* ─────────── REVEAL ─────────── */
/* Inhoud is standaard zichtbaar; pas verborgen als JS de animatie kan uitvoeren
   (html.js-reveal). Faalt het script, dan blijft alles gewoon leesbaar. */
/* Scroll-reveal UITGESCHAKELD — alle content is altijd zichtbaar.
   Onderstaande regels forceren opacity 1 / geen verschuiving, ongeacht JS. */
.reveal,
html.js-reveal .reveal,
.reveal-stagger > *,
html.js-reveal .reveal-stagger > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none;
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 270ms; }

/* ─────────── WHATSAPP FAB ─────────── */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  width: 56px; height: 56px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform .25s ease, background .25s ease;
  cursor: pointer;
}
.fab:hover { background: var(--bronze); transform: translateY(-2px); }
.fab svg { width: 26px; height: 26px; }


/* ─────────── SUBPAGE HEADER ─────────── */
.subhero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  background: var(--cream-2);
  border-bottom: 1px solid var(--line-soft);
}
.subhero-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.subhero-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.subhero-meta nav {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.subhero-meta nav a:hover { color: var(--bronze); }
.subhero-meta nav .sep { color: var(--ink-3); }
.subhero h1 { margin-top: 6px; }
.subhero-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 8px;
}
.subhero-aside .lede { max-width: 50ch; }
@media (max-width: 820px) { .subhero-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ─────────── PROSE — article + legal pages ─────────── */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}
.prose > * + * { margin-top: 22px; }
.prose h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-top: 64px;
  margin-bottom: 0;
  text-wrap: balance;
}
.prose h2 em { font-style: italic; color: var(--bronze); }
.prose h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: -4px;
  line-height: 1.2;
}
.prose p { color: var(--ink); max-width: 64ch; }
.prose p.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 36ch;
  margin-top: 0;
  margin-bottom: 40px;
}
.prose a { color: var(--bronze); border-bottom: 1px solid currentColor; }
.prose a:hover { color: var(--bronze-d); }
.prose strong { font-weight: 600; }
.prose ul, .prose ol {
  padding-left: 1.2em;
  color: var(--ink);
}
.prose ul li, .prose ol li { margin: 8px 0; line-height: 1.6; }
.prose ul li::marker { color: var(--bronze); }
.prose figure { margin: 40px 0; }
.prose figure img {
  width: 100%;
  height: auto;
  display: block;
}
.prose figure figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  text-align: center;
  margin-top: 12px;
}
.prose blockquote {
  margin: 40px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--bronze);
  background: var(--cream-2);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  font-style: italic;
  color: var(--ink);
}
.prose hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 48px 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 32px 0;
}
.prose table th, .prose table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.prose table th {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
}
.prose table tr:hover td { background: var(--cream-2); }

.article-body { padding: clamp(64px, 9vw, 120px) 0; }
.article-body .meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  max-width: 720px;
  margin: 0 auto 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.article-body .meta .cat { color: var(--bronze); }

/* ─────────── PRODUCT DETAIL ─────────── */
.product-detail {
  padding: clamp(56px, 9vw, 100px) 0 clamp(64px, 9vw, 120px);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.product-detail-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-body { display: flex; flex-direction: column; gap: 24px; }
.product-detail-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-2);
}
.product-detail-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.product-detail-stats > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.product-detail-stats > div:nth-child(odd) { padding-right: 20px; border-right: 1px solid var(--line); }
.product-detail-stats > div:nth-child(even) { padding-left: 20px; }
.product-detail-stats .lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}
.product-detail-stats .val {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.product-detail-stats .val em { font-style: italic; color: var(--bronze); }
@media (max-width: 820px) { .product-detail-grid { grid-template-columns: 1fr; } }

/* ─────────── OVERVIEW GRID — used for /uitvoeringen and /kenniscentrum ─────────── */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
@media (max-width: 900px) { .overview-grid { grid-template-columns: 1fr; } }

/* ─────────── COOKIE BANNER ─────────── */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 20, 20, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: cookieFadeIn .4s var(--ease);
}
.cookie-overlay.show { display: flex; }
@keyframes cookieFadeIn { from { opacity: 0; } to { opacity: 1; } }

.cookie-banner {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(32px, 4vw, 48px);
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  animation: cookieSlideIn .5s var(--ease);
  position: relative;
}
@keyframes cookieSlideIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }

.cookie-banner .label { display: inline-block; margin-bottom: 16px; }
.cookie-banner h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.cookie-banner h3 em { font-style: italic; color: var(--bronze); }
.cookie-banner p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 44ch;
}
.cookie-banner a { color: var(--bronze); border-bottom: 1px solid currentColor; }
.cookie-banner a:hover { color: var(--bronze-d); }
.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-btn {
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--bronze);
  background: var(--bronze);
  color: var(--cream);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
/* Primaire keuze: 'Accepteer alle' — groot en geaccentueerd */
.cookie-btn.accept,
.cookie-btn[data-accept] {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--cream);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--bronze) 40%, transparent);
}
.cookie-btn.accept:hover,
.cookie-btn[data-accept]:hover {
  background: var(--bronze-d);
  border-color: var(--bronze-d);
  color: var(--cream);
  transform: translateY(-1px);
}
.cookie-btn[data-accept]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--bronze) 55%, transparent);
  outline-offset: 3px;
}
/* Secundaire keuze: 'Alleen functioneel' — rustig tekstlinkje */
.cookie-btn[data-decline] {
  padding: 8px 2px;
  border: 0;
  background: none;
  box-shadow: none;
  color: var(--ink-2);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-btn[data-decline]:hover {
  background: none;
  color: var(--ink);
  transform: none;
}
@media (max-width: 480px) {
  .cookie-banner-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie-btn[data-accept] { width: 100%; }
  .cookie-btn[data-decline] { width: 100%; text-align: center; }
}

/* ─────────── 404 ─────────── */
.notfound {
  min-height: calc(100vh - 240px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px var(--gutter);
}
.notfound .code {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 1;
  color: var(--bronze);
  margin-bottom: 24px;
}
.notfound h1 { max-width: 18ch; margin: 0 auto 20px; }
.notfound p { max-width: 44ch; margin: 0 auto 32px; }


/* ─────────── PRIJSCALCULATOR ─────────── */
.calc-page { padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 10vw, 120px); }
.calc-shell {
  max-width: 920px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}
.calc-header {
  padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}
.calc-progress-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.calc-progress-wrap strong { color: var(--bronze); font-weight: 600; }
.calc-progress-track {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.calc-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--bronze);
  width: 0%;
  transition: width .6s var(--ease);
}
.calc-step-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  text-wrap: balance;
}
.calc-step-title em { font-style: italic; color: var(--bronze); }
.calc-step-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  margin: 0;
}

.calc-body { padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 56px); }
.calc-step-pane { display: none; animation: stepFade .4s var(--ease); }
.calc-step-pane.active { display: block; }
@keyframes stepFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.calc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 560px) { .calc-cards { grid-template-columns: 1fr; } }

.calc-card {
  border: 1px solid var(--line);
  padding: 22px 24px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
  background: var(--cream);
  position: relative;
}
.calc-card:hover { border-color: var(--ink); transform: translateY(-1px); }
.calc-card.selected {
  border-color: var(--bronze);
  background: color-mix(in srgb, var(--bronze) 5%, var(--cream));
}
.calc-card.selected::after {
  content: "";
  position: absolute;
  top: 18px; right: 18px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--bronze);
}
.calc-card h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.calc-card p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

.calc-counter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.calc-counter:last-of-type { border-bottom: 0; }
.calc-counter-label { display: flex; flex-direction: column; gap: 4px; }
.calc-counter-label strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.005em;
}
.calc-counter-label span {
  font-size: 13px;
  color: var(--ink-2);
}
.calc-counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.calc-counter-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.calc-counter-btn:hover { background: var(--ink); color: var(--cream); }
.calc-counter-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.calc-counter-val {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  min-width: 60px;
  text-align: center;
  color: var(--ink);
}

.calc-input-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 560px) { .calc-input-wrap { grid-template-columns: 1fr; } }

.calc-result {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(32px, 4vw, 48px);
  margin-top: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.calc-result-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.calc-result-range {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--cream);
}
.calc-result-range em { font-style: italic; color: var(--bronze); }
.calc-result-meta {
  margin-top: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(247,245,242,0.7);
}
@media (max-width: 720px) { .calc-result { grid-template-columns: 1fr; } }

.calc-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(28px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--cream-2);
  gap: 16px;
  flex-wrap: wrap;
}
.calc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-2);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color .25s ease;
}
.calc-back:hover { color: var(--ink); }
.calc-back:disabled { opacity: 0; pointer-events: none; }

.calc-confirm {
  display: none;
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  background: var(--cream);
}
.calc-confirm.show { display: block; animation: stepFade .5s var(--ease); }
.calc-confirm-icon {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  color: var(--bronze);
}
.calc-confirm h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.1;
}
.calc-confirm h2 em { font-style: italic; color: var(--bronze); }
.calc-confirm p {
  max-width: 48ch;
  margin: 0 auto 24px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
}
.calc-confirm-summary {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 6px 24px;
  text-align: left;
  margin: 32px auto 0;
  padding: 20px 28px;
  border: 1px solid var(--line);
  font-size: 14px;
}
.calc-confirm-summary dt {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  align-self: center;
}
.calc-confirm-summary dd {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 17px;
}

/* ─────────── PROCESS TIMELINE ─────────── */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: clamp(40px, 6vw, 64px) 0;
}
.process-step {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.process-step:last-child { border-right: 0; }
.process-step-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 36px;
  line-height: 1;
}
.process-step h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.005em;
  margin: 0;
}
.process-step p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}
.process-step-time {
  margin-top: auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
  padding-top: 12px;
}
@media (max-width: 980px) {
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid var(--line); }
  .process-step:nth-child(odd) { border-right: 1px solid var(--line); }
  .process-step:nth-child(even) { border-right: 0; }
}
@media (max-width: 600px) {
  .process-timeline { grid-template-columns: 1fr; }
  .process-step { border-right: 0 !important; }
}

/* ─────────── CITY LANDING ─────────── */
.city-hero {
  padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 6vw, 72px);
  background: var(--cream-2);
  border-bottom: 1px solid var(--line-soft);
}
.city-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.city-hero-img {
  aspect-ratio: 4/3;
  background: var(--cream-3);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.city-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.city-hero-img-cap {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(247,245,242,0.92);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
  padding: 6px 14px;
}
@media (max-width: 900px) { .city-hero-grid { grid-template-columns: 1fr; } }

.city-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: clamp(40px, 6vw, 80px) 0;
}
.city-stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.city-stat:last-child { border-right: 0; }
.city-stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}
.city-stat-num em { font-style: italic; color: var(--bronze); }
.city-stat-lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
@media (max-width: 820px) { .city-stats { grid-template-columns: 1fr 1fr; }
  .city-stat:nth-child(2) { border-right: 0; }
  .city-stat:nth-child(1), .city-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

.city-neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.city-neighborhoods span {
  font-family: var(--sans);
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  color: var(--ink-2);
}

.city-cta {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 8vw, 96px) 0;
  margin-top: clamp(56px, 8vw, 96px);
}
.city-cta h2 { color: var(--cream); }
.city-cta h2 em { font-style: italic; color: var(--bronze); }
.city-cta .lede { color: rgba(247,245,242,0.75); }

/* ─────────── FAQ PAGE ─────────── */
.faq-page-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}
.faq-cat-head {
  padding: 40px 0 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}

/* ─────────── CALLOUT BOX ─────────── */
.callout {
  background: var(--cream-2);
  border-left: 3px solid var(--bronze);
  padding: 24px 28px;
  margin: 32px 0;
}
.callout h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.callout p { margin: 0; color: var(--ink-2); }

/* ─────────── PRODUCT SPEC SHEET (expanded detail page) ─────────── */
.spec-sheet {
  margin: clamp(40px, 6vw, 72px) 0;
}
.spec-sheet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.spec-sheet-grid > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.spec-sheet-grid > div:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.spec-sheet-grid > div:nth-child(even) { padding-left: 24px; }
.spec-sheet-grid dt {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.spec-sheet-grid dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  text-align: right;
}
.spec-sheet-grid dd em { font-style: italic; color: var(--bronze); font-weight: 500; }
@media (max-width: 720px) {
  .spec-sheet-grid { grid-template-columns: 1fr; }
  .spec-sheet-grid > div:nth-child(odd) { padding-right: 0; border-right: 0; }
  .spec-sheet-grid > div:nth-child(even) { padding-left: 0; }
}

.download-tile {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: border-color .25s ease, transform .25s ease;
  margin-bottom: 12px;
}
.download-tile:hover { border-color: var(--ink); transform: translateY(-1px); }
.download-tile-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--bronze);
  display: grid;
  place-items: center;
  color: var(--bronze);
  flex: none;
}
.download-tile-body { flex: 1; min-width: 0; }
.download-tile h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 2px;
}
.download-tile p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
}
.download-tile-arrow {
  color: var(--bronze);
  font-size: 18px;
}


/* ─────────── MOBILE TYPOGRAPHY FIXES ─────────── */
@media (max-width: 640px) {
  .display { font-size: clamp(40px, 11vw, 64px); }
  .h1      { font-size: clamp(32px, 8.5vw, 48px); overflow-wrap: break-word; }
  .h2      { font-size: clamp(28px, 7vw, 40px); overflow-wrap: break-word; }
  .h3      { font-size: clamp(22px, 5.5vw, 28px); }
  .lede    { font-size: 16px; }

  /* Hero specific: tighter line height, generous spacing */
  .hero h1, .hero .h1, .hero .display { max-width: 100%; }
  .hero-eyebrow { font-size: 11px; }

  /* Subhero compact */
  .subhero { padding-top: clamp(40px, 7vw, 56px); padding-bottom: clamp(28px, 5vw, 40px); }
  .subhero h1 { font-size: clamp(30px, 8vw, 44px); }

  /* Buttons full width by default on small screens */
  .btn-row { width: 100%; }
  .btn-row .btn, .btn-row .btn-out { flex: 1 1 100%; justify-content: center; }

  /* Process timeline single column */
  .process-timeline { display: flex; flex-direction: column; }
  .process-step { border-right: 0 !important; border-bottom: 1px solid var(--line); }

  /* City stats 2x2 grid */
  .city-stats { grid-template-columns: 1fr 1fr; }
  .city-stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .city-stat:nth-child(2n) { border-right: 0; }
  .city-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  /* Regio's page — stack the sticky cluster heading */
  section .wrap [style*="grid-template-columns: 0.4fr 1fr"] { display: block !important; }
  section .wrap [style*="grid-template-columns: 1.4fr 1fr"] { grid-template-columns: 1fr !important; }

  /* General column layouts collapse */
  [style*="grid-template-columns: 1fr 1fr"]:not(.calc-input-wrap):not(.calc-cards) {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: 1.1fr 0.9fr"],
  [style*="grid-template-columns: 1.2fr 1fr"],
  [style*="grid-template-columns: 0.9fr 1.1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Calculator counter buttons larger touch target */
  .calc-counter-btn { width: 48px; height: 48px; font-size: 22px; }
  .calc-counter-val { font-size: 24px; }

  /* Article prose smaller code/tables */
  .prose table { font-size: 12px; }
  .prose table th, .prose table td { padding: 10px 8px; }

  /* FAB position */
  .fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* Extra tight for very small (iPhone SE) */
@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .display { font-size: clamp(36px, 10vw, 48px); }
  .h1 { font-size: clamp(28px, 7.5vw, 36px); }
  .topbar-rating { display: none; }
}


/* ─────────── MOBILE OVERFLOW FIXES (strenger) ─────────── */
@media (max-width: 760px) {
  .display {
    font-size: clamp(34px, 9vw, 56px) !important;
    line-height: 1.02 !important;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: manual;
  }
  .h1 {
    font-size: clamp(28px, 7.5vw, 44px) !important;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .h2 {
    font-size: clamp(24px, 6vw, 36px) !important;
    overflow-wrap: break-word;
  }
  .hero h1, .hero .display {
    max-width: 100% !important;
  }
  /* Hero op mobiel: kortere image-hoogte */
  .hero {
    min-height: 60vh !important;
  }
  .hero-img { max-height: 60vh; }
  /* CTA row: stack and fill */
  .btn { width: 100%; min-width: 0; }
  /* Lange knop-tekst mag afbreken i.p.v. buiten beeld lopen (voorkomt wit veld) */
  .btn { white-space: normal; text-align: center; line-height: 1.25; }
  .btn-row { flex-direction: column; gap: 10px; }
  /* Topbar: alleen telefoon op mobiel */
  .topbar-rating { display: none !important; }
  .topbar-inner { justify-content: center; }
  .topbar-links a:not(.phone) { display: none; }
  /* Section padding compacter */
  .section { padding: clamp(48px, 10vw, 80px) 0; }
  .subhero { padding-top: 32px; padding-bottom: 24px; }
}

@media (max-width: 420px) {
  :root { --gutter: 16px; }
  .display { font-size: clamp(30px, 9vw, 40px) !important; }
  .h1 { font-size: clamp(24px, 7vw, 32px) !important; }
  .lede { font-size: 15px !important; }
  /* Topbar nog compacter */
  .topbar { font-size: 12px; }
  .topbar-inner { padding: 8px 12px; }
  /* Nav compacter */
  .nav-inner { padding: 12px 16px; }
  .brand-fineo, .brand-name { font-size: 22px !important; }
  /* Card grids forceer 1-col */
  .articles-grid, .types-grid, .uses { grid-template-columns: 1fr !important; }
}


/* ─────────── MOBILE-PROOF (100% mobiel) ─────────── */
/* Mobiele actiebalk — geïnjecteerd door app.js, alleen op kleine schermen */
.mob-ctabar { display: none; }
@media (max-width: 720px) {
  .mob-ctabar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    gap: 1px;
    background: var(--line-soft);
    border-top: 1px solid var(--line-soft);
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -6px 24px rgba(26,31,38,0.12);
  }
  .mob-ctabar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-align: center;
  }
  .mob-ctabar-call { background: var(--ink); color: var(--cream); }
  .mob-ctabar-price { background: var(--bronze); color: #fff; }
  body.has-ctabar { padding-bottom: calc(54px + env(safe-area-inset-bottom, 0px)); }
  /* Cookiebanner boven de actiebalk */
  .cookie-overlay { z-index: 1000; }

  /* Ruimere tap-targets voor tekstlinks en kaart-CTA's (≥44px) */
  .btn-text,
  .service-card-cta,
  .product-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .footer a,
  .topbar-links a,
  .article-card h3 a {
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .footer-bottom a { padding-top: 10px; padding-bottom: 10px; }

  /* Leesbaarheid: geen tekst kleiner dan 11px */
  .hero-rating-meta, .product-badge { font-size: 11px !important; }

  /* iOS zoomt in op velden < 16px — voorkom dat */
  .field input[type="text"],
  .field input[type="password"],
  .field input[type="email"],
  .field input[type="tel"],
  .field input[type="number"],
  .field select,
  .field textarea { font-size: 16px; }

  /* WhatsApp-knop boven de vaste actiebalk */
  body.has-ctabar .fab { bottom: calc(66px + env(safe-area-inset-bottom, 0px)); }

  /* Tellerknoppen ≥ 44px tap-target */
  .calc-counter-btn { width: 44px; height: 44px; }
  .calc-counter { grid-template-columns: 1fr auto; gap: 16px; }

  /* Laatste kleine tap-targets */
  .form-quick a { display: inline-flex; align-items: center; min-height: 44px; }
  .form-fineprint a { display: inline-block; padding: 8px 2px; margin: -8px -2px; }
}


/* ─────── VOOR/NA SLIDER ─────── */
.ba-slider {
  position: relative;
  margin-top: 40px;
  aspect-ratio: 16 / 8;
  max-height: 560px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  background: var(--ink);
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba-before-wrap .ba-img { filter: saturate(0.55) brightness(0.88) contrast(0.92); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--cream);
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.ba-handle span::before { content: "\27F7"; color: var(--ink); font-size: 18px; }
.ba-tag {
  position: absolute; bottom: 16px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(26,31,38,0.72); color: var(--cream);
  padding: 7px 14px;
}
.ba-tag-left { left: 16px; }
.ba-tag-right { right: 16px; }
.ba-note { margin-top: 14px; font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-2); }
@media (max-width: 720px) { .ba-slider { aspect-ratio: 4 / 3; } }
