
:root {
  --ink: #101820;
  --muted: #5e6770;
  --steel: #e8ecef;
  --blue: #164a9a;
  --blue-dark: #0d336e;
  --white: #ffffff;
  --orange: #f3a51b;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  padding: 0 clamp(22px, 4vw, 64px);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #dce1e5;
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand { width: 220px; flex: 0 0 auto; margin-right: auto; }
.brand img { width: 100%; height: 76px; object-fit: contain; object-position: left center; }
.service-nav { display: flex; align-items: stretch; align-self: stretch; gap: 0; }
.service-nav button,
.service-nav a {
  appearance: none;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #313941;
  padding: 0 clamp(16px, 1.45vw, 26px);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.service-nav a { display: flex; align-items: center; }
.service-nav button:hover, .service-nav button:focus-visible,
.service-nav a:hover, .service-nav a:focus-visible { color: var(--blue); background: #f4f6f8; }
.service-nav button.active,
.service-nav a.active { color: var(--blue); border-bottom-color: var(--blue); background: #eef3f9; }
.header-cta { background: var(--blue); color: white; padding: 17px 26px; font-size: 16px; font-weight: 800; white-space: nowrap; }

.hero { min-height: calc(100svh - 88px); position: relative; color: white; display: flex; align-items: center; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; background: #091a27; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,16,27,.94) 0%, rgba(5,16,27,.78) 48%, rgba(5,16,27,.12) 82%); }
.hero-content { position: relative; width: min(830px, 72%); min-width: 0; padding: 48px clamp(24px, 6vw, 96px); animation: hero-in .3s ease-out; }
@keyframes hero-in { from { opacity: .35; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
.eyebrow { margin: 0 0 22px; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 800; color: #bad0ee; }
.eyebrow.dark { color: var(--blue); }
.hero h1 { margin: 0; font-size: clamp(40px, 4.6vw, 72px); line-height: 1.01; letter-spacing: -.045em; max-width: 820px; overflow-wrap: anywhere; }
.hero-copy { margin: 22px 0 0; font-size: clamp(16px, 1.35vw, 20px); line-height: 1.5; max-width: 660px; color: #e2e8ee; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0 0; padding: 0; list-style: none; }
.hero-highlights li { border: 1px solid rgba(255,255,255,.34); background: rgba(4,17,29,.34); padding: 10px 13px; font-size: 12px; font-weight: 800; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 24px; font-size: 14px; font-weight: 800; }
.button-primary { background: var(--orange); color: #151515; }
.button-ghost { border: 1px solid rgba(255,255,255,.55); color: white; }
.button:hover { transform: translateY(-1px); filter: brightness(1.04); }
.hero-tag { position: absolute; right: clamp(24px, 5vw, 80px); bottom: 28px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  grid-template-rows: minmax(620px, 1fr) auto;
  justify-content: stretch;
  align-items: stretch;
  background: #091a27;
}
.service-hero .hero-image {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
  background: #152b3a;
}
.service-hero[data-active-service="machinebouw"] .hero-image { object-position: center 46%; }
.service-hero[data-active-service="laserlassen"] .hero-image { object-position: center 46%; }
.service-hero[data-active-service="klimsporen"] .hero-image { object-position: center 26%; }
.service-hero[data-active-service="consulting"] .hero-image { object-position: center 35%; }
.service-hero .hero-shade { display: none; }
.service-hero .hero-content {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  align-self: center;
}
.service-hero .hero-tag {
  position: static;
  grid-column: 1;
  grid-row: 2;
  padding: 0 clamp(24px, 6vw, 96px) 30px;
  align-self: end;
}

.home-hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(420px, 740px) minmax(620px, 900px);
  justify-content: center;
  background: #0c1c29;
  color: white;
}
.home-intro {
  padding: clamp(46px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.home-intro h1 {
  margin: 0;
  font-size: clamp(44px, 4.7vw, 70px);
  line-height: 1.02;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
}
.home-intro > p:not(.eyebrow) {
  margin: 24px 0 0;
  max-width: 650px;
  color: #cbd6de;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
}
.home-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 30px 0;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.2);
}
.home-process div {
  min-height: 88px;
  padding: 15px;
  background: #122838;
  display: grid;
  align-content: center;
  gap: 7px;
}
.home-process span { color: #8fb1dc; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.home-process strong { font-size: 13px; line-height: 1.35; }
.home-intro > .button { align-self: flex-start; }
.home-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: auto;
  align-content: center;
  gap: 1px;
  padding: 1px;
  min-width: 0;
  min-height: 0;
  background: #31404b;
}
.home-photo-grid button,
.home-photo-grid > a {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #102331;
  color: white;
  cursor: pointer;
  text-align: left;
}
.home-photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #172b39;
  transition: transform .35s, filter .35s;
}
.home-photo-grid button[data-home-service="machinebouw"] img,
.home-photo-grid > a[data-home-service="machinebouw"] img { object-position: center 42%; }
.home-photo-grid button[data-home-service="laserlassen"] img,
.home-photo-grid > a[data-home-service="laserlassen"] img { object-position: center 52%; }
.home-photo-grid button[data-home-service="klimsporen"] img,
.home-photo-grid > a[data-home-service="klimsporen"] img { object-position: center 28%; }
.home-photo-grid button[data-home-service="consulting"] img,
.home-photo-grid > a[data-home-service="consulting"] img { object-position: center 35%; }
.home-photo-grid button:hover img, .home-photo-grid button:focus-visible img,
.home-photo-grid > a:hover img, .home-photo-grid > a:focus-visible img { transform: none; filter: brightness(1.08); }
.home-photo-grid button:focus-visible,
.home-photo-grid > a:focus-visible { outline: 4px solid var(--orange); outline-offset: -4px; z-index: 2; }
.home-photo-grid button > span,
.home-photo-grid > a > span {
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 11px clamp(12px, 1.25vw, 20px) 13px;
  background: #0b1c29;
  align-content: center;
}
.home-photo-grid small { color: #adc4e3; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.home-photo-grid strong { font-size: clamp(14px, 1.15vw, 20px); line-height: 1.15; overflow-wrap: anywhere; }

/* Openingsbeeld op desktop: exact één scherm hoog, met dezelfde
   links/rechts-verhouding als het aangeleverde voorbeeld. */
@media (min-width: 1281px) {
  .home-hero,
  .service-hero {
    height: calc(100vh - 88px);
    height: calc(100svh - 88px);
    min-height: 0;
    overflow: hidden;
  }

  .home-hero {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  }

  .home-photo-grid {
    height: 100%;
  }

  /* Elk dienstentabblad opent met exact dezelfde beeldhoogte. De tweede
     rij blijft voor het onderschrift gereserveerd, zonder dat de hero groeit. */
  .service-hero {
    grid-template-rows: minmax(0, 1fr) auto;
  }
}

.services { padding: 110px clamp(24px, 6vw, 96px) 124px; }
.section-heading { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 48px; align-items: start; max-width: 1420px; margin: 0 auto 54px; }
.section-heading h2 { margin: 0; font-size: clamp(32px, 3.2vw, 52px); line-height: 1.06; letter-spacing: -.03em; }
.section-heading > p:last-child { margin: 6px 0 0; color: var(--muted); line-height: 1.75; }
.service-grid { max-width: 1420px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card { border: 1px solid #d9dfe3; background: white; transition: transform .2s, box-shadow .2s; }
.service-card:hover, .service-card:focus-visible { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(21,36,48,.12); }
.service-image-wrap { aspect-ratio: 4/3; overflow: hidden; position: relative; background: #dde2e6; }
.service-image-wrap img { width: 100%; height: 100%; object-fit: contain; transition: filter .4s; }
.service-card:hover img { transform: none; }
.service-image-wrap span { position: absolute; left: 0; bottom: 0; background: var(--blue); color: white; width: 48px; height: 48px; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.service-card-copy { padding: 25px 24px 28px; }
.service-card h3 { margin: 0 0 14px; font-size: 20px; line-height: 1.25; }
.service-card p { margin: 0 0 18px; color: var(--muted); line-height: 1.55; font-size: 14px; }
.text-link { color: var(--blue); font-size: 13px; font-weight: 800; }

.service-selector-section { padding: 90px clamp(24px, 6vw, 96px) 0; }
.selector-heading {
  max-width: 1420px;
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
}
.selector-heading h2 { margin: 0; font-size: clamp(34px, 3.7vw, 58px); line-height: 1.05; letter-spacing: -.035em; }
.selector-heading > p { margin: 0; color: var(--muted); line-height: 1.7; }
.service-selector {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #d7dde2;
  background: white;
}
.service-choice {
  appearance: none;
  border: 0;
  border-right: 1px solid #d7dde2;
  background: white;
  color: var(--ink);
  padding: 25px 23px 26px;
  min-height: 172px;
  text-align: left;
  cursor: pointer;
  display: grid;
  align-content: start;
  gap: 10px;
  font: inherit;
  transition: background .2s, color .2s;
}
.service-choice:last-child { border-right: 0; }
.service-choice > span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.service-choice strong { font-size: 18px; line-height: 1.25; }
.service-choice small { color: var(--muted); line-height: 1.45; font-size: 12px; }
.service-choice:hover { background: #f2f5f8; }
.service-choice.active { background: var(--blue); color: white; }
.service-choice.active > span { color: #bcd0ea; }
.service-choice.active small { color: #d5e0ef; }
.service-choice:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
.service-panel { animation: service-in .28s ease-out; }
@keyframes service-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.detail {
  max-width: 1420px;
  margin: 0 auto;
  padding: 120px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.detail h2, .laser-section h2, .consulting h2, .about-strip h2, .contact-section h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.lead { color: var(--muted); font-size: 18px; line-height: 1.75; margin: 28px 0; }
.check-list { margin: 0 0 32px; padding: 0; list-style: none; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 28px; line-height: 1.5; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.inline-cta { color: var(--blue); font-weight: 800; font-size: 14px; border-bottom: 1px solid #9ab3d7; padding-bottom: 5px; }
.detail-visual { position: relative; background: var(--steel); min-height: 540px; overflow: hidden; }
.detail-visual > img { width: 100%; height: 100%; min-height: 540px; object-fit: contain; }
.machine-visual > img { object-position: center 34%; }
.stat-card { position: absolute; left: 28px; bottom: 28px; background: var(--blue); color: white; padding: 20px 24px; display: grid; gap: 6px; }
.stat-card strong { font-size: 18px; }
.stat-card span { font-size: 13px; color: #c8d7ec; }

.project-example {
  background: var(--ink);
  color: white;
  padding: 100px clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.project-example-copy { max-width: 560px; justify-self: end; }
.project-example h2 { margin: 0; font-size: clamp(38px, 4vw, 62px); line-height: 1.04; letter-spacing: -.035em; }
.project-example-copy > p:not(.eyebrow) { color: #c8d5e7; font-size: 17px; line-height: 1.75; margin: 26px 0 30px; }
.project-example .inline-cta { color: white; border-bottom-color: #73869a; }
.project-video { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #050b10; overflow: hidden; }
.project-video iframe { display: block; width: 100%; height: 100%; border: 0; }
.project-video iframe[hidden], .project-video-fallback[hidden] { display: none; }
.project-video-fallback { position: absolute; inset: 0; display: grid; place-items: center; color: white; overflow: hidden; }
.project-video-fallback::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(5,11,16,.12), rgba(5,11,16,.68)); }
.project-video-fallback img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-video-fallback span { position: relative; z-index: 1; display: grid; justify-items: center; gap: 5px; text-align: center; }
.project-video-fallback span::before { content: "▶"; width: 74px; height: 52px; margin-bottom: 8px; display: grid; place-items: center; padding-left: 4px; border-radius: 14px; background: #ff0033; font-size: 24px; }
.project-video-fallback strong { font-size: 20px; }
.project-video-fallback small { color: #d7e0e7; font-size: 13px; }

.machinepark { background: var(--ink); color: white; padding: 88px clamp(24px, 6vw, 96px) 100px; }
.mini-heading { max-width: 1420px; margin: 0 auto 36px; display: flex; align-items: end; justify-content: space-between; }
.mini-heading h2 { margin: 0; font-size: 38px; }
.mini-heading .eyebrow { margin: 0; }
.machine-grid { max-width: 1420px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.machine-grid article { background: #18242e; }
.machine-grid img { width: 100%; aspect-ratio: 4/3; object-fit: contain; filter: saturate(.72); }
.machine-grid h3 { margin: 0; padding: 22px 20px 25px; font-size: 16px; }

.laser-section { background: #0b2b58; color: white; padding: 120px clamp(24px, 6vw, 96px); }
.laser-intro { max-width: 1420px; margin: 0 auto 58px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
.laser-intro > p { color: #c8d5e7; line-height: 1.8; font-size: 17px; margin: 0; }
.laser-feature { max-width: 1420px; margin: 0 auto; display: grid; grid-template-columns: 1.25fr .75fr; background: white; color: var(--ink); }
.laser-feature > img { width: 100%; height: 100%; min-height: 640px; object-fit: contain; }
.laser-copy { padding: clamp(38px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.laser-copy h3 { margin: 0 0 28px; font-size: clamp(29px, 3vw, 44px); line-height: 1.1; }
.application-list { display: grid; gap: 0; border-top: 1px solid #dce1e5; }
.application-list span { padding: 14px 0; border-bottom: 1px solid #dce1e5; font-size: 14px; font-weight: 700; }
.note { margin: 26px 0; color: var(--muted); line-height: 1.6; font-size: 13px; }
.laser-copy .button { align-self: flex-start; }
.laser-gallery { max-width: 1420px; margin: 18px auto 0; display: grid; grid-template-columns: .9fr 1.25fr .9fr; gap: 18px; }
.laser-gallery img { width: 100%; height: 330px; object-fit: contain; background: #092449; }

.climb-section { align-items: start; }
.safety-box { border-left: 4px solid var(--orange); background: #f4f6f7; padding: 24px 26px; margin-top: 32px; }
.safety-box p { margin: 10px 0 0; color: var(--muted); line-height: 1.65; font-size: 14px; }
.climb-types { display: grid; grid-template-columns: 1fr; gap: 18px; }
.climb-types article { border: 1px solid #d9dfe3; background: white; overflow: hidden; }
.climb-types img { display: block; width: 100%; height: auto; aspect-ratio: 4/3; object-fit: contain; object-position: center; background: #eef1f3; }
.climb-types h3 { margin: 0; padding: 20px; font-size: 17px; }

.consulting { min-height: 680px; display: grid; grid-template-columns: 1.05fr .95fr; background: var(--ink); color: white; }
.consulting-method { padding: clamp(46px, 6vw, 96px); display: grid; align-content: center; gap: 12px; background: #e8ecef; color: var(--ink); }
.consulting-method > div { display: grid; grid-template-columns: 48px 1fr; gap: 5px 16px; padding: 24px; background: white; border-left: 4px solid var(--blue); }
.consulting-method span { grid-row: 1 / 3; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.consulting-method strong { font-size: 21px; }
.consulting-method p { grid-column: 2; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.consulting-content { display: grid; grid-template-rows: auto minmax(280px, 1fr); min-width: 0; }
.consulting-copy { padding: clamp(60px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; }
.consulting-visual { min-height: 300px; }
.consulting-visual img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.consulting > .consulting-method { padding: clamp(46px, 6vw, 96px); display: grid; }
.consulting p:not(.eyebrow) { color: #cbd3d9; font-size: 17px; line-height: 1.8; margin: 28px 0 36px; }
.consulting .consulting-method p { grid-column: 2; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.consulting .button { align-self: flex-start; }

.about-strip { max-width: 1420px; margin: 0 auto; padding: 110px clamp(24px, 6vw, 96px); display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
.about-strip > p { color: var(--muted); font-size: 18px; line-height: 1.8; margin: 0; }

.contact-section { background: var(--blue); color: white; padding: 110px clamp(24px, 6vw, 96px); display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.contact-title { max-width: 660px; margin-left: auto; }
.contact-title > p:last-child { color: #c9d8ed; line-height: 1.7; font-size: 17px; margin-top: 26px; }
.contact-card { background: white; color: var(--ink); display: grid; grid-template-columns: 1fr 1fr; }
.contact-card > div { padding: 32px; border-right: 1px solid #e0e4e7; border-bottom: 1px solid #e0e4e7; }
.contact-card span { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 800; margin-bottom: 12px; }
.contact-card a, .contact-card p { margin: 0; font-size: 17px; font-weight: 700; line-height: 1.5; }
.contact-card a { color: var(--blue); }
.contact-card .route-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  margin-top: 22px;
  padding: 12px 18px;
  background: var(--blue);
  color: white;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background-color .2s ease, transform .2s ease;
}
.contact-card .route-button span { margin: 0; color: inherit; font-size: 16px; line-height: 1; }
.contact-card .route-button:hover { background: #163f75; transform: translateY(-1px); }
.contact-card .route-button:focus-visible { outline: 3px solid #8eb9f0; outline-offset: 3px; }

footer { min-height: 120px; display: flex; align-items: center; gap: 30px; padding: 30px clamp(24px, 6vw, 96px); background: #07121c; color: #9aa5ad; font-size: 13px; }
footer img { width: 145px; height: auto; margin-right: 20px; background: white; padding: 8px 10px; }
.footer-linkedin { color: #d7e0e7; font-weight: 800; border-bottom: 1px solid #51606d; padding-bottom: 3px; }
.footer-linkedin:hover, .footer-linkedin:focus-visible { color: white; border-bottom-color: white; }
footer p:last-child { margin-left: auto; }

@media (max-width: 1280px) {
  .site-header { height: auto; min-height: 124px; flex-wrap: wrap; padding: 10px 20px 0; align-content: start; }
  .brand { width: 148px; }
  .brand img { height: 48px; }
  .header-cta { margin-left: auto; padding: 12px 18px; }
  .service-nav {
    order: 3;
    width: calc(100% + 40px);
    height: 58px;
    margin: 0 -20px;
    overflow-x: auto;
    border-top: 1px solid #e2e6e9;
    scrollbar-width: thin;
  }
  .service-nav button, .service-nav a { flex: 1 0 auto; padding: 0 18px; }
  .hero { min-height: 0; }
  .hero-content { width: 100%; }
  .service-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(360px, 46svh) auto auto;
  }
  .service-hero .hero-image { grid-column: 1; grid-row: 1; min-height: 0; padding: 0; }
  .service-hero .hero-content { grid-column: 1; grid-row: 2; width: min(920px, 100%); justify-self: center; }
  .service-hero .hero-tag { grid-column: 1; grid-row: 3; width: min(920px, 100%); justify-self: center; padding-bottom: 34px; }
  .home-hero { min-height: 0; grid-template-columns: minmax(0, 1fr); }
  .home-intro { width: min(100%, 1000px); justify-self: center; padding: 64px 40px; }
  .home-photo-grid { width: min(100%, 1000px); min-height: 680px; justify-self: center; }
  .home-process { grid-template-columns: 1fr; margin: 22px 0; }
  .home-process div { min-height: auto; padding: 10px 13px; grid-template-columns: 25px 1fr; align-items: center; }
  .section-heading { grid-template-columns: 1fr 1fr; }
  .section-heading .eyebrow { grid-column: 1/-1; margin-bottom: -20px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .selector-heading { grid-template-columns: 1fr; gap: 22px; }
  .service-selector { grid-template-columns: repeat(2,1fr); }
  .service-choice:nth-child(2) { border-right: 0; }
  .service-choice:nth-child(-n+2) { border-bottom: 1px solid #d7dde2; }
  .detail, .laser-feature, .consulting, .project-example { grid-template-columns: 1fr; }
  .project-example-copy { max-width: none; justify-self: stretch; }
  .consulting-content { grid-template-rows: auto minmax(340px, 1fr); }
  .detail-visual { order: -1; }
  .machine-grid { grid-template-columns: repeat(2,1fr); }
  .laser-intro, .about-strip, .contact-section { grid-template-columns: 1fr; gap: 42px; }
  .laser-feature > img { min-height: 520px; }
  .contact-title { margin-left: 0; }
}
@media (max-width: 640px) {
  .site-header { height: auto; min-height: 118px; padding: 8px 14px 0; }
  .brand { width: 132px; }
  .brand img { height: 44px; }
  .header-cta { padding: 10px 13px; font-size: 11px; }
  .service-nav { width: calc(100% + 28px); height: 58px; margin: 0 -14px; }
  .service-nav button, .service-nav a { font-size: 12px; padding: 0 15px; }
  .hero { min-height: 0; }
  .service-hero { grid-template-columns: 1fr; grid-template-rows: minmax(260px, 42svh) auto auto; }
  .service-hero .hero-image { grid-column: 1; grid-row: 1; padding: 0; }
  .service-hero .hero-content { grid-column: 1; grid-row: 2; padding: 30px 20px 70px; }
  .service-hero .hero-tag { grid-column: 1; grid-row: 3; padding: 0 20px 24px; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,16,27,.9), rgba(5,16,27,.58)); }
  .hero-content { width: 100%; padding: 30px 20px 64px; }
  .hero h1 { font-size: clamp(38px, 11vw, 50px); }
  .hero-copy { margin-top: 17px; font-size: 16px; }
  .hero-highlights { margin-top: 18px; gap: 7px; }
  .hero-highlights li { padding: 8px 10px; font-size: 11px; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .button { min-height: 46px; padding: 0 15px; font-size: 12px; }
  .hero-tag { left: 20px; right: auto; bottom: 16px; font-size: 9px; }
  .home-hero { min-height: 0; grid-template-columns: 1fr; }
  .home-intro { min-height: 0; padding: 48px 20px; }
  .home-intro h1 { font-size: 42px; }
  .home-process { margin: 22px 0; }
  .home-photo-grid { width: 100%; min-height: 0; grid-template-rows: repeat(2, minmax(230px, 48vw)); }
  .home-photo-grid button > span { min-height: 62px; padding: 9px 12px 11px; }
  .services { padding: 74px 18px 82px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card p { min-height: auto; }
  .service-selector-section { padding: 66px 18px 0; }
  .service-selector {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .service-choice {
    flex: 0 0 78%;
    min-height: 158px;
    scroll-snap-align: start;
    border-right: 1px solid #d7dde2 !important;
    border-bottom: 0 !important;
  }
  .detail { padding: 76px 18px; gap: 38px; }
  .detail h2, .laser-section h2, .consulting h2, .project-example h2, .about-strip h2, .contact-section h2 { font-size: 38px; }
  .project-example { padding: 74px 18px; gap: 36px; }
  .detail-visual, .detail-visual > img { min-height: 370px; }
  .machinepark, .laser-section, .about-strip, .contact-section { padding: 74px 18px; }
  .mini-heading { display: block; }
  .mini-heading .eyebrow { margin-bottom: 16px; }
  .machine-grid { grid-template-columns: 1fr; }
  .laser-intro { gap: 28px; }
  .laser-feature > img { min-height: 380px; }
  .laser-copy { padding: 34px 24px; }
  .laser-gallery { grid-template-columns: 1fr; }
  .laser-gallery img { height: 260px; }
  .climb-types { grid-template-columns: 1fr; }
  .consulting-method { min-height: 390px; padding: 28px 18px; }
  .consulting-method > div { padding: 18px 16px; grid-template-columns: 38px 1fr; }
  .consulting-copy { padding: 50px 22px 32px; }
  .consulting-visual { min-height: 260px; }
  .consulting > .consulting-method { padding: 28px 18px; }
  .contact-card { grid-template-columns: 1fr; }
  footer { align-items: flex-start; flex-direction: column; }
  footer p { margin: 0; }
  footer p:last-child { margin-left: 0; }
}

@media (max-width: 420px) {
  .home-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: minmax(260px, auto);
  }
  .home-intro h1, .hero h1 { font-size: 36px; }
}

/* Alle fotovakken houden hun vaste afmetingen en blijven volledig gevuld,
   ook wanneer de browser wordt ingezoomd. */
:root { --photo-fit: cover; }

.hero-image,
.home-photo-grid img,
.service-image-wrap img,
.detail-visual > img,
.machine-grid img,
.laser-feature > img,
.laser-gallery img,
.climb-types img,
.consulting-visual img {
  object-fit: var(--photo-fit);
}

.home-photo-grid {
  align-content: stretch;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .home-photo-grid {
    grid-template-rows: repeat(2, minmax(230px, 48vw));
  }
}

@media (max-width: 420px) {
  .home-photo-grid {
    grid-template-rows: none;
    grid-auto-rows: minmax(260px, auto);
  }
}

/* Desktopopeningen: alleen de inhoud is groter gemaakt. De website zelf
   blijft altijd 100% breed en de fotozones blijven het volledige vak vullen. */
@media (min-width: 1281px) {
  .home-intro {
    padding: clamp(64px, 6vw, 124px);
  }

  .home-intro h1 {
    font-size: clamp(60px, 4.7vw, 96px);
  }

  .home-intro > p:not(.eyebrow) {
    font-size: clamp(18px, 1.35vw, 28px);
  }

  .home-process div {
    min-height: 108px;
    padding: 18px;
  }

  .home-process strong {
    font-size: clamp(14px, .9vw, 18px);
  }

  .home-photo-grid button > span {
    min-height: 80px;
  }

  .home-photo-grid strong {
    font-size: clamp(16px, 1.15vw, 24px);
  }

  .service-hero .hero-content {
    padding: 48px clamp(64px, 6vw, 124px);
  }

  .hero h1 {
    font-size: clamp(54px, 4.6vw, 94px);
  }

  .hero-copy {
    font-size: clamp(17px, 1.35vw, 27px);
  }

  .hero-highlights li {
    padding: 12px 15px;
    font-size: 13px;
  }

  .hero-actions .button,
  .home-intro > .button {
    min-height: 64px;
    padding: 0 30px;
    font-size: 16px;
  }

  .service-hero .hero-tag {
    padding-right: clamp(64px, 6vw, 124px);
    padding-left: clamp(64px, 6vw, 124px);
    font-size: 13px;
  }
}
