:root {
  --ink: #1f2925;
  --ink-soft: #405049;
  --paper: #fbfaf7;
  --sand: #f1eadf;
  --gold: #c3a06a;
  --gold-dark: #8a6b3f;
  --copper: #d96f32;
  --copper-dark: #b8501c;
  --white: #ffffff;
  --line: #dcd8ce;
  --success: #2e684d;
  --danger: #a83b2d;
  --shadow: 0 28px 70px rgba(31, 41, 37, 0.13);
  --shell: min(1180px, calc(100vw - 40px));
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.utility-bar {
  color: #f8f5ed;
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.utility-bar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.utility-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.utility-bar span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(31, 41, 37, 0.08);
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  width: 114px;
  height: 68px;
  flex: 0 0 auto;
  overflow: hidden;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.35vw, 20px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-link {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 4px;
  padding: 11px 20px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 12px 28px rgba(217, 111, 50, 0.26);
}

.button--primary:hover {
  background: var(--copper-dark);
  box-shadow: 0 16px 36px rgba(184, 80, 28, 0.31);
}

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

.button--large {
  min-height: 56px;
  padding-inline: 28px;
}

.button--wide {
  width: 100%;
}

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

.menu-toggle,
.mobile-menu {
  display: none;
}

.breadcrumbs {
  padding-top: 20px;
  color: #65716c;
  font-size: 13px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #a3aaa6;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--copper);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 110px) 0 clamp(70px, 9vw, 120px);
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -210px;
  border: 1px solid rgba(195, 160, 106, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(195, 160, 106, 0.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 8vw, 108px);
}

.hero--article {
  padding: clamp(38px, 5vw, 68px) 0 clamp(42px, 5vw, 72px);
}

.hero--article .hero-grid {
  grid-template-columns: minmax(0, 860px);
  gap: 0;
}

.hero--article h1 {
  max-width: 900px;
  font-size: clamp(40px, 5vw, 64px);
}

.hero--article .hero-intro {
  max-width: 820px;
}

.hero--article .hero-actions {
  margin-top: 26px;
}

.hero--article .trust-list {
  margin-top: 24px;
}

.eyebrow,
.article-cta__eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.prose h2,
.prose h3,
.quote-sidebar h2,
.dialog-header h2,
.error-page h1 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 820px;
  margin: 14px 0 24px;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 1.02;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.hero-intro {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--copper);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 32px 0 0;
  padding: 0;
  color: #56625c;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  margin-right: 7px;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-size: 11px;
}

.freshness {
  margin: 18px 0 0;
  color: #7c857f;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 38px 2px 16px 56px;
  z-index: -2;
  background:
    linear-gradient(rgba(251, 250, 247, 0.5), rgba(251, 250, 247, 0.5)),
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(31, 41, 37, 0.08) 36px 37px),
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(31, 41, 37, 0.08) 36px 37px);
  border: 1px solid rgba(31, 41, 37, 0.08);
}

.roof-shape {
  position: absolute;
  filter: drop-shadow(0 24px 30px rgba(31, 41, 37, 0.14));
}

.roof-shape--back {
  width: 300px;
  height: 180px;
  top: 80px;
  right: 20px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 58%, 83% 76%, 50% 38%, 17% 76%, 0 58%);
}

.roof-shape--front {
  width: 340px;
  height: 255px;
  right: 62px;
  bottom: 42px;
  background: var(--ink);
  clip-path: polygon(50% 0, 100% 45%, 87% 60%, 50% 27%, 15% 60%, 50% 93%, 92% 52%, 100% 60%, 50% 100%, 0 53%, 15% 38%, 50% 70%);
}

.hero-card,
.hero-price {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 41, 37, 0.09);
  box-shadow: 0 16px 34px rgba(31, 41, 37, 0.13);
  backdrop-filter: blur(8px);
}

.hero-card {
  width: 188px;
}

.hero-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
}

.hero-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.hero-card--top {
  top: 44px;
  left: 0;
}

.hero-card--bottom {
  right: 0;
  bottom: 34px;
}

.hero-price {
  left: 4px;
  bottom: 104px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--success);
  font-size: 13px;
}

.hero-price span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
}

.services-section {
  padding: 0 0 clamp(72px, 10vw, 130px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  align-items: start;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.section-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.12;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-5px);
}

.service-card__number {
  margin-bottom: auto;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
}

.service-card strong {
  display: block;
  margin-top: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
}

.service-card p {
  margin: 12px 0 0;
  color: #65716c;
  font-size: 14px;
  line-height: 1.55;
}

.service-card:hover p {
  color: #d5dbd7;
}

.service-card__arrow {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 20px;
}

#inhoud {
  padding: clamp(68px, 9vw, 120px) 0;
  background: var(--white);
}

.hero--article + #inhoud {
  padding-top: clamp(42px, 6vw, 76px);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(50px, 7vw, 92px);
}

.article-content {
  min-width: 0;
}

.toc {
  margin: 0 0 56px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

.toc summary {
  padding: 18px 22px;
  font-weight: 900;
  cursor: pointer;
}

.toc ol {
  max-height: 430px;
  overflow: auto;
  margin: 0;
  padding: 0 24px 24px 48px;
  font-size: 14px;
}

.toc li + li {
  margin-top: 7px;
}

.toc a {
  color: var(--ink-soft);
  text-decoration-color: rgba(217, 111, 50, 0.4);
  text-underline-offset: 3px;
}

.source-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  gap: 28px;
  margin-top: 64px;
  border: 1px solid #d7dfda;
  border-left: 4px solid var(--gold);
  padding: 26px;
  background: #f4f7f5;
}

.source-panel strong {
  display: block;
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.source-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.source-panel ul {
  margin: 0;
  padding-left: 20px;
}

.source-panel li + li {
  margin-top: 7px;
}

.source-panel a {
  font-size: 14px;
  font-weight: 700;
}

.related-topics {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.section-heading--compact {
  display: block;
}

.section-heading--compact h2 {
  max-width: 720px;
  margin: 10px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.14;
}

.section-heading--compact p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.related-grid a {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.related-grid a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.related-grid span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.prose {
  color: #2d3833;
}

.prose .context-links {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--ink-soft);
  font-size: 15px;
}

.prose .context-links a {
  font-weight: 800;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 82px 0 22px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  text-wrap: balance;
}

.prose h3 {
  margin: 48px 0 16px;
  color: var(--ink);
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.25;
}

.prose h4 {
  margin: 34px 0 12px;
  font-size: 20px;
}

.prose p {
  margin: 0 0 24px;
}

.prose a {
  color: var(--copper-dark);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose ul,
.prose ol {
  margin: 0 0 28px;
  padding-left: 26px;
}

.prose li {
  margin-bottom: 10px;
}

.prose li::marker {
  color: var(--copper);
  font-weight: 800;
}

.prose blockquote {
  margin: 42px 0;
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 28px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.prose img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 36px auto;
}

.prose figure {
  margin: 38px 0;
}

.prose figcaption {
  margin-top: 10px;
  color: #6c7671;
  font-size: 13px;
  text-align: center;
}

.semantic-visual {
  margin: 48px 0 64px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(31, 41, 37, 0.08);
}

.semantic-visual img {
  width: 100%;
  margin: 0;
  background: #f4f0e9;
}

.semantic-visual figcaption {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 16px 20px 18px;
  color: var(--ink-soft);
  background: var(--white);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  margin: 30px 0 42px;
  border: 1px solid var(--line);
}

.prose table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}

.prose th {
  color: var(--white);
  background: var(--ink);
  text-align: left;
}

.prose th,
.prose td {
  border-bottom: 1px solid var(--line);
  padding: 13px 15px;
  vertical-align: top;
}

.prose caption {
  padding: 12px 15px;
  color: var(--ink);
  background: #efe8dc;
  font-weight: 800;
  text-align: left;
}

.prose tr:nth-child(even) td {
  background: #f8f6f1;
}

.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin: 68px 0;
  padding: 34px;
  color: var(--white);
  background: var(--ink);
}

.article-cta strong {
  display: block;
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.2;
}

.article-cta p {
  margin: 8px 0 0;
  color: #cbd2ce;
  font-size: 14px;
}

.article-cta__eyebrow {
  color: var(--gold);
}

.quote-sidebar {
  position: sticky;
  top: 118px;
}

.quote-sidebar__inner {
  padding: 30px;
  background: var(--sand);
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.quote-sidebar h2 {
  margin: 10px 0 8px;
  font-size: 32px;
  line-height: 1.12;
}

.quote-sidebar > p,
.quote-sidebar__inner > p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.quote-form--compact .form-grid {
  grid-template-columns: 1fr;
}

.field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.field--full,
.consent {
  grid-column: 1 / -1;
}

.field > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.field small {
  color: #78817c;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #c9c6bd;
  border-radius: 3px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.field input,
.field select {
  min-height: 46px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(217, 111, 50, 0.12);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  color: #58635d;
  font-size: 11px;
  line-height: 1.45;
}

.consent input {
  margin: 3px 0 0;
}

.quote-form .button {
  margin-top: 18px;
}

.form-note,
.form-status {
  margin: 10px 0 0;
  font-size: 11px;
  text-align: center;
}

.form-note {
  color: #737c77;
}

.platform-role {
  margin: 7px auto 0;
  max-width: 54ch;
  color: #737c77;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.form-status {
  font-weight: 800;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.honeypot {
  display: none !important;
}

.site-footer {
  padding: 72px 0 24px;
  color: #e9ecea;
  background: #17201c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 0.8fr);
  gap: 32px;
}

.brand--footer {
  width: 165px;
  height: 102px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-grid p {
  max-width: 420px;
  color: #aeb8b2;
  font-size: 14px;
}

.footer-grid .footer-entity {
  margin-top: 2px;
  color: #d9dedb;
  line-height: 1.6;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid strong {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-button {
  border: 0;
  padding: 0;
  color: #d9dedb;
  background: none;
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-button:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: #7e8d85;
  font-size: 12px;
}

.quote-dialog {
  width: min(760px, calc(100vw - 28px));
  max-height: min(900px, calc(100vh - 28px));
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.quote-dialog::backdrop {
  background: rgba(15, 22, 19, 0.76);
  backdrop-filter: blur(5px);
}

.dialog-panel {
  position: relative;
  overflow: auto;
  max-height: calc(100vh - 28px);
  padding: clamp(28px, 5vw, 52px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sand);
  font-size: 26px;
}

.dialog-header {
  padding-right: 46px;
}

.dialog-header h2 {
  margin: 8px 0 8px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.08;
}

.dialog-header p {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--ink-soft);
}

.mobile-quote-bar {
  display: none;
}

.service-card,
.toc,
.quote-sidebar__inner {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.service-card.is-visible,
.toc.is-visible,
.quote-sidebar__inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.error-page {
  width: min(680px, calc(100vw - 40px));
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: start;
  margin: auto;
}

.error-page img {
  width: 180px;
  margin-bottom: 32px;
}

.error-page h1 {
  margin: 8px 0 18px;
  font-size: clamp(42px, 7vw, 70px);
  line-height: 1.03;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .service-card,
  .toc,
  .quote-sidebar__inner {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid var(--line);
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 21px;
    height: 2px;
    background: var(--ink);
  }

  .mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    padding: 12px 20px 24px;
    background: var(--paper);
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu .site-nav {
    width: var(--shell);
    display: grid;
    gap: 0;
    margin: auto;
  }

  .mobile-menu .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
    font-size: 16px;
  }

  .language-link {
    border-left: 0;
  }

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

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(620px, 100%);
    min-height: 390px;
    margin-inline: auto;
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 48px;
  }

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

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

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 28px, 680px);
  }

  body {
    font-size: 16px;
  }

  .utility-bar__inner {
    min-height: 32px;
    justify-content: center;
  }

  .utility-bar span:not(:first-child) {
    display: none;
  }

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

  .brand {
    width: 92px;
    height: 58px;
  }

  .breadcrumbs {
    padding-top: 14px;
  }

  .hero {
    padding: 44px 0 72px;
  }

  .hero--article {
    padding: 34px 0 46px;
  }

  .hero h1 {
    margin-top: 10px;
    font-size: clamp(36px, 10vw, 52px);
  }

  .hero--article h1 {
    font-size: clamp(32px, 8.5vw, 44px);
  }

  .hero--article .hero-intro {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-visual::before {
    inset: 28px 0 8px 28px;
  }

  .roof-shape--back {
    width: 230px;
    height: 145px;
  }

  .roof-shape--front {
    width: 250px;
    height: 205px;
    right: 35px;
  }

  .hero-card {
    width: 154px;
    padding: 12px;
  }

  .hero-price {
    left: 0;
    bottom: 74px;
    padding: 11px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .service-card {
    min-height: 220px;
  }

  #inhoud {
    padding: 70px 0 95px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .source-panel,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    position: static;
  }

  .prose h2 {
    margin-top: 64px;
  }

  .article-cta {
    grid-template-columns: 1fr;
    padding: 28px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-quote-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 80;
    min-height: 54px;
    display: block;
    border: 0;
    border-radius: 4px;
    color: var(--white);
    background: var(--copper);
    box-shadow: 0 12px 32px rgba(31, 41, 37, 0.28);
    font-weight: 900;
  }

  .site-footer {
    padding-bottom: 94px;
  }

  .dialog-panel {
    padding-top: 56px;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .quote-sidebar,
  .article-cta,
  .site-footer,
  .mobile-quote-bar,
  .hero-actions,
  .hero-visual {
    display: none !important;
  }

  .hero {
    padding: 20px 0;
  }

  .content-layout {
    display: block;
  }

  .toc {
    opacity: 1;
    transform: none;
  }
}

.freshness {
  margin: 18px 0 34px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.source-note,
.scenario-card {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--sand);
  background: #f7f3ed;
}

.first-party-data {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(150px, 0.55fr) minmax(280px, 1.6fr);
  align-items: stretch;
  gap: 1px;
  margin: 34px 0 48px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  background: var(--line);
  overflow: hidden;
}

.first-party-data > div,
.first-party-data__detail {
  margin: 0;
  padding: 22px;
  background: linear-gradient(145deg, #f7f3ed, var(--white));
}

.first-party-data strong {
  display: block;
  margin: 6px 0 4px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.first-party-data p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.first-party-data__eyebrow {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.first-party-data__detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.first-party-data__detail a {
  font-weight: 850;
}

.answer-summary {
  margin: 28px 0 42px;
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sand);
  background: linear-gradient(135deg, #f7f3ed, var(--white));
}

.answer-summary__label {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.answer-summary__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}

.answer-summary__grid div {
  display: grid;
  gap: 4px;
}

.answer-summary__grid dt {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.answer-summary__grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 900;
}

.answer-summary__grid small {
  color: var(--ink-soft);
  line-height: 1.45;
}

@media (max-width: 680px) {
  .first-party-data {
    grid-template-columns: 1fr;
  }

  .answer-summary {
    padding: 22px;
  }

  .answer-summary__grid {
    grid-template-columns: 1fr;
  }
}

.process-list {
  counter-reset: process-step;
  display: grid;
  gap: 14px;
  padding-left: 0 !important;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 48px;
  padding: 12px 14px 12px 56px;
  border: 1px solid var(--line);
  background: var(--white);
}

.process-list li::before {
  counter-increment: process-step;
  content: counter(process-step);
  position: absolute;
  top: 10px;
  left: 12px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.offer-checklist {
  padding-left: 0 !important;
  list-style: none;
}

.offer-checklist li {
  position: relative;
  padding-left: 30px;
}

.offer-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 900;
}

.faq {
  margin-top: 72px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fbfaf7;
}

.faq h2 {
  margin-top: 0;
}
