:root {
  /* Design tokens: kleurpalet, fonts, spacing en layoutmaten voor de hele site */
  --color-bg: #efe9e9;
  --color-surface: #ffffff;
  --color-surface-alt: #f6f1ef;
  --color-accent: #cfc2b6;
  --color-muted: #8c837d;
  --color-text-soft: #505050;
  --color-text-strong: #2e2d29;
  --color-border: rgba(46, 45, 41, 0.12);
  --color-border-strong: rgba(46, 45, 41, 0.24);
  --color-overlay: rgba(46, 45, 41, 0.58);
  --color-shadow: rgba(46, 45, 41, 0.08);
  --font-heading: "Roboto Slab", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --radius-sm: 0.35rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.5rem;
  --container-width: 76rem;
  --container-narrow: 56rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6rem;
  --transition: 220ms ease;
  --header-height: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-strong);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: clip;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-muted);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-text-strong);
  color: var(--color-surface);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

/* Layout helpers: containers, secties, headings en herbruikbare knoppen */
.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.container--narrow {
  width: min(calc(100% - 2rem), var(--container-narrow));
}

.section {
  padding: var(--space-3xl) 0;
}

.section--soft {
  background: var(--color-bg);
}

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

.section-heading {
  margin-bottom: var(--space-2xl);
}

.section-heading--center {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 var(--space-sm);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
}

.eyebrow--light {
  color: rgba(239, 233, 233, 0.78);
}

.section-heading > .eyebrow::after,
.content-block > .eyebrow::after,
.contact-overview__heading > .eyebrow::after,
.virtual-showroom__copy > .eyebrow::after {
  content: "";
  display: block;
  width: clamp(3.4rem, 7vw, 5.5rem);
  height: 0.14rem;
  margin-top: 0.85rem;
  background: var(--color-accent);
}

.section-heading--center > .eyebrow::after {
  margin-left: auto;
  margin-right: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

p {
  margin: 0;
}

.section-heading p:last-child,
.content-block p + p,
.blog-card__content p,
.project-card__content p,
.final-cta__content p,
.site-footer p,
.faq-panel p {
  color: var(--color-text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

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

.button--primary {
  background: var(--color-text-strong);
  color: var(--color-surface);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #44433d;
}

.button--secondary {
  background: transparent;
  border-color: var(--color-text-strong);
  color: var(--color-text-strong);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--color-text-strong);
  color: var(--color-surface);
}

.button--accent {
  background: var(--color-accent);
  color: var(--color-text-strong);
}

.button--accent:hover,
.button--accent:focus-visible {
  background: #d9cfc6;
}

.button--ghost-light {
  background: transparent;
  color: var(--color-surface);
  border-color: rgba(239, 233, 233, 0.8);
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
  background: rgba(239, 233, 233, 0.12);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-strong);
  font-weight: 600;
  margin-top: var(--space-md);
}

.text-link::after {
  content: "→";
  transition: transform var(--transition);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(0.15rem);
}

/* Header: sticky navigatie, linkstates en mobiel menu */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(46, 45, 41, 0.08);
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(46, 45, 41, 0.1);
  box-shadow: 0 0.45rem 1.2rem rgba(46, 45, 41, 0.04);
}

.site-header__inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  flex: 0 0 auto;
}

.header-right {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 0.7rem;
}

.site-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.site-brand__logo {
  display: block;
  width: clamp(9.75rem, 12vw, 11rem);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__mobile-cta {
  display: none;
}

.site-nav__list a,
.footer-links a {
  position: relative;
  color: var(--color-text-strong);
  transition: color var(--transition), opacity var(--transition);
}

.site-nav__list a {
  font-size: 0.875rem;
  font-weight: 500;
}

.site-nav__list a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-text-strong);
  opacity: 0.72;
}

.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  white-space: nowrap;
  min-height: 2.85rem;
  padding: 0.82rem 1.45rem;
  background: #cfc2b6;
  color: var(--color-text-strong);
  border: 1px solid rgba(46, 45, 41, 0.08);
  box-shadow: none;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #d8cdc2;
  color: var(--color-text-strong);
}

.header-phone {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(207, 194, 182, 1);
  color: var(--color-text-strong);
  background: rgba(207, 194, 182, 0.16);
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.header-phone svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.95;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: rgba(207, 194, 182, 0.26);
  border-color: rgba(207, 194, 182, 1);
  transform: translateY(-1px);
  box-shadow: 0 0.6rem 1.2rem rgba(46, 45, 41, 0.06);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--color-text-strong);
  padding: 0.35rem 0;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle__icon::before {
  top: -0.35rem;
}

.menu-toggle__icon::after {
  top: 0.35rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  transform: translateY(0.35rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  transform: translateY(-0.35rem) rotate(-45deg);
}

/* Hero: fullscreen introductie met overlay, CTA's en subtiele scroll-indicator */
.hero {
  position: relative;
  min-height: 66svh;
  display: grid;
  align-items: stretch;
  overflow: clip;
  background: var(--color-text-strong);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7rem;
  background: linear-gradient(180deg, rgba(239, 233, 233, 0) 0%, rgba(239, 233, 233, 0.72) 70%, var(--color-bg) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__video,
.hero__overlay,
.final-cta__media,
.final-cta__overlay {
  position: absolute;
  inset: 0;
}

.hero__video {
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  z-index: 0;
}

.final-cta__media {
  z-index: 0;
  overflow: hidden;
}

.final-cta__image,
.final-cta__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(46, 45, 41, 0.18) 0%, rgba(46, 45, 41, 0.28) 34%, rgba(46, 45, 41, 0.48) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  min-height: auto;
  height: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: min(100%, 48rem);
  padding-top: calc(var(--header-height) + 3.2rem);
  padding-bottom: 5.5rem;
  transform: translateY(-2.45rem);
  color: var(--color-surface);
}

#usp.section {
  padding-top: 3.25rem;
}

.hero .eyebrow {
  margin-bottom: 0;
  color: rgba(239, 233, 233, 0.78);
  letter-spacing: 0.16em;
}

.hero__copy {
  transform: translateY(-0.9rem);
}

.hero h1 {
  max-width: 11ch;
  margin-top: 0.9rem;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero__lead {
  max-width: 30rem;
  margin-top: 1.1rem;
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.8;
  color: rgba(239, 233, 233, 0.9);
}

.hero__actions {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(239, 233, 233, 0.84);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

.hero__scroll::after {
  content: "";
  display: block;
  width: 1.7rem;
  height: 3rem;
  border: 1px solid rgba(239, 233, 233, 0.74);
  border-radius: 999px;
  background: rgba(239, 233, 233, 0.05);
  animation: drift 1.8s ease-in-out infinite;
}

.hero__scroll::before {
  content: "";
  position: absolute;
  bottom: 0.6rem;
  width: 0.28rem;
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(239, 233, 233, 0.92);
  animation: wheel 1.8s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.82;
  }
  50% {
    transform: translateY(0.2rem);
    opacity: 1;
  }
}

@keyframes wheel {
  0% {
    transform: translateY(0);
    opacity: 0.95;
  }
  60% {
    transform: translateY(0.95rem);
    opacity: 0.28;
  }
  100% {
    transform: translateY(0);
    opacity: 0.95;
  }
}

/* Content grids: USP's, diensten, projecten, team en blogkaarten */
.usp-grid,
.footer-links,
.check-list,
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
}

.usp-card,
.blog-card,
.project-card,
.team-card,
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.usp-card {
  padding: var(--space-xl);
  display: grid;
  gap: var(--space-sm);
}

.usp-card__number {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-grid;
  place-items: center;
  background: var(--color-accent);
  color: var(--color-text-strong);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.usp-card p:last-child {
  color: var(--color-text-soft);
}

.services-grid,
.projects-grid,
.team-grid,
.blog-grid,
.contact-grid,
.site-footer__grid {
  display: grid;
  gap: var(--space-md);
}

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

.service-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.9rem;
  padding: 1.35rem 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  min-height: 10.75rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.service-card img {
  width: clamp(4.75rem, 7vw, 5.75rem);
  height: clamp(4.75rem, 7vw, 5.75rem);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0.95rem;
  border-radius: 1.15rem;
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, #f7f1ee 0%, #f1e8e3 100%);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.35;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-0.2rem);
  box-shadow: 0 1rem 2rem rgba(46, 45, 41, 0.07);
  border-color: rgba(46, 45, 41, 0.18);
  background: rgba(255, 255, 255, 0.88);
}

.service-card:hover img,
.service-card:focus-within img {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.8rem 1.6rem rgba(46, 45, 41, 0.08);
  border-color: rgba(46, 45, 41, 0.16);
}

.virtual-showroom__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(28rem, 1.2fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.virtual-showroom__copy {
  max-width: 42rem;
}

.virtual-showroom__frame {
  width: 100%;
  min-height: clamp(28rem, 44vw, 38rem);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: 0 1.5rem 3rem rgba(46, 45, 41, 0.12);
}

.virtual-showroom__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

@media (max-width: 62rem) {
  .virtual-showroom__layout {
    grid-template-columns: 1fr;
  }

  .virtual-showroom__copy {
    max-width: none;
  }

  .virtual-showroom__frame {
    min-height: clamp(22rem, 68vw, 32rem);
  }
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--space-2xl);
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.image-stack {
  position: relative;
  min-height: 42rem;
}

.image-stack__primary {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 2rem 3rem var(--color-shadow);
}

.image-stack__accent {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 38%;
  height: 12rem;
  background: linear-gradient(135deg, var(--color-accent), #e6dad0);
  border-radius: var(--radius-md);
}

.content-block {
  display: grid;
  gap: var(--space-md);
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin: var(--space-sm) 0 var(--space-sm);
}

.stats-list dt {
  order: 2;
  color: var(--color-text-soft);
}

.stats-list dd {
  order: 1;
  margin: 0 0 0.25rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--color-muted);
}

.check-list {
  display: grid;
  gap: var(--space-md);
}

.check-list li {
  display: grid;
  gap: 0.35rem;
  padding-left: 1.35rem;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-accent);
}

.project-stack {
  position: relative;
  min-height: 40rem;
}

.project-stack img {
  position: absolute;
  width: 68%;
  height: 24rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 1.75rem 3.2rem rgba(46, 45, 41, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-stack img:first-child {
  top: 0;
  right: 0;
  z-index: 1;
}

.project-stack img:nth-child(2) {
  top: 30%;
  left: 0;
  width: 54%;
  height: 20rem;
  z-index: 2;
}

.project-stack img:last-child {
  right: 6%;
  bottom: 0;
  width: 58%;
  height: 18rem;
  z-index: 3;
}

.project-stack:hover img {
  box-shadow: 0 2rem 3.6rem rgba(46, 45, 41, 0.14);
}

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

.projects-grid {
  gap: var(--space-xl);
}

.project-card,
.blog-card,
.team-card {
  overflow: clip;
  border-radius: var(--radius-lg);
}

.project-card {
  display: grid;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1.2rem 2.6rem rgba(46, 45, 41, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-0.18rem);
  border-color: rgba(46, 45, 41, 0.18);
  box-shadow: 0 1.6rem 3rem rgba(46, 45, 41, 0.08);
}

.project-card img,
.blog-card img,
.team-card img {
  width: 100%;
  object-fit: cover;
}

.project-card img {
  aspect-ratio: 4 / 3;
}

.project-card__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.4rem;
  background: #efe9e9;
}

.project-card__gallery img {
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius-lg) - 0.55rem);
}

.project-card__gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.project-card__content,
.blog-card__content,
.team-card__content {
  padding: var(--space-lg);
}

.project-card__content {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.75rem;
}

.project-card__category,
.blog-card__meta {
  margin-bottom: var(--space-xs);
  color: var(--color-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.project-card__category {
  margin-bottom: 0;
}

.project-card__content h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

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

.team-card img {
  aspect-ratio: 3 / 4;
  background: var(--color-accent);
}

.team-card__content p {
  color: var(--color-text-soft);
}

.blog-card img {
  aspect-ratio: 4 / 3;
}

.article-hero {
  padding: calc(var(--header-height) + 5rem) 0 var(--space-2xl);
  background: linear-gradient(135deg, #f7f2ed 0%, #efe9e9 55%, #f3ece7 100%);
}

.article-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.article-hero__copy {
  display: grid;
  gap: var(--space-md);
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.article-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.03;
}

.article-hero__lead {
  max-width: 34rem;
  color: var(--color-text-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.article-hero__image {
  overflow: hidden;
  border: 1px solid rgba(46, 45, 41, 0.12);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

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

.article-layout {
  display: grid;
  grid-template-columns: minmax(10rem, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(46, 45, 41, 0.14);
  border-bottom: 1px solid rgba(46, 45, 41, 0.14);
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.article-aside strong {
  color: var(--color-text-strong);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.article-body {
  max-width: 48rem;
  color: var(--color-text-soft);
  font-size: clamp(1.02rem, 1.25vw, 1.12rem);
  line-height: 1.9;
}

.article-body > * + * {
  margin-top: 1.25rem;
}

.article-body h2,
.article-body h3 {
  color: var(--color-text-strong);
  line-height: 1.18;
}

.article-body h2 {
  margin-top: clamp(2.75rem, 5vw, 4rem);
  font-size: clamp(2rem, 3vw, 3rem);
}

.article-body h3 {
  margin-top: 2.2rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.article-body p:first-child {
  color: var(--color-text-strong);
  font-size: clamp(1.12rem, 1.5vw, 1.28rem);
  line-height: 1.85;
}

.article-body ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.2rem;
}

/* FAQ: visuele accordion-opmaak en triggerstates */
.faq-list {
  display: grid;
  gap: var(--space-sm);
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: clip;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.35rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  text-align: left;
  color: var(--color-text-strong);
  cursor: pointer;
}

.faq-trigger::after {
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-muted);
}

.faq-trigger[aria-expanded="true"]::after {
  content: "−";
}

.faq-trigger:hover,
.faq-trigger:focus-visible {
  background: rgba(207, 194, 182, 0.18);
}

.faq-panel {
  padding: 0 1.4rem 1.35rem;
}

/* Final CTA: donkere contactband met duidelijke conversiepunten */
.final-cta {
  position: relative;
  overflow: clip;
  padding: var(--space-3xl) 0;
  background: var(--color-text-strong);
  color: var(--color-surface);
}

.final-cta__overlay {
  background: rgba(46, 45, 41, 0.84);
  z-index: 1;
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-md);
  text-align: center;
}

.final-cta__content > .eyebrow--light {
  position: relative;
  justify-self: center;
  margin-bottom: calc(var(--space-sm) + 0.9rem);
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(239, 233, 233, 0.38);
  border-radius: 999px;
  background: rgba(239, 233, 233, 0.14);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.16em;
  box-shadow: 0 0.75rem 1.8rem rgba(46, 45, 41, 0.16);
}

.final-cta__content p:not(.eyebrow) {
  max-width: 42rem;
  margin-inline: auto;
  color: rgba(239, 233, 233, 0.86);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

.contact-grid article {
  background: rgba(239, 233, 233, 0.07);
  border: 1px solid rgba(239, 233, 233, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.contact-grid h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-accent);
}

.contact-grid a {
  color: var(--color-surface);
}

.contact-grid address {
  font-style: normal;
}

/* Contact page: overzichtelijke kaarten, routeblok en openingstijden */
.contact-hero__actions,
.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.contact-overview__heading {
  max-width: 58rem;
  margin-bottom: var(--space-xl);
}

.contact-overview__heading p:not(.eyebrow) {
  max-width: 48rem;
}

.contact-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: var(--space-xl);
  align-items: stretch;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.contact-card,
.contact-route,
.contact-hours,
.contact-cta {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1rem 2.25rem rgba(46, 45, 41, 0.06);
}

.contact-card {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: var(--space-lg);
}

.contact-card__label,
.contact-hours__label {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h3 {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.contact-card address {
  color: var(--color-text-soft);
  font-style: normal;
  line-height: 1.7;
}

.contact-card a,
.contact-hours a {
  color: var(--color-text-strong);
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible,
.contact-hours a:hover,
.contact-hours a:focus-visible {
  text-decoration: underline;
}

.contact-card__hint {
  margin: 0;
  font-size: 0.92rem;
}

.contact-route {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(46, 45, 41, 0.92), rgba(46, 45, 41, 0.78)),
    url("https://interieurcorner.s3.eu-north-1.amazonaws.com/image-assets/showroom/showroom-cta.jpg") center / cover;
  color: var(--color-surface);
}

.contact-route__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-md);
  min-height: 100%;
  padding: var(--space-xl);
}

.contact-route .eyebrow,
.contact-route p,
.contact-route li {
  color: rgba(255, 255, 255, 0.84);
}

.contact-route h2 {
  color: var(--color-surface);
}

.contact-route__pin {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: var(--color-accent);
}

.contact-route__list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-route__list li {
  position: relative;
  padding-left: 1.15rem;
}

.contact-route__list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--color-accent);
}

.contact-hours {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(22rem, 1.12fr);
  gap: var(--space-xl);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem);
}

.contact-hours__intro {
  display: grid;
  gap: var(--space-md);
}

.contact-hours__note {
  margin: 0;
}

.contact-hours__callout {
  display: grid;
  gap: 0.45rem;
  padding: var(--space-md);
  border-left: 0.18rem solid var(--color-accent);
  background: rgba(207, 194, 182, 0.16);
}

.contact-hours__panel {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.contact-hours__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-hours__list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-hours__list li:last-child {
  border-bottom: 0;
}

.contact-hours__list span:first-child {
  color: var(--color-text-strong);
  font-weight: 600;
}

.contact-hours__list span:last-child {
  color: var(--color-text-soft);
  text-align: right;
}

.contact-hours__smallprint {
  margin: var(--space-sm) 0 0;
  font-size: 0.9rem;
}

.contact-cta {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-text-strong);
  color: var(--color-surface);
  text-align: center;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-cta__actions {
  justify-content: center;
}

@media (max-width: 72rem) {
  .contact-overview,
  .contact-hours {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 46rem) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-route__content,
  .contact-card,
  .contact-hours,
  .contact-cta {
    padding: var(--space-lg);
  }

  .contact-hours__list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .contact-hours__list span:last-child {
    text-align: left;
  }

  .contact-hero__actions,
  .contact-cta__actions {
    flex-direction: column;
  }
}

/* Footer: premium afsluiting met navigatie, dienstenlinks en showroomadvies */
.site-footer {
  padding: clamp(5rem, 8vw, 7.5rem) 0 var(--space-xl);
  background:
    radial-gradient(circle at 18% 0%, rgba(207, 194, 182, 0.14), transparent 38rem),
    #2e2d29;
  color: rgba(239, 233, 233, 0.88);
}

.site-footer .container {
  width: min(100% - 3rem, 108rem);
}

.site-footer__grid {
  grid-template-columns: minmax(18rem, 1.45fr) repeat(3, minmax(10rem, 0.78fr)) minmax(15rem, 1fr);
  gap: clamp(2.5rem, 4.5vw, 5.25rem);
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(207, 194, 182, 0.24);
}

.site-footer__title {
  margin-bottom: var(--space-md);
  color: var(--color-surface);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__brand .site-footer__title {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 3.3vw, 3.55rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.055em;
  text-transform: none;
}

.site-footer__tagline {
  margin-bottom: 1.35rem;
  color: rgba(207, 194, 182, 0.88);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer__address {
  color: rgba(239, 233, 233, 0.82);
  line-height: 1.85;
}

.site-footer__brand > p:not(.site-footer__tagline) {
  max-width: 24rem;
}

.site-footer__address {
  font-style: normal;
  line-height: 1.95;
}

.footer-links {
  display: grid;
  gap: 0.72rem;
}

.site-footer a {
  color: rgba(239, 233, 233, 0.88);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-accent);
  opacity: 1;
}

.site-footer .footer-links a::after,
.site-footer .footer-legal a::after {
  background: var(--color-accent);
}

.site-footer__cta {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.site-footer__cta .button {
  width: fit-content;
  margin-top: 0.45rem;
  border-color: rgba(207, 194, 182, 0.78);
  background: var(--color-accent);
  color: var(--color-text-strong);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.16);
}

.site-footer__cta .button:hover,
.site-footer__cta .button:focus-visible {
  border-color: var(--color-surface);
  background: #efe9e9;
  color: var(--color-text-strong);
  transform: translateY(-0.1rem);
}

.site-footer__usp-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 3rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  border-bottom: 1px solid rgba(207, 194, 182, 0.24);
}

.site-footer__usp-row p {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  color: rgba(239, 233, 233, 0.88);
  font-size: 0.94rem;
  line-height: 1.55;
}

.site-footer__usp-row span {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 0;
  border: 1px solid rgba(207, 194, 182, 0.42);
  border-radius: 50%;
  background: rgba(207, 194, 182, 0.08);
}

.site-footer__usp-row svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__bottom {
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  color: rgba(239, 233, 233, 0.65);
  font-size: 0.92rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Responsive gedrag: tablet-, mobiel- en small-screen-aanpassingen */
@media (max-width: 72rem) {
  .site-header__inner {
    gap: 1rem;
  }

  .site-brand__logo {
    width: clamp(9.2rem, 16vw, 10.25rem);
  }

  .site-nav__list {
    gap: 1.2rem;
  }

  .header-cta {
    padding-inline: 1.25rem;
  }

  .hero {
    min-height: 70svh;
  }

  .hero__content {
    min-height: auto;
    width: min(100%, 42rem);
    padding-top: calc(var(--header-height) + 2.8rem);
    padding-bottom: 5rem;
    transform: translateY(-1.5rem);
  }

  .hero h1 {
    max-width: 11.5ch;
  }

  .hero__lead {
    max-width: 28rem;
  }

  .hero__copy {
    transform: translateY(-0.7rem);
  }

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

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

  .split-layout,
  .split-layout--reverse {
    grid-template-columns: 1fr;
  }

  .site-footer__grid,
  .site-footer__usp-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .project-stack {
    min-height: 32rem;
    max-width: 44rem;
    margin-inline: auto;
  }

  .project-stack img {
    height: 20rem;
  }

  .project-stack img:nth-child(2) {
    height: 17rem;
  }

  .project-stack img:last-child {
    height: 15rem;
  }

  .project-card__gallery img:first-child {
    aspect-ratio: 16 / 9;
  }

  .image-stack {
    min-height: 34rem;
  }
}

@media (max-width: 64rem) {
  .site-nav__list {
    gap: 0.95rem;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 56rem) {
  :root {
    --space-3xl: 4.75rem;
    --space-2xl: 3.25rem;
    --header-height: 4.35rem;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }

  .site-brand__logo {
    width: clamp(8.5rem, 34vw, 9.5rem);
  }

  .header-right {
    gap: 0.75rem;
  }

  .header-cta {
    display: none;
  }

  .header-phone {
    width: 2.85rem;
    height: 2.85rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: var(--space-lg);
    max-height: calc(100svh - var(--header-height) - 1.5rem);
    overflow-y: auto;
    padding: 1.25rem;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 237, 0.98));
    border: 1px solid rgba(46, 45, 41, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 1.25rem 3rem rgba(46, 45, 41, 0.12);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.8rem);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

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

  .site-nav__list {
    display: grid;
    gap: 0;
    width: 100%;
  }

  .site-nav__list a {
    display: flex;
    min-height: 3.15rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.25rem;
    border-bottom: 1px solid rgba(46, 45, 41, 0.09);
    color: var(--color-text-strong);
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .site-nav__list li:last-child a {
    border-bottom: 0;
  }

  .site-nav__list a::after {
    content: "";
    position: static;
    width: 0.42rem;
    height: 0.42rem;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    background: transparent;
    transform: rotate(45deg);
    opacity: 0.42;
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav__list a:hover,
  .site-nav__list a:focus-visible,
  .site-nav__list a[aria-current="page"] {
    color: var(--color-text-strong);
    opacity: 1;
  }

  .site-nav__list a:hover::after,
  .site-nav__list a:focus-visible::after,
  .site-nav__list a[aria-current="page"]::after {
    opacity: 0.78;
    transform: translateX(0.12rem) rotate(45deg);
  }

  .site-nav__list a[aria-current="page"] {
    color: var(--color-muted);
  }

  .site-nav__mobile-cta {
    display: inline-flex;
    width: 100%;
    min-height: 3.45rem;
    background: var(--color-text-strong);
    color: var(--color-surface);
    box-shadow: 0 0.8rem 1.8rem rgba(46, 45, 41, 0.12);
  }

  .site-nav__mobile-cta:hover,
  .site-nav__mobile-cta:focus-visible {
    background: #44433d;
    color: var(--color-surface);
  }

  .site-nav__cta {
    width: 100%;
  }

  .hero {
    min-height: 64svh;
  }

  .hero__content {
    min-height: auto;
    width: min(100%, 36rem);
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 5rem;
    transform: translateY(-0.95rem);
  }

  .hero h1 {
    max-width: 11ch;
    margin-top: 0.75rem;
    font-size: clamp(3rem, 7vw, 5rem);
  }

  .hero__lead {
    max-width: 27rem;
    margin-top: 0.9rem;
    line-height: 1.72;
  }

  .hero__copy {
    transform: translateY(-0.45rem);
  }

  .hero__actions {
    margin-top: 1.6rem;
  }

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

  .project-card__content,
  .blog-card__content,
  .team-card__content {
    padding: 1.45rem;
  }

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

  .site-footer__grid,
  .site-footer__usp-row {
    grid-template-columns: 1fr;
  }

  .site-footer__cta .button {
    width: 100%;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    gap: 0.85rem 1.25rem;
  }
}

@media (max-width: 48rem) {
  .hero__video {
    display: block;
  }

  .hero {
    min-height: 39rem;
    background: url("https://interieurcorner.s3.eu-north-1.amazonaws.com/image-assets/homepage/hero/hero-video-fallback.png") center / cover no-repeat;
    background-color: var(--color-text-strong);
  }

  .hero::after {
    height: 4rem;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(46, 45, 41, 0.3) 0%, rgba(46, 45, 41, 0.46) 46%, rgba(46, 45, 41, 0.66) 100%);
  }

  .hero__content {
    min-height: auto;
    width: min(100%, 32rem);
    padding-top: calc(var(--header-height) + 1.35rem);
    padding-bottom: 3.5rem;
    transform: none;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero__copy {
    transform: none;
    width: 100%;
  }

  #usp.section {
    padding-top: 4rem;
  }

  .hero__scroll {
    display: none;
  }

  .project-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    min-height: auto;
    max-width: 34rem;
    margin: 0 auto;
  }

  .project-stack img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 1rem 2rem rgba(46, 45, 41, 0.1);
  }

  .project-stack img:nth-child(2),
  .project-stack img:last-child {
    width: 100%;
    height: auto;
  }

  .project-stack img:nth-child(2) {
    margin-top: 1.25rem;
  }

  .project-stack img:last-child {
    margin-top: 2.5rem;
  }

  #projecten .content-block {
    max-width: 34rem;
    margin-inline: auto;
    text-align: center;
    justify-items: center;
  }

  .project-card__gallery {
    gap: 0.3rem;
    padding: 0.3rem;
  }
}

@media (min-width: 48rem) and (max-width: 72rem) {
  #projecten .split-layout {
    gap: var(--space-xl);
  }

  #projecten .content-block {
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
    justify-items: center;
  }

  #projecten .project-stack {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    width: min(100%, 52rem);
    max-width: 52rem;
    min-height: 0;
    margin: 0 auto;
  }

  #projecten .project-stack img,
  #projecten .project-stack img:first-child,
  #projecten .project-stack img:nth-child(2),
  #projecten .project-stack img:last-child {
    position: static;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 1.2rem 2.4rem rgba(46, 45, 41, 0.1);
  }

  #projecten .project-stack img:first-child {
    grid-row: 1 / 3;
    aspect-ratio: 4 / 5;
  }

  #projecten .project-stack img:nth-child(2),
  #projecten .project-stack img:last-child {
    aspect-ratio: 16 / 10;
  }
}

/* WordPress front-page carry-over styles from the static homepage. */
.home-page .section-heading h2,
.home-page .content-block > h2 {
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  font-weight: 700;
}

.home-services {
  position: relative;
  background:
    linear-gradient(100deg, #fbf8f5 0%, #f7f2ed 48%, #f3ece7 100%);
  overflow: hidden;
}

.home-services::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  width: min(58rem, 68vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.44) 46%, rgba(255, 255, 255, 0) 72%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.home-services::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(239, 233, 233, 0.16), rgba(207, 194, 182, 0.12));
  pointer-events: none;
  z-index: 0;
}

.home-services__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  min-height: 34rem;
}

.home-services__copy {
  max-width: 43rem;
}

.home-services__mark {
  width: 5.5rem;
  height: 0.18rem;
  margin: 0 0 2rem;
  background: #cfc2b6;
}

.home-services__copy h2 {
  max-width: 10.5ch;
  margin-bottom: 1.6rem;
  color: #2e2d29;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.home-services__copy p {
  max-width: 36rem;
  color: #505050;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.85;
}

.home-services__button {
  min-width: min(100%, 25rem);
  min-height: 4.3rem;
  margin-top: 2.3rem;
  padding-inline: 2.4rem;
  justify-content: center;
  gap: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-services__button::after {
  content: "→";
  font-size: 1.25rem;
  letter-spacing: 0;
  transition: transform var(--transition);
}

.home-services__button:hover::after,
.home-services__button:focus-visible::after {
  transform: translateX(0.25rem);
}

.home-services__list {
  display: grid;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-services__item {
  display: grid;
  grid-template-columns: 5.2rem 1px minmax(0, 1fr);
  gap: 1.65rem;
  align-items: center;
  padding: 0.3rem 0;
  transition: transform var(--transition), opacity var(--transition);
}

.home-services__item:hover {
  transform: translateX(0.25rem);
}

.home-services__icon {
  width: 5.2rem;
  height: 5.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(207, 194, 182, 0.36);
  color: #2e2d29;
}

.home-services__icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-services__divider {
  width: 1px;
  min-height: 4.4rem;
  background: rgba(140, 131, 125, 0.32);
}

.home-services__item h3 {
  margin-bottom: 0.45rem;
  color: #2e2d29;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
}

.home-services__item p {
  color: #505050;
  line-height: 1.7;
}

.home-blog__actions {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0;
}

.home-page .final-cta .eyebrow--light {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 56rem) {
  .home-services::before {
    top: 25%;
    left: 50%;
    width: 32rem;
    opacity: 0.72;
  }

  .home-services__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }

  .home-services__copy {
    max-width: 38rem;
    margin-inline: auto;
    text-align: center;
  }

  .home-services__copy .eyebrow {
    text-align: center;
  }

  .home-services__mark {
    margin-inline: auto;
    margin-bottom: 1.65rem;
  }

  .home-services__copy h2 {
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(2.7rem, 9vw, 4.2rem);
    line-height: 1.06;
  }

  .home-services__copy p {
    max-width: 31rem;
    margin-inline: auto;
  }

  .home-services__button {
    width: min(100%, 24rem);
  }

  .home-services__list {
    width: min(100%, 34rem);
    margin-inline: auto;
  }
}

@media (max-width: 38rem) {
  .home-services::before {
    top: 18%;
    width: 24rem;
    opacity: 0.58;
  }

  .home-services__inner {
    gap: 2.35rem;
  }

  .home-services__mark {
    width: 4.25rem;
    margin-bottom: 1.35rem;
  }

  .home-services__copy h2 {
    max-width: 10.5ch;
    margin-bottom: 1.2rem;
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .home-services__copy p {
    max-width: 25rem;
    font-size: 1rem;
    line-height: 1.76;
  }

  .home-services__button {
    width: min(100%, 22rem);
    min-height: 3.75rem;
    margin-top: 1.8rem;
    padding-inline: 1.3rem;
  }

  .home-services__list {
    gap: 1.45rem;
  }

  .home-services__item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.95rem;
    padding: 0.35rem 1rem;
    text-align: center;
  }

  .home-services__icon {
    width: 4.5rem;
    height: 4.5rem;
  }

  .home-services__icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .home-services__divider {
    width: 4rem;
    min-height: 0;
    height: 1px;
  }

  .home-services__item h3 {
    margin-bottom: 0.35rem;
  }

  .home-services__item p {
    max-width: 22rem;
    margin-inline: auto;
  }
}

@media (max-width: 38rem) {
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container-width));
  }

  .site-header__inner {
    gap: 0.7rem;
  }

  .site-brand__logo {
    width: clamp(7.8rem, 42vw, 8.75rem);
  }

  .header-right {
    gap: 0.55rem;
  }

  .header-phone {
    width: 2.65rem;
    height: 2.65rem;
  }

  .menu-toggle__label {
    font-size: 0.8rem;
  }

  .hero {
    min-height: 35rem;
  }

  .hero__content {
    min-height: auto;
    width: 100%;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 3rem;
    transform: none;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero__copy {
    transform: none;
    width: 100%;
  }

  .hero h1 {
    max-width: 12ch;
    margin: 0.6rem auto 0;
    font-size: clamp(2.3rem, 10vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
  }

  .hero__lead {
    max-width: 24rem;
    margin-top: 0.8rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero__actions {
    width: min(100%, 22rem);
    margin: 1.35rem auto 0;
    justify-content: center;
  }

  .hero__scroll {
    display: none;
  }

  .hero__actions,
  .final-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 3.35rem;
    padding-inline: 1rem;
  }

  .button:not(.site-nav__mobile-cta) {
    width: fit-content;
    max-width: calc(100% - 2rem);
    margin-inline: auto;
  }

  .hero__actions,
  .final-cta__actions {
    width: min(100%, 24rem);
    margin-inline: auto;
    padding-inline: 1rem;
  }

  .hero__actions .button,
  .final-cta__actions .button,
  .section-heading--center > .button,
  .home-services__button {
    width: min(100%, 20.5rem);
  }

  .usp-grid,
  .services-grid,
  .stats-list {
    grid-template-columns: 1fr;
  }

  #usp .usp-grid {
    gap: 1rem;
  }

  #usp .usp-card {
    justify-items: center;
    gap: 0.7rem;
    padding: 1.65rem 1.35rem;
    text-align: center;
  }

  #usp .usp-card__number {
    margin-inline: auto;
  }

  #usp .usp-card p:last-child {
    max-width: 21rem;
    margin-inline: auto;
  }

  .project-stack {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    min-height: auto;
    max-width: 24rem;
  }

  .project-stack img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .project-stack img:nth-child(2) {
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .project-stack img:last-child {
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .project-card__content,
  .blog-card__content,
  .team-card__content {
    padding: 1.2rem;
  }

  .project-card__gallery {
    grid-template-columns: 1fr;
  }

  .project-card__gallery img,
  .project-card__gallery img:first-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .article-hero {
    padding: calc(var(--header-height) + 3rem) 0 var(--space-xl);
  }

  .article-hero__inner,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-hero__copy,
  .article-hero__meta {
    justify-items: center;
    justify-content: center;
    text-align: center;
  }

  .article-hero h1 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(2.45rem, 10vw, 3.6rem);
  }

  .article-hero__lead {
    max-width: 30rem;
    margin-inline: auto;
  }

  .article-aside {
    position: static;
    order: 2;
  }

  .article-body {
    max-width: 100%;
  }

  .image-stack {
    min-height: 26rem;
  }

  .image-stack__accent {
    width: 44%;
    height: 7rem;
    right: -0.4rem;
    bottom: -0.4rem;
  }
}

@media (max-width: 38rem) {
  .article-hero {
    padding: calc(var(--header-height) + 2rem) 0 2.25rem !important;
  }

  .article-hero__inner {
    gap: 1.65rem !important;
  }

  .article-hero__copy {
    gap: 0.85rem !important;
  }

  .article-hero h1 {
    max-width: 13ch !important;
    font-size: clamp(2rem, 8.7vw, 2.85rem) !important;
    line-height: 1.08 !important;
  }

  .article-hero__lead {
    max-width: 29rem !important;
    font-size: 0.98rem !important;
    line-height: 1.72 !important;
  }

  .article-hero__meta {
    gap: 0.45rem !important;
    justify-content: center !important;
    padding-top: 0.2rem;
    font-size: 0.82rem !important;
  }

  .article-hero__meta span {
    display: inline-flex;
    min-height: 2rem;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(46, 45, 41, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    color: var(--color-text-soft);
    font-weight: 600;
  }

  .article-hero__image {
    width: min(100%, 31rem);
    margin-inline: auto;
    border-radius: var(--radius-md) !important;
  }

  .article-hero__image img {
    aspect-ratio: 16 / 10 !important;
    max-height: 17.5rem;
  }

  .article-layout {
    gap: 2rem !important;
  }

  .article-body {
    width: min(100%, 36rem);
    margin-inline: auto;
    font-size: 1rem !important;
    line-height: 1.86 !important;
  }

  .article-body > * + * {
    margin-top: 1.15rem !important;
  }

  .article-body p:first-child {
    font-size: 1.08rem !important;
    line-height: 1.82 !important;
  }

  .article-body h2 {
    margin-top: 2.6rem !important;
    font-size: clamp(1.7rem, 7.4vw, 2.25rem) !important;
    line-height: 1.18 !important;
  }

  .article-body h3 {
    margin-top: 1.9rem !important;
    font-size: clamp(1.22rem, 5.3vw, 1.48rem) !important;
    line-height: 1.24 !important;
  }

  .article-aside {
    width: min(100%, 34rem);
    margin-inline: auto;
    padding: 1.2rem 0 0;
    border-top: 1px solid rgba(46, 45, 41, 0.12);
    border-bottom: 0;
    text-align: center;
  }

  .article-aside .text-link {
    justify-self: center;
  }

  .article-back-link {
    margin-top: -0.2rem;
    color: var(--color-muted);
    font-size: 0.9rem;
  }

  .article-hero + .section {
    padding-top: 2.75rem;
  }

  article + .final-cta {
    padding: 3.6rem 0;
  }

  article + .final-cta .final-cta__content {
    gap: 0.9rem;
  }

  article + .final-cta h2 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  article + .final-cta .final-cta__actions {
    margin-top: 0.6rem;
  }
}
