/* Houtskeletbouw Limburg - ontwerpvoorstel
   Kleuren en typografie volgen de handoff uit de design-funnel. */

:root {
  --zand: #f3ede2;
  --creme: #fbf7ee;
  --zand-diep: #e4dac8;
  --inkt: #1b1710;
  --nacht: #14110c;
  --groen: #35592f;
  --groen-donker: #243d20;
  --groen-licht: #9dbb8f;
  --groen-zacht: #d7e2cc;
  --groen-mist: #b7cba8;
  --brons: #a66b3a;
  --tekst: #4a4234;
  --grijs: #6e6455;
  --vaag: #948871;
  --op-nacht: #c7bba6;
  --breedte: 1360px;
  --rand: clamp(16px, 3vw, 40px);
  --serif: "Young Serif", Georgia, "Times New Roman", serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  /* de plakkende kop mag geen anker onder zich verstoppen */
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  background: var(--zand);
  color: var(--inkt);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* ruimte voor de vaste actiebalk op kleine schermen */
  padding-bottom: 76px;
}

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

/* hidden moet het altijd halen van de display-regels hieronder */
[hidden] {
  display: none !important;
}

a {
  color: var(--groen);
}

a:hover {
  color: var(--groen-donker);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.wikkel {
  max-width: var(--breedte);
  margin: 0 auto;
  padding-left: var(--rand);
  padding-right: var(--rand);
}

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

/* ---------- voorstel-strook ---------- */

.voorstel-strook {
  background: var(--nacht);
  color: var(--op-nacht);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px var(--rand);
}

/* ---------- kop en navigatie ---------- */

.kop {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 237, 226, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--inkt);
}

.kop-binnen {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  min-height: 78px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.kop-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.kop-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.hoofdnav ul {
  list-style: none;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  padding: 0;
}

.hoofdnav a {
  color: var(--inkt);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.hoofdnav a:hover,
.hoofdnav a[aria-current="page"] {
  color: var(--groen);
  border-bottom-color: var(--groen);
}

.kop-telefoon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--inkt);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.kop-telefoon:hover {
  color: var(--groen);
}

.kop-telefoon svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.kop-telefoon .telefoon-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grijs);
}

@media (max-width: 1080px) {
  .kop-binnen {
    row-gap: 10px;
  }
  .hoofdnav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    border-top: 1px solid rgba(27, 23, 16, 0.18);
    padding-top: 10px;
  }
  .hoofdnav::-webkit-scrollbar {
    display: none;
  }
  /* de vaste balk onderaan draagt op smalle schermen de aanvraagknop al */
  .kop-binnen .kop-cta {
    display: none;
  }
  .hoofdnav ul {
    gap: 18px;
  }
}

@media (max-width: 460px) {
  .kop-logo img {
    height: 34px;
  }
  .kop-telefoon {
    font-size: 14px;
  }
}

/* ---------- knoppen ---------- */

.knop {
  display: inline-block;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 16px 26px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.knop-vol {
  background: var(--inkt);
  color: var(--creme);
}

.knop-vol:hover {
  background: var(--groen);
  color: var(--creme);
}

.knop-lijn {
  background: transparent;
  color: var(--inkt);
  border-color: var(--inkt);
}

.knop-lijn:hover {
  background: var(--inkt);
  color: var(--creme);
}

.knop-licht {
  background: var(--creme);
  color: var(--inkt);
}

.knop-licht:hover {
  background: var(--inkt);
  color: var(--creme);
}

.knop-lijn-licht {
  background: transparent;
  color: var(--creme);
  border-color: rgba(251, 247, 238, 0.55);
}

.knop-lijn-licht:hover {
  background: rgba(251, 247, 238, 0.14);
  border-color: var(--creme);
  color: var(--creme);
}

.knop-klein {
  padding: 13px 20px;
  font-size: 12.5px;
}

.tekstknop {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--inkt);
  border-bottom: 2px solid var(--groen);
  padding-bottom: 4px;
}

.tekstknop:hover {
  color: var(--groen);
}

.tekstknop-licht {
  color: var(--creme);
  border-bottom-color: var(--groen-licht);
}

.tekstknop-licht:hover {
  color: var(--groen-licht);
}

.knoppenrij {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- secties en koppen ---------- */

.sectie {
  padding-top: clamp(56px, 8vw, 118px);
}

.sectie-smal {
  padding-top: clamp(40px, 6vw, 84px);
}

.opschrift {
  display: block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brons);
  margin: 0;
}

.opschrift-licht {
  color: var(--groen-licht);
}

.sectiekop {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.sectiekop h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.03;
}

.paginakop h1 {
  margin: 12px 0 20px;
  font-size: clamp(36px, 6.2vw, 88px);
  line-height: 0.99;
  max-width: 17ch;
}

.inleiding {
  margin: 0;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.65;
  color: var(--tekst);
  max-width: 62ch;
}

.voetnoot {
  font-size: 13px;
  color: var(--vaag);
  line-height: 1.5;
}

.kruimels {
  margin: 0 0 14px;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--grijs);
}

.kruimels a {
  color: var(--groen);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--nacht);
}

/* de hero is minstens zo hoog als afgesproken, maar groeit mee met de tekst
   zodat er op een smal scherm niets wegvalt */
.hero-beeld {
  position: relative;
  min-height: min(84vh, 780px);
  overflow: hidden;
  display: flex;
}

.hero-beeld > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
  opacity: 0.86;
}

.hero-sluier {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 17, 12, 0.93) 0%,
    rgba(20, 17, 12, 0.16) 58%,
    rgba(20, 17, 12, 0.5) 100%
  );
}

.hero-inhoud {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 56px);
  padding-top: clamp(18px, 3.5vw, 44px);
  padding-bottom: clamp(24px, 4vw, 56px);
}

/* auto-marges op een flex-item verhinderen het uitrekken, dus zetten we de
   breedte hier expliciet */
.hero-inhoud > .wikkel {
  width: 100%;
}

.hero-boven {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-tag {
  color: var(--creme);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-tag-zacht {
  color: rgba(251, 247, 238, 0.75);
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 7.6vw, 108px);
  line-height: 0.99;
  color: var(--creme);
  max-width: 14ch;
}

.hero-onder {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: clamp(20px, 3vw, 40px);
}

.hero-onder p {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: rgba(251, 247, 238, 0.9);
  max-width: 46ch;
  flex: 1 1 320px;
}

@media (max-width: 620px) {
  /* strak genoeg houden zodat de aanvraagknop nog boven de vaste balk valt */
  .hero-inhoud {
    gap: 18px;
    padding-top: 14px;
    padding-bottom: 18px;
  }
  .hero h1 {
    max-width: 18ch;
  }
  .hero-onder {
    gap: 18px;
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .hero-tag-zacht {
    display: none;
  }
}

/* ---------- lopende band ---------- */

.band {
  background: var(--groen);
  color: var(--creme);
  overflow: hidden;
  border-top: 1px solid var(--nacht);
}

.band-spoor {
  display: flex;
  width: max-content;
  animation: bandLoop 42s linear infinite;
}

.band-spoor span {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 14px 14px 26px;
  font-family: var(--serif);
  font-size: 17px;
  white-space: nowrap;
}

.band-spoor span::after {
  content: "\2726";
  color: var(--groen-licht);
  font-family: var(--sans);
  font-size: 12px;
}

@keyframes bandLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .band-spoor {
    animation: none;
  }
}

/* ---------- lijstlayout woonoplossingen ---------- */

.oplossingen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.oplossingenlijst {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1.5px solid var(--inkt);
}

.oplossingenlijst a {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 2vw, 26px);
  padding: clamp(16px, 2.2vw, 24px) 6px;
  border-bottom: 1.5px solid var(--inkt);
  text-decoration: none;
  color: var(--inkt);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.oplossingenlijst a:hover {
  background: var(--inkt);
  color: var(--creme);
  padding-left: 18px;
}

.oplossingenlijst .nr {
  font-size: 13px;
  font-weight: 700;
  color: var(--brons);
  min-width: 30px;
}

.oplossingenlijst .naam {
  font-family: var(--serif);
  font-size: clamp(21px, 2.6vw, 32px);
  line-height: 1.06;
  flex: 1;
}

.oplossingenlijst .prijs {
  font-size: 12.5px;
  font-weight: 600;
  text-align: right;
}

.beeldpaneel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--zand-diep);
}

.beeldpaneel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.beeldlabel {
  position: absolute;
  left: 16px;
  bottom: 14px;
  background: var(--creme);
  color: var(--inkt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 8px 14px;
}

/* ---------- donkere sectie ---------- */

.donker {
  background: var(--nacht);
  color: var(--zand);
  margin-top: clamp(60px, 9vw, 126px);
}

.donker h2 {
  color: var(--creme);
}

.donker p {
  color: var(--op-nacht);
}

.donker-binnen {
  padding-top: clamp(52px, 7vw, 104px);
  padding-bottom: clamp(52px, 7vw, 104px);
}

.tweeluik {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(30px, 5vw, 76px);
}

.voordelen {
  list-style: none;
  margin: 0;
  padding: 0;
}

.voordelen li {
  display: flex;
  gap: clamp(14px, 2.5vw, 30px);
  padding: 17px 0;
  border-bottom: 1px solid rgba(243, 237, 226, 0.18);
  align-items: baseline;
}

.voordelen .nr {
  font-family: var(--serif);
  color: var(--brons);
  font-size: clamp(21px, 2.4vw, 29px);
  min-width: 52px;
}

.voordelen strong {
  font-size: 17px;
  color: var(--creme);
}

.voordelen span.uitleg {
  display: block;
  font-size: 14px;
  color: var(--op-nacht);
  line-height: 1.55;
  margin-top: 3px;
}

.pijllijst {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pijllijst li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--tekst);
}

.pijllijst li::before {
  content: "\2192";
  color: var(--brons);
  font-weight: 800;
  flex-shrink: 0;
}

.donker .pijllijst li {
  color: var(--op-nacht);
}

/* ---------- projectkaarten ---------- */

.kaartraster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
}

.projectkaart {
  margin: 0;
  color: var(--inkt);
}

.projectkaart a,
a.projectkaart {
  text-decoration: none;
  color: inherit;
  display: block;
}

.kaartbeeld {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--zand-diep);
  position: relative;
}

.kaartbeeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.projectkaart:hover .kaartbeeld img {
  transform: scale(1.05);
}

.kaartmerk {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--creme);
  color: var(--inkt);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
}

.kaarttitel {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  margin-top: 14px;
}

.kaarttitel h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.kaartmeta {
  margin: 5px 0 0;
  font-size: 13px;
  color: var(--grijs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.trap-1 {
  margin-top: clamp(0px, 4vw, 52px);
}

.trap-2 {
  margin-top: clamp(0px, 8vw, 104px);
}

/* ---------- stappen ---------- */

.stappen {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.stappen li {
  border-left: 1.5px solid var(--inkt);
  padding-left: clamp(14px, 1.6vw, 22px);
}

.donker .stappen li {
  border-left-color: rgba(243, 237, 226, 0.3);
}

.stappen .nr {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 50px);
  color: var(--brons);
  line-height: 1;
}

.stappen h3 {
  margin: 12px 0 6px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.stappen p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--grijs);
}

.donker .stappen p {
  color: var(--op-nacht);
}

/* ---------- persoon ---------- */

.persoon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
}

.persoon-beeld {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 600px;
  overflow: hidden;
  background: var(--zand-diep);
}

.persoon-beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  display: block;
}

.persoon-merk {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brons);
  color: var(--creme);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 10px 16px;
}

.persoon h2 {
  margin: 12px 0 18px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
}

.persoon p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--tekst);
  max-width: 56ch;
}

.cijfers {
  list-style: none;
  margin: 26px 0 0;
  padding: 22px 0 0;
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  border-top: 1.5px solid var(--inkt);
}

.cijfers .cijfer {
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 37px);
  display: block;
  line-height: 1.1;
}

.cijfers .label {
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--grijs);
}

/* ---------- getuigenissen ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.quote {
  margin: 0;
  background: var(--creme);
  border: 1.5px solid var(--inkt);
  padding: clamp(26px, 3.5vw, 42px);
  position: relative;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--groen);
  color: var(--creme);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  padding: 0 14px 8px;
}

.quote blockquote {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.quote figcaption {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--grijs);
}

.quote figcaption strong {
  color: var(--inkt);
}

.quote-lint {
  margin: clamp(36px, 5vw, 60px) 0 0;
  border-left: 3px solid var(--groen);
  padding: 10px 0 10px clamp(20px, 3vw, 32px);
  max-width: 74ch;
}

.quote-lint blockquote {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(19px, 2.5vw, 29px);
  line-height: 1.42;
}

.quote-lint figcaption {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--grijs);
}

/* ---------- aanbod te koop ---------- */

.aanbod {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.pand {
  background: var(--creme);
  border: 1.5px solid var(--inkt);
  display: flex;
  flex-direction: column;
  margin: 0;
}

.pand-beeld {
  height: 236px;
  overflow: hidden;
  background: var(--zand-diep);
  position: relative;
}

.pand-beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pand-geenbeeld {
  height: 236px;
  background: var(--zand-diep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--grijs);
  border-bottom: 1.5px solid var(--inkt);
}

.pand-lijf {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pand-kop {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
}

.pand-kop h3 {
  margin: 0;
  font-size: 24px;
}

.pand-prijs {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--brons);
}

.pand-lijf p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--tekst);
  flex: 1;
}

.pand-lijf .knop {
  align-self: flex-start;
}

.pand-open {
  border: 1.5px dashed var(--vaag);
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  gap: 12px;
  margin: 0;
}

.pand-open h3 {
  margin: 0;
  font-size: 22px;
}

.pand-open p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--tekst);
}

.verkocht-lint {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--inkt);
  color: var(--creme);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
}

/* ---------- infokaart met klein demoformulier ---------- */

.infokaart {
  background: var(--creme);
  border: 1.5px solid var(--inkt);
  padding: clamp(24px, 3.5vw, 38px);
}

.infokaart h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.4vw, 25px);
  line-height: 1.15;
}

.infokaart > p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--tekst);
}

.infokaart .bedankt {
  margin-top: 0;
}

.infokaart input[type="email"] {
  max-width: 320px;
}

/* ---------- afwisselende blokken ---------- */

.blokken {
  display: grid;
  gap: clamp(46px, 7vw, 100px);
}

.blok {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 68px);
  align-items: center;
}

.blok-beeld {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--zand-diep);
  position: relative;
}

.blok-beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.blok:hover .blok-beeld img {
  transform: scale(1.04);
}

.blok-nr {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--creme);
  color: var(--inkt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 8px 14px;
}

.blok h2 {
  margin: 0 0 14px;
  font-size: clamp(27px, 3.6vw, 46px);
  line-height: 1.04;
}

.blok > div > p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--tekst);
  max-width: 52ch;
}

.blok .pijllijst {
  margin-bottom: 24px;
}

.blok-slot {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.prijsmerk {
  border: 1.5px solid var(--inkt);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 16px;
}

@media (min-width: 900px) {
  .blok-omgekeerd .blok-beeld {
    order: 2;
  }
}

/* ---------- fasen ---------- */

.fasen {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fase {
  display: grid;
  grid-template-columns: minmax(56px, 104px) 1fr;
  gap: clamp(14px, 3vw, 38px);
  border-top: 1.5px solid var(--inkt);
  padding: clamp(26px, 4vw, 46px) 0;
}

.fase > .nr {
  font-family: var(--serif);
  font-size: clamp(34px, 5.2vw, 68px);
  color: var(--brons);
  line-height: 0.9;
}

.fase-lijf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(16px, 3vw, 44px);
}

.fase-lijf h2 {
  margin: 0 0 12px;
  font-size: clamp(23px, 2.9vw, 36px);
  line-height: 1.06;
}

.fase-lijf p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--tekst);
  max-width: 56ch;
}

.fase-feiten {
  align-self: start;
  background: var(--creme);
  border: 1.5px solid var(--inkt);
  padding: 16px 20px;
  display: grid;
  gap: 10px;
  max-width: 360px;
  margin: 0;
}

.fase-feiten dt {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--inkt);
}

.fase-feiten dd {
  margin: 2px 0 0;
  font-size: 13.5px;
  color: var(--tekst);
}

/* ---------- atelier / split ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.split-beeld {
  min-height: 340px;
  background: var(--zand-diep);
  position: relative;
}

.split-beeld img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.split-tekst {
  padding: clamp(30px, 5vw, 70px) clamp(16px, 4vw, 62px);
}

.split-tekst h2 {
  margin: 12px 0 18px;
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1.05;
}

.beeldbijschrift {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 17, 12, 0.82);
  color: var(--op-nacht);
  font-size: 12.5px;
  line-height: 1.45;
  padding: 10px 16px;
}

/* ---------- projectfiche ---------- */

.fiche-feiten {
  list-style: none;
  display: flex;
  gap: clamp(18px, 3.4vw, 50px);
  flex-wrap: wrap;
  border-top: 1.5px solid var(--inkt);
  border-bottom: 1.5px solid var(--inkt);
  padding: 18px 0;
  margin: 0;
}

.fiche-feiten dt,
.fiche-feiten .term {
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--vaag);
  font-weight: 700;
}

.fiche-feiten dd,
.fiche-feiten .waarde {
  display: block;
  font-weight: 600;
  margin: 3px 0 0;
  font-size: 15px;
}

.fiche-beeld {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--zand-diep);
}

.fiche-beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fotoreeks {
  display: grid;
  gap: 18px;
  align-content: start;
}

.fotoreeks-paar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}

.fotoreeks figure {
  margin: 0;
}

.fotoreeks .kader {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--zand-diep);
}

.fotoreeks .kader img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fotoreeks figcaption {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--vaag);
  line-height: 1.45;
}

.losse-foto {
  margin: clamp(26px, 3.5vw, 40px) 0 0;
}

.losse-foto .kader {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--zand-diep);
}

.losse-foto .kader img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.losse-foto figcaption {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--vaag);
  line-height: 1.45;
}

.verhaal h2 {
  margin: 0 0 16px;
  font-size: clamp(25px, 3.3vw, 40px);
}

.verhaal p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--tekst);
}

/* ---------- tabelachtige typelijst ---------- */

.typelijst {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1.5px solid var(--inkt);
}

.typelijst li {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(190px, 2fr) auto;
  gap: clamp(12px, 2.5vw, 38px);
  align-items: baseline;
  padding: clamp(16px, 2.4vw, 26px) 6px;
  border-bottom: 1.5px solid var(--inkt);
  transition: background 0.2s, padding-left 0.2s;
}

.typelijst li:hover {
  background: var(--creme);
  padding-left: 18px;
}

.typelijst h3 {
  margin: 0;
  font-size: clamp(19px, 2.5vw, 30px);
}

.typelijst p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--tekst);
}

.typelijst .prijs {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brons);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .typelijst li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ---------- groene actiebalk ---------- */

.actiebalk {
  background: var(--groen);
  color: var(--creme);
  margin-top: clamp(60px, 9vw, 126px);
}

.actiebalk-binnen {
  padding-top: clamp(52px, 7vw, 100px);
  padding-bottom: clamp(52px, 7vw, 100px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.actiebalk h2 {
  margin: 0 0 12px;
  font-size: clamp(29px, 4.2vw, 54px);
  line-height: 1.03;
  color: var(--creme);
}

.actiebalk p {
  margin: 0;
  font-size: 16px;
  color: var(--groen-zacht);
  max-width: 52ch;
}

.actiebalk-groot h2 {
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 1.01;
  margin-bottom: 20px;
}

.actiebalk-groot p {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.65;
  margin-bottom: 30px;
}

.actiebalk .naschrift {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--groen-mist);
}

.actiebalk .naschrift a {
  color: var(--creme);
  font-weight: 700;
}

/* ---------- formulieren ---------- */

.formulierkaart {
  border: 1.5px solid var(--inkt);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  background: var(--creme);
}

.formulier-zij {
  background: var(--groen);
  color: var(--creme);
  padding: clamp(26px, 4.5vw, 54px);
}

.formulier-zij h2 {
  margin: 0 0 16px;
  font-size: clamp(27px, 3.5vw, 42px);
  line-height: 1.06;
  color: var(--creme);
}

.formulier-zij p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--groen-zacht);
}

.formulier-zij .waarborg {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--groen-mist);
}

.zij-gegevens {
  margin: clamp(30px, 4vw, 46px) 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 247, 238, 0.28);
  display: grid;
  gap: 20px;
}

.zij-gegevens dt {
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--groen-mist);
  margin-bottom: 4px;
}

.zij-gegevens dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--creme);
}

.zij-gegevens a {
  color: var(--creme);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(251, 247, 238, 0.5);
  overflow-wrap: anywhere;
}

.zij-gegevens a:hover {
  color: var(--creme);
  border-bottom-color: var(--creme);
}

.formulier-lijf {
  padding: clamp(26px, 4.5vw, 54px);
}

.stapmeter {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.stapmeter li {
  height: 5px;
  flex: 1;
  background: #d8cdb9;
}

.stapmeter li.actief {
  background: var(--groen);
}

fieldset {
  border: 0;
  margin: 0 0 20px;
  padding: 0;
}

legend {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 14px;
  padding: 0;
}

.veldnaam {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 14px;
  border: 1.5px solid var(--inkt);
  background: var(--zand);
  color: var(--inkt);
  width: 100%;
  max-width: 380px;
}

textarea {
  max-width: 100%;
  min-height: 110px;
  resize: vertical;
}

input.kort {
  max-width: 160px;
}

.keuzerij {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.keuzerij label {
  cursor: pointer;
}

.keuzerij input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.keuzerij .pil {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 16px;
  border: 1.5px solid var(--inkt);
  background: var(--creme);
  color: var(--inkt);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.keuzerij label:hover .pil {
  border-color: var(--groen);
  color: var(--groen);
}

.keuzerij input:checked + .pil {
  background: var(--groen);
  border-color: var(--groen);
  color: var(--creme);
}

.keuzerij input:focus-visible + .pil {
  outline: 3px solid var(--brons);
  outline-offset: 2px;
}

.veldenpaar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.veldenpaar input {
  max-width: 100%;
}

.formulier-slot {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  align-items: center;
}

.bedankt {
  border: 1.5px solid var(--groen);
  background: var(--groen-zacht);
  padding: 22px 24px;
  margin-top: 22px;
}

.bedankt h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.bedankt p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--tekst);
  max-width: 46ch;
}

.demo-melding {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--vaag);
}

/* ---------- contactgegevens ---------- */

.gegevens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  border-top: 1.5px solid var(--inkt);
  padding-top: 26px;
  margin: 0;
}

.gegevens dt {
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--vaag);
  margin-bottom: 6px;
}

.gegevens dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--inkt);
}

.gegevens a {
  color: var(--groen);
  font-weight: 600;
}

/* ---------- veelgestelde vragen ---------- */

.vragen {
  border-top: 1.5px solid var(--inkt);
}

.vragen details {
  border-bottom: 1.5px solid var(--inkt);
}

.vragen summary {
  cursor: pointer;
  padding: 20px 6px;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.25;
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: baseline;
}

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

.vragen summary::after {
  content: "+";
  margin-left: auto;
  color: var(--brons);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}

.vragen details[open] summary::after {
  content: "\2013";
}

.vragen summary:hover {
  color: var(--groen);
}

.vragen .antwoord {
  margin: 0 6px 22px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--tekst);
  max-width: 70ch;
}

/* ---------- filters ---------- */

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

.filters button {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1.5px solid var(--inkt);
  background: transparent;
  color: var(--inkt);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.filters button:hover {
  background: var(--creme);
}

.filters button[aria-pressed="true"] {
  background: var(--inkt);
  color: var(--creme);
}

/* ---------- voettekst ---------- */

.voet {
  background: var(--nacht);
  color: var(--op-nacht);
  overflow: hidden;
  margin-top: 0;
}

.voet-merk {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 7vw, 100px);
  line-height: 1;
  color: var(--creme);
  letter-spacing: -0.01em;
  padding-top: clamp(44px, 6vw, 76px);
}

.voet-kolommen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
  gap: 30px;
  padding: clamp(30px, 4vw, 52px) 0 32px;
}

.voet-kolommen h2 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--creme);
}

.voet-kolommen p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.voet-kolommen ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 2;
}

.voet-kolommen a {
  color: var(--op-nacht);
  text-decoration: none;
}

.voet-kolommen a:hover {
  color: var(--creme);
  text-decoration: underline;
}

.voet-kolommen .nadruk a {
  color: var(--creme);
}

.voet-regel {
  border-top: 1px solid rgba(243, 237, 226, 0.14);
}

.voet-regel .wikkel {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #8a7e68;
}

.voet-smal {
  background: var(--nacht);
}

.voet-smal .wikkel {
  padding-top: 26px;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #8a7e68;
}

.voet-smal a {
  color: var(--op-nacht);
  text-decoration: none;
}

/* ---------- vaste actiebalk op mobiel ---------- */

.mobielbalk {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--creme);
  border-top: 1.5px solid var(--inkt);
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}

.mobielbalk a {
  text-decoration: none;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 16px;
  text-align: center;
}

.mobielbalk .bel {
  flex: 0 0 auto;
  border: 1.5px solid var(--inkt);
  color: var(--inkt);
}

.mobielbalk .bel:hover {
  background: var(--inkt);
  color: var(--creme);
}

.mobielbalk .vraag {
  flex: 1;
  background: var(--inkt);
  color: var(--creme);
}

.mobielbalk .vraag:hover {
  background: var(--groen);
}

@media (min-width: 1081px) {
  body {
    padding-bottom: 0;
  }
  .mobielbalk {
    display: none;
  }
}
