:root {
  --ink: #2f2f2f;
  --ink-soft: #444444;
  --paper: #ffffff;
  --peach: #f7eeeb;
  --peach-strong: #f0d9d0;
  --copper: #c56a41;
  --copper-dark: #a8502f;
  --muted: #6d6d6d;
  --line: #dedad7;
  --whatsapp: #25d366;
  --shell: min(1160px, calc(100% - 48px));
}

/* Doorlopend dienstenverhaal met leveranciersmerken. */
.service-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 8vw, 150px);
  align-items: start;
}

.service-lead {
  margin: 0;
  color: white;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.service-copy {
  max-width: 700px;
}

.service-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.service-copy p + p {
  margin-top: 24px;
}

.supplier-logos {
  margin-top: clamp(62px, 8vw, 120px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 25px;
}

.supplier-logos > p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.supplier-logos > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 16px;
}

.supplier-logos a {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 24px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.supplier-logos a:first-child img {
  width: min(100%, 180px);
  height: auto;
}

.supplier-logos .van-wijk-wordmark {
  flex-direction: column;
  gap: 2px;
  color: #fff;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  line-height: 1;
}

.van-wijk-wordmark span {
  color: #cfad68;
  font-size: clamp(25px, 2vw, 32px);
  letter-spacing: -0.04em;
}

.van-wijk-wordmark small {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (hover: hover) {
  .supplier-logos a:hover {
    border-color: rgba(255, 255, 255, 0.72);
    transform: translateY(-3px);
  }
}

@media (max-width: 760px) {
  .service-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-lead {
    font-size: clamp(29px, 8.8vw, 42px);
  }

  .service-copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .supplier-logos {
    margin-top: 58px;
  }

  .supplier-logos > div {
    grid-template-columns: 1fr;
  }

  .supplier-logos a {
    min-height: 98px;
    height: 98px;
  }
}

/* Rustige beweging tijdens het scrollen; zonder JavaScript blijft alles zichtbaar. */
.reveal-ready [data-reveal] {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(32px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 680ms ease-out;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-ready [data-reveal="left"] {
  transform: translateX(-42px) scale(0.985);
}

.reveal-ready [data-reveal="right"] {
  transform: translateX(42px) scale(0.985);
}

.reveal-ready [data-reveal="scale"] {
  transform: scale(0.965);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  will-change: auto;
}

@media (max-width: 760px) {
  .reveal-ready [data-reveal] {
    filter: blur(4px);
    transform: translateY(18px) scale(0.99);
    transition-duration: 560ms;
  }

  .reveal-ready [data-reveal="left"],
  .reveal-ready [data-reveal="right"] {
    transform: translateY(18px) scale(0.99);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure,
address {
  margin: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  background: white;
  padding: 9px 13px;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: var(--copper);
  color: white;
  font-size: 12px;
}

.topbar-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.topbar-inner > span {
  font-weight: 700;
}

.topbar-inner > div {
  display: flex;
  gap: 24px;
}

.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(47, 47, 47, 0.98);
  color: white;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 86px;
  height: auto;
}

.brand > span,
.footer-brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong,
.footer-brand strong {
  font-size: 19px;
  letter-spacing: 0.01em;
}

.brand small,
.footer-brand small {
  margin-top: 4px;
  color: var(--peach-strong);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  border-bottom: 2px solid transparent;
  padding: 26px 0 23px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  border-color: var(--copper);
  color: white;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  display: grid;
  width: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.26);
}

.mobile-menu nav a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 17px;
  font-size: 14px;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, var(--peach) 0 16%, var(--peach-strong) 44%, transparent 64%),
    var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  inset: auto 1.5% 52px auto;
  width: min(65vw, 790px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(0, 0, 0, 0.26));
}

.hero-shade {
  background: linear-gradient(90deg, var(--ink) 0 24%, rgba(47, 47, 47, 0.9) 40%, transparent 67%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 610px;
  align-items: center;
  padding-block: 56px;
}

.hero-panel {
  width: min(500px, 100%);
  border-top: 5px solid var(--copper);
  background: rgba(255, 255, 255, 0.95);
  padding: 42px 44px 40px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.kicker,
.section-label {
  color: var(--copper-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 9px;
  font-size: clamp(38px, 4.8vw, 54px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero-panel > p:not(.kicker) {
  margin-top: 19px;
  color: var(--muted);
  font-size: 17px;
}

.button-row {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid transparent;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.button-primary {
  background: var(--copper);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--copper-dark);
}

.button-secondary {
  border-color: var(--ink);
  background: white;
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--ink);
  color: white;
}

.facts-bar {
  border-bottom: 1px solid var(--line);
  background: white;
}

.facts-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.facts-inner p {
  display: flex;
  min-height: 102px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 18px 32px;
}

.facts-inner p:first-child {
  padding-left: 0;
}

.facts-inner p:last-child {
  border-right: 0;
}

.facts-inner strong {
  font-size: 16px;
}

.facts-inner span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.content-section,
.services-section,
.fleet-section,
.contact-section,
.map-section {
  padding: 88px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.about-image {
  position: relative;
  width: 100%;
  padding: 26px 18px 31px 28px;
  background: var(--peach);
}

.about-image::before {
  display: none;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 62%;
  height: 9px;
  background: var(--copper);
  content: "";
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1600 / 1200;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 26px rgba(47, 47, 47, 0.18);
}

.about-copy h2,
.plain-heading h2,
.contact-copy h2 {
  max-width: 720px;
  margin-top: 8px;
  font-size: clamp(31px, 4vw, 43px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.about-copy > p:not(.section-label) {
  max-width: 690px;
  margin-top: 20px;
  color: var(--muted);
}

.about-note {
  display: flex;
  max-width: 590px;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 6px 13px;
  border-left: 4px solid var(--copper);
  background: var(--peach);
  padding: 16px 19px;
  font-style: normal;
}

.about-note span {
  color: var(--muted);
}

.services-section {
  background: var(--peach);
}

.plain-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: 40px 70px;
}

.plain-heading .section-label,
.plain-heading h2 {
  grid-column: 1;
}

.plain-heading h2 {
  margin-top: -29px;
  padding-top: 37px;
}

.plain-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  gap: 16px;
}

.service-card {
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  background: white;
  padding: 25px 27px;
}

.service-card:last-child {
  grid-column: 1 / -1;
}

.service-card h3 {
  font-size: 19px;
}

.service-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.specialism {
  display: grid;
  grid-template-columns: 280px 1fr;
  margin-top: 28px;
  border-top: 1px solid rgba(47, 47, 47, 0.22);
  padding-top: 23px;
  gap: 35px;
}

.specialism p {
  color: var(--muted);
}

.fleet-section {
  background: white;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  gap: 20px;
}

.fleet-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--peach);
  padding: 0;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.fleet-card:hover,
.fleet-card:focus-visible {
  border-color: var(--copper);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(47, 47, 47, 0.14);
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  padding: 16px 12px 12px;
  object-fit: contain;
  filter: drop-shadow(0 10px 8px rgba(47, 47, 47, 0.2));
}

.fleet-card-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  border-top: 1px solid var(--line);
  background: white;
  padding: 16px 17px 17px;
  align-items: end;
  gap: 2px 12px;
}

.fleet-card-caption strong {
  font-size: 17px;
}

.fleet-card-caption > span {
  grid-column: 1;
  display: block;
  color: var(--copper-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fleet-card-caption small {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.fleet-dialog {
  width: min(1040px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  overflow: auto;
  border: 0;
  background: white;
  padding: 0;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.fleet-dialog::backdrop {
  background: rgba(22, 22, 22, 0.78);
  backdrop-filter: blur(3px);
}

.fleet-dialog-header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: white;
  padding: 20px 24px;
}

.fleet-dialog-header span {
  color: var(--copper-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fleet-dialog-header h3 {
  margin-top: 2px;
  font-size: 27px;
  line-height: 1.15;
}

.fleet-dialog-close {
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  background: white;
  padding: 9px 13px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.fleet-dialog-close:hover,
.fleet-dialog-close:focus-visible {
  background: var(--ink);
  color: white;
}

.fleet-dialog-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.fleet-dialog-images figure {
  background: var(--peach);
  padding: 24px;
}

.fleet-dialog-images img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: contain;
  filter: drop-shadow(0 14px 11px rgba(47, 47, 47, 0.2));
}

.fleet-dialog-images figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.combination-block {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  margin-top: 58px;
  align-items: center;
  background: var(--ink);
  color: white;
}

.combination-block > img {
  width: 100%;
  height: 100%;
  min-height: 335px;
  padding: 28px;
  background: var(--peach);
  object-fit: contain;
  filter: drop-shadow(0 14px 12px rgba(0, 0, 0, 0.22));
}

.combination-block > div {
  padding: 40px;
}

.combination-block h3 {
  margin-top: 6px;
  font-size: 29px;
  line-height: 1.18;
}

.combination-block > div > p:last-child {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  background: var(--copper);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.section-label-light {
  color: white;
}

.contact-copy > p:not(.section-label) {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.button-light {
  background: white;
  color: var(--ink);
}

.button-whatsapp {
  border-color: white;
  color: white;
}

.button-whatsapp svg {
  width: 20px;
  height: 20px;
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  border-color: var(--whatsapp);
  background: var(--whatsapp);
  color: white;
}

.contact-card {
  background: white;
  padding: 31px 34px;
  color: var(--ink);
  font-style: normal;
  box-shadow: 0 15px 35px rgba(83, 34, 15, 0.2);
}

.contact-card p {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.contact-card p:first-child {
  padding-top: 0;
}

.contact-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card a:not(.route-link) {
  font-weight: 800;
}

.route-link {
  display: inline-block;
  margin-top: 19px;
  color: var(--copper-dark);
  font-weight: 800;
}

.map-section {
  background: var(--peach);
}

.map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.map-heading h2 {
  margin-top: 7px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.map-heading address {
  border-left: 4px solid var(--copper);
  padding-left: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.map-card {
  position: relative;
  min-height: 430px;
  margin-top: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e6e1de;
  box-shadow: 0 14px 36px rgba(47, 47, 47, 0.13);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  transition: filter 160ms ease;
}

.map-card-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
}

.map-card-link span {
  background: var(--ink);
  padding: 12px 17px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.24);
}

.map-card:hover iframe,
.map-card:focus-within iframe {
  filter: contrast(1.04) brightness(0.93);
}

.map-card-link:hover span,
.map-card-link:focus-visible span {
  background: var(--copper-dark);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 122px;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}

.footer-brand {
  justify-self: start;
  color: white;
}

.footer-brand img {
  width: 68px;
}

.footer-brand strong {
  font-size: 16px;
}

.footer-inner > a:last-child {
  justify-self: end;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.whatsapp-float {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.27);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 11px 28px rgba(0, 0, 0, 0.32);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--peach-strong);
  outline-offset: 3px;
}

/* Zakelijke, moderne vormgeving */
body {
  background: #fdfcfb;
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.005em;
}

h1,
h2,
h3 {
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  text-wrap: balance;
}

.topbar {
  background: var(--copper-dark);
  letter-spacing: 0.025em;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(37, 36, 35, 0.94);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
}

.brand img {
  width: 94px;
}

.desktop-nav {
  gap: 36px;
}

.desktop-nav a {
  position: relative;
  border: 0;
  padding: 29px 0 27px;
  font-size: 13px;
  letter-spacing: 0.025em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--copper);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  min-height: 720px;
  background: var(--ink);
}

.hero-media,
.hero-fallback,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 48%, rgba(167, 119, 92, 0.22), transparent 36%),
    linear-gradient(120deg, #191817 0%, #292522 58%, #171615 100%);
}

.hero-fallback {
  object-fit: contain;
  object-position: center 55%;
  transform: scale(1.04);
}

.hero-video {
  object-fit: cover;
  object-position: center 52%;
}

.hero-video {
  z-index: 1;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(25, 24, 23, 0.93) 0%, rgba(25, 24, 23, 0.76) 42%, rgba(25, 24, 23, 0.18) 78%),
    linear-gradient(0deg, rgba(25, 24, 23, 0.38), transparent 45%);
}

.hero-inner {
  z-index: 3;
  min-height: 720px;
  padding-block: 96px 125px;
}

.hero-panel {
  width: min(690px, 72%);
  border: 0;
  background: transparent;
  padding: 0;
  color: white;
  box-shadow: none;
}

.kicker,
.section-label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.kicker::before,
.section-label::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero .kicker {
  color: var(--peach-strong);
}

.hero h1 {
  max-width: 680px;
  margin-top: 16px;
  font-size: clamp(53px, 6.2vw, 78px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-panel > p:not(.kicker) {
  max-width: 590px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 18px;
  line-height: 1.65;
}

.button-row {
  margin-top: 34px;
  gap: 14px;
}

.button {
  min-height: 52px;
  border-radius: 3px;
  padding: 13px 22px;
  font-size: 13px;
  letter-spacing: 0.015em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  backdrop-filter: blur(8px);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  border-color: white;
  background: white;
  color: var(--ink);
}

.facts-bar {
  position: relative;
  z-index: 5;
  margin-top: -55px;
  border: 0;
  background: transparent;
}

.facts-inner {
  overflow: hidden;
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 8px;
  background: white;
  box-shadow: 0 22px 55px rgba(35, 31, 28, 0.13);
}

.facts-inner p {
  min-height: 110px;
  padding: 23px 34px;
}

.facts-inner p:first-child {
  padding-left: 34px;
}

.facts-inner strong {
  font-size: 15px;
}

.facts-inner span {
  margin-top: 4px;
}

.content-section,
.services-section,
.fleet-section,
.contact-section,
.map-section {
  padding: 112px 0;
}

.content-section {
  padding-top: 135px;
}

.about-grid {
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1fr);
  gap: clamp(58px, 8vw, 105px);
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--peach);
  padding: 14px;
  box-shadow: 0 24px 55px rgba(47, 47, 47, 0.12);
}

.about-image::before {
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: auto;
  width: 86px;
  height: 5px;
}

.about-image img {
  border-radius: 4px;
  box-shadow: none;
}

.about-copy h2,
.plain-heading h2,
.contact-copy h2 {
  margin-top: 14px;
  font-size: clamp(38px, 4.6vw, 54px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.07;
}

.about-copy > p:not(.section-label) {
  margin-top: 23px;
  font-size: 16px;
  line-height: 1.8;
}

.about-note {
  border: 0;
  border-radius: 4px;
  background: var(--peach);
  padding: 18px 21px;
}

.services-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(197, 106, 65, 0.06), transparent 34%),
    var(--peach);
}

.plain-heading {
  align-items: center;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  gap: 18px;
}

.service-card,
.service-card:last-child {
  grid-column: auto;
}

.service-card {
  min-height: 190px;
  border: 1px solid rgba(47, 47, 47, 0.09);
  border-left: 0;
  border-radius: 7px;
  padding: 30px 29px;
  box-shadow: 0 12px 28px rgba(47, 47, 47, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(197, 106, 65, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(47, 47, 47, 0.09);
}

.service-card h3 {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.15;
}

.service-card p {
  margin-top: 13px;
  line-height: 1.7;
}

.specialism {
  margin-top: 34px;
  border-top-color: rgba(47, 47, 47, 0.13);
  padding-top: 27px;
}

.fleet-section {
  background: #fdfcfb;
}

.fleet-grid {
  margin-top: 52px;
  gap: 22px;
}

.fleet-card {
  border-color: rgba(47, 47, 47, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(47, 47, 47, 0.06);
}

.fleet-card img {
  padding: 22px 16px 15px;
}

.fleet-card-caption {
  padding: 18px 19px 20px;
}

.combination-block {
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 0 22px 48px rgba(47, 47, 47, 0.14);
}

.combination-block > div {
  padding: 48px;
}

.combination-block h3 {
  font-size: 34px;
  font-weight: 500;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(197, 106, 65, 0.12), transparent 38%),
    #eee5e0;
  color: var(--ink);
}

.contact-section::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(197, 106, 65, 0.14);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
}

.contact-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-section .section-label-light {
  color: var(--copper-dark);
}

.contact-section .button-light {
  background: var(--copper);
  color: white;
}

.contact-section .button-light:hover,
.contact-section .button-light:focus-visible {
  background: var(--copper-dark);
}

.contact-section .button-whatsapp {
  border-color: var(--ink);
  color: var(--ink);
}

.contact-card {
  border-radius: 7px;
  padding: 37px 38px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

.map-section {
  background: #f5f1ee;
}

.map-heading h2 {
  font-size: clamp(38px, 4.6vw, 52px);
  font-weight: 500;
}

.map-card {
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  box-shadow: 0 20px 48px rgba(47, 47, 47, 0.14);
}

.site-footer {
  border-top: 1px solid rgba(47, 47, 47, 0.09);
  background: #f7f3f0;
  color: var(--muted);
}

.site-footer .footer-brand {
  color: var(--ink);
}

.site-footer .footer-brand img {
  filter: brightness(0);
  opacity: 0.82;
}

/* Softer, more interactive business presentation */
.button {
  border-radius: 999px;
  padding-inline: 26px;
}

.facts-inner {
  border-radius: 34px 8px 34px 8px;
}

.facts-inner p {
  transition: background-color 180ms ease, transform 180ms ease;
}

.about-image {
  border-radius: 52px 10px 52px 10px;
  padding: 10px;
  transition: border-radius 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.about-image img {
  border-radius: 43px 6px 43px 6px;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-note {
  border-radius: 24px 5px 24px 5px;
}

.services-section {
  overflow: hidden;
}

.services-section::after {
  position: absolute;
  right: -140px;
  bottom: -230px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(197, 106, 65, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.service-grid {
  counter-reset: service;
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  padding: 34px 30px 30px;
  box-shadow: none;
  counter-increment: service;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card::before {
  display: block;
  margin-bottom: 24px;
  color: var(--copper-dark);
  content: "0" counter(service);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card::after {
  position: absolute;
  right: 30px;
  bottom: 0;
  left: 30px;
  height: 3px;
  background: var(--copper);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 220ms ease, transform 260ms ease;
}

.service-card:hover {
  border-color: rgba(197, 106, 65, 0.3);
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(47, 47, 47, 0.08);
}

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.specialism {
  border-top: 0;
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  padding: 20px 28px;
}

.fleet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 24px;
}

.fleet-card {
  overflow: hidden;
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 18px;
  background: #f8f3f0;
  box-shadow: none;
  transition:
    border-color 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

.fleet-card:nth-child(even) {
  border-radius: 18px;
}

.fleet-card:hover,
.fleet-card:focus-visible {
  border-color: rgba(197, 106, 65, 0.28);
  border-radius: 18px;
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(47, 47, 47, 0.1);
}

.fleet-card:nth-child(even):hover,
.fleet-card:nth-child(even):focus-visible {
  border-radius: 18px;
}

.fleet-card img {
  padding: 28px 20px 16px;
  transform: scale(0.96);
  transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.fleet-card:hover img,
.fleet-card:focus-visible img {
  transform: scale(1.04) translateY(-4px);
}

.fleet-card-caption {
  border-top: 1px solid rgba(47, 47, 47, 0.07);
  background: white;
  padding: 20px 22px 23px;
}

.fleet-card-caption small {
  color: var(--copper-dark);
  transition: transform 180ms ease;
}

.fleet-card:hover .fleet-card-caption small,
.fleet-card:focus-visible .fleet-card-caption small {
  transform: translateX(5px);
}

.fleet-dialog {
  border-radius: 34px 8px 34px 8px;
}

.fleet-dialog-header {
  border-bottom: 0;
}

.fleet-dialog-close {
  border-radius: 999px;
}

.combination-block {
  border-radius: 18px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.combination-block > img {
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.contact-card {
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(47, 47, 47, 0.08);
}

.route-link {
  transition: gap 180ms ease, color 180ms ease;
}

.route-link:hover,
.route-link:focus-visible {
  gap: 12px;
}

.map-card {
  border-radius: 18px;
}

.whatsapp-float {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

/* Refined accents and small visual details */
.section-label::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: 0.45;
}

.about-copy h2::after,
.plain-heading h2::after,
.contact-copy h2::after,
.map-heading h2::after {
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--copper), rgba(197, 106, 65, 0.12));
  content: "";
}

.facts-inner p {
  position: relative;
}

.facts-inner p::after {
  position: absolute;
  top: 0;
  left: 34px;
  width: 44px;
  height: 3px;
  background: var(--copper);
  content: "";
  opacity: 0.72;
}

.about-note {
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--copper);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.55), transparent 58%),
    var(--peach);
}

.service-card::before {
  width: fit-content;
  border: 1px solid rgba(197, 106, 65, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  padding: 5px 9px;
}

.fleet-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 8%, rgba(197, 106, 65, 0.08), transparent 25%),
    #fdfcfb;
}

.fleet-section::before {
  position: absolute;
  top: 80px;
  right: -180px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(197, 106, 65, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.fleet-section > .shell {
  position: relative;
  z-index: 1;
}

.fleet-card img {
  filter: drop-shadow(0 13px 10px rgba(47, 47, 47, 0.15));
}

.fleet-card-caption small {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-bottom: 1px solid rgba(197, 106, 65, 0.35);
  padding-bottom: 3px;
}

.combination-block {
  border: 1px solid rgba(47, 47, 47, 0.08);
  background: #eee5e0;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(47, 47, 47, 0.1);
}

.combination-block > img {
  border-right: 1px solid rgba(47, 47, 47, 0.08);
  background:
    radial-gradient(circle at 50% 46%, white, transparent 58%),
    #f8f3f0;
}

.combination-block > div {
  position: relative;
}

.combination-block > div > p:last-child {
  color: var(--muted);
}

.contact-card span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
  vertical-align: 2px;
}

.map-card-link span {
  border-radius: 999px;
}

.site-footer {
  position: relative;
}

.site-footer::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--copper) 25% 75%, transparent);
  content: "";
  opacity: 0.65;
}

@media (hover: hover) {
  .facts-inner p:hover {
    z-index: 1;
    background: var(--peach);
    transform: translateY(-4px);
  }

  .about-image:hover {
    border-radius: 10px 52px 10px 52px;
    transform: translateY(-6px) rotate(-0.35deg);
    box-shadow: 0 30px 65px rgba(47, 47, 47, 0.16);
  }

  .about-image:hover img {
    transform: scale(1.025);
  }

  .combination-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(47, 47, 47, 0.18);
  }

  .combination-block:hover > img {
    transform: scale(1.025);
  }

  .whatsapp-float:hover {
    transform: translateY(-4px) scale(1.06);
  }
}

@media (min-width: 981px) {
  .service-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-card {
    grid-column: span 2;
  }

  .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .service-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-dialog-images {
    grid-template-columns: 1fr;
  }

  .fleet-dialog-header {
    min-height: 80px;
    padding: 16px;
  }

  .fleet-dialog-header h3 {
    font-size: 21px;
  }

  .fleet-dialog-images figure {
    padding: 16px;
  }

  .combination-block {
    grid-template-columns: 1fr;
  }

  .combination-block > img {
    min-height: 0;
    max-height: 500px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 620px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .topbar-inner {
    min-height: 34px;
    justify-content: center;
  }

  .topbar-inner > span,
  .topbar-inner a:first-child {
    display: none;
  }

  .topbar-inner > div {
    gap: 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 68px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 8px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero,
  .hero-inner {
    min-height: 610px;
  }

  .hero {
    background: var(--ink);
  }

  .hero-fallback,
  .hero-video {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(25, 24, 23, 0.18) 0 25%, rgba(25, 24, 23, 0.72) 59%, rgba(25, 24, 23, 0.96) 100%),
      linear-gradient(90deg, rgba(25, 24, 23, 0.45), transparent);
  }

  .hero-inner {
    align-items: flex-end;
    padding-block: 48px 34px;
  }

  .hero-panel {
    width: 100%;
    padding: 0;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(39px, 10.5vw, 51px);
    line-height: 1.01;
  }

  .hero-panel > p:not(.kicker) {
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.55;
  }

  .button-row {
    flex-direction: column;
    margin-top: 25px;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .facts-inner {
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .facts-bar {
    margin-top: 0;
    border-bottom: 1px solid var(--line);
    background: white;
  }

  .facts-inner p,
  .facts-inner p:first-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 4px;
  }

  .facts-inner p:last-child {
    border-bottom: 0;
  }

  .content-section,
  .services-section,
  .fleet-section,
  .contact-section,
  .map-section {
    padding: 60px 0;
  }

  .about-grid,
  .plain-heading,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-image {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .about-copy h2,
  .plain-heading h2,
  .contact-copy h2 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .plain-heading h2 {
    margin-top: 6px;
    padding-top: 0;
  }

  .plain-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 0;
  }

  .specialism {
    grid-template-columns: 1fr;
    gap: 6px;
    border-radius: 16px;
    padding: 22px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 15px;
  }

  .combination-block {
    margin-top: 38px;
  }

  .combination-block > div {
    padding: 28px 24px;
  }

  .combination-block h3 {
    font-size: 25px;
  }

  .contact-card {
    padding: 27px 24px;
  }

  .map-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .map-heading h2 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .map-card {
    min-height: 340px;
    margin-top: 27px;
  }

  .map-card-link {
    padding: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 32px 0;
    gap: 16px;
    text-align: center;
  }

  .footer-brand,
  .footer-inner > a:last-child {
    justify-self: center;
  }

  .whatsapp-float {
    right: 17px;
    bottom: 17px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 390px) {
  .brand > span {
    display: none;
  }

  .hero-panel {
    padding-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Editorial redesign inspired by modern campaign sites, in Marcel Bakkum's house style */
:root {
  --ink: #171615;
  --ink-soft: #302d2b;
  --paper: #fbfaf8;
  --peach: #f2e8e3;
  --peach-strong: #e4cec4;
  --copper: #b45e3b;
  --copper-dark: #8e452a;
  --muted: #6d6864;
  --line: rgba(23, 22, 21, 0.15);
  --shell: min(1320px, calc(100% - 72px));
}

body {
  background: var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

h1,
h2,
h3,
.brand strong,
.footer-brand strong {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.045em;
}

.topbar {
  position: relative;
  z-index: 60;
  background: var(--copper);
}

.topbar-inner {
  min-height: 34px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header {
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, rgba(18, 17, 16, 0.48), transparent);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 86px;
  justify-content: flex-start;
}

.brand img {
  width: 92px;
}

.brand strong {
  font-size: 21px;
  font-weight: 600;
}

.desktop-nav {
  gap: 38px;
}

.desktop-nav a {
  position: relative;
  border: 0;
  padding: 31px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  height: 1px;
}

.desktop-nav a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.44);
  padding: 10px 18px;
}

.hero,
.hero-inner {
  min-height: min(820px, 100svh);
}

.hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink);
}

.hero-media {
  background:
    radial-gradient(circle at 80% 46%, rgba(180, 94, 59, 0.24), transparent 35%),
    linear-gradient(120deg, #171615 0%, #29231f 56%, #11100f 100%);
}

.hero-fallback {
  inset: 0 -7% 0 auto;
  width: min(79vw, 1240px);
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.9) contrast(1.04);
}

.hero-video {
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 17, 16, 0.98) 0%, rgba(18, 17, 16, 0.91) 35%, rgba(18, 17, 16, 0.42) 62%, rgba(18, 17, 16, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 17, 16, 0.54), transparent 42%);
}

.hero-inner {
  align-items: center;
  padding-block: 84px 110px;
}

.hero-panel {
  width: min(790px, 64%);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(62px, 6.7vw, 108px);
  font-weight: 500;
  line-height: 0.91;
  text-wrap: balance;
}

.hero-panel > p:not(.kicker, .hero-meta) {
  max-width: 660px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.35vw, 21px);
}

.kicker,
.section-label {
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.19em;
}

.kicker::before,
.section-label::before {
  width: 48px;
  height: 1px;
}

.section-label::after {
  display: none;
}

.hero .button-row {
  margin-top: 40px;
}

.button {
  min-height: 54px;
  border-radius: 1px;
  padding-inline: 26px;
  font-size: 13px;
  letter-spacing: 0.015em;
}

.button-primary {
  box-shadow: none;
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
}

.hero-meta {
  margin-top: 74px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.facts-bar {
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--ink);
  color: white;
}

.facts-inner {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.facts-inner p,
.facts-inner p:first-child {
  min-height: 130px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  padding: 30px 34px;
}

.facts-inner p:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.facts-inner p::after {
  top: auto;
  bottom: 0;
  left: 34px;
  width: 52px;
  height: 2px;
}

.facts-inner strong {
  color: white;
  font-size: 15px;
}

.facts-inner span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.content-section,
.services-section,
.fleet-section,
.contact-section,
.map-section {
  padding: 140px 0;
}

.content-section {
  background: var(--paper);
}

.about-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(70px, 8vw, 140px);
  align-items: stretch;
}

.about-image {
  min-height: 700px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-image img {
  height: 100%;
  object-fit: cover;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2,
.plain-heading h2,
.contact-copy h2,
.map-heading h2 {
  max-width: 920px;
  font-size: clamp(52px, 5.2vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.about-copy h2::after,
.plain-heading h2::after,
.contact-copy h2::after,
.map-heading h2::after {
  display: none;
}

.about-copy > p:not(.section-label) {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.flow-intro {
  max-width: 720px;
  margin: 0 0 70px;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.flow-intro-light {
  color: white;
}

.about-note {
  margin-top: 44px;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 22px 0;
}

.services-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.services-section::before,
.fleet-section::after {
  display: none;
}

.services-section > .shell,
.fleet-section > .shell {
  position: relative;
  z-index: 1;
}

.plain-heading {
  gap: 70px;
}

.services-section .plain-heading > p:last-child,
.services-section .section-label {
  color: rgba(255, 255, 255, 0.58);
}

.services-section .flow-intro {
  color: rgba(255, 255, 255, 0.78);
}

.services-section .section-label {
  color: #d88863;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0;
  margin-top: 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card,
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:last-child {
  grid-column: auto;
  min-height: 260px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  padding: 38px 42px 42px;
  color: white;
  box-shadow: none;
}

.service-card:nth-child(even) {
  border-right: 0;
}

.service-card::before {
  width: auto;
  margin: 0 0 60px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: #d88863;
  font-size: 12px;
}

.service-card::after {
  display: none;
}

.service-card h3 {
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 500;
}

.service-card p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.52);
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--copper);
  color: white;
  transform: none;
  box-shadow: none;
}

.service-card:hover::before,
.service-card:hover p {
  color: white;
}

.specialism {
  margin-top: 58px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
  padding: 28px 0;
  color: white;
}

.specialism p {
  color: rgba(255, 255, 255, 0.55);
}

.fleet-section {
  background: #f2ede9;
}

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

.fleet-section::after {
  display: none;
}

.fleet-heading > p:last-child {
  color: var(--muted);
}

.fleet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 90px;
  border: 1px solid rgba(23, 22, 21, 0.14);
  background: rgba(23, 22, 21, 0.14);
}

.fleet-card,
.fleet-card:nth-child(even) {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #f8f4f1;
  box-shadow: none;
}

.fleet-card:hover,
.fleet-card:focus-visible,
.fleet-card:nth-child(even):hover,
.fleet-card:nth-child(even):focus-visible {
  border-radius: 0;
  background: white;
  transform: none;
  box-shadow: none;
}

.fleet-card img {
  min-height: 270px;
  padding: 34px 20px 16px;
  object-fit: contain;
  filter: drop-shadow(0 17px 12px rgba(23, 22, 21, 0.16));
}

.reveal-ready .fleet-card[data-reveal] {
  transform-origin: center bottom;
}

.fleet-card:hover img,
.fleet-card:focus-visible img {
  transform: scale(1.075) translateY(-6px);
}

.fleet-card-caption {
  min-height: 118px;
  border-top: 1px solid rgba(23, 22, 21, 0.12);
  background: transparent;
  padding: 22px 24px;
}

.fleet-card-caption strong {
  font-size: 19px;
}

.fleet-card-caption small {
  border: 0;
  color: var(--copper-dark);
}

.combination-block {
  margin-top: 90px;
  overflow: hidden;
  border: 1px solid rgba(23, 22, 21, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.combination-block > img {
  border-right: 1px solid rgba(23, 22, 21, 0.16);
  background: #fbf8f6;
}

.combination-block > div {
  background: var(--copper);
  color: white;
}

.combination-block > div > p:last-child,
.combination-block .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--copper);
  color: white;
}

.contact-section::after {
  position: absolute;
  right: -6vw;
  bottom: -11vw;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  gap: clamp(70px, 10vw, 160px);
}

.contact-copy > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.contact-section .section-label {
  color: white;
}

.contact-card {
  position: relative;
  z-index: 1;
  align-self: stretch;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: transparent;
  padding: 10px 0 10px 52px;
  color: white;
  box-shadow: none;
}

.contact-card p {
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.56);
}

.contact-card span::before {
  background: white;
}

.route-link {
  color: white;
}

.button-light {
  border-color: white;
}

.button-whatsapp {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: white;
}

.map-section {
  background: var(--paper);
}

.map-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 46px;
}

.map-heading address {
  border-left: 1px solid var(--copper);
}

.map-card {
  min-height: 600px;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.map-card-link {
  padding: 22px;
}

.map-card-link span {
  border-radius: 1px;
  background: var(--ink);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.site-footer::before {
  display: none;
}

.footer-inner {
  min-height: 150px;
}

.footer-brand small {
  color: var(--copper-dark);
}

@media (hover: hover) {
  .facts-inner p:hover {
    background: rgba(255, 255, 255, 0.045);
    transform: none;
  }

  .about-image:hover {
    border-radius: 0;
    transform: translateY(-5px);
    box-shadow: 22px 22px 0 var(--peach-strong);
  }

  .combination-block:hover {
    transform: translateY(-5px);
    box-shadow: 18px 18px 0 rgba(180, 94, 59, 0.14);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 44px, 820px);
  }

  .hero h1 {
    font-size: clamp(58px, 8.5vw, 84px);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 620px;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 30px, 620px);
  }

  .topbar-inner {
    letter-spacing: 0.04em;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 72px;
  }

  .mobile-menu summary {
    border-radius: 0;
  }

  .hero,
  .hero-inner {
    min-height: max(680px, 100svh);
  }

  .hero-fallback {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 63% center;
    transform: scale(1.08);
  }

  .hero-video {
    object-position: 63% center;
    transform: scale(1.08);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(18, 17, 16, 0.08) 0 30%, rgba(18, 17, 16, 0.76) 58%, rgba(18, 17, 16, 0.99) 84%),
      linear-gradient(90deg, rgba(18, 17, 16, 0.38), transparent);
  }

  .hero-inner {
    align-items: flex-end;
    padding-top: 42px;
    padding-bottom: max(38px, env(safe-area-inset-bottom));
  }

  .hero-panel {
    width: 100%;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(47px, 13.8vw, 68px);
    line-height: 0.94;
  }

  .hero-panel > p:not(.kicker, .hero-meta) {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero .button-row {
    margin-top: 28px;
  }

  .hero-meta {
    margin-top: 34px;
    font-size: 9px;
  }

  .facts-inner {
    grid-template-columns: 1fr;
  }

  .facts-inner p,
  .facts-inner p:first-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
    padding: 20px 3px;
  }

  .facts-inner p::after {
    left: 3px;
  }

  .content-section,
  .services-section,
  .fleet-section,
  .contact-section,
  .map-section {
    padding: 82px 0;
  }

  .about-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .about-copy h2,
  .plain-heading h2,
  .contact-copy h2,
  .map-heading h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .about-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .flow-intro {
    margin-bottom: 48px;
    font-size: 26px;
  }

  .plain-heading {
    gap: 28px;
  }

  .service-grid {
    grid-template-columns: 1fr !important;
    margin-top: 54px;
  }

  .service-card,
  .service-card:nth-child(even) {
    min-height: 0;
    border-right: 0;
    padding: 28px 0 32px;
  }

  .service-card::before {
    margin-bottom: 32px;
  }

  .specialism {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .fleet-card img {
    min-height: 245px;
  }

  .combination-block {
    margin-top: 54px;
  }

  .contact-card {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
    padding: 34px 0 0;
  }

  .map-heading {
    padding-bottom: 28px;
  }

  .map-card {
    min-height: 420px;
  }

  .footer-inner {
    min-height: 0;
  }
}

/* Rustigere, gecentreerde hero met het beeldmerk als vast herkenningspunt. */
.hero-inner {
  justify-content: center;
  text-align: center;
}

.hero-panel {
  display: flex;
  width: min(780px, 100%);
  align-items: center;
  flex-direction: column;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: clamp(32px, 4vw, 54px);
  color: white;
  text-align: left;
}

.hero-brand img {
  width: 108px;
  height: auto;
}

.hero-brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.hero-brand strong {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero-brand small {
  margin-top: 5px;
  color: var(--peach-strong);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.hero-panel > p:not(.kicker, .hero-meta) {
  text-align: center;
}

.hero .button-row {
  justify-content: center;
}

.hero-shade {
  background: rgba(18, 17, 16, 0.44);
}

.hero-shade::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(31vw, 520px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.42));
  box-shadow: -28px 0 65px rgba(0, 0, 0, 0.22);
  content: "";
}

.about-image {
  min-height: 0;
  aspect-ratio: 1600 / 1200;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-grid.contact-details-only {
  display: flex;
  justify-content: center;
}

.contact-details-only .contact-card {
  width: min(100%, 520px);
  align-self: auto;
}

/* De video blijft het beeld; het logo en de tekst begeleiden rustig. */
.hero,
.hero-inner {
  min-height: min(760px, 100svh);
}

.hero-inner {
  padding-block: 62px 72px;
}

.hero-brand {
  display: block;
  margin-bottom: clamp(26px, 3.5vw, 42px);
}

.hero-brand img {
  width: clamp(145px, 15vw, 205px);
  filter: invert(1);
  opacity: 0.92;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(50px, 5.3vw, 80px);
  line-height: 0.96;
}

.hero-panel > p:not(.kicker, .hero-meta) {
  max-width: 580px;
  margin-top: 25px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.58;
}

.hero .button-row {
  margin-top: 30px;
}

.hero .button {
  min-height: 48px;
  padding-inline: 21px;
}

.hero-meta {
  margin-top: 48px;
  font-size: 10px;
}

.hero-shade {
  background: rgba(18, 17, 16, 0.38);
}

.hero-shade::after {
  width: min(26vw, 420px);
  border-left-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.27));
  box-shadow: -22px 0 52px rgba(0, 0, 0, 0.14);
}

/* Klassieke, redactionele typografie zonder externe font-download. */
body {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

h1,
h2,
h3,
.service-lead,
.flow-intro,
.about-copy > p,
.contact-card {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

.hero h1,
.service-lead,
.flow-intro {
  font-weight: 400;
  letter-spacing: -0.035em;
}

.button,
.hero-meta,
.supplier-logos > p,
.contact-card span,
.fleet-card-caption span,
.fleet-card-caption small {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 760px) {
  .hero-inner {
    justify-content: flex-end;
  }

  .hero-brand {
    margin-bottom: 24px;
  }

  .hero-brand img {
    width: 154px;
  }

  .hero-shade::after {
    width: 28vw;
    box-shadow: -14px 0 32px rgba(0, 0, 0, 0.12);
  }

  .hero h1 {
    font-size: clamp(43px, 11.7vw, 60px);
  }

  .hero-panel > p:not(.kicker, .hero-meta) {
    margin-top: 20px;
  }

  .hero .button-row {
    margin-top: 26px;
  }

  .hero-meta {
    margin-top: 34px;
  }
}

/* Hero: behoud de eerste, egale filmische overlay — rustig boven de video. */
@media (min-width: 761px) {
  .hero-inner {
    justify-content: flex-end;
    text-align: left;
  }

  .hero-panel {
    width: min(500px, 43vw);
    align-items: flex-start;
    padding-left: clamp(22px, 3vw, 46px);
    border-left: 1px solid rgba(255, 255, 255, 0.26);
    text-align: left;
  }

  .hero-brand,
  .hero h1,
  .hero-panel > p:not(.kicker, .hero-meta),
  .hero .button-row {
    text-align: left;
    justify-content: flex-start;
  }

  .hero h1 {
    max-width: 480px;
    font-size: clamp(40px, 3.65vw, 57px);
    line-height: 1.02;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  }

  .hero-panel > p:not(.kicker, .hero-meta) {
    max-width: 455px;
    font-size: clamp(15px, 1.08vw, 17px);
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.52);
  }

  .hero-meta {
    text-align: left;
  }

  .hero-shade {
    background: rgba(18, 17, 16, 0.38);
  }

  .hero-shade::after {
    width: min(26vw, 420px);
    border-left-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.27));
    box-shadow: -22px 0 52px rgba(0, 0, 0, 0.14);
  }
}

@media (max-width: 760px) {
  .hero-panel {
    border-left: 0;
  }

  .hero h1 {
    font-size: clamp(38px, 10.2vw, 52px);
    line-height: 1.04;
  }

  .hero-shade {
    background: rgba(18, 17, 16, 0.38);
  }
}

/* Uitvaartondernemingen: klikbare woordmerken, geen losse commerciële kaarten. */
.clients-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 10vw, 150px);
  background: #f8f4f1;
}

.clients-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1160px, calc(100% - 48px));
  height: 1px;
  background: rgba(68, 53, 46, 0.16);
  content: "";
  transform: translateX(-50%);
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(52px, 9vw, 145px);
  align-items: start;
}

.clients-intro {
  max-width: 330px;
}

.clients-intro .section-label {
  margin-bottom: 18px;
  color: var(--copper-dark);
}

.clients-intro h2 {
  margin: 0;
  color: #3e302b;
  font-size: clamp(32px, 3.25vw, 50px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.clients-intro > p:last-child {
  margin-top: 25px;
  color: #675b56;
  font-size: 16px;
  line-height: 1.68;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(68, 53, 46, 0.2);
}

.client-list li {
  border-bottom: 1px solid rgba(68, 53, 46, 0.2);
}

.client-list li:nth-child(odd) {
  border-right: 1px solid rgba(68, 53, 46, 0.2);
}

.client-list a {
  position: relative;
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 58px 24px 0;
  color: #3c302b;
  transition: color 180ms ease, padding 180ms ease;
}

.client-list li:nth-child(even) a {
  padding-left: 32px;
}

.client-wordmark {
  display: block;
  max-width: 260px;
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.client-list small {
  display: block;
  margin-top: 8px;
  color: #806d62;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.client-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  color: var(--copper-dark);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  opacity: 0.58;
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

@media (hover: hover) {
  .client-list a:hover {
    padding-left: 10px;
    color: var(--copper-dark);
  }

  .client-list li:nth-child(even) a:hover {
    padding-left: 42px;
  }

  .client-list a:hover .client-arrow {
    opacity: 1;
    transform: translate(4px, -50%);
  }
}

@media (max-width: 760px) {
  .clients-section {
    padding-block: 78px;
  }

  .clients-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .clients-intro {
    max-width: 440px;
  }

  .client-list {
    grid-template-columns: 1fr;
  }

  .client-list li:nth-child(odd) {
    border-right: 0;
  }

  .client-list a,
  .client-list li:nth-child(even) a {
    min-height: 106px;
    padding: 20px 50px 20px 0;
  }

  .client-wordmark {
    font-size: clamp(27px, 7.3vw, 34px);
  }
}

/* Beeldmerken altijd volledig in beeld, zonder uitsnijden op smalle schermen. */
.hero-brand,
.footer-brand,
.supplier-logos a {
  overflow: visible;
}

.hero-brand img,
.footer-brand img,
.supplier-logos img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.hero-brand img {
  max-height: 78px;
}

.footer-brand img {
  max-height: 46px;
}

.supplier-logos a:first-child img {
  width: min(100%, 180px);
  max-height: 62px;
}

/* Opdrachtgevers als compacte, echte beeldmerken — geen zware kaarten. */
.clients-section {
  padding-block: clamp(68px, 8vw, 110px);
}

.clients-layout {
  grid-template-columns: minmax(210px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(42px, 7vw, 104px);
}

.client-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(68, 53, 46, 0.16);
}

.client-list li,
.client-list li:nth-child(odd) {
  border-right: 1px solid rgba(68, 53, 46, 0.16);
  border-bottom: 1px solid rgba(68, 53, 46, 0.16);
}

.client-list a,
.client-list li:nth-child(even) a {
  min-height: 116px;
  justify-content: center;
  padding: 18px 32px 16px 18px;
}

.client-logo {
  display: block;
  width: 100%;
  max-width: 150px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.client-list small {
  margin-top: 10px;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.client-arrow {
  right: 11px;
  font-size: 16px;
}

@media (hover: hover) {
  .client-list a:hover,
  .client-list li:nth-child(even) a:hover {
    padding-left: 23px;
  }

  .client-list a:hover .client-logo {
    transform: translateY(-2px);
  }
}

.client-logo {
  transition: transform 180ms ease;
}

@media (max-width: 960px) {
  .client-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .clients-section {
    padding-block: 62px;
  }

  .client-list {
    grid-template-columns: 1fr;
  }

  .client-list li:nth-child(odd) {
    border-right: 0;
  }

  .client-list a,
  .client-list li:nth-child(even) a {
    min-height: 108px;
    padding: 16px 18px;
  }

  .client-logo {
    width: min(100%, 260px);
    max-width: 260px;
    height: 60px;
    object-position: left center;
  }

  .client-list small {
    margin-top: 7px;
    font-size: 8px;
  }

  .client-arrow {
    display: none;
  }
}

/* Hero: tekst direct op de film, met alleen links een zachte leesbaarheidsschaduw. */
.hero-inner {
  padding-bottom: clamp(54px, 7vw, 92px);
}

.hero-panel {
  width: min(510px, 48vw);
  background: transparent;
  color: white;
  padding: 0;
}

.hero-brand img {
  width: clamp(155px, 14vw, 205px);
  filter: invert(1);
  opacity: 0.95;
}

.hero h1,
.hero-panel > p:not(.kicker, .hero-meta) {
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.48);
}

.hero h1 {
  font-size: clamp(38px, 3.8vw, 56px);
}

.hero .button-primary {
  background: white;
  color: var(--ink);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.74);
  color: white;
}

.hero-meta {
  color: rgba(255, 255, 255, 0.72);
}

.hero-shade {
  background: rgba(18, 17, 16, 0.22);
}

.hero-shade::after {
  display: block;
  left: 0;
  right: auto;
  width: min(48vw, 720px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.49), rgba(5, 5, 5, 0.18) 62%, transparent);
  box-shadow: 28px 0 60px rgba(0, 0, 0, 0.13);
}

@media (max-width: 760px) {
  .hero-inner {
    width: var(--shell);
    padding: 94px 0 52px;
  }

  .hero-panel {
    width: min(100%, 460px);
  }

  .hero-brand img {
    width: 160px;
  }

  .hero-shade {
    background: rgba(18, 17, 16, 0.34);
  }

  .hero-shade::after {
    width: 86vw;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.34), transparent);
    box-shadow: none;
  }
}

/* Contactgegevens sluiten links aan op de inhoudslijn van de pagina. */
.contact-grid.contact-details-only {
  justify-content: flex-start;
}

.contact-details-only .contact-card {
  margin-right: auto;
  text-align: left;
}

/* Compact dienstenverhaal: korter lezen, meer ruimte voor de inhoud erna. */
.services-section {
  padding-block: clamp(66px, 7vw, 88px);
}

.service-story {
  gap: clamp(34px, 6vw, 84px);
}

.service-lead {
  font-size: clamp(28px, 2.65vw, 42px);
  line-height: 1.12;
}

.service-copy p {
  font-size: 16px;
  line-height: 1.65;
}

.service-copy p + p {
  margin-top: 15px;
}

.supplier-logos {
  margin-top: clamp(42px, 5vw, 66px);
}

@media (max-width: 760px) {
  .services-section {
    padding-block: 60px;
  }

  .service-story {
    gap: 28px;
  }
}

/* Contactgegevens hebben geen grote kleurvlakte nodig: compact en rustig. */
.contact-section:has(.contact-details-only) {
  padding-block: clamp(44px, 5vw, 68px);
}

.contact-grid.contact-details-only {
  min-height: 0;
}

.contact-details-only .contact-card {
  width: min(100%, 440px);
  padding: 26px 30px;
}

@media (max-width: 760px) {
  .contact-section:has(.contact-details-only) {
    padding-block: 42px;
  }

  .contact-details-only .contact-card {
    padding: 24px;
  }
}

/* Hero als redactioneel eindbeeld: het videobeeld blijft vrij, de informatie vormt één rustige onderrand. */
.hero,
.hero-inner {
  min-height: min(820px, 100svh);
}

.hero-inner {
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 120px;
  padding-bottom: 0;
}

.hero-panel {
  width: min(720px, 62vw);
  align-items: flex-start;
  border-left: 0;
  background: rgba(247, 238, 235, 0.97);
  color: var(--ink);
  padding: clamp(30px, 4vw, 58px) clamp(28px, 4.5vw, 68px) clamp(30px, 4vw, 50px);
  text-align: left;
}

.hero-brand {
  margin-bottom: 26px;
}

.hero-brand img {
  width: clamp(160px, 15vw, 220px);
  max-height: none;
  filter: none;
  opacity: 1;
}

.hero h1,
.hero-panel > p:not(.kicker, .hero-meta) {
  max-width: 580px;
  color: var(--ink);
  text-align: left;
  text-shadow: none;
}

.hero h1 {
  font-size: clamp(38px, 3.8vw, 58px);
  line-height: 1.02;
}

.hero-panel > p:not(.kicker, .hero-meta) {
  margin-top: 18px;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.58;
}

.hero .button-row {
  margin-top: 25px;
  justify-content: flex-start;
}

.hero .button {
  min-height: 42px;
  border-radius: 0;
  padding-inline: 16px;
}

.hero .button-primary {
  background: var(--ink);
}

.hero .button-secondary {
  border-color: rgba(47, 47, 47, 0.35);
  color: var(--ink);
}

.hero-meta {
  margin-top: 30px;
  color: rgba(47, 47, 47, 0.63);
  text-align: left;
}

.hero-shade {
  background: rgba(18, 17, 16, 0.3);
}

.hero-shade::after {
  display: none;
}

@media (max-width: 760px) {
  .hero,
  .hero-inner {
    min-height: max(700px, 100svh);
  }

  .hero-inner {
    width: 100%;
    padding: 94px 0 0;
  }

  .hero-panel {
    width: 100%;
    padding: 28px 22px 30px;
  }

  .hero-brand {
    margin-bottom: 21px;
  }

  .hero-brand img {
    width: 165px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.2vw, 44px);
  }

  .hero .button-row {
    gap: 9px;
  }

  .hero .button {
    min-height: 42px;
    padding-inline: 13px;
  }

  .hero-meta {
    margin-top: 24px;
  }
}

/* Hero als vrij filmbeeld: geen tekstvlak, wel een rustige leesbare signatuur. */
.hero {
  min-height: 0;
  height: min(100svh, 56.25vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0e1114;
}

.hero-media {
  background: #0e1114;
}

.hero-fallback,
.hero-video {
  object-fit: contain;
  object-position: center;
  transform: none;
}

.hero-inner {
  min-height: 100%;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(28px, 4vw, 64px);
}

.hero-panel {
  display: block;
  width: min(490px, 39vw);
  padding: 0;
  background: transparent;
  color: white;
  text-align: left;
}

.hero-brand {
  display: block;
  margin: 0 0 clamp(16px, 2vw, 27px);
}

.hero-brand img {
  width: clamp(145px, 13vw, 205px);
  filter: invert(1);
  opacity: 0.96;
}

.hero h1,
.hero-panel > p:not(.kicker, .hero-meta) {
  max-width: 460px;
  color: white;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.hero h1 {
  margin-top: 0;
  font-size: clamp(32px, 3.35vw, 52px);
  line-height: 1.03;
}

.hero-panel > p:not(.kicker, .hero-meta) {
  margin-top: 13px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
}

.hero .button-row {
  margin-top: 22px;
  justify-content: flex-start;
}

.hero .button {
  min-height: 40px;
  border-radius: 999px;
  padding: 10px 16px;
}

.hero .button-primary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(11, 13, 15, 0.14);
  color: white;
}

.hero-meta {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  text-align: left;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.62);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.54) 0%, rgba(6, 8, 11, 0.22) 35%, transparent 64%),
    linear-gradient(0deg, rgba(6, 8, 11, 0.46) 0%, transparent 43%);
}

.hero-shade::after {
  display: none;
}

@media (max-width: 760px) {
  .hero {
    min-height: 640px;
    height: 100svh;
    aspect-ratio: auto;
  }

  .hero-fallback,
  .hero-video {
    object-fit: cover;
    object-position: center center;
  }

  .hero-inner {
    width: var(--shell);
    padding: 30px 0 max(32px, env(safe-area-inset-bottom));
  }

  .hero-panel {
    width: min(100%, 360px);
  }

  .hero-brand {
    margin-bottom: 16px;
  }

  .hero-brand img {
    width: 148px;
  }

  .hero h1 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .hero-panel > p:not(.kicker, .hero-meta) {
    max-width: 335px;
    font-size: 14px;
  }

  .hero .button-row {
    margin-top: 19px;
    gap: 8px;
  }

  .hero .button {
    min-height: 39px;
    padding: 9px 14px;
  }

  .hero-meta {
    margin-top: 18px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(6, 8, 11, 0.12) 0%, rgba(6, 8, 11, 0.18) 45%, rgba(6, 8, 11, 0.84) 100%),
      linear-gradient(90deg, rgba(6, 8, 11, 0.22), transparent 66%);
  }
}

@supports (height: 100dvh) {
  @media (max-width: 760px) {
    .hero {
      height: 100dvh;
    }
  }
}

/* Contact en locatie vormen één rustig geheel. */
.contact-section:has(.contact-details-map) {
  background: var(--paper);
  color: var(--ink);
  padding-block: clamp(66px, 8vw, 112px);
}

.contact-grid.contact-details-map {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(38px, 6vw, 92px);
}

.contact-details-map .contact-card {
  width: auto;
  margin: 0;
  align-self: center;
  border: 0;
  border-left: 1px solid var(--copper);
  background: transparent;
  padding: 8px 0 8px clamp(24px, 3vw, 42px);
  color: var(--ink);
  box-shadow: none;
  text-align: left;
}

.contact-details-map .contact-card p {
  border-color: var(--line);
}

.contact-details-map .contact-card span {
  color: var(--muted);
}

.contact-details-map .route-link {
  color: var(--copper-dark);
}

.contact-details-map .map-card {
  min-height: clamp(330px, 32vw, 470px);
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 18px 44px rgba(35, 31, 28, 0.12);
}

.contact-details-map .map-card-link span {
  background: var(--ink);
}

@media (max-width: 760px) {
  .contact-section:has(.contact-details-map) {
    padding-block: 58px;
  }

  .contact-grid.contact-details-map {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-details-map .contact-card {
    padding-left: 24px;
  }

  .contact-details-map .map-card {
    min-height: 340px;
  }
}

/* Compact wagenpark op telefoon: twee voertuigen naast elkaar. */
@media (max-width: 760px) {
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
    gap: 1px;
  }

  .fleet-card img {
    min-height: 128px;
    padding: 14px 10px 8px;
  }

  .fleet-card-caption {
    min-height: 86px;
    padding: 12px 13px 13px;
    gap: 3px;
  }

  .fleet-card-caption strong {
    font-size: 14px;
    line-height: 1.12;
  }

  .fleet-card-caption > span {
    font-size: 8px;
    line-height: 1.2;
  }

  .fleet-card-caption small {
    display: none;
  }
}

/* Uitvaartkisten: beide merken als één gecentreerd blok. */
.supplier-logos {
  text-align: center;
}

.supplier-logos > div {
  justify-content: center;
}

.supplier-logos a {
  justify-content: center;
}

/* iPhone: randloze hero en lichte, direct reagerende beweging. */
html {
  background: #0e1114;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 0;
  }

  body {
    min-height: 100%;
    background: #0e1114;
  }

  main {
    background: var(--paper);
  }

  .hero {
    width: 100%;
    min-height: 100svh;
    height: 100dvh;
    max-height: none;
    isolation: isolate;
  }

  .hero-media {
    overflow: hidden;
    background: #0e1114;
  }

  .hero-fallback,
  .hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .hero-inner {
    min-height: 100%;
    padding-top: max(20px, env(safe-area-inset-top));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .reveal-ready [data-reveal],
  .reveal-ready [data-reveal="left"],
  .reveal-ready [data-reveal="right"] {
    filter: none;
    transform: translate3d(0, 12px, 0);
    transition:
      opacity 220ms ease-out,
      transform 320ms cubic-bezier(0.22, 0.8, 0.24, 1);
    will-change: auto;
  }

  .reveal-ready [data-reveal="scale"] {
    transform: translate3d(0, 10px, 0) scale(0.985);
  }

  .reveal-ready [data-reveal].is-visible {
    filter: none;
    transform: translate3d(0, 0, 0);
  }

  .fleet-grid {
    gap: 6px;
    margin-top: 26px;
  }

  .fleet-card {
    contain: layout paint;
  }

  .fleet-card img {
    min-height: 0;
    aspect-ratio: 1.45 / 1;
    padding: 9px 7px 3px;
    object-fit: contain;
  }

  .fleet-card-caption {
    min-height: 62px;
    padding: 9px 10px 10px;
  }

  .fleet-card-caption strong {
    font-size: 13px;
    line-height: 1.1;
  }

  .fleet-card-caption > span {
    font-size: 8px;
  }
}

/* Wagenpark: minder lege ruimte, terwijl iedere auto volledig zichtbaar blijft. */
.fleet-card img {
  min-height: 0;
  aspect-ratio: 1.72 / 1;
  padding: 18px 14px 7px;
  object-fit: contain;
}

.fleet-card-caption {
  min-height: 92px;
  padding: 16px 18px 17px;
}

@media (max-width: 760px) {
  .fleet-card img {
    aspect-ratio: 1.68 / 1;
    padding: 7px 6px 2px;
  }

  .fleet-card-caption {
    min-height: 60px;
    padding: 8px 9px 9px;
  }
}

/* Compacte, goed leesbare privacyverklaring in de footer. */
.footer-privacy {
  padding-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
}

.footer-privacy summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.footer-privacy summary::-webkit-details-marker {
  display: none;
}

.footer-privacy summary::after {
  content: "+";
  color: var(--copper);
  font-size: 16px;
  line-height: 1;
}

.footer-privacy[open] summary::after {
  content: "−";
}

.footer-privacy-copy {
  display: grid;
  max-width: 760px;
  gap: 10px;
  margin-top: 14px;
  line-height: 1.55;
}

.footer-privacy-copy p {
  margin: 0;
}

.footer-privacy a {
  color: var(--copper-dark);
  text-decoration-color: var(--copper);
  text-underline-offset: 3px;
}
