/* Geerts Bakkerijmachines — production styles
   Gebaseerd op de wireframe-stijl: industrieel, nuchter, wit + grijs + één accent.
   Donkerblauw accent hint naar hi-fi richting. */

/* Self-hosted fonts (GDPR/AVG: geen externe verbinding naar Google).
   Bestanden in /fonts. IBM Plex Sans / IBM Plex Mono — SIL Open Font License. */
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/ibm-plex-sans-300.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/ibm-plex-sans-400.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/ibm-plex-sans-500.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/ibm-plex-sans-600.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/ibm-plex-sans-700.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/ibm-plex-mono-400.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/ibm-plex-mono-500.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/ibm-plex-mono-600.woff2') format('woff2'); }

:root {
  --ink: #0e0e10;
  --ink-2: #3a3a3f;
  --ink-3: #6a6a72;
  --ink-4: #a5a5ad;
  --line: #1a1a1f;
  --line-2: #d8d8dc;
  --paper: #ffffff;
  --paper-2: #f4f4f5;
  --paper-3: #ececee;
  --accent: #0a4a82;
  --accent-2: #d93a1a;
  --sans: 'IBM Plex Sans', -apple-system, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.45;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* =========================================================
   Page layout
   ========================================================= */

.page { display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh; }
.page-body { flex: 1; }

/* Keyboard focus indicator (WCAG 2.4.7) — base fallback for interactive controls */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.filter-opt:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* =========================================================
   Nav
   ========================================================= */

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav .logo {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 5px;
  background: var(--accent);
  line-height: 1;
  text-decoration: none;
  color: inherit;
}
.nav .logo .logo-top {
  background: var(--paper);
  color: var(--accent);
  padding: 4px 10px 5px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
}
.nav .logo .logo-bottom {
  color: var(--paper);
  padding: 2px 10px 3px;
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3.9px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.nav ul {
  list-style: none;
  display: flex; gap: 28px;
  margin: 0; padding: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-2);
}
.nav ul li { position: relative; padding: 4px 0; }
.nav ul li a { display: block; color: inherit; }
.nav ul li.active { color: var(--ink); font-weight: 500; }
.nav ul li.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--accent);
}
.nav .phone {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 16px;
}

/* =========================================================
   Footer
   ========================================================= */

.foot {
  border-top: 1px solid var(--line);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  background: var(--paper);
}
.foot h5 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--ink);
}
.foot h5 a { color: inherit; text-decoration: none; transition: color .15s ease; }
.foot h5 a:hover { color: var(--accent); }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 4px; }
.foot .brand {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.foot .tiny { font-size: 10px; }

.foot .site-credit {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.foot .site-credit-mark {
  display: inline-block;
  margin: 2px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink);
  text-decoration: none;
  transition: color .15s ease;
}
.foot .site-credit-mark:hover { color: var(--accent); }

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; letter-spacing: -0.2px; }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.mono-md { font-size: 12px; }
.mono-lg { font-size: 14px; letter-spacing: 1px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}

.hero-h {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: -1.2px;
}

.sect-title {
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.5px;
}
.sect-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 14px;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 0;
  line-height: 1;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn-fill { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.btn-fill:hover { background: #073761; border-color: #073761; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--ink); border-color: var(--ink); }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink-2); }
.btn-sm { padding: 8px 12px; font-size: 10px; letter-spacing: 0.8px; }
.btn-lg { padding: 16px 24px; font-size: 12px; }

/* =========================================================
   Image / video placeholders
   ========================================================= */

.img {
  background: var(--paper-2);
  border: 1px solid var(--line-2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px;
  text-align: center;
  overflow: hidden;
}
.img::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top right, transparent calc(50% - 0.4px), var(--line-2) calc(50% - 0.4px), var(--line-2) calc(50% + 0.4px), transparent calc(50% + 0.4px)),
    linear-gradient(to top left, transparent calc(50% - 0.4px), var(--line-2) calc(50% - 0.4px), var(--line-2) calc(50% + 0.4px), transparent calc(50% + 0.4px));
}
.img > span {
  position: relative;
  z-index: 1;
  background: var(--paper-2);
  padding: 2px 6px;
}

/* Placeholder zonder foto: toon productnaam groot + categorie eronder */
.img.img-namecard {
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: var(--paper-2);
}
.img.img-namecard::before { display: none; }
.img.img-namecard > span { background: transparent; padding: 0; }
.img-prodname {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.15;
  color: var(--ink);
  text-transform: none;
}
.img-prodcat {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-3);
}
/* Grote placeholder (hoofdfoto op productpagina) — enkel de productnaam */
.img.img-namecard-lg .img-prodname {
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.6px;
}

/* When .img wraps a real photo: hide cross-pattern, fill with image */
.img.has-photo {
  padding: 0;
  background: var(--paper);
}
.img.has-photo::before { display: none; }
.img.has-photo > span { display: none; }
.img.has-photo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-ph {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top right, transparent calc(50% - 0.4px), var(--line-2) calc(50% - 0.4px), var(--line-2) calc(50% + 0.4px), transparent calc(50% + 0.4px)),
    linear-gradient(to top left, transparent calc(50% - 0.4px), var(--line-2) calc(50% - 0.4px), var(--line-2) calc(50% + 0.4px), transparent calc(50% + 0.4px));
}
.video-ph::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border: 1px solid var(--ink-3);
  border-radius: 50%;
  background: var(--paper);
}
.video-ph .play-tri {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-40%, -50%);
  width: 0; height: 0;
  border-left: 16px solid var(--ink);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  z-index: 2;
}
.video-ph .ph-label {
  position: absolute;
  left: 12px; top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  background: var(--paper);
  padding: 2px 6px;
  border: 1px solid var(--line-2);
}

/* =========================================================
   Lines (text placeholders) — alleen gebruikt zolang copy ontbreekt
   ========================================================= */

.lines { display: flex; flex-direction: column; gap: 5px; }
.lines > i {
  display: block;
  height: 4px;
  background: var(--line-2);
  border-radius: 0;
}
.lines > i:nth-child(1) { width: 92%; }
.lines > i:nth-child(2) { width: 86%; }
.lines > i:nth-child(3) { width: 94%; }
.lines > i:nth-child(4) { width: 70%; }
.lines > i:nth-child(5) { width: 80%; }
.lines > i:nth-child(6) { width: 40%; }
.lines-sm > i { height: 3px; }
.lines-dark > i { background: rgba(255, 255, 255, 0.25); }

/* =========================================================
   Form inputs
   ========================================================= */

.input {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  font-family: var(--mono);
  background: var(--paper);
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.3px;
  width: 100%;
  display: block;
}
.input::placeholder { color: var(--ink-3); }
.input:focus { outline: 2px solid var(--accent); outline-offset: -2px; }
.input-lg { padding: 16px 14px; font-size: 12px; }
textarea.input { min-height: 80px; resize: vertical; }

label.lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

/* =========================================================
   Cards
   ========================================================= */

.card {
  border: 1px solid var(--line-2);
  border-radius: 0;
  padding: 20px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-strong { border-color: var(--line); }
.card-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.2px;
}

/* =========================================================
   Badge / chip
   ========================================================= */

.badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 10px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink);
}
.badge-fill { background: var(--ink); color: var(--paper); }
.badge-accent { background: var(--accent); color: #fff; border-color: var(--accent); }

/* =========================================================
   Inverted (dark) sections
   ========================================================= */

.inverted {
  background: #0a1420;
  color: var(--paper);
}
.inverted .img,
.inverted .video-ph {
  background: #0e1a28;
  border-color: #1e2c3e;
  color: #7e8a9a;
}
.inverted .img::before,
.inverted .video-ph::before {
  background:
    linear-gradient(to top right, transparent calc(50% - 0.4px), #1e2c3e calc(50% - 0.4px), #1e2c3e calc(50% + 0.4px), transparent calc(50% + 0.4px)),
    linear-gradient(to top left, transparent calc(50% - 0.4px), #1e2c3e calc(50% - 0.4px), #1e2c3e calc(50% + 0.4px), transparent calc(50% + 0.4px));
}
.inverted .img > span { background: #0e1a28; }
.inverted .video-ph .ph-label { background: #0a1420; color: #9aa4b3; border-color: #1e2c3e; }
.inverted .video-ph::after { background: #0a1420; border-color: #7e8a9a; }
.inverted .video-ph .play-tri { border-left-color: var(--paper); }
.inverted .btn { color: var(--paper); background: transparent; border-color: var(--paper); }
.inverted .btn:hover { background: var(--paper); color: #0a1420; }
.inverted .btn-fill { background: var(--paper); color: #0a1420; }
.inverted .btn-fill:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.inverted .btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.inverted .eyebrow { color: rgba(255, 255, 255, 0.7); }
.inverted .hero-h { color: var(--paper); }
.inverted .mono { color: rgba(255, 255, 255, 0.6); }

/* =========================================================
   Utilities
   ========================================================= */

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.muted { color: var(--ink-3); }
.muted-2 { color: var(--ink-4); }
.small { font-size: 13px; }
.xs { font-size: 11px; }
.tiny { font-size: 10px; }
.center { text-align: center; }
.right { text-align: right; }

.flex { display: flex; }
.col { display: flex; flex-direction: column; gap: 16px; }
.row { display: flex; gap: 16px; }
.between { justify-content: space-between; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.gap-0 { gap: 0; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

.mt-1 { margin-top: 6px; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }

.p-2 { padding: 8px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }

.w-full { width: 100%; }
.grow { flex: 1; }
.rel { position: relative; }
.abs { position: absolute; }

hr.rule { border: none; border-top: 1px solid var(--line); margin: 0; }
hr.rule-2 { border-top: 1px solid var(--line-2); }

/* =========================================================
   Landing V3 — editorial
   ========================================================= */

.hero-editorial {
  position: relative;
  min-height: clamp(620px, 56vw, 1100px);
  overflow: hidden;
  padding: 0;
  background: #0a1420;
}
.hero-editorial .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
}
.hero-editorial::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10, 20, 32, 0) 0%, rgba(10, 20, 32, 0.45) 100%),
    linear-gradient(to bottom, rgba(10, 20, 32, 0.2) 0%, rgba(10, 20, 32, 0) 25%, rgba(10, 20, 32, 0) 75%, rgba(10, 20, 32, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-editorial .hero-video { display: none; }
}
.hero-editorial .hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px;
  min-height: clamp(620px, 56vw, 1100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-editorial .hero-top,
.hero-editorial .hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.hero-editorial .hero-title {
  font-size: 120px;
  color: #fff;
  letter-spacing: -3px;
  font-weight: 600;
  line-height: 0.95;
  margin: 0;
}
.hero-editorial .hero-title-top {
  display: block;
  font-size: 44px;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 2px;
}
.hero-editorial .hero-title-main {
  display: block;
  line-height: 0.95;
}
.hero-editorial .hero-sub {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  max-width: 680px;
  line-height: 1.4;
}
.hero-editorial .hero-sub .underline {
  color: #fff;
  border-bottom: 1px solid var(--accent);
}

.section { padding: 64px 40px; }
.section-compact { padding: 40px; }

.sect-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-grid > a {
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  transition: background .15s ease;
  overflow: hidden;
}
.service-grid > a:hover { background: var(--paper-2); }
.service-grid > a:nth-child(3n) { border-right: none; }
.service-grid > a.s-accent { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.service-grid > a.s-accent:hover { background: #0d5a9e; }
.service-grid > a.s-accent .s-desc { color: rgba(255,255,255,0.7); }
.service-grid > a.s-accent .s-arrow { color: rgba(255,255,255,0.7); }
.service-grid .s-body { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex: 1; }
.service-grid .s-text { flex: 1 1 auto; min-width: 0; }
.service-grid .s-title { font-size: 28px; font-weight: 600; letter-spacing: -0.5px; text-wrap: balance; }
.service-grid .s-desc { font-size: 16px; color: var(--ink-3); max-width: 320px; margin-top: 8px; line-height: 1.5; }
.service-grid .s-arrow { font-family: var(--mono); font-size: 20px; color: var(--ink-3); flex-shrink: 0; align-self: flex-start; }
.service-grid .s-icon { width: 156px; height: 156px; flex-shrink: 0; }
.service-grid .s-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-grid .s-icon svg { width: 100%; height: 100%; display: block; }
/* Kaart met volledig zichtbaar (niet-bloedend) icoon, bv. herstelling-moersleutel */
.service-grid > a.s-has-icon .s-body { justify-content: space-between; gap: 16px; }
.service-grid > a.s-has-icon .s-text { max-width: 56%; }
.service-grid > a.s-has-icon .s-icon { width: 124px; height: 124px; }
/* Verkoop-icoon (afbeelding heeft veel witruimte) ~1.2x groter tonen */
.service-grid > a.s-has-icon:not(.s-fill-grey) .s-icon img { transform: scale(1.2); }
/* Messen (s-accent): zelfde compacte layout als de icoon-kaarten zodat het mes niet wordt afgekapt */
.service-grid > a.s-accent .s-body { gap: 16px; }
.service-grid > a.s-accent .s-text { max-width: 56%; }
.service-grid > a.s-accent .s-icon { width: 124px; height: 124px; }
/* Grijze (paper-2) vulling i.p.v. wit, bv. herstelling-kaart */
.service-grid > a.s-fill-grey { background: var(--paper-2); }
.service-grid > a.s-fill-grey:hover { background: var(--paper-3); }

.feature-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.feature-card img { width: 100%; }
.feature-card .fc-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 12px; gap: 12px; }
.feature-card .fc-code { font-family: var(--mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; }
.feature-card .fc-name { font-size: 18px; font-weight: 600; margin-top: 2px; letter-spacing: -0.2px; }
.feature-card .fc-sub { font-family: var(--mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; margin-top: 2px; }

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin: 0 40px;
  flex-wrap: wrap;
}
.brand-row .eyebrow { flex-shrink: 0; }
.brand-row .brand-item { font-family: var(--mono); color: var(--ink-3); font-size: 12px; }

.cta-center { padding: 80px 40px; text-align: center; }
.cta-center .hero-h { font-size: 56px; margin-top: 16px; }
.cta-center .btns { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Service V3 — tabs + beeld
   ========================================================= */

.page-header { padding: 64px 40px 24px; }
.page-header .hero-h { font-size: 56px; margin-top: 14px; }
.page-header .hero-h.product-title {
  font-size: clamp(30px, 5.5vw, 60px);
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Header band — service, catalogus, contact (logo-blauw) */
.page-header.inverted,
.cat-header.inverted,
.contact-header.inverted {
  background: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.cat-header.inverted,
.contact-header.inverted {
  color: var(--paper);
}
.cat-header.inverted .eyebrow,
.contact-header.inverted .eyebrow { color: rgba(255,255,255,0.7); }
.cat-header.inverted .hero-h,
.contact-header.inverted .hero-h { color: var(--paper); }

.service-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
}
.service-split .service-col {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
}
.service-split .image-col { padding: 48px 40px; }

.spec-list {
  padding: 0;
  list-style: none;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 2;
  border-top: 1px solid var(--line-2);
}
.spec-list li {
  border-bottom: 1px solid var(--line-2);
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.spec-list li .check {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
}

.info-box {
  background: var(--paper-2);
  border: 1px dashed var(--line-2);
  padding: 16px;
  margin-top: 24px;
}

.detail-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

/* Product page photos */
.product-photo-main {
  background: var(--paper);
  border: 1px solid var(--line-2);
  height: 480px;
  overflow: hidden;
  position: relative;
}
.product-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .25s ease-out;
  will-change: transform;
}

/* Click-to-zoom (devices with a real pointer) */
@media (hover: hover) and (pointer: fine) {
  .product-photo-main { cursor: zoom-in; }
  .product-photo-main.zooming { cursor: zoom-out; }
  .product-photo-main.zooming img {
    transform: scale(1.7);
    transition: none;
  }
}

/* Touch devices: tap to open lightbox */
@media (hover: none), (pointer: coarse) {
  .product-photo-main { cursor: zoom-in; }
}
.product-photo-detail {
  background: var(--paper);
  border: 1px solid var(--line-2);
  height: 160px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s ease;
}
.product-photo-detail:hover { border-color: var(--ink-3); }
.product-photo-detail:focus { outline: 2px solid var(--accent); outline-offset: -2px; }
.product-photo-detail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-photo-detail img[src$="uitroltafels-sinmag-laminato-2.png"],
.product-photo-main img[src$="uitroltafels-sinmag-laminato-2.png"] {
  max-width: 25%;
  max-height: 25%;
  width: auto;
  height: auto;
  margin: auto;
}
.product-photo-detail:has(img[src$="uitroltafels-sinmag-laminato-2.png"]),
.product-photo-main:has(img[src$="uitroltafels-sinmag-laminato-2.png"]) {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product features (description bullet list) */
.product-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--line-2);
}
.product-features li {
  border-bottom: 1px solid var(--line-2);
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.5;
}
.product-features li.is-button {
  padding: 14px 0;
}

/* Single-line description (e.g. "Op aanvraag") */
.product-desc-line {
  margin: 16px 0 0;
  font-size: 15px;
  color: var(--ink-2);
  font-style: italic;
}

/* Heading line preceding a bullet group (separated by *-* in copy) */
.product-desc-heading {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.product-desc-heading + .product-features {
  margin-top: 8px;
  border-top: none;
}

.testimonial {
  padding: 64px 40px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.testimonial .hero-h { font-size: 32px; max-width: 720px; margin: 14px auto 0; }

/* =========================================================
   Occasie & gereviseerde machines (service-pagina)
   ========================================================= */
.occasie-section {
  padding: 64px 40px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.occasie-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 8px;
}
.occasie-card {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
  background: var(--paper);
  border: 1px solid var(--line-2);
}
.occasie-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 460px 300px;
  border-right: 1px solid var(--line-2);
}
.occasie-photo {
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.occasie-photo:nth-child(1) {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--line-2);
}
.occasie-photo:nth-child(3) { border-left: 1px solid var(--line-2); }

/* 2-photo variant — twee foto's naast elkaar, geen spanning */
.occasie-photos.is-two {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 560px;
}
.occasie-photos.is-two .occasie-photo:nth-child(1) {
  grid-column: 1;
  border-bottom: none;
}
.occasie-photos.is-two .occasie-photo:nth-child(2) {
  border-left: 1px solid var(--line-2);
}
.occasie-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 8px;
  box-sizing: border-box;
  transition: transform .25s ease-out;
  will-change: transform;
}
/* Zoom: desktop hover-pan, touch lightbox */
@media (hover: hover) and (pointer: fine) {
  .occasie-photo { cursor: zoom-in; }
  .occasie-photo.zooming { cursor: zoom-out; }
  .occasie-photo.zooming img {
    transform: scale(1.7);
    transition: none;
  }
}
@media (hover: none), (pointer: coarse) {
  .occasie-photo { cursor: zoom-in; }
}
.occasie-meta {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.occasie-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0;
}
.occasie-specs {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.9;
}
.occasie-desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 8px 0 0;
}
.occasie-badge {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
  margin-top: 5px;
}

/* =========================================================
   Dark nav (service, catalogus, contact)
   ========================================================= */
.nav.nav-dark {
  background: #0a1420;
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav.nav-dark ul { color: rgba(255,255,255,0.5); }
.nav.nav-dark ul a { color: inherit; }
.nav.nav-dark ul li.active { color: rgba(255,255,255,0.95); }
.nav.nav-dark ul li.active::after { background: var(--accent); }
.nav.nav-dark .phone { color: rgba(255,255,255,0.4); }
.nav.nav-dark .nav-toggle {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.nav.nav-dark ul.open {
  background: #0a1420;
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav.nav-dark ul.open li { border-top-color: rgba(255,255,255,0.08); }

/* =========================================================
   Service page — header CTA + staircase layout
   ========================================================= */
.page-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}
.page-header-grid > :first-child { max-width: 760px; }
.header-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  border: 1px solid var(--paper);
  text-decoration: none;
  color: var(--accent);
  background: var(--paper);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  max-width: 440px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.header-cta:hover {
  background: #f5f7fa;
  box-shadow: 0 10px 28px rgba(0,0,0,0.24);
}
.header-cta-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--accent);
}
.header-cta-arrow {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.header-cta:hover .header-cta-arrow { transform: translateY(4px); }

/* Pulserende CTA: subtiele schaduw-pulse + bouncende pijl */
@keyframes header-cta-pulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(0,0,0,0.18), 0 0 0 0 rgba(255,255,255,0.45);
  }
  50% {
    box-shadow: 0 10px 26px rgba(0,0,0,0.24), 0 0 0 10px rgba(255,255,255,0);
  }
}
@keyframes header-cta-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}
.header-cta.pulse {
  animation: header-cta-pulse 2.2s cubic-bezier(.4,0,.6,1) infinite;
}
.header-cta.pulse .header-cta-arrow {
  animation: header-cta-arrow-bounce 1.6s cubic-bezier(.4,0,.6,1) infinite;
}
.header-cta.pulse:hover {
  animation-play-state: paused;
}
.header-cta.pulse:hover .header-cta-arrow {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .header-cta.pulse,
  .header-cta.pulse .header-cta-arrow {
    animation: none;
  }
}

/* Inverted spec-list overrides (gebruikt door messen-step) */
.inverted .spec-list { border-top-color: rgba(255,255,255,0.12); }
.inverted .spec-list li {
  border-bottom-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.inverted .spec-list li .check { color: rgba(255,255,255,0.35); }

/* Bento ----------------------------------------------------
   Asymmetrisch raster: Verkoop groot-links | Herstelling smal-rechts
   Messen full-width banner onderaan met accent-treatment. */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 440px 360px;
  gap: 0;
  padding: 48px 40px 80px;
}

.bento-card {
  background: var(--paper);
  border: 1px solid var(--line-2);
  display: flex;
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}

.bento-verkoop {
  grid-column: 1 / span 6;
  grid-row: 1;
  flex-direction: row;
}
.bento-herstelling {
  grid-column: 7 / span 6;
  grid-row: 1;
  margin-left: -1px;
  background: var(--paper-2);
}
.bento-messen {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: -1px;
  flex-direction: row;
  background: var(--accent);
  border-color: var(--accent);
}

.bento-content {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.bento-verkoop .bento-content {
  flex: 0 0 46%;
}
.bento-messen .bento-content {
  flex: 0 0 40%;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 44px 40px;
}
.bento-herstelling .bento-content { padding: 40px 36px; }

.bento-content .mono.tiny {
  color: var(--ink-3);
  margin-bottom: 10px;
}
.bento-messen .bento-content .mono.tiny { color: rgba(255,255,255,0.55); }

.bento-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.7px;
  line-height: 1.05;
  margin: 0 0 18px;
}

/* Spec-list breedte per service-blok: vinkje ≈ langste tekst × 1.5 */
.bento-verkoop .spec-list { max-width: 320px; }
.bento-herstelling .spec-list { max-width: 480px; }
.bento-messen .spec-list { max-width: 520px; }
.bento-messen .bento-title { color: var(--paper); font-size: 42px; }
.bento-herstelling .bento-title { font-size: 30px; }

.bento-media {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  min-width: 0;
  min-height: 0;
}

/* Verkoop — single product photo */
.bento-media-verkoop {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  padding: 18px 24px 18px 8px;
  height: 100%;
}
.bento-media-verkoop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.bento-media-verkoop:hover img { transform: scale(1.03); }

/* Messen — full-bleed hero photo */
.bento-media-messen {
  display: flex;
  background: var(--accent);
  height: 100%;
}
.bento-media-messen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fade-in (transform/opacity only, spring-like easing) */
html.js .bento-card {
  opacity: 0;
  transform: translateY(20px);
}
html.js .bento-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s cubic-bezier(.2,.9,.2,1.05), transform 0.65s cubic-bezier(.2,.9,.2,1.05);
}
@media (prefers-reduced-motion: reduce) {
  html.js .bento-card { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Catalogus V1 — sidebar + grid
   ========================================================= */

.cat-header {
  padding: 40px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.cat-header .hero-h { font-size: 48px; margin-top: 10px; }
.cat-header .cat-sub { margin: 10px 0 0; font-size: 15px; color: rgba(255,255,255,0.7); }
.cat-header .cat-sub a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.cat-header .cat-sub a:hover { color: #fff; }

.search-row { display: flex; gap: 8px; align-items: center; }
.search-row .input { min-width: 280px; max-width: 100%; }

.cat-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  margin-bottom: 360px;
}
.cat-sidebar {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  font-size: 13px;
}
.cat-sidebar .filter-group + .filter-group { margin-top: 28px; }
.cat-sidebar .filter-group h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  margin: 0 0 14px;
}
.cat-sidebar .filter-opts { display: flex; flex-direction: column; gap: 0; }
.cat-sidebar .opt-cluster {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cat-sidebar .opt-cluster + .opt-cluster {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}
.cat-sidebar .filter-opt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 2px 0;
  text-align: left;
  width: 100%;
}
.cat-sidebar .filter-opt:hover { color: var(--ink); }
.cat-sidebar .filter-opt.active { color: var(--ink); font-weight: 600; }
.cat-sidebar .filter-opt .cat-mark {
  font-family: var(--mono);
  display: inline-block;
  width: 12px;
  flex-shrink: 0;
}

.cat-main { padding: 32px 32px 64px; }
.cat-main .cat-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.cat-main .cat-meta .mono { color: var(--ink-3); }
.cat-main .cat-meta .mono b { color: var(--ink); }

.machine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.machine-grid .card {
  gap: 12px;
  padding: 16px;
  background: var(--paper-2);
}
.machine-grid .card-link:hover { background: var(--paper-3); }
/* Fotokader/placeholder wit houden zodat hij loskomt van de grijze kaart */
.machine-grid .card .img.img-namecard { background: var(--paper); }
.machine-grid .card .img { height: 200px; }
.machine-grid .card-meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.machine-grid .card-code { font-family: var(--mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; }
.machine-grid .card-type { font-family: var(--mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; margin-top: 2px; }
.machine-grid .card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 4px; }
.machine-grid .card-foot .mono { font-size: 11px; text-transform: uppercase; }

.cat-footer { text-align: center; margin-top: 32px; }

/* =========================================================
   Product detail page
   ========================================================= */

.page-header .crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.page-header .crumb .crumb-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 11px 20px;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.page-header .crumb .crumb-back:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  box-shadow: 0 6px 16px rgba(0,0,0,0.16);
}
.page-header .crumb .crumb-back-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.18s ease;
}
.page-header .crumb .crumb-back:hover .crumb-back-arrow { transform: translateX(-3px); }
.page-header .crumb .crumb-sep {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 11px;
  background: currentColor;
  vertical-align: middle;
  opacity: 0.55;
}
.page-header .crumb .crumb-cat {
  color: inherit;
  opacity: 0.7;
}

.product-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.product-split .image-col {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
}
.product-split .info-col {
  padding: 48px 40px;
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-split .spec-list { font-size: 13px; }
.product-split .spec-list li { padding: 8px 0; }
.product-split .spec-value {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.3px;
  text-align: right;
}

.related-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Stretched-link pattern: card-link makes the whole card clickable
   while still allowing nested action buttons to work independently. */
.card-link { position: relative; }
.card-link .stretched-link { color: inherit; text-decoration: none; }
.card-link .stretched-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-link .card-action {
  position: relative;
  z-index: 2;
}
.card-link:hover { background: var(--paper-2); }
.card-link .stretched-link:focus-visible { outline: none; }
.card-link:focus-within { outline: 2px solid var(--accent); outline-offset: -2px; }

/* =========================================================
   Contact V1 — twee formulieren naast elkaar
   ========================================================= */

.contact-header { padding: 64px 40px 24px; border-bottom: 1px solid var(--line); }
.contact-header .hero-h { font-size: 56px; margin-top: 14px; }

.contact-direct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  min-height: 55vh;
}
.contact-phone-left {
  border-right: 1px solid var(--line);
}
.contact-phone {
  padding: 48px 40px;
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-photo {
  background: #c8a97a url('broodplank-contact.jpg') center/cover no-repeat;
}
.contact-phone .phone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.contact-phone .phone-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-phone .phone-item + .phone-item {
  border-top: 1px solid var(--line-2);
  padding-top: 28px;
  margin-top: 28px;
}
.contact-phone .phone-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-phone .phone-label-ico {
  width: 15px;
  height: 15px;
  object-fit: contain;
  flex-shrink: 0;
}
.contact-phone .phone-number {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  transition: color .15s ease;
}
.contact-phone .phone-number:hover { color: var(--accent); }
.contact-phone .phone-number-email {
  font-size: 22px;
  letter-spacing: -0.3px;
  word-break: break-all;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  padding: 40px;
  border-top: 1px solid var(--line);
}
.contact-info .info-block {
  padding: 0 20px;
  border-right: 1px solid var(--line-2);
}
.contact-info .info-block:first-child { padding-left: 0; }
.contact-info .info-block:last-child { border-right: none; padding-right: 0; }
.contact-info .info-block .mono { font-size: 10px; text-transform: uppercase; }
.contact-info .info-block .info-value { font-size: 16px; font-weight: 600; margin-top: 6px; letter-spacing: -0.2px; }
.contact-info .info-block .info-note { font-family: var(--mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; margin-top: 4px; }

/* =========================================================
   Legal / long-form pages
   ========================================================= */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}
.legal .legal-intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 40px 0 12px;
}
.legal h2:first-of-type { margin-top: 24px; }
.legal h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 22px 0 8px;
}
.legal p { line-height: 1.65; margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 20px; }
.legal li { line-height: 1.65; margin-bottom: 6px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--accent); }
.legal address {
  font-style: normal;
  line-height: 1.7;
  margin: 8px 0 16px;
  padding: 14px 18px;
  background: var(--paper-2);
  border-left: 2px solid var(--accent);
}
.legal .legal-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
}
.legal .legal-version {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.3px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .hero-editorial .hero-title { font-size: 88px; letter-spacing: -2px; }
  .hero-editorial .hero-title-top { font-size: 32px; letter-spacing: -0.6px; }
  .hero-editorial .hero-sub { font-size: 18px; }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .contact-info { grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-info .info-block { padding: 0 16px; }
  .contact-info .info-block:nth-child(2) { border-right: none; padding-right: 0; }
  .machine-grid { grid-template-columns: 1fr 1fr; }
  .nav .phone { display: none; }
  .service-grid .s-title { font-size: 21px; }
  .service-grid .s-desc { font-size: 14px; }
  .service-grid > a.s-has-icon .s-text { max-width: 60%; }
  .service-grid > a.s-has-icon .s-icon { width: 96px; height: 96px; }
  .service-grid > a.s-accent .s-icon { width: 96px; height: 96px; }
  .service-grid > a.s-accent .s-text { max-width: 60%; }

  /* Bento stapelen vanaf medium: kneder-foto niet meer naast samengedrukte content */
  .bento { display: block; grid-template-rows: none; }
  .bento-card,
  .bento-verkoop,
  .bento-herstelling,
  .bento-messen {
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
    margin: 0 0 20px;
  }
  .bento-card:last-child { margin-bottom: 0; }
  .bento-verkoop .bento-content,
  .bento-herstelling .bento-content,
  .bento-messen .bento-content {
    flex: 1;
    border-right: none;
    border-bottom: 1px solid var(--line-2);
  }
  .bento-messen .bento-content { border-bottom-color: rgba(255,255,255,0.08); }
  .bento-media,
  .bento-media-verkoop,
  .bento-media-messen { min-height: 300px; }
  /* Verkoop-productfoto compacter wanneer gestapeld (was te groot op tablet) */
  .bento-media-verkoop { min-height: 0; height: auto; padding: 16px 24px; }
  .bento-media-verkoop img { width: auto; height: auto; max-width: 100%; max-height: 200px; }
}

@media (max-width: 820px) {
  .nav { padding: 14px 20px; }
  .nav ul,
  .nav .phone { display: none; }
  .nav ul.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .nav ul.open li {
    padding: 16px 20px;
    border-top: 1px solid var(--line-2);
  }
  .nav ul.open li.active::after { display: none; }
  .nav-toggle { display: inline-flex; }

  .section,
  .section-compact,
  .page-header,
  .cat-header,
  .contact-header,
  .brand-row { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 40px; padding-bottom: 40px; }
  .page-header { padding-top: 40px; padding-bottom: 20px; }
  .cta-center { padding: 48px 20px; }
  .cta-center .hero-h { font-size: 36px; }
  .testimonial { padding: 40px 20px; }
  .testimonial .hero-h { font-size: 22px; }
  .occasie-section { padding: 40px 20px; }
  .occasie-row { gap: 24px; }
  .occasie-card { grid-template-columns: 1fr; }
  .occasie-photos {
    border-right: none;
    border-bottom: 1px solid var(--line-2);
    grid-template-rows: 320px 200px;
  }
  .occasie-photos.is-two {
    grid-template-rows: 380px;
  }
  .occasie-meta { padding: 24px 22px; }

  .hero-editorial {
    min-height: 500px;
    background:
      linear-gradient(rgba(10, 20, 32, 0.6), rgba(10, 20, 32, 0.6)),
      url('hero-poster.png') center/cover no-repeat,
      #0a1420;
  }
  .hero-editorial .hero-video { display: none; }
  .hero-editorial .hero-inner { padding: 24px 20px; min-height: 500px; }
  .hero-editorial .hero-title { font-size: 56px; letter-spacing: -1.5px; }
  .hero-editorial .hero-title-top { font-size: 22px; letter-spacing: -0.4px; }
  .hero-editorial .hero-sub { font-size: 16px; }
  .hero-editorial .hero-top,
  .hero-editorial .hero-bottom { flex-wrap: wrap; gap: 12px; }

  .page-header .hero-h { font-size: 36px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-grid > a { border-right: none; padding: 20px; }
  .service-grid .s-icon { width: 90px; height: 90px; }
  .service-grid > a.s-has-icon .s-text { max-width: 64%; }
  .service-grid > a.s-has-icon .s-icon { width: 96px; height: 96px; }

  .feature-row { grid-template-columns: 1fr; gap: 20px; }
  .brand-row { margin: 0 20px; gap: 12px; }

  .service-split { grid-template-columns: 1fr; }
  .service-split .service-col {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 32px 20px;
  }
  .service-split .image-col { padding: 32px 20px; }

  .product-split { grid-template-columns: 1fr; }
  .product-split .image-col {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 32px 20px;
  }
  .product-split .info-col { padding: 32px 20px; }
  .product-photo-main { height: 320px; }
  .product-photo-detail { height: 120px; }
  .related-products { grid-template-columns: 1fr; }

  .cat-layout { grid-template-columns: 1fr; }
  .cat-sidebar { border-right: none; border-bottom: 1px solid var(--line); padding: 24px 20px; }
  .cat-main { padding: 24px 20px 48px; }
  .machine-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-header { padding: 40px 20px 20px; }
  .cat-header .hero-h { font-size: 32px; }
  .search-row .input { min-width: 0; flex: 1; }

  .contact-header .hero-h { font-size: 36px; }
  .contact-header { padding: 40px 20px 20px; }
  .contact-direct { grid-template-columns: 1fr; }
  .contact-phone-left {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .contact-phone { padding: 32px 20px; }
  .contact-phone .phone-number { font-size: 32px; letter-spacing: -0.5px; }
  .contact-phone .phone-number-email { font-size: 18px; }
  .contact-photo { min-height: 220px; }

  .legal { padding: 32px 20px 56px; }
  .legal h2 { font-size: 20px; margin-top: 32px; }
  .legal .legal-intro { font-size: 15px; }

  .contact-info { grid-template-columns: 1fr; gap: 20px; padding: 32px 20px; }
  .contact-info .info-block {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid var(--line-2);
    padding-bottom: 16px;
  }
  .contact-info .info-block:last-child { border-bottom: none; padding-bottom: 0; }

  .foot {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 32px 20px;
  }
  .foot > :first-child { grid-column: 1 / -1; }

  .sect-head { flex-direction: column; align-items: flex-start; }

  .page-header-grid { grid-template-columns: 1fr; }
  .header-cta { max-width: 100%; }

  .bento {
    display: block;
    padding: 32px 20px 64px;
    grid-template-rows: none;
  }
  .bento-card,
  .bento-verkoop,
  .bento-herstelling,
  .bento-messen {
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
    margin: 0 0 20px;
  }
  .bento-card:last-child { margin-bottom: 0; }
  .bento-verkoop .bento-content,
  .bento-herstelling .bento-content,
  .bento-messen .bento-content {
    flex: 1;
    padding: 28px 22px;
    border-right: none;
    border-bottom: 1px solid var(--line-2);
  }
  .bento-messen .bento-content {
    border-bottom-color: rgba(255,255,255,0.08);
    padding: 32px 24px;
  }
  .bento-title,
  .bento-herstelling .bento-title { font-size: 28px; }
  .bento-messen .bento-title { font-size: 32px; }
  .bento-media,
  .bento-media-messen { min-height: 260px; }
  .bento-media-verkoop { min-height: 0; }
  .bento-media-verkoop img { max-height: 170px; }
  .dienst-messen-photo img { min-height: 240px; }
}

@media (max-width: 480px) {
  .machine-grid { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr; }
  .hero-editorial .hero-title { font-size: 44px; }
  .hero-editorial .hero-title-top { font-size: 18px; }
  .cat-header { flex-direction: column; align-items: stretch; }
  .search-row { width: 100%; }
  .service-grid > a.s-has-icon .s-text { max-width: 68%; }
  .service-grid > a.s-has-icon .s-icon { width: 76px; height: 76px; }
  .service-grid > a.s-accent .s-icon { width: 92px; height: 92px; }
}

/* Product image lightbox (touch devices) */
.zoom-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y pinch-zoom;
}
.zoom-lightbox[hidden] { display: none; }
.zoom-lightbox img {
  display: block;
  max-width: none;
  width: 200vw;
  height: auto;
  margin: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.zoom-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-close:hover { background: rgba(0, 0, 0, .85); }
.zoom-hint {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  font-family: var(--mono, monospace);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}
