/* Stalling Lagerweij - concept. Geen build, geen webfonts, geen afhankelijkheden. */

/* Palet is afgeleid van het logo zelf: donkergroen #0d2c0d en antraciet #2b2e35. */
:root {
  --groen: #1a4a1e;
  --groen-diep: #0d2c0d;
  --groen-licht: #2c6d31;
  --zand: #e8e2d4;
  --zand-diep: #d5ccb8;
  --room: #faf8f3;
  --wit: #fff;
  --inkt: #1c2027;
  --grijs: #5f6670;
  --oker: #b8791f;
  --vrij: #2c6d31;
  --vol: #a33a2c;
  --rand: #ddd6c7;
  --schaduw: 0 1px 2px rgba(28, 32, 39, .06), 0 8px 24px -12px rgba(28, 32, 39, .2);
  --radius: 14px;
  --breed: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--room);
  color: var(--inkt);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.16; margin: 0 0 .5em; letter-spacing: -.015em; font-weight: 700; }
h1 { font-size: clamp(1.95rem, 4.6vw, 3.3rem); }
.niet-mobiel { display: inline; }
@media (max-width: 700px) { .niet-mobiel { display: none; } }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: 1.12rem; }
p { margin: 0 0 1em; }
a { color: inherit; }

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

.wrap { width: min(100% - 2.4rem, var(--breed)); margin-inline: auto; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--groen); color: var(--room); padding: .7rem 1rem; border-radius: 8px;
}
.skip:focus { top: 1rem; }

:focus-visible { outline: 3px solid var(--oker); outline-offset: 2px; border-radius: 4px; }

/* ---------- conceptbalk ---------- */
.concept {
  background: var(--groen-diep); color: #d9e5df; font-size: .82rem; line-height: 1.45;
}
.concept .wrap { display: flex; gap: 1rem; align-items: center; padding: .5rem 0; }
.concept p { margin: 0; }
.concept button {
  margin-left: auto; flex: none; background: none; border: 1px solid rgba(255,255,255,.28);
  color: inherit; border-radius: 6px; padding: .18rem .5rem; font: inherit; cursor: pointer;
}

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 100; background: rgba(250, 247, 241, .92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--rand);
}
.top .wrap { display: flex; align-items: center; gap: 1.4rem; min-height: 72px; }
.merk { display: flex; align-items: center; gap: .7rem; color: var(--groen); text-decoration: none; flex: none; }
.merk svg, .merk img { width: 244px; height: auto; }
.nav { display: flex; gap: 1.15rem; margin-left: auto; align-items: center; flex-wrap: nowrap; flex: 0 0 auto; }
.nav > * { flex: none; }
/* de knop in het menu is ook een <a>, dus specifieker dan .nav a */
.nav a.knop { padding: .68rem 1.2rem; font-size: .95rem; color: var(--room); border: 2px solid var(--groen); }
.nav a.knop:hover { border-color: var(--groen-licht); }
.nav a { text-decoration: none; font-size: .93rem; color: var(--inkt); padding: .35rem 0; border-bottom: 2px solid transparent; white-space: nowrap; }
@media (min-width: 901px) and (max-width: 1180px) {
  .merk svg, .merk img { width: 204px; }
  .nav { gap: .85rem; }
  .nav a { font-size: .88rem; }
}
.nav a:hover { border-color: var(--oker); }

.knop {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--groen); color: var(--room); text-decoration: none; border: 2px solid var(--groen);
  padding: .72rem 1.25rem; border-radius: 10px; font-weight: 600; font-size: .98rem; cursor: pointer;
  font-family: inherit; transition: background .15s, transform .15s;
}
.knop:hover { background: var(--groen-licht); border-color: var(--groen-licht); }
.knop:active { transform: translateY(1px); }
.knop--rand { background: transparent; color: var(--groen); }
.knop--rand:hover { background: rgba(23, 55, 44, .07); border-color: var(--groen); }
.knop--licht { background: var(--room); color: var(--groen-diep); border-color: var(--room); }
.knop--licht:hover { background: var(--wit); border-color: var(--wit); }
.knop--omrand { background: transparent; color: var(--room); border-color: rgba(255,255,255,.45); }
.knop--omrand:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.75); }
.knop--groot { padding: .95rem 1.6rem; font-size: 1.05rem; }

.menuknop { display: none; }

@media (max-width: 900px) {
  .top .wrap { min-height: 64px; gap: .8rem; }
  .merk svg, .merk img { width: 172px; }
  .menuknop {
    display: inline-flex; margin-left: auto; background: none; border: 1px solid var(--rand);
    border-radius: 9px; padding: .5rem .7rem; font: inherit; cursor: pointer; align-items: center; gap: .45rem;
  }
  .nav {
    position: fixed; inset: auto 0 0 0; top: var(--nav-top, 112px); background: var(--room);
    flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.2rem 2rem;
    border-top: 1px solid var(--rand); overflow-y: auto; margin: 0;
  }
  .nav[hidden] { display: none; }
  .nav a { padding: .95rem 0; border-bottom: 1px solid var(--rand); font-size: 1.05rem; }
  .nav .knop { margin-top: 1rem; border-bottom: none; }
}

/* ---------- hero ----------
   Bewust zonder foto: het terrein wordt gerenoveerd, dus er is nog geen eerlijk beeld.
   Het beeldmerk uit het logo draagt de hero tot de echte foto's er zijn. */
.hero {
  position: relative; color: var(--room); overflow: hidden;
  background:
    radial-gradient(120% 130% at 88% 10%, #235e28 0%, rgba(35, 94, 40, 0) 58%),
    linear-gradient(165deg, #164018 0%, #0d2c0d 62%, #0a230a 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 13px);
}
.hero__merk {
  position: absolute; right: -3%; bottom: -6%; width: min(46vw, 560px); height: auto;
  opacity: .11; pointer-events: none; z-index: 1;
}
@media (max-width: 900px) { .hero__merk { width: 78vw; right: -14%; bottom: auto; top: 4%; opacity: .085; } }
.hero .wrap { position: relative; z-index: 2; padding: clamp(3rem, 8vw, 5.6rem) 0 clamp(2.6rem, 6vw, 4.2rem); }
.hero__in { max-width: 43rem; }
.kicker {
  display: inline-flex; align-items: center; gap: .55rem; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600; opacity: .85; margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--oker); }
.kicker--groen { color: var(--groen); opacity: 1; }
.hero p.lead { font-size: clamp(1.05rem, 2.2vw, 1.2rem); max-width: 34rem; color: #e4ece8; }
.hero__knoppen { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__punten { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; margin: 2.2rem 0 0; padding: 0; list-style: none; font-size: .93rem; color: #d5e0db; }
.hero__punten li { display: flex; align-items: center; gap: .5rem; }
.hero__punten li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--oker); flex: none; }

/* op een telefoon moet de hele hero in een keer in beeld passen */
@media (max-width: 620px) {
  .hero .wrap { padding: 2.2rem 0 2.4rem; }
  .hero__in .kicker { margin-bottom: .7rem; font-size: .74rem; letter-spacing: .1em; }
  .hero p.lead { margin-bottom: 0; }
  .hero__knoppen { gap: .6rem; margin-top: 1.2rem; }
  .hero__knoppen .knop { flex: 1 1 0; min-width: 0; padding: .8rem .6rem; font-size: .96rem; }
  .hero__punten { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem .8rem; margin-top: 1.5rem; font-size: .82rem; }
}

/* beeldmerk uit het logo als waterteken in de achtergrond */
.waterteken { position: relative; overflow: hidden; }
.waterteken > .wm {
  position: absolute; opacity: .05; pointer-events: none; z-index: 0;
  width: min(48vw, 460px); height: auto; right: -50px; top: -30px;
}
.waterteken > .wm--wit { opacity: .07; }
.waterteken > .wm--links { right: auto; left: -60px; top: auto; bottom: -40px; }
.waterteken > .wrap { position: relative; z-index: 2; }

/* ---------- secties ---------- */
section { padding: clamp(3rem, 6vw, 4.6rem) 0; position: relative; }
.sec-kop { max-width: 46rem; margin-bottom: 2.2rem; }
.sec-kop p { color: var(--grijs); margin-bottom: 0; }
.zand { background: var(--zand); }
.donker { background: var(--groen); color: var(--room); }
.donker .sec-kop p, .donker .fijn { color: #cfdbd5; }

/* ---------- beschikbaarheid ---------- */
.plek-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.1rem; }
.plek {
  background: var(--wit); border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem; box-shadow: var(--schaduw); position: relative; overflow: hidden;
}
.plek h3 { margin-bottom: .15rem; }
.plek__soort { font-size: .88rem; color: var(--grijs); margin: 0 0 1.1rem; }
.plek__stand { display: flex; align-items: baseline; gap: .6rem; }
.plek__getal { font-size: 2.7rem; font-weight: 700; line-height: 1; letter-spacing: -.03em; }
.pil {
  display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 600;
  padding: .3rem .7rem; border-radius: 999px; background: rgba(46, 111, 78, .12); color: var(--vrij);
}
.pil::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.pil--vol { background: rgba(163, 58, 44, .1); color: var(--vol); }
.pil--bijna { background: rgba(192, 122, 36, .13); color: #96601c; }
.balk { height: 8px; border-radius: 99px; background: var(--zand-diep); overflow: hidden; margin: 1.1rem 0 .55rem; }
.balk span { display: block; height: 100%; background: var(--groen-licht); border-radius: 99px; transition: width .8s cubic-bezier(.2,.7,.3,1); }
.plek__regel { font-size: .88rem; color: var(--grijs); margin: 0; }
.plek__actie { margin-top: 1.25rem; }
.bijgewerkt { font-size: .86rem; color: var(--grijs); margin: 1.2rem 0 0; }

/* ---------- impressie ---------- */
.beeld-grid { display: grid; gap: .9rem; grid-template-columns: repeat(4, 1fr); }
.beeld { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--zand-diep); margin: 0; }
.beeld img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.beeld--groot { grid-column: span 2; grid-row: span 2; }
.beeld--groot img { aspect-ratio: 1 / 1; }
.beeld figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .9rem .7rem; font-size: .82rem;
  color: #fff; background: linear-gradient(transparent, rgba(14, 36, 28, .8));
}
@media (max-width: 760px) {
  .beeld-grid { grid-template-columns: repeat(2, 1fr); }
  .beeld--groot { grid-column: span 2; grid-row: auto; }
}

/* ---------- tarieven ---------- */
.tarief-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.6rem; align-items: start; }
@media (max-width: 900px) { .tarief-grid { grid-template-columns: 1fr; } }
.tabel { width: 100%; border-collapse: collapse; background: var(--wit); border-radius: var(--radius); overflow: hidden; box-shadow: var(--schaduw); }
.tabel th, .tabel td { text-align: left; padding: .95rem 1.1rem; border-bottom: 1px solid var(--rand); font-size: .97rem; }
.tabel th { background: var(--groen); color: var(--room); font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; }
.tabel tr:last-child td { border-bottom: none; }
.tabel td:last-child, .tabel th:last-child { text-align: right; white-space: nowrap; }
.tabel strong { font-variant-numeric: tabular-nums; }
@media (max-width: 620px) {
  .tabel th, .tabel td { padding: .75rem .7rem; font-size: .92rem; }
  .tabel th:last-child { white-space: normal; }
}

.reken { background: var(--wit); border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--schaduw); }
.reken label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; }
.reken input[type=range] { width: 100%; accent-color: var(--groen); }
.reken__uit { font-size: 2rem; font-weight: 700; letter-spacing: -.02em; margin: .8rem 0 .1rem; }
.keuze { display: flex; gap: .5rem; margin: 1rem 0 1.2rem; }
.keuze button {
  flex: 1; padding: .6rem .4rem; border-radius: 9px; border: 1px solid var(--rand); background: var(--room);
  font: inherit; font-size: .93rem; cursor: pointer;
}
.keuze button[aria-pressed="true"] { background: var(--groen); color: var(--room); border-color: var(--groen); font-weight: 600; }
.fijn { font-size: .84rem; color: var(--grijs); }

/* ---------- formulier ---------- */
#reserveerform {
  background: var(--room); color: var(--inkt); padding: 1.6rem; border-radius: var(--radius);
  position: relative; z-index: 2;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.veld--vol { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.veld label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.veld input, .veld select, .veld textarea {
  width: 100%; padding: .75rem .85rem; border: 1px solid var(--rand); border-radius: 10px;
  font: inherit; font-size: .97rem; background: var(--wit); color: var(--inkt);
}
.veld textarea { min-height: 96px; resize: vertical; }
.form-akkoord { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; margin-top: .3rem; }
.form-akkoord input { margin-top: .25rem; }

/* ---------- over ---------- */
.over-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; }
@media (max-width: 860px) { .over-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.citaat { border-left: 3px solid var(--oker); padding-left: 1.1rem; font-size: 1.12rem; font-style: italic; color: #24382f; }
.donker .citaat { color: #e9f0ed; }

/* ---------- lijsten / regels ---------- */
.regels { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: .8rem; list-style: none; padding: 0; margin: 0; counter-reset: r; }
.regels li {
  background: var(--wit); border: 1px solid var(--rand); border-radius: 12px; padding: 1.05rem 1.15rem 1.05rem 3.1rem;
  position: relative; font-size: .96rem;
}
.regels li::before {
  counter-increment: r; content: counter(r); position: absolute; left: 1.05rem; top: 1rem;
  width: 24px; height: 24px; border-radius: 50%; background: var(--groen); color: var(--room);
  font-size: .8rem; font-weight: 700; display: grid; place-items: center;
}
.regels b { display: block; }

/* ---------- documenten ---------- */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.doc {
  display: flex; flex-direction: column; gap: .35rem; background: var(--wit); border: 1px solid var(--rand);
  border-radius: var(--radius); padding: 1.3rem; text-decoration: none; box-shadow: var(--schaduw);
  transition: transform .15s, box-shadow .15s;
}
.doc:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -14px rgba(20, 32, 27, .35); }
.doc span { font-size: .88rem; color: var(--grijs); }
.doc b { font-size: 1.05rem; }
.doc__pijl { color: var(--oker); font-weight: 700; margin-top: .5rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.kaart-blok {
  border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.2);
  background: var(--zand); min-height: 340px; position: relative;
}
.kaart-blok iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.gegevens { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.gegevens li { display: flex; gap: .9rem; padding: .75rem 0; border-bottom: 1px solid var(--rand); font-size: .97rem; }
.gegevens b { flex: none; width: 8.5rem; }
.gegevens a { color: var(--groen); }
/* op het donkere vlak zou groen op groen onleesbaar zijn */
.donker .gegevens li { border-bottom-color: rgba(255, 255, 255, .18); }
.donker .gegevens a { color: #f2d9ae; }
@media (max-width: 540px) {
  .gegevens li { flex-direction: column; gap: .1rem; }
  .gegevens b { width: auto; }
}

.sociaal { display: flex; gap: .6rem; flex-wrap: wrap; }
.sociaal a {
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-size: .92rem;
  border: 1px solid var(--rand); border-radius: 999px; padding: .45rem .95rem; background: var(--wit);
}
.sociaal a:hover { border-color: var(--groen); }
/* wit op wit op het donkere vlak */
.donker .sociaal a { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .26); color: var(--room); }
.donker .sociaal a:hover { border-color: rgba(255, 255, 255, .6); }

/* ---------- footer ---------- */
footer { background: var(--groen-diep); color: #c9d6d0; padding: 3.2rem 0 1.6rem; font-size: .93rem; position: relative; overflow: hidden; }
footer h4 { color: var(--room); font-size: .95rem; margin: 0 0 .7rem; letter-spacing: .03em; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; position: relative; z-index: 2; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { padding: .22rem 0; }
footer a { color: #dbe6e1; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.foot-onder {
  margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; font-size: .85rem; color: #9db0a8; position: relative; z-index: 2;
}
.foot-merk { width: 250px; }

/* ---------- stalling: twee kaartjes ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 780px) { .duo { grid-template-columns: 1fr; } }
.kaartje {
  background: var(--wit); border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--schaduw);
}
.kaartje h3 { font-size: 1.25rem; }
.vink { list-style: none; padding: 0; margin: 1.1rem 0 0; display: grid; gap: .5rem; font-size: .94rem; }
.vink li { display: flex; gap: .6rem; align-items: flex-start; }
.vink li::before {
  content: ""; flex: none; width: 16px; height: 16px; margin-top: .28rem; border-radius: 4px;
  background: var(--groen); clip-path: polygon(15% 48%, 8% 58%, 39% 88%, 92% 26%, 83% 17%, 38% 69%);
}
.vink--licht li::before { background: var(--oker); }

/* ---------- opslagunits ---------- */
.unit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.unit {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 1.25rem;
}
.unit p { font-size: .93rem; color: #dbe4dc; margin: 0; }
.unit__voor {
  display: block; font-weight: 700; font-size: 1.02rem; color: var(--room); margin-bottom: .5rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--oker);
}
.unit-onder { display: grid; grid-template-columns: .82fr 1.18fr; gap: 2rem; margin: 2.2rem 0; align-items: start; }
@media (max-width: 900px) { .unit-onder { grid-template-columns: 1fr; gap: 1.6rem; } }
.unit-onder h3 { color: var(--room); font-size: 1.1rem; }
.donker .vink li { color: #dbe4dc; }
.tabel--donker { background: rgba(255,255,255,.06); box-shadow: none; border: 1px solid rgba(255,255,255,.16); }
.tabel--donker th { background: rgba(255,255,255,.1); color: var(--room); }
.tabel--donker td { border-bottom-color: rgba(255,255,255,.13); color: #dbe4dc; }
.tabel--donker td:last-child, .tabel--donker th:last-child { text-align: left; white-space: normal; }
.donker .invul { background: rgba(184, 121, 31, .3); border-bottom: 1px dashed #e6ac5a; color: #fff; }

/* ---------- terrein en renovatie ---------- */
.renovatie { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.6rem; align-items: start; }
@media (max-width: 860px) { .renovatie { grid-template-columns: 1fr; } }
.stappen { list-style: none; padding: 0; margin: 0; counter-reset: s; }
.stappen li {
  position: relative; padding: 0 0 1.5rem 2.6rem; border-left: 2px solid var(--rand); margin-left: 11px;
}
.stappen li:last-child { border-left-color: transparent; padding-bottom: 0; }
.stappen li::before {
  counter-increment: s; content: counter(s); position: absolute; left: -12px; top: -2px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--zand-diep); color: var(--inkt);
  font-size: .75rem; font-weight: 700; display: grid; place-items: center;
}
.stappen--nu::before { background: var(--oker) !important; color: #fff !important; }
.stappen b { display: block; margin-bottom: .15rem; }
.stappen span { font-size: .94rem; color: var(--grijs); }
.stappen__nu {
  display: inline-block; margin-left: .6rem; vertical-align: middle; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: #8a5a13; background: rgba(184, 121, 31, .16);
  border-radius: 999px; padding: .15rem .55rem;
}
.fotoplek {
  border: 2px dashed var(--zand-diep); border-radius: var(--radius); padding: 1.5rem;
  background: repeating-linear-gradient(45deg, rgba(213,204,184,.16) 0 10px, transparent 10px 20px);
}
.fotoplek ol { margin: .4rem 0 1rem; padding-left: 1.15rem; }
.fotoplek li { margin-bottom: .25rem; }

/* ---------- werkgebied ---------- */
.werkgebied { background: var(--wit); border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--schaduw); }
.plaatsen { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.plaatsen li { background: var(--zand); border-radius: 999px; padding: .32rem .8rem; font-size: .88rem; }

/* ---------- documentpagina's ---------- */
.doc-pagina { max-width: 46rem; margin-inline: auto; }
.doc-pagina h2 { margin-top: 2.2rem; font-size: 1.35rem; }
.doc-pagina h3 { margin-top: 1.6rem; }
.doc-pagina ol, .doc-pagina ul { padding-left: 1.2rem; }
.doc-pagina li { margin-bottom: .45rem; }
.terug { display: inline-flex; gap: .45rem; align-items: center; text-decoration: none; color: var(--groen); font-weight: 600; margin-bottom: 1.4rem; }
.invul { background: rgba(192, 122, 36, .14); border-bottom: 1px dashed var(--oker); padding: 0 .2rem; }
.print-knop { margin: 1.6rem 0 0; }

@media print {
  .top, .concept, footer, .print-knop, .terug, .skip { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  section { padding: 0; }
  .invul { background: none; border-bottom: 1px solid #999; }
}

/* ---------- animatie ---------- */
.op { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.op.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .op { opacity: 1; transform: none; transition: none; } }
