:root {
  --color-primary: #211B18;
  --color-accent: #6E2E34;
  --color-bg: #FAFAF7;
  --color-muted: #D8D1C8;
  --color-soft: #46413D;
  --color-dark: #141414;
  --primary-beige: var(--color-accent);
  --vanilla: var(--color-bg);
  --warm-grey: var(--color-soft);
  --dark-tobacco: var(--color-primary);
  --sand: var(--color-muted);
  --paper: #FAFAF7;
  --porcelain: #FFFFFF;
  --ink-soft: rgba(20, 20, 20, 0.7);
  --line: #D8D1C8;
  --line-light: rgba(216, 209, 200, 0.72);
  --shadow: 0 32px 86px rgba(33, 27, 24, 0.12);
  --brand-bg: #FAFAF7;
  --brand-bg-alt: #F0EFEB;
  --brand-card: #FFFFFF;
  --brand-text: #141414;
  --brand-body: #46413D;
  --brand-line: #D8D1C8;
  --brand-accent: #6E2E34;
  --brand-dark: #211B18;
  --brand-warm: #C8B9A6;
  --brand-chocolate: #3A261F;
  --brand-charcoal: #24211F;
  --brand-bordeaux: #6E2E34;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--color-dark);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  text-rendering: geometricPrecision;
}

::selection {
  background: #C8B9A6;
  color: #141414;
}

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

figure {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-light);
  background: rgba(250, 250, 247, 0.86);
  backdrop-filter: blur(22px);
}

.nav {
  width: min(1240px, calc(100% - 48px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--warm-grey);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-dark);
  border-color: var(--color-accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--dark-tobacco);
  font-size: 22px;
}

.page {
  overflow: hidden;
}

.section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.section.compact {
  padding: 84px 0;
}

.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  align-items: stretch;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(38, 35, 33, 0.76), rgba(38, 35, 33, 0.42) 48%, rgba(38, 35, 33, 0.12) 78%),
    linear-gradient(180deg, rgba(38, 35, 33, 0.08), rgba(38, 35, 33, 0.3)),
    url("assets/hero-living-room.png") center 48% / cover;
}

.hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 11vh 0 9vh;
  color: var(--porcelain);
  display: grid;
  grid-template-columns: minmax(0, 720px) 260px;
  align-content: center;
  justify-content: space-between;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--primary-beige);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--vanilla);
}

.hero-kicker {
  margin: -12px 0 24px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(48px, 6.2vw, 86px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.02;
}

h2 {
  max-width: 760px;
  font-size: clamp(36px, 4.4vw, 58px);
}

h3 {
  font-size: 30px;
  line-height: 1.12;
}

.lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.hero .lead {
  max-width: 590px;
  color: rgba(255, 253, 248, 0.84);
}

.hero .lead + .lead {
  margin-top: 12px;
}

.hero-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid var(--brand-dark);
  background: var(--brand-dark);
  color: var(--brand-bg);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  border-color: var(--brand-accent);
  color: var(--brand-bg);
  background: var(--brand-accent);
}

.button.secondary {
  background: transparent;
  border-color: var(--brand-dark);
  color: var(--brand-dark);
}

.button.secondary:hover {
  color: var(--brand-bg);
  background: var(--brand-dark);
}

.hero .button.secondary {
  border-color: currentColor;
  color: var(--porcelain);
}

.hero .button.secondary:hover {
  color: var(--vanilla);
  background: transparent;
}

.section .button,
.page-hero ~ .section .button,
.home-section .button,
.contact-cta .button,
.form .button {
  color: var(--brand-bg);
}

.section .button:hover,
.page-hero ~ .section .button:hover,
.home-section .button:hover,
.contact-cta .button:hover,
.form .button:hover {
  color: var(--brand-bg);
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(72px, 10vw, 150px);
  align-items: center;
}

.intro-copy {
  max-width: 620px;
}

.image-tall,
.image-wide {
  width: 100%;
  object-fit: cover;
  box-shadow: none;
}

.image-tall {
  aspect-ratio: 4 / 5;
}

.image-wide {
  aspect-ratio: 16 / 9;
}

.hero-aside {
  align-self: end;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 253, 248, 0.38);
  color: rgba(255, 253, 248, 0.72);
  font-size: 12px;
  line-height: 1.9;
}

.hero-aside strong {
  display: block;
  margin-bottom: 16px;
  color: var(--porcelain);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.editorial-spread {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: end;
}

.editorial-spread .lead {
  margin-top: 46px;
}

.offset-image {
  transform: translateY(72px);
}

.image-caption {
  max-width: 320px;
  margin: 24px 0 0 auto;
  color: var(--warm-grey);
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(241, 234, 218, 0.34);
}

.stat {
  padding: 56px 46px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 66px;
  font-weight: 500;
  line-height: 1;
}

.stat span {
  color: var(--warm-grey);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-grid,
.project-grid,
.price-grid,
.process-grid {
  display: grid;
  gap: 44px;
}

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

.project-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

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

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.price-card,
.process-step {
  border-top: 1px solid var(--line);
  background: transparent;
}

.card img {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  margin-bottom: 34px;
}

.service-grid .card:first-child,
.project-grid .card:nth-child(1),
.project-grid .card:nth-child(5) {
  grid-column: span 2;
}

.service-grid .card:first-child img,
.project-grid .card:nth-child(1) img,
.project-grid .card:nth-child(5) img {
  aspect-ratio: 16 / 10;
}

.project-grid .card:nth-child(3),
.project-grid .card:nth-child(6) {
  margin-top: 92px;
}

.card-body,
.price-card,
.process-step {
  padding: 34px 0 0;
}

.card p,
.price-card p,
.process-step p {
  color: var(--ink-soft);
}

.meta {
  display: block;
  margin-bottom: 18px;
  color: var(--primary-beige);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-editorial {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(56px, 9vw, 136px);
  align-items: start;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 34px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.service-item h3 {
  max-width: 620px;
}

.service-item p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.cinematic {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 170px;
}

.cinematic img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.band {
  background: var(--vanilla);
}

.quote {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 172px 0;
  text-align: center;
}

.quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.4vw, 108px);
  line-height: 1.05;
}

.page-hero {
  background: linear-gradient(180deg, var(--vanilla), rgba(206, 193, 168, 0.18) 58%, var(--paper));
}

.page-hero .section {
  padding: 144px 0 116px;
}

.list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.price {
  margin: 24px 0 18px;
  font-family: var(--serif);
  font-size: 50px;
  line-height: 1;
  color: var(--dark-tobacco);
}

.form {
  display: grid;
  gap: 16px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.58);
  padding: 18px 18px;
  color: var(--dark-tobacco);
  font: inherit;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 1px solid var(--primary-beige);
  outline-offset: 2px;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid rgba(250, 250, 247, 0.1);
  background:
    radial-gradient(circle at 85% 0%, rgba(110, 46, 52, 0.2), transparent 32%),
    linear-gradient(135deg, var(--brand-dark), var(--brand-chocolate));
  color: var(--porcelain);
}

.footer-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 32px;
}

.footer-inner p,
.footer-inner a {
  color: rgba(250, 250, 247, 0.72);
}

.footer-title {
  margin: 0 0 14px;
  color: var(--porcelain);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
  color: rgba(250, 250, 247, 0.76);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social:hover {
  color: var(--brand-warm);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.35;
}

.footer-social span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
}

.footer-social small {
  display: block;
  color: rgba(250, 250, 247, 0.52);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-spaced {
  margin-top: 56px;
}

.grid-spaced {
  margin-top: 58px;
}

.home-page {
  background: var(--brand-bg);
  color: var(--brand-text);
}

.home-hero {
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 104px);
  margin: 0 auto;
  padding: 92px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(56px, 8vw, 104px);
  align-items: center;
}

.home-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.04;
}

.home-hero-copy .lead {
  max-width: 620px;
  color: var(--brand-body);
}

.home-hero-copy .hero-note {
  color: var(--brand-text);
}

.home-hero-copy .button {
  color: var(--brand-bg);
}

.home-hero-copy .button:hover {
  color: var(--brand-bg);
}

.home-hero-image {
  width: 100%;
  margin: 0;
}

.home-hero-image img {
  width: 100%;
  min-height: 560px;
  max-height: 72vh;
  object-fit: cover;
}

.home-editorial {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: clamp(56px, 8vw, 104px);
  align-items: center;
}

.home-editorial h2 {
  max-width: 720px;
}

.home-editorial p:not(.eyebrow) {
  max-width: 620px;
  color: var(--brand-body);
  font-size: 15px;
  line-height: 1.85;
}

.home-editorial img {
  width: 100%;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
}

.home-editorial img.home-editorial-image-detail {
  aspect-ratio: 4 / 5;
  object-position: 54% 50%;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.home-service-grid article {
  min-height: 300px;
  padding: 36px;
  border: 1px solid var(--brand-line);
  background: var(--brand-card);
}

.home-service-grid span,
.home-benefits span,
.home-process-list span,
.home-project-grid span {
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-service-grid h3 {
  margin: 56px 0 18px;
  font-size: clamp(28px, 2.8vw, 38px);
}

.home-service-grid p {
  max-width: 520px;
  color: var(--brand-body);
  font-size: 14px;
  line-height: 1.8;
}

.home-section-link {
  margin-top: 34px;
  color: var(--brand-bg);
}

.home-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--brand-line);
}

.home-benefits div {
  min-height: 140px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--brand-line);
}

.home-benefits p {
  margin: 28px 0 0;
  color: var(--brand-text);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.14;
}

.home-process-list {
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}

.home-process-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--brand-line);
}

.home-process-list div:last-child {
  border-bottom: 0;
}

.home-process-list p {
  margin: 0;
  color: var(--brand-text);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

.home-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-project-grid img {
  width: 100%;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
  margin-bottom: 24px;
}

.home-project-grid h3 {
  margin-top: 10px;
  font-size: 28px;
}

.home-project-grid article p {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--brand-body);
  font-size: 14px;
  line-height: 1.75;
}

.home-trust-dark {
  padding: 104px max(24px, calc((100vw - 1180px) / 2));
  background: var(--brand-dark);
  color: var(--brand-bg);
}

.home-trust-dark h2 {
  max-width: 760px;
  color: var(--brand-bg);
  font-size: clamp(36px, 4.4vw, 58px);
}

.home-trust-dark p {
  max-width: 700px;
  margin-top: 28px;
  color: rgba(250, 250, 247, 0.74);
  font-size: 16px;
  line-height: 1.85;
}

.section-divider {
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  margin: 0 auto;
  background: var(--line);
}

.home-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0;
}

.stats-strip {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-strip div {
  padding: 34px 30px;
  border-right: 1px solid var(--line);
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
}

.stats-strip span {
  color: var(--warm-grey);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-statement {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: clamp(40px, 6vw, 82px);
  align-items: start;
}

.intro-statement h2 {
  max-width: 760px;
}

.intro-statement > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.about-home p:not(.eyebrow),
.market-section p:not(.eyebrow),
.contact-cta > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.intro-statement > p:not(.eyebrow) {
  grid-column: 2;
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.85;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.85;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.insight-grid div {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.28);
}

.insight-grid span,
.usp-strip span {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.insight-grid p {
  margin: 32px 0 0;
  color: var(--color-dark);
  font-size: 15px;
  line-height: 1.75;
}

.spread-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.service-rows {
  border-top: 1px solid var(--line);
}

.premium-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.premium-card {
  min-height: 310px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.35);
}

.premium-card span,
.process-list span,
.benefit-grid span {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-card h3 {
  margin-top: 42px;
  font-size: 29px;
}

.premium-card p {
  margin: auto 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.service-row {
  display: grid;
  grid-template-columns: 72px minmax(250px, 0.72fr) minmax(0, 1fr);
  gap: 32px;
  align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-row span,
.project-feature span {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-row h3,
.project-feature h3 {
  font-size: clamp(28px, 2.6vw, 38px);
}

.service-row p {
  max-width: 520px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.quote-section {
  background: var(--color-bg);
  padding: 108px 24px;
  text-align: center;
}

.comparison-section .section-heading {
  margin-bottom: 40px;
}

.comparison-slider {
  --position: 56%;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8.3;
  overflow: hidden;
  background: var(--color-muted);
}

.comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  overflow: hidden;
}

.comparison-after img {
  width: 100%;
  max-width: 100%;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 1px;
  background: rgba(255, 253, 248, 0.9);
}

.comparison-slider input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  bottom: 18px;
  padding: 8px 10px;
  background: rgba(38, 35, 33, 0.52);
  color: var(--porcelain);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.compare-label.before {
  left: 18px;
}

.compare-label.after {
  right: 18px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.process-list div {
  min-height: 132px;
  padding: 26px 28px 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-list p {
  margin: 26px 0 0;
  color: var(--color-dark);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.15;
}

.quote-section p {
  width: min(1040px, 100%);
  margin: 0 auto;
  color: var(--color-primary);
  font-family: var(--serif);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.12;
}

.project-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.project-feature {
  display: grid;
  gap: 24px;
}

.project-feature:first-child {
  grid-row: auto;
}

.project-feature:nth-child(2) {
  margin-top: 0;
}

.project-feature img {
  width: 100%;
  aspect-ratio: 4 / 3.7;
  object-fit: cover;
}

.project-feature:first-child img {
  aspect-ratio: 4 / 3.7;
}

.project-feature h3 {
  margin-top: 10px;
}

.project-feature p {
  margin: 12px 0 0;
  color: var(--warm-grey);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-section,
.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: start;
}

.value-section .section-heading,
.why-section .section-heading {
  margin-bottom: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.value-grid div {
  min-height: 82px;
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--color-primary);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.benefit-grid div {
  min-height: 96px;
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-grid p {
  margin: 14px 0 0;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 500;
}

.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-dark);
  color: var(--porcelain);
}

.usp-strip div {
  min-height: 150px;
  padding: 32px;
  border-right: 1px solid rgba(255, 253, 248, 0.16);
}

.usp-strip div:last-child {
  border-right: 0;
}

.usp-strip p {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
}

.about-home {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.about-home img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-home p {
  max-width: 600px;
  font-size: 15px;
  line-height: 1.85;
}

.about-home p + p {
  margin-top: 22px;
}

.market-section {
  width: 100%;
  padding: 104px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.52fr 0.48fr;
  gap: clamp(44px, 6vw, 84px);
  background: var(--color-dark);
  color: var(--porcelain);
}

.market-section .eyebrow {
  color: var(--color-muted);
}

.market-section h2 {
  max-width: 760px;
}

.market-section p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.72);
  font-size: 15px;
  line-height: 1.85;
}

.market-section .button {
  color: var(--porcelain);
  margin-top: 22px;
}

.contact-cta {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
  text-align: center;
}

.contact-cta h2 {
  margin: 0 auto;
}

.contact-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 1.85;
}

.contact-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 42px 0 18px;
  color: var(--warm-grey);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-options a:hover {
  color: var(--color-primary);
}

.services-page {
  background: var(--brand-bg);
  color: var(--brand-text);
}

.services-hero,
.image-strip,
.diensten-block,
.service-detail,
.diensten-process,
.diensten-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.services-hero {
  padding: 112px 0 84px;
}

.editorial-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.editorial-label span:nth-child(2) {
  width: 80px;
  height: 1px;
  background: var(--brand-accent);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
}

.services-hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: 0.98;
}

.services-hero-grid p {
  max-width: 560px;
  margin: 0 0 20px;
  color: var(--brand-body);
  font-size: 16px;
  line-height: 1.8;
}

.services-hero-grid .strong-line {
  color: var(--brand-text);
  font-weight: 500;
}

.image-strip {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  padding-bottom: 96px;
}

.image-strip > div {
  height: 540px;
  overflow: hidden;
  background: var(--brand-bg-alt);
}

.image-strip img,
.service-detail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-strip aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--brand-line);
  background: var(--brand-card);
  padding: 40px;
}

.image-strip h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.support-points {
  display: grid;
  gap: 30px;
}

.support-points span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-accent);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.support-points h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.image-strip aside > p:last-child {
  margin: 48px 0 0;
  color: var(--brand-body);
  font-size: 15px;
  line-height: 1.8;
}

.diensten-block {
  width: 100%;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
  background: var(--brand-bg-alt);
}

.diensten-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.diensten-heading h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0;
}

.service-detail > img {
  height: 520px;
  background: var(--brand-bg-alt);
}

.service-detail h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4vw, 56px);
}

.service-detail p:not(.eyebrow) {
  max-width: 620px;
  color: var(--brand-body);
  font-size: 16px;
  line-height: 1.8;
}

.service-detail ul {
  margin: 32px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--brand-line);
  color: var(--brand-body);
  line-height: 2;
}

.service-detail li {
  list-style: none;
}

.dark-detail {
  width: 100%;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background: var(--brand-dark);
  color: var(--brand-bg);
}

.dark-detail p:not(.eyebrow),
.dark-detail ul {
  color: rgba(250, 250, 247, 0.76);
}

.dark-detail ul {
  border-color: rgba(250, 250, 247, 0.22);
}

.diensten-process {
  padding: 96px 0;
}

.diensten-steps {
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}

.diensten-steps div {
  display: grid;
  grid-template-columns: 160px 1fr 120px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--brand-line);
}

.diensten-steps div:last-child {
  border-bottom: 0;
}

.diensten-steps span {
  color: var(--brand-accent);
  font-family: var(--serif);
  font-size: 30px;
}

.diensten-steps h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.diensten-steps div::after {
  content: "";
  height: 1px;
  background: var(--brand-accent);
}

.diensten-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 112px;
  padding: 64px;
  background: var(--brand-bg-alt);
}

.diensten-cta h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.diensten-cta p {
  margin: 0 0 30px;
  color: var(--brand-body);
  line-height: 1.8;
}

.services-cover {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--brand-bg);
}

.services-cover > img,
.services-cover-overlay {
  position: absolute;
  inset: 0;
}

.services-cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-cover-overlay {
  background: linear-gradient(90deg, rgba(250, 250, 247, 0.97) 44%, rgba(250, 250, 247, 0.62) 74%, rgba(250, 250, 247, 0.16));
}

.services-cover-content {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.services-cover h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.08;
}

.service-tagline {
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-cover-content p:not(.eyebrow):not(.service-tagline) {
  max-width: 660px;
  color: var(--brand-body);
  font-size: 16px;
  line-height: 1.85;
}

.positioning-rule {
  background: var(--brand-dark);
  padding: 20px 24px;
  text-align: center;
}

.positioning-rule p {
  margin: 0;
  color: var(--brand-warm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.expanded-service {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.expanded-service + .expanded-service {
  border-top: 1px solid var(--brand-line);
}

.highlighted-service {
  width: 100%;
  padding: 88px max(24px, calc((100vw - 1180px) / 2));
  background: var(--brand-bg-alt);
  border-top: 0;
}

.service-badge {
  position: absolute;
  top: 42px;
  left: max(24px, calc((100vw - 1180px) / 2));
  background: var(--brand-dark);
  color: var(--brand-bg);
  padding: 9px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-number {
  display: block;
  color: var(--brand-accent);
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 76px);
  line-height: 1;
}

.service-copy h2 {
  margin: 22px 0 8px;
  font-size: clamp(32px, 3.4vw, 46px);
}

.service-subtitle {
  margin: 0 0 30px;
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-copy > p:not(.service-subtitle) {
  color: var(--brand-body);
  font-size: 15px;
  line-height: 1.85;
}

.service-note {
  margin: 32px 0 24px;
  padding-left: 22px;
  border-left: 2px solid var(--brand-accent);
}

.service-note span,
.service-when span,
.feature-box h3 {
  display: block;
  margin-bottom: 9px;
  color: var(--brand-accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-note p,
.service-when p {
  margin: 0;
  color: var(--brand-body);
  font-size: 14px;
  line-height: 1.75;
}

.service-when {
  padding: 22px;
  background: var(--brand-card);
  border: 1px solid var(--brand-line);
  border-left: 2px solid var(--brand-accent);
}

.highlighted-service .service-when,
.highlighted-service .feature-box {
  background: var(--brand-card);
}

.service-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-media img[src$="service-verkoopvoorbereiding.jpg"] {
  object-position: center 45%;
}

.service-media img[src$="service-turnkey-inrichting.png"] {
  object-position: center 58%;
}

.feature-box {
  margin-top: 28px;
  padding: 32px;
  border: 1px solid var(--brand-line);
  background: var(--brand-card);
}

.feature-box ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.feature-box li {
  position: relative;
  list-style: none;
  padding-left: 26px;
  color: var(--brand-text);
  font-size: 14px;
  line-height: 1.65;
}

.feature-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 6px;
  border-left: 1.5px solid var(--brand-accent);
  border-bottom: 1.5px solid var(--brand-accent);
  transform: rotate(-45deg);
}

.services-final-cta {
  padding: 96px 24px 112px;
  background: var(--brand-dark);
  text-align: center;
}

.services-final-cta h2 {
  margin-right: auto;
  margin-left: auto;
  color: var(--brand-bg);
  font-size: clamp(34px, 3.8vw, 48px);
}

.services-final-cta > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px auto 38px;
  color: rgba(250, 250, 247, 0.74);
  line-height: 1.8;
}

.services-final-cta > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.light-button {
  padding: 14px 28px;
  border: 1px solid var(--brand-bg);
  background: var(--brand-bg);
  color: var(--brand-dark);
}

.light-button:hover {
  border-color: var(--brand-warm);
  background: var(--brand-warm);
  color: var(--brand-dark);
}

.outline-light-button {
  padding: 13px 28px;
  border: 1px solid var(--brand-warm);
  color: var(--brand-bg);
  background: transparent;
}

.outline-light-button:hover {
  background: rgba(200, 185, 166, 0.16);
  color: var(--brand-bg);
}

.about-page {
  background: var(--brand-bg);
  color: var(--brand-text);
}

.about-hero,
.about-pillars,
.about-split,
.about-dark,
.about-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.about-hero h1 {
  max-width: 780px;
  margin-bottom: 54px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
}

.about-hero h1 span {
  color: var(--brand-accent);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.about-copy p,
.about-split p,
.about-dark p,
.about-cta p {
  color: var(--brand-body);
  font-size: 15px;
  line-height: 1.85;
}

.about-intro {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.75;
}

.about-copy-grid {
  display: grid;
  gap: 1px;
  margin: 30px 0;
  border: 1px solid var(--brand-line);
  background: var(--brand-line);
}

.about-copy-grid article {
  padding: 24px 26px;
  background: var(--brand-card);
}

.about-copy-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-accent);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.about-copy-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.about-copy-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.about-hero-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--brand-line);
}

.about-pillars h2 {
  max-width: 560px;
  margin-bottom: 60px;
  font-size: clamp(34px, 4vw, 48px);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}

.pillar-grid article {
  padding: 40px 28px 42px 0;
  border-right: 1px solid var(--brand-line);
}

.pillar-grid article:last-child {
  border-right: 0;
}

.pillar-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--brand-accent);
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
}

.pillar-grid h3 {
  margin-bottom: 16px;
}

.pillar-grid p {
  color: var(--brand-body);
  font-size: 14px;
  line-height: 1.75;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.about-split.muted-band {
  width: 100%;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background: var(--brand-bg-alt);
}

.about-split img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--brand-line);
}

.about-split h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4vw, 48px);
}

.small-rule {
  display: block;
  width: 40px;
  height: 1px;
  margin: 0 0 30px;
  background: var(--brand-accent);
}

.about-dark {
  width: 100%;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  background: var(--brand-dark);
  color: var(--brand-bg);
}

.about-dark .eyebrow {
  color: var(--brand-warm);
}

.about-dark h2,
.about-dark h3 {
  color: var(--brand-bg);
}

.about-dark p {
  color: rgba(250, 250, 247, 0.74);
}

.about-dark aside {
  padding: 42px;
  border-left: 2px solid var(--brand-warm);
  background: rgba(250, 250, 247, 0.06);
}

.about-cta {
  max-width: 1180px;
  text-align: center;
}

.about-cta h2 {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: clamp(34px, 4vw, 48px);
}

.about-cta p {
  max-width: 640px;
  margin: 0 auto 34px;
}

.about-cta > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.dark-button {
  padding: 14px 28px;
  border: 1px solid var(--brand-dark);
  background: var(--brand-dark);
  color: var(--brand-bg);
}

.dark-button:hover {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: var(--brand-bg);
}

.outline-dark-button {
  padding: 13px 28px;
  border: 1px solid var(--brand-dark);
  color: var(--brand-dark);
  background: transparent;
}

.outline-dark-button:hover {
  background: var(--brand-dark);
  color: var(--brand-bg);
}

.portfolio-page {
  background: var(--brand-bg);
  color: var(--brand-text);
}

.portfolio-header,
.project-case,
.style-block,
.portfolio-grid-section,
.portfolio-support {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.portfolio-header {
  padding: 92px 0 72px;
}

.portfolio-header h1 {
  margin-bottom: 28px;
  font-size: clamp(42px, 5vw, 66px);
}

.portfolio-header p:not(.eyebrow) {
  max-width: 680px;
  color: var(--brand-body);
  font-size: 16px;
  line-height: 1.85;
}

.portfolio-hero-image {
  max-height: 70vh;
  overflow: hidden;
}

.portfolio-hero-image img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.project-case {
  padding: 0 0 96px;
}

.project-case-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.project-case-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
}

.project-comparison {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  border-radius: 14px;
  background: var(--brand-card);
  box-shadow: 0 28px 70px rgba(20, 20, 20, 0.12);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.project-comparison-image,
.project-comparison-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.project-comparison-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--position, 52%)) 0 0);
  pointer-events: none;
}

.project-comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position, 52%);
  width: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.project-comparison-handle {
  position: absolute;
  top: 50%;
  left: var(--position, 52%);
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  cursor: ew-resize;
  backdrop-filter: blur(10px);
}

.project-comparison-handle::before,
.project-comparison-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--brand-text);
  border-left: 1px solid var(--brand-text);
}

.project-comparison-handle::before {
  left: 14px;
  transform: translateY(-50%) rotate(-45deg);
}

.project-comparison-handle::after {
  right: 14px;
  transform: translateY(-50%) rotate(135deg);
}

.project-comparison-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.project-comparison-label.before {
  left: 18px;
}

.project-comparison-label.after {
  right: 18px;
}

.project-case-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--brand-line);
  background: var(--brand-line);
}

.project-case-info article {
  min-height: 220px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--brand-card);
}

.project-case-info p:not(.eyebrow) {
  margin: 0;
  color: var(--brand-body);
  font-size: 16px;
  line-height: 1.85;
}

.portfolio-positioning {
  background: var(--brand-dark);
  padding: 36px 24px;
  text-align: center;
}

.portfolio-positioning p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--brand-bg);
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.45;
}

.style-block,
.portfolio-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  padding: 92px 0;
}

.style-block.alt-block,
.portfolio-support {
  width: 100%;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background: var(--brand-bg-alt);
}

.style-block h2,
.portfolio-support h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.3vw, 42px);
  line-height: 1.16;
}

.style-block p,
.portfolio-support p {
  color: var(--brand-body);
  font-size: 15px;
  line-height: 1.85;
}

.style-block img,
.portfolio-support img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--brand-line);
}

.portfolio-grid-section {
  padding: 92px 0;
}

.portfolio-grid-section h2 {
  margin-bottom: 54px;
  font-size: clamp(34px, 4vw, 48px);
}

.portfolio-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.portfolio-image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--brand-line);
}

.portfolio-cta {
  padding: 104px 24px;
  background: var(--brand-dark);
  text-align: center;
}

.portfolio-cta h2 {
  max-width: 760px;
  margin: 0 auto 38px;
  color: var(--brand-bg);
  font-size: clamp(34px, 4vw, 48px);
}

.portfolio-cta > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.pricing-page {
  background: var(--brand-bg);
  color: var(--brand-text);
}

.pricing-hero,
.pricing-grid,
.pricing-info-bar,
.pricing-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.pricing-hero {
  padding: 112px 0 84px;
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(56px, 8vw, 96px);
  align-items: start;
}

.pricing-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.06;
}

.pricing-hero-grid p {
  max-width: 560px;
  margin: 0 0 20px;
  color: var(--brand-body);
  font-size: 16px;
  line-height: 1.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 56px;
}

.pricing-card {
  min-height: 560px;
  border: 1px solid var(--brand-line);
  background: var(--brand-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.featured-pricing {
  position: relative;
  overflow: hidden;
  border-color: var(--brand-accent);
  background: var(--brand-bg-alt);
}

.pricing-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.pricing-label span {
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pricing-label i {
  width: 48px;
  height: 1px;
  background: var(--brand-accent);
}

.pricing-card h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.14;
}

.pricing-price {
  margin: 0 0 24px;
  color: var(--brand-dark);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.pricing-price span {
  font-family: var(--sans);
  color: var(--brand-accent);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-description {
  max-width: 680px;
  margin: 0 0 34px;
  color: var(--brand-body);
  font-size: 15px;
  line-height: 1.8;
}

.included-label {
  margin: auto 0 16px;
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-features {
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--brand-line);
}

.pricing-features li {
  list-style: none;
  color: var(--brand-body);
}

.clean-features {
  display: grid;
  gap: 13px;
}

.clean-features li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.clean-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand-accent);
}

.pricing-info-bar {
  margin-bottom: 72px;
  padding: 28px 34px;
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
  background: var(--brand-bg-alt);
}

.pricing-info-bar p {
  max-width: 980px;
  margin: 0;
  color: var(--brand-body);
  font-size: 14px;
  line-height: 1.8;
}

.pricing-cta {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 104px;
  padding: 52px;
  background: var(--brand-bg-alt);
}

.pricing-cta h2 {
  max-width: 640px;
  font-size: clamp(32px, 3.6vw, 48px);
}

.pricing-cta p:not(.eyebrow) {
  margin: 0 0 30px;
  color: var(--brand-body);
  line-height: 1.8;
}

.contact-page {
  background: var(--brand-bg);
  color: var(--brand-text);
}

.contact-hero,
.contact-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-hero {
  padding: 92px 0 72px;
}

.contact-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(40px, 5vw, 64px);
}

.contact-hero p {
  max-width: 680px;
  color: var(--brand-body);
  font-size: 16px;
  line-height: 1.85;
}

.contact-small {
  margin-top: 14px;
  font-size: 14px;
}

.contact-content {
  padding: 72px 0 112px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.contact-card {
  min-height: 210px;
  padding: 32px;
  border: 1px solid var(--brand-line);
  background: var(--brand-card);
  transition: border-color 180ms ease, background 180ms ease;
}

a.contact-card:hover {
  border-color: var(--brand-accent);
  background: var(--brand-bg-alt);
}

.contact-icon {
  display: block;
  margin-bottom: 26px;
  color: var(--brand-accent);
  font-size: 26px;
  line-height: 1;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.contact-card p {
  margin: 0;
  color: var(--brand-body);
  font-size: 14px;
}

.contact-form-wrap {
  max-width: 720px;
}

.company-details {
  margin-bottom: 88px;
  padding: 34px 0;
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}

.company-details dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 36px;
}

.company-details div {
  min-width: 0;
}

.company-details dt {
  margin-bottom: 8px;
  color: var(--brand-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.company-details dd {
  margin: 0;
  color: var(--brand-text);
  font-size: 15px;
  line-height: 1.6;
}

.contact-form-wrap h2 {
  margin-bottom: 42px;
  font-size: clamp(34px, 4vw, 46px);
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--brand-line);
  background: var(--brand-card);
  padding: 13px 15px;
  color: var(--brand-text);
  font: 400 14px/1.6 var(--sans);
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand-dark);
  outline: 0;
}

.legal-page {
  background: var(--brand-bg);
  color: var(--brand-text);
}

.legal-hero,
.legal-content {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-hero {
  padding: 92px 0 56px;
}

.legal-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
}

.legal-hero p {
  max-width: 720px;
  color: var(--brand-body);
  font-size: 16px;
  line-height: 1.85;
}

.legal-content {
  padding: 0 0 112px;
}

.legal-content article {
  padding: 30px 0;
  border-top: 1px solid var(--brand-line);
}

.legal-content article:last-child {
  border-bottom: 1px solid var(--brand-line);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 36px);
}

.legal-content p {
  max-width: 760px;
  color: var(--brand-body);
  font-size: 15px;
  line-height: 1.85;
}

.legal-content a {
  color: var(--brand-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Homepage v2: zakelijke premium vastgoedstijl */
.v2-home {
  background: #FAFAF7;
  color: #141414;
}

.v2-home .home-hero,
.v2-home .home-editorial,
.v2-home .home-section,
.v2-home .home-trust-bar {
  width: min(1180px, calc(100% - 48px));
}

.v2-home .home-hero {
  min-height: auto;
  padding: 96px 0 72px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.82fr);
  gap: clamp(56px, 7vw, 96px);
}

.v2-home .eyebrow,
.v2-home .hero-kicker {
  color: #6E2E34;
}

.v2-home .home-hero-copy h1 {
  max-width: 720px;
  color: #141414;
  font-size: clamp(42px, 4.9vw, 68px);
  line-height: 1.05;
}

.v2-home .home-hero-copy .lead {
  max-width: 610px;
  color: #46413D;
  font-size: 16px;
  line-height: 1.85;
}

.v2-home .home-hero-copy .hero-note {
  color: #141414;
  font-weight: 600;
  letter-spacing: 0;
}

.v2-home .home-hero-image img {
  min-height: 560px;
  max-height: 680px;
  border: 1px solid #D8D1C8;
  object-fit: cover;
  object-position: center;
}

.v2-home .button {
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid #211B18;
  background: #211B18;
  color: #FFFFFF;
  letter-spacing: 0.16em;
}

.v2-home .button:hover {
  border-color: #6E2E34;
  background: #6E2E34;
  color: #FFFFFF;
}

.v2-home .button.secondary {
  background: transparent;
  color: #211B18;
}

.v2-home .button.secondary:hover {
  border-color: #211B18;
  background: #211B18;
  color: #FFFFFF;
}

.home-trust-bar {
  width: min(1180px, calc(100% - 48px));
  margin: -38px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #D8D1C8;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.home-trust-bar div {
  padding: 26px 28px 24px;
  border-right: 1px solid #D8D1C8;
  color: #141414;
}

.home-trust-bar span {
  display: block;
  margin-bottom: 14px;
  color: #6E2E34;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.home-trust-bar strong {
  display: block;
  margin-bottom: 8px;
  color: #141414;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-trust-bar small {
  display: block;
  color: #46413D;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.home-trust-bar div:last-child {
  border-right: 0;
}

.v2-home .section-divider {
  background: #D8D1C8;
}

.v2-home .home-editorial,
.v2-home .home-section {
  padding: 104px 0;
}

.v2-home .home-editorial {
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(56px, 7vw, 96px);
}

.v2-home .home-editorial h2,
.v2-home .section-heading h2 {
  color: #141414;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
}

.v2-home .home-editorial p:not(.eyebrow),
.v2-home .section-heading p,
.v2-home .contact-cta p {
  color: #46413D;
  font-size: 16px;
  line-height: 1.85;
}

.v2-home .home-editorial img {
  aspect-ratio: 4 / 3;
  border: 1px solid #D8D1C8;
  object-position: center;
}

.v2-home .home-service-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.v2-home .home-service-grid article {
  min-height: 260px;
  padding: 34px;
  border-color: #D8D1C8;
  background: #FFFFFF;
}

.v2-home .home-service-grid span,
.v2-home .home-benefits span,
.v2-home .home-process-list span,
.v2-home .home-project-grid span {
  color: #6E2E34;
}

.v2-home .home-service-grid h3 {
  margin: 46px 0 16px;
  color: #141414;
  font-size: clamp(27px, 2.7vw, 36px);
}

.v2-home .home-service-grid p {
  color: #46413D;
  font-size: 15px;
  line-height: 1.75;
}

.v2-home .comparison-section .section-heading {
  margin-bottom: 36px;
}

.v2-home .comparison-slider {
  width: min(1100px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px solid #D8D1C8;
  background: #F0EFEB;
}

.v2-home .comparison-divider {
  background: #FAFAF7;
}

.v2-home .compare-label {
  background: rgba(250, 250, 247, 0.92);
  color: #141414;
  border: 1px solid #D8D1C8;
}

.v2-home .home-process-list {
  border-color: #D8D1C8;
}

.v2-home .home-process-list div {
  grid-template-columns: 96px 1fr;
  border-color: #D8D1C8;
  padding: 22px 0;
}

.v2-home .home-process-list p {
  color: #141414;
  font-size: clamp(24px, 2.7vw, 34px);
}

.v2-home .home-why {
  width: min(1180px, calc(100% - 48px));
  margin: 72px auto;
  padding: 96px clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 88px);
  align-items: start;
  border: 1px solid #D8D1C8;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(240, 239, 235, 0.92)),
    #F0EFEB;
}

.v2-home .home-why .section-heading {
  margin-bottom: 0;
}

.v2-home .home-why .section-heading h2 {
  font-size: clamp(34px, 3.7vw, 50px);
}

.v2-home .home-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-top: 0;
}

.v2-home .home-benefits div {
  min-height: 132px;
  padding: 26px;
  border: 1px solid #D8D1C8;
  background: rgba(255, 255, 255, 0.78);
}

.v2-home .home-benefits span {
  display: block;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.v2-home .home-benefits p {
  max-width: 260px;
  color: #141414;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.v2-home .home-project-grid {
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 24px;
}

.v2-home .home-project-grid article {
  padding-bottom: 18px;
}

.v2-home .home-project-grid img {
  aspect-ratio: 4 / 3;
  border: 1px solid #D8D1C8;
  object-position: center;
}

.v2-home .home-project-featured img {
  aspect-ratio: 4 / 3.15;
}

.v2-home .home-project-grid h3 {
  color: #141414;
  font-size: 25px;
}

.v2-home .home-project-featured h3 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.v2-home .home-project-grid p {
  color: #46413D;
  font-size: 15px;
  line-height: 1.75;
}

.v2-home .home-trust-dark {
  background: #211B18;
  padding: 88px max(24px, calc((100vw - 1180px) / 2));
  text-align: center;
}

.v2-home .home-trust-dark h2 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: #FAFAF7;
  font-size: clamp(34px, 4vw, 52px);
}

.v2-home .home-trust-dark p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(250, 250, 247, 0.76);
  font-size: 16px;
}

.v2-home .contact-cta {
  padding: 96px 0;
  background: #FAFAF7;
}

@media (max-width: 900px) {
  .nav {
    min-height: 68px;
    width: min(100% - 32px, 1240px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .hero {
    min-height: 680px;
    background-position: 58% center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .hero-aside {
    max-width: 420px;
    padding-left: 22px;
  }

  .section {
    width: min(100% - 32px, 1240px);
    padding: 72px 0;
  }

  .home-section {
    width: min(100% - 32px, 1180px);
    padding: 72px 0;
  }

  .home-hero,
  .home-editorial {
    width: min(100% - 32px, 1180px);
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 0;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-image img {
    min-height: 420px;
    max-height: none;
  }

  .section-divider,
  .stats-strip {
    width: min(100% - 32px, 1180px);
  }

  .intro-grid,
  .split,
  .editorial-spread,
  .service-editorial,
  .intro-statement,
  .value-section,
  .why-section,
  .about-home,
  .market-section,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .spread-heading {
    display: block;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 0;
  }

  .premium-card-grid,
  .process-list,
  .benefit-grid,
  .stats-strip,
  .insight-grid,
  .usp-strip,
  .home-service-grid,
  .home-benefits,
  .home-project-grid,
  .services-hero-grid,
  .image-strip,
  .diensten-heading,
  .service-detail,
  .diensten-cta,
  .expanded-service,
  .about-hero-grid,
  .pillar-grid,
  .about-split,
  .about-dark,
  .project-case-info,
  .style-block,
  .portfolio-support,
  .portfolio-image-grid,
  .pricing-hero-grid,
  .pricing-cta {
    grid-template-columns: 1fr;
  }

  .premium-card {
    min-height: 240px;
  }

  .home-service-grid article {
    min-height: auto;
  }

  .home-process-list div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-benefits div {
    min-height: auto;
  }

  .v2-home .home-hero,
  .v2-home .home-editorial {
    width: min(100% - 32px, 1180px);
    grid-template-columns: 1fr;
    padding: 72px 0;
  }

  .v2-home .home-hero-image img {
    min-height: 420px;
    max-height: none;
  }

  .home-trust-bar {
    width: min(100% - 32px, 1180px);
    margin-top: -24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .home-trust-bar div:nth-child(2) {
    border-right: 0;
  }

  .home-trust-bar div:nth-child(-n + 2) {
    border-bottom: 1px solid #D8D1C8;
  }

  .v2-home .home-service-grid,
  .v2-home .home-project-grid {
    grid-template-columns: 1fr;
  }

  .v2-home .home-why {
    width: min(100% - 32px, 1180px);
    margin: 56px auto;
    padding: 56px 24px;
    grid-template-columns: 1fr;
  }

  .v2-home .home-benefits {
    grid-template-columns: 1fr;
  }

  .v2-home .home-process-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .v2-home .comparison-slider {
    aspect-ratio: 4 / 3;
  }

  .stats-strip div,
  .usp-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .usp-strip div {
    border-color: rgba(255, 253, 248, 0.16);
  }

  .comparison-slider {
    aspect-ratio: 4 / 3;
  }

  .services-hero,
  .image-strip,
  .diensten-block,
  .service-detail,
  .diensten-process,
  .diensten-cta,
  .expanded-service,
  .about-hero,
  .about-pillars,
  .about-split,
  .about-dark,
  .about-cta,
  .portfolio-header,
  .project-case,
  .style-block,
  .portfolio-grid-section,
  .portfolio-support,
  .pricing-hero,
  .pricing-grid,
  .pricing-info-bar,
  .pricing-cta,
  .contact-hero,
  .contact-content {
    width: min(100% - 32px, 1180px);
  }

  .pricing-hero {
    padding: 72px 0 56px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  .pricing-card,
  .featured-pricing {
    padding: 30px;
  }

  .pricing-info-bar {
    margin-bottom: 72px;
    padding: 24px;
  }

  .pricing-cta {
    margin-bottom: 72px;
    padding: 36px 28px;
  }

  .contact-hero {
    padding: 72px 0 56px;
  }

  .contact-content {
    padding: 56px 0 72px;
  }

  .contact-card-grid,
  .company-details dl,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-grid {
    margin-bottom: 64px;
  }

  .about-hero,
  .about-pillars,
  .about-split,
  .about-dark,
  .about-cta {
    padding: 72px 0;
  }

  .about-split.muted-band,
  .about-dark,
  .style-block.alt-block,
  .portfolio-support {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .portfolio-header,
  .project-case,
  .style-block,
  .portfolio-grid-section,
  .portfolio-support {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .project-case {
    width: min(100% - 32px, 1180px);
    padding-top: 0;
  }

  .project-comparison {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .project-comparison-label {
    top: 12px;
    padding: 7px 10px;
    font-size: 9px;
  }

  .project-comparison-label.before {
    left: 12px;
  }

  .project-comparison-label.after {
    right: 12px;
  }

  .project-comparison-handle {
    width: 40px;
    height: 40px;
  }

  .project-case-info article {
    min-height: auto;
  }

  .portfolio-positioning {
    padding: 30px 16px;
  }

  .pillar-grid article {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--brand-line);
  }

  .about-dark aside {
    padding: 30px;
  }

  .services-cover {
    min-height: 560px;
  }

  .services-cover-overlay {
    background: rgba(245, 243, 239, 0.9);
  }

  .services-cover-content {
    width: min(100% - 32px, 1180px);
    padding: 72px 0;
  }

  .positioning-rule p {
    line-height: 1.8;
  }

  .expanded-service,
  .highlighted-service {
    padding: 72px 0;
  }

  .highlighted-service {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-badge {
    position: static;
    width: max-content;
    margin-bottom: -34px;
  }

  .services-hero {
    padding: 72px 0 56px;
  }

  .image-strip {
    padding-bottom: 72px;
  }

  .image-strip > div,
  .service-detail > img {
    height: 420px;
  }

  .image-strip aside {
    padding: 30px;
  }

  .diensten-block,
  .dark-detail {
    width: 100%;
    padding: 72px 16px;
  }

  .service-detail,
  .diensten-process {
    padding: 72px 0;
  }

  .diensten-steps div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .diensten-steps div::after {
    display: none;
  }

  .diensten-cta {
    margin-bottom: 72px;
    padding: 36px 28px;
  }

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

  .project-feature:first-child {
    grid-row: auto;
  }

  .project-feature:nth-child(2) {
    margin-top: 0;
  }

  .project-feature img,
  .project-feature:first-child img {
    aspect-ratio: 4 / 3.2;
  }

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

  .market-section {
    padding: 72px max(16px, calc((100vw - 1180px) / 2));
  }

  .intro-statement > p:not(.eyebrow) {
    grid-column: auto;
  }

  .quote-section {
    padding: 72px 16px;
  }

  .contact-cta {
    width: min(100% - 32px, 980px);
    padding: 72px 0;
  }

  .offset-image {
    transform: none;
  }

  .service-grid,
  .project-grid,
  .price-grid,
  .process-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .service-grid .card:first-child,
  .project-grid .card:nth-child(1),
  .project-grid .card:nth-child(5) {
    grid-column: auto;
  }

  .project-grid .card:nth-child(3),
  .project-grid .card:nth-child(6) {
    margin-top: 0;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 38px 0;
  }

  .cinematic {
    width: min(100% - 32px, 1240px);
    padding: 20px 0 104px;
  }

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 21px;
  }

  .hero-inner {
    width: min(100% - 32px, 1240px);
    padding-bottom: 58px;
  }

  h1 {
    font-size: 42px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .home-hero-copy h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 26px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-kicker {
    line-height: 1.6;
  }

  .intro-statement > p:not(.eyebrow),
  .section-heading > p:not(.eyebrow),
  .about-home p:not(.eyebrow),
  .market-section p:not(.eyebrow),
  .contact-cta > p:not(.eyebrow) {
    font-size: 14px;
  }

  .quote-section p {
    font-size: 32px;
  }

  .services-hero h1 {
    font-size: 42px;
  }

  .services-cover h1 {
    font-size: 40px;
  }

  .diensten-heading h2,
  .service-detail h2,
  .diensten-cta h2,
  .service-copy h2,
  .services-final-cta h2,
  .about-hero h1,
  .about-pillars h2,
  .about-split h2,
  .about-dark h2,
  .about-cta h2,
  .portfolio-header h1,
  .style-block h2,
  .portfolio-support h2,
  .portfolio-grid-section h2,
  .portfolio-cta h2,
  .pricing-hero h1,
  .pricing-card h2,
  .pricing-cta h2,
  .contact-hero h1,
  .contact-form-wrap h2 {
    font-size: 34px;
  }

  .pricing-price {
    font-size: 32px;
  }

  .diensten-steps h3 {
    font-size: 26px;
  }

  .hero-note {
    font-size: 12px;
  }

  .home-service-grid article {
    padding: 28px;
  }

  .home-benefits p,
  .home-project-grid h3 {
    font-size: 24px;
  }

  .v2-home .home-hero-copy h1 {
    font-size: 38px;
  }

  .v2-home .home-editorial h2,
  .v2-home .section-heading h2,
  .v2-home .home-trust-dark h2 {
    font-size: 32px;
  }

  .home-trust-bar {
    margin-top: -18px;
    grid-template-columns: 1fr;
  }

  .home-trust-bar div {
    border-right: 0;
    border-bottom: 1px solid #D8D1C8;
  }

  .home-trust-bar div:last-child {
    border-bottom: 0;
  }

  .button {
    width: auto;
  }

  .list li {
    display: block;
  }
}

/* Brandkit normalisatie: moderne high-end vastgoedstijl over alle pagina's */
.home-page,
.services-page,
.pricing-page,
.portfolio-page,
.about-page,
.contact-page {
  background: var(--brand-bg);
  color: var(--brand-text);
}

.eyebrow,
.editorial-label,
.pricing-label span,
.included-label,
.service-note span,
.service-when span,
.feature-box h3,
.contact-form label {
  color: var(--brand-accent);
  letter-spacing: 0.28em;
}

.editorial-label span:nth-child(2),
.pricing-label i,
.small-rule {
  background: var(--brand-accent);
}

.home-editorial p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.services-hero-grid p,
.services-cover-content p:not(.eyebrow):not(.service-tagline),
.service-copy > p:not(.service-subtitle),
.service-note p,
.service-when p,
.service-detail p:not(.eyebrow),
.diensten-cta p,
.about-copy p,
.about-split p,
.about-cta p,
.portfolio-header p:not(.eyebrow),
.style-block p,
.portfolio-support p,
.pricing-hero-grid p,
.pricing-description,
.pricing-info-bar p,
.pricing-cta p:not(.eyebrow),
.contact-hero p,
.contact-card p,
.contact-cta > p:not(.eyebrow) {
  color: var(--brand-body);
  font-size: 16px;
  line-height: 1.8;
}

.home-service-grid article,
.pricing-card,
.contact-card,
.feature-box,
.service-when,
.image-strip aside {
  border: 1px solid var(--brand-line);
  background: var(--brand-card);
  box-shadow: none;
}

.highlighted-service,
.about-split.muted-band,
.style-block.alt-block,
.portfolio-support,
.pricing-info-bar,
.pricing-cta,
.diensten-cta {
  background: var(--brand-bg-alt);
}

.home-hero-image img,
.home-editorial img,
.service-media img,
.about-hero-grid img,
.about-split img,
.style-block img,
.portfolio-support img,
.home-project-grid img,
.portfolio-image-grid img {
  border: 1px solid var(--brand-line);
}

.positioning-rule,
.services-final-cta,
.about-dark,
.portfolio-positioning,
.portfolio-cta,
.home-trust-dark {
  background: var(--brand-dark);
}

.positioning-rule p,
.about-dark .eyebrow,
.services-final-cta .eyebrow,
.portfolio-cta .eyebrow {
  color: var(--brand-warm);
}

.about-dark h2,
.about-dark h3,
.portfolio-positioning p,
.portfolio-cta h2,
.services-final-cta h2,
.home-trust-dark h2 {
  color: var(--brand-bg);
}

.about-dark p,
.services-final-cta > p:not(.eyebrow),
.home-trust-dark p {
  color: rgba(250, 250, 247, 0.74);
}

.button,
.dark-button {
  border: 1px solid var(--brand-dark);
  background: var(--brand-dark);
  color: var(--brand-bg);
}

.button:hover,
.dark-button:hover {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: var(--brand-bg);
}

.button.secondary,
.outline-dark-button {
  border: 1px solid var(--brand-dark);
  background: transparent;
  color: var(--brand-dark);
}

.button.secondary:hover,
.outline-dark-button:hover {
  background: var(--brand-dark);
  color: var(--brand-bg);
}

.light-button {
  border-color: var(--brand-bg);
  background: var(--brand-bg);
  color: var(--brand-dark);
}

.outline-light-button {
  border-color: var(--brand-warm);
  background: transparent;
  color: var(--brand-bg);
}

.feature-box li,
.pricing-features li,
.clean-features li,
.contact-form input,
.contact-form textarea {
  color: var(--brand-body);
  font-size: 16px;
}

/* Premium before/after transformatie */
.v2-home .comparison-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.v2-home .comparison-section .section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.v2-home .comparison-slider {
  --position: 55%;
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  background: var(--brand-bg-alt);
  isolation: isolate;
}

.v2-home .comparison-image,
.v2-home .comparison-slider > img,
.v2-home .comparison-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  pointer-events: none;
}

.v2-home .comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  will-change: clip-path;
}

.v2-home .comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 1px;
  transform: translateX(-0.5px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 18px rgba(20, 20, 20, 0.16);
  pointer-events: none;
}

.v2-home .comparison-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.18);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
}

.v2-home .comparison-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-top: 1px solid #141414;
  border-left: 1px solid #141414;
  opacity: 0.7;
  transform: translate(-70%, -50%) rotate(-45deg);
}

.v2-home .comparison-slider input {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.v2-home .compare-label {
  position: absolute;
  top: 18px;
  z-index: 5;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #141414;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.v2-home .compare-label.before {
  left: 18px;
}

.v2-home .compare-label.after {
  right: 18px;
}

@media (max-width: 900px) {
  .v2-home .comparison-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .v2-home .comparison-slider {
    width: 100%;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .v2-home .comparison-slider {
    aspect-ratio: 4 / 3;
  }

  .v2-home .compare-label {
    top: 12px;
    padding: 7px 11px;
    font-size: 10px;
  }

  .v2-home .compare-label.before {
    left: 12px;
  }

  .v2-home .compare-label.after {
    right: 12px;
  }
}

/* Homepage hero: cinematic vastgoedbeeld met rustige overlay */
.v2-home .home-hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(
      to right,
      rgba(31, 24, 20, 0.78) 0%,
      rgba(31, 24, 20, 0.58) 34%,
      rgba(31, 24, 20, 0.18) 68%,
      rgba(31, 24, 20, 0.04) 100%
    ),
    url("assets/home-hero-brand-cards.png");
  background-position: center 52%;
  background-size: cover;
  background-repeat: no-repeat;
}

.v2-home .home-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 108px;
}

.v2-home .home-hero-copy > div {
  max-width: 620px;
}

.v2-home .home-hero .eyebrow,
.v2-home .home-hero .hero-kicker {
  color: rgba(250, 250, 247, 0.78);
}

.v2-home .home-hero-copy h1 {
  max-width: 620px;
  margin-top: 22px;
  color: var(--brand-bg);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.06;
}

.v2-home .home-hero-copy .lead {
  max-width: 600px;
  color: rgba(250, 250, 247, 0.84);
  font-size: 17px;
  line-height: 1.82;
}

.v2-home .home-hero-copy .hero-note {
  margin-top: 22px;
  color: var(--brand-bg);
  font-size: 15px;
  font-weight: 600;
}

.v2-home .home-hero-copy .button {
  background: var(--brand-bg);
  border-color: var(--brand-bg);
  color: var(--brand-dark);
}

.v2-home .home-hero-copy .button:hover {
  background: rgba(250, 250, 247, 0.88);
  border-color: rgba(250, 250, 247, 0.88);
  color: var(--brand-dark);
}

.v2-home .home-hero-copy .button.secondary {
  background: transparent;
  border-color: rgba(250, 250, 247, 0.72);
  color: var(--brand-bg);
}

.v2-home .home-hero-copy .button.secondary:hover {
  background: rgba(250, 250, 247, 0.1);
  border-color: var(--brand-bg);
  color: var(--brand-bg);
}

.v2-home .home-hero-image {
  display: none;
}

@media (max-width: 900px) {
  .v2-home .home-hero {
    min-height: 86vh;
    background-image:
      linear-gradient(
        to right,
        rgba(31, 24, 20, 0.82) 0%,
        rgba(31, 24, 20, 0.62) 58%,
        rgba(31, 24, 20, 0.26) 100%
      ),
      url("assets/home-hero-brand-cards.png");
    background-position: 58% center;
  }

  .v2-home .home-hero-copy {
    width: min(100% - 32px, 1180px);
    padding: 104px 0 84px;
  }
}

@media (max-width: 560px) {
  .v2-home .home-hero {
    min-height: 82vh;
    background-position: 68% center;
  }

  .v2-home .home-hero-copy h1 {
    font-size: 39px;
  }

.v2-home .home-hero-copy .lead {
  font-size: 16px;
  }
}

/* High-end vastgoed editorial carousel */
.editorial-carousel-section {
  width: 100%;
  padding: 112px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 82% 18%, rgba(110, 46, 52, 0.2), transparent 34%),
    linear-gradient(135deg, var(--brand-dark) 0%, #171311 52%, var(--brand-chocolate) 100%);
  color: #fafaf7;
}

.editorial-carousel-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.editorial-carousel-heading .eyebrow {
  color: #c8b9a6;
}

.editorial-carousel-heading h2 {
  max-width: 760px;
  color: #fafaf7;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.02;
}

.editorial-carousel-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(250, 250, 247, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.editorial-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(250, 250, 247, 0.14);
  background: rgba(20, 20, 20, 0.34);
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.28);
}

.editorial-slides {
  position: relative;
  min-height: 680px;
}

.editorial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
  padding: clamp(34px, 5vw, 64px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
}

.editorial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  min-height: 520px;
}

.editorial-copy span {
  margin-bottom: 30px;
  color: #c8b9a6;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.editorial-copy h3 {
  color: #fafaf7;
  font-size: clamp(46px, 5.6vw, 84px);
  line-height: 0.94;
}

.editorial-copy p {
  max-width: 430px;
  margin: 34px 0 0;
  color: rgba(250, 250, 247, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

.editorial-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #141414;
}

.editorial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.38)),
    linear-gradient(90deg, rgba(31, 36, 32, 0.12), transparent 46%);
  pointer-events: none;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
  transform: scale(1.01);
}

.editorial-media-spread {
  background: #10100f;
}

.editorial-media-spread::after {
  display: none;
}

.editorial-media-spread img {
  object-fit: contain;
  filter: none;
  transform: none;
}

.editorial-media-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 12px;
  background: transparent;
}

.editorial-media-split img {
  min-width: 0;
}

.editorial-side-note {
  position: absolute;
  right: clamp(30px, 4vw, 54px);
  bottom: clamp(30px, 4vw, 54px);
  z-index: 2;
  max-width: 280px;
  padding-left: 24px;
  border-left: 1px solid rgba(200, 185, 166, 0.55);
}

.editorial-side-note strong,
.editorial-side-note span {
  display: block;
}

.editorial-side-note strong {
  color: #fafaf7;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.editorial-side-note span {
  margin-top: 10px;
  color: rgba(250, 250, 247, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.editorial-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(28px, 5vw, 64px);
  border-top: 1px solid rgba(250, 250, 247, 0.14);
}

.editorial-carousel-controls button {
  border: 0;
  background: transparent;
  color: rgba(250, 250, 247, 0.72);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.editorial-carousel-controls button:hover {
  color: #c8b9a6;
}

.editorial-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.editorial-dots button {
  width: 42px;
  height: 1px;
  padding: 0;
  background: rgba(250, 250, 247, 0.28);
}

.editorial-dots button.active {
  background: #c8b9a6;
}

@media (max-width: 900px) {
  .editorial-carousel-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .editorial-slides {
    min-height: 820px;
  }

  .editorial-slide {
    grid-template-columns: 1fr;
  }

  .editorial-copy {
    min-height: auto;
  }

  .editorial-media {
    min-height: 420px;
  }

  .editorial-side-note {
    left: clamp(30px, 4vw, 54px);
    right: auto;
  }
}

@media (max-width: 560px) {
  .editorial-carousel-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .editorial-slides {
    min-height: 760px;
  }

  .editorial-slide {
    padding: 26px;
  }

  .editorial-copy h3 {
    font-size: 42px;
  }

  .editorial-copy p {
    font-size: 15px;
  }

  .editorial-media {
    min-height: 330px;
  }

  .editorial-media-split {
    grid-template-columns: 1fr;
  }

  .editorial-media-split img:nth-child(2) {
    display: none;
  }

  .editorial-side-note {
    display: none;
  }

  .editorial-carousel-controls {
    padding: 18px 24px;
  }
}
