:root {
  --ink: #17322b;
  --ink-soft: #385149;
  --forest: #1e493c;
  --forest-dark: #12352b;
  --sage: #9fb19d;
  --sage-light: #dce4da;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --clay: #c66d4e;
  --clay-dark: #a64e34;
  --line: rgba(23, 50, 43, .14);
  --shadow: 0 22px 60px rgba(22, 47, 39, .12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(198, 109, 78, .45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -80px;
  padding: 10px 16px;
  background: var(--paper);
  border-radius: 8px;
  font-weight: 750;
}

.skip-link:focus { top: 16px; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--clay-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 { font-size: clamp(2.65rem, 6vw, 5.8rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.05rem, 4vw, 3.65rem); letter-spacing: -.04em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); letter-spacing: -.025em; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.lede {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); background: var(--forest-dark); }
.button--light { border-color: #fff; background: #fff; color: var(--forest-dark); }
.button--ghost { background: transparent; color: var(--forest); }
.button--ghost:hover { color: #fff; }
.button--arrow::after { content: "\2192"; font-size: 1.2em; }
.button--glass { border-color: rgba(255,255,255,.55); color: #fff; }
.lede--spaced { margin-top: 22px; }
.copy--spaced { margin-top: 25px; }
.brand-note { margin-top: 22px; color: var(--ink-soft); font-size: .82rem; }

.top-note {
  padding: 8px 20px;
  background: var(--forest-dark);
  color: rgba(255,255,255,.78);
  font-size: .8rem;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .91);
  backdrop-filter: blur(14px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50% 50% 46% 54%;
  background: var(--forest);
  color: var(--cream);
  font-size: 1.35rem;
  transform: rotate(-3deg);
}

.logo-text small {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-list a:hover, .nav-list a[aria-current="page"] { background: var(--sage-light); }
.nav-list .nav-cta { margin-left: 8px; padding-inline: 17px; background: var(--clay); color: #fff; }
.nav-list .nav-cta:hover, .nav-list .nav-cta[aria-current="page"] { background: var(--clay-dark); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle-lines, .menu-toggle-lines::before, .menu-toggle-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
  transition: .2s ease;
}

.menu-toggle-lines { position: relative; }
.menu-toggle-lines::before, .menu-toggle-lines::after { content: ""; position: absolute; left: 0; }
.menu-toggle-lines::before { top: -6px; }
.menu-toggle-lines::after { top: 6px; }
.menu-open .menu-toggle-lines { background: transparent; }
.menu-open .menu-toggle-lines::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-toggle-lines::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-dark);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,27,22,.92) 0%, rgba(9,27,22,.7) 34%, rgba(9,27,22,.12) 70%), url("assets/beelden/woonkamer-bruin.webp") center/cover no-repeat;
  transform: scale(1.01);
}

.hero-inner { position: relative; z-index: 1; padding-block: 110px 82px; }
.hero-copy { max-width: 760px; }
.hero h1 { max-width: 720px; }
.hero h1 em { color: #e0b399; font-weight: inherit; }
.hero .lede { max-width: 600px; margin-top: 25px; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 33px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 48px 0 0;
  padding: 0;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 650;
  list-style: none;
}

.hero-trust li::before { content: "\2713"; margin-right: 7px; color: #e0b399; }

.section { padding-block: clamp(78px, 10vw, 132px); }
.section--compact { padding-block: 70px; }
.section--cream { background: var(--cream); }
.section--sage { background: var(--sage-light); }
.section--dark { background: var(--forest-dark); color: #fff; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 50px; }
.section-head .lede { justify-self: end; }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 110px); align-items: start; }
.intro-aside { position: sticky; top: 120px; }
.intro-copy { font-size: 1.06rem; }
.intro-copy > p:first-child::first-letter {
  float: left;
  margin: .08em .12em 0 0;
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: .78;
}

.text-link { color: var(--clay-dark); font-weight: 750; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.text-link:hover { color: var(--forest); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-number { display: block; margin-bottom: 45px; color: var(--clay-dark); font-size: .74rem; font-weight: 800; letter-spacing: .12em; }
.card h3 { margin-bottom: 14px; }
.card p { color: var(--ink-soft); font-size: .94rem; }
.card > a::after { content: ""; position: absolute; inset: 0; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--forest); font-weight: 800; text-decoration: none; }
.card-link::after { content: "\2197"; }

.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.choice {
  display: flex;
  min-height: 175px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  text-decoration: none;
  transition: .2s ease;
}

.choice:hover { border-color: var(--clay); transform: translateY(-3px); }
.choice-icon { color: var(--clay); font-size: 1.7rem; }
.choice strong { font-family: Georgia, serif; font-size: 1.23rem; font-weight: 500; line-height: 1.25; }
.choice span:last-child { color: var(--ink-soft); font-size: .82rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 100px); align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); object-fit: cover; }
.split-media--wide img { aspect-ratio: 5 / 4; }
.image-note {
  position: absolute;
  right: -24px;
  bottom: 28px;
  max-width: 245px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--shadow);
  font-size: .85rem;
}

.image-note strong { display: block; margin-bottom: 5px; font-family: Georgia, serif; font-size: 1.15rem; }
.check-list { margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 11px 0 11px 32px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--clay); font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; counter-reset: steps; }
.step { position: relative; padding-top: 74px; counter-increment: steps; }
.step::before {
  content: "0" counter(steps);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 2.7rem;
  line-height: 1;
}
.step h3 { margin-bottom: 13px; }
.step p { color: var(--ink-soft); }

.quote-block {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 55px;
  align-items: start;
  padding: clamp(35px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: #fff;
}
.quote-block blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.65rem); line-height: 1.25; }
.quote-block .quote-label { color: #d8b198; font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.quote-block p { color: rgba(255,255,255,.74); }

.brand-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--line); }
.brand-row span { color: var(--ink-soft); font-family: Georgia, serif; font-size: 1.15rem; }

.cta-band { padding-block: 75px; background: var(--clay); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 750px; font-size: clamp(2rem, 4vw, 3.4rem); }

.page-hero { padding-block: clamp(80px, 11vw, 140px) 80px; background: var(--cream); }
.page-hero-inner { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 80px; align-items: end; }
.page-hero h1 { max-width: 850px; font-size: clamp(2.8rem, 5.8vw, 5.4rem); }
.page-hero .lede { margin-top: 25px; }
.page-meta { padding: 24px; border-left: 1px solid var(--clay); color: var(--ink-soft); font-size: .9rem; }
.breadcrumbs { margin-bottom: 24px; color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs span { margin-inline: 7px; color: var(--sage); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 80px; align-items: start; }
.article { max-width: 780px; }
.article h2 { margin: 2em 0 .55em; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 1.8em 0 .55em; }
.article p, .article li { color: var(--ink-soft); }
.article ul, .article ol { padding-left: 1.3em; }
.article li { margin-bottom: .55em; }
.article-callout { margin-block: 36px; padding: 28px; border-left: 4px solid var(--clay); background: var(--cream); }
.article-callout strong { display: block; margin-bottom: 7px; color: var(--ink); font-family: Georgia, serif; font-size: 1.25rem; }
.article-image { margin: 42px 0; }
.article-image img { width: 100%; border-radius: var(--radius); }
.article-image figcaption { margin-top: 10px; color: var(--ink-soft); font-size: .78rem; }

.side-nav { position: sticky; top: 116px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.side-nav strong { display: block; margin-bottom: 12px; font-family: Georgia, serif; font-size: 1.2rem; }
.side-nav ul { margin: 0; padding: 0; list-style: none; }
.side-nav li + li { border-top: 1px solid var(--line); }
.side-nav a { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; font-size: .88rem; font-weight: 700; text-decoration: none; }
.side-nav a::after { content: "\2192"; color: var(--clay); }

.check-shell { display: grid; grid-template-columns: 340px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.check-intro { padding: clamp(30px, 5vw, 55px); background: var(--forest-dark); color: #fff; }
.check-intro .check-kicker { color: #e0b399; }
.check-intro .check-intro-title { margin-bottom: 20px; font-size: 2.3rem; }
.check-intro p { color: rgba(255,255,255,.74); }
.check-intro ol { margin: 28px 0 0; padding-left: 1.25em; color: rgba(255,255,255,.82); }
.check-form { padding: clamp(30px, 5vw, 60px); background: #fff; }
.form-section { margin: 0 0 34px; padding: 0 0 30px; border: 0; border-bottom: 1px solid var(--line); }
.form-section legend { width: 100%; margin-bottom: 17px; font-family: Georgia, serif; font-size: 1.35rem; }
.radio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.radio-option { position: relative; }
.radio-option input { position: absolute; opacity: 0; }
.radio-option label { display: block; height: 100%; padding: 16px 18px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink-soft); cursor: pointer; }
.radio-option input:checked + label { border-color: var(--forest); background: var(--sage-light); color: var(--ink); box-shadow: inset 0 0 0 1px var(--forest); }
.check-result { display: none; margin-top: 30px; padding: 28px; border-radius: var(--radius-sm); background: var(--cream); }
.check-result.is-visible { display: block; }
.check-result h3 { margin-bottom: 10px; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.service h3 { margin-bottom: 12px; }
.service p { color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 100px); }
.contact-details { margin: 32px 0; padding: 0; list-style: none; }
.contact-details li { padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-details small { display: block; color: var(--ink-soft); font-size: .76rem; font-weight: 700; text-transform: uppercase; }
.contact-details a { font-weight: 750; text-decoration: none; }
.contact-form { padding: clamp(28px, 5vw, 50px); border-radius: var(--radius); background: var(--cream); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: .84rem; font-weight: 750; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(23,50,43,.22);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--ink-soft); font-size: .78rem; }
.form-status { margin-top: 14px; font-weight: 700; }

.footer { padding-block: 70px 26px; background: #102c24; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 55px; }
.footer .logo { margin-bottom: 20px; }
.footer .logo-mark { background: var(--cream); color: var(--forest); }
.footer .logo-text small, .footer p, .footer address { color: rgba(255,255,255,.62); }
.footer address { font-style: normal; }
.footer h3 { margin-bottom: 20px; font-family: Inter, sans-serif; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { color: rgba(255,255,255,.78); font-size: .9rem; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-contact-links { margin-top: 14px !important; }
.footer-bottom { display: flex; justify-content: flex-start; gap: 25px; margin-top: 55px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: .76rem; }

.status-section { min-height: 70vh; display: grid; align-items: center; }
.status-section h1 { max-width: 850px; }
.status-section .lede, .status-section .button { margin-top: 25px; }

@media (max-width: 980px) {
  .menu-toggle { display: flex; }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    max-height: calc(100vh - 83px);
    overflow-y: auto;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: .2s ease;
  }
  .menu-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-list { align-items: stretch; flex-direction: column; }
  .nav-list a { padding: 13px 15px; border-radius: 8px; }
  .nav-list .nav-cta { margin: 8px 0 0; text-align: center; }
  .section-head, .page-hero-inner { grid-template-columns: 1fr; gap: 25px; }
  .section-head .lede { justify-self: start; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 45px; }
  .side-nav { position: static; }
  .check-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --container: min(1180px, calc(100% - 28px)); }
  body { font-size: 16px; }
  .header-inner { min-height: 72px; gap: 10px; }
  .site-nav { max-height: calc(100dvh - 73px); }
  .logo-mark { width: 38px; height: 38px; }
  .logo { gap: 9px; font-size: 1.2rem; }
  .logo-text small { display: none; }
  .menu-toggle { flex: 0 0 46px; }
  .hero { min-height: 700px; }
  .hero::before { background: linear-gradient(180deg, rgba(9,27,22,.28) 0%, rgba(9,27,22,.78) 58%, rgba(9,27,22,.96) 100%), url("assets/beelden/woonkamer-bruin.webp") 66% center/cover no-repeat; }
  .hero-inner { padding-block: 170px 50px; }
  .hero h1 { max-width: 100%; font-size: clamp(2.55rem, 12vw, 4.4rem); overflow-wrap: anywhere; text-wrap: wrap; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-trust { margin-top: 32px; flex-direction: column; gap: 7px; }
  .intro-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .intro-aside { position: static; }
  .cards, .steps, .service-grid { grid-template-columns: 1fr; }
  .card { min-height: 280px; }
  .quote-block { grid-template-columns: 1fr; gap: 25px; }
  .cta-inner { align-items: stretch; flex-direction: column; }
  .cta-inner .button { width: 100%; }
  .image-note { right: 12px; bottom: 12px; }
  .page-hero { padding-block: 65px 60px; }
  .page-meta { padding: 10px 0 10px 20px; }
  .radio-grid, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
}

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