/* Yanis Klussenbedrijf — concept. Eigen palet, niets overgenomen van een andere site. */

:root {
  --paper: #f6f4f0;
  --wit: #ffffff;
  --ink: #14181d;
  --ink-zacht: #5b6470;
  --lijn: #e3ded5;
  --zand: #ece5d9;
  --groen: #0e6b5e;
  --groen-op: #0a5045;
  --groen-licht: #e3f0ed;
  --radius: 14px;
  --wrap: 1180px;
  --kop: 'Sora', system-ui, sans-serif;
  --tekst: 'Inter', system-ui, sans-serif;
  --schaduw: 0 1px 2px rgba(20, 24, 29, 0.05), 0 8px 24px rgba(20, 24, 29, 0.06);
  --schaduw-op: 0 2px 6px rgba(20, 24, 29, 0.08), 0 18px 44px rgba(20, 24, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--tekst);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--kop);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
}
h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
}
h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  margin: 0 0 1em;
}

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
}
.skip:focus {
  left: 12px;
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--groen);
  outline-offset: 3px;
}

/* ── leesbalk ───────────────────────────────────────────── */
.prog {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 120;
  pointer-events: none;
}
.prog i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--groen);
  transition: width 0.1s linear;
}

/* ── kopbalk ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--lijn);
  transition: box-shadow 0.25s ease;
}
.nav--diep {
  box-shadow: 0 6px 24px rgba(20, 24, 29, 0.08);
}
.nav__in {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand__mark {
  width: 34px;
  height: 34px;
  color: var(--groen);
}
.brand__mark svg {
  width: 100%;
  height: 100%;
}
.brand__txt {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__txt b {
  font-family: var(--kop);
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: 0.06em;
}
.brand__txt i {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-zacht);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--ink);
  transition: background 0.18s ease, color 0.18s ease;
}
.nav__links a:hover {
  background: var(--zand);
}
.nav__links a[aria-current='page'] {
  color: var(--groen);
  background: var(--groen-licht);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.nav__tel {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
}
.nav__tel em {
  font-style: normal;
}
.nav__tel:hover {
  color: var(--groen);
}

.burger {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--lijn);
  border-radius: 10px;
  background: var(--wit);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 99;
  background: var(--paper);
  border-bottom: 1px solid var(--lijn);
  box-shadow: var(--schaduw-op);
}
.drawer__in {
  display: flex;
  flex-direction: column;
  padding: 10px 20px 22px;
  gap: 2px;
}
.drawer__in a {
  text-decoration: none;
  padding: 13px 4px;
  border-bottom: 1px solid var(--lijn);
  font-weight: 500;
}
.drawer__cta {
  margin-top: 14px;
  background: var(--groen);
  color: #fff !important;
  text-align: center;
  border-radius: 10px;
  border: 0 !important;
  font-weight: 600;
}

/* ── knoppen ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.16s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.btn::after {
  content: '';
  position: absolute;
  top: -60%;
  left: var(--gx, 50%);
  width: 140px;
  height: 220%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.btn:hover::after {
  opacity: 1;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--vol {
  background: var(--groen);
  color: #fff;
  box-shadow: 0 6px 18px rgba(14, 107, 94, 0.22);
}
.btn--vol:hover {
  background: var(--groen-op);
}
.btn--rand {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--rand:hover {
  background: var(--ink);
  color: #fff;
}
.btn--licht {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn--licht:hover {
  background: #fff;
  color: var(--ink);
}
.btn--klein {
  padding: 10px 16px;
  font-size: 0.9rem;
}

/* ── kop van een pagina ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(76vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero__beeld {
  position: absolute;
  inset: -8% 0 -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 29, 0.62) 0%, rgba(20, 24, 29, 0.3) 42%, rgba(20, 24, 29, 0.86) 100%);
}
.hero__in {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 120px 0 56px;
  max-width: 760px;
}
.hero__in h1 {
  color: #fff;
  text-wrap: balance;
}
.hero__in p {
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 58ch;
}
.hero__knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero--kort {
  min-height: min(52vh, 440px);
}
.hero--kort .hero__in {
  padding: 96px 0 44px;
}

.woord {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: opkomen 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes opkomen {
  to {
    opacity: 1;
    transform: none;
  }
}

.kruimel {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 14px;
  display: block;
}

/* ── lopende band ───────────────────────────────────────── */
.band {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}
.band__spoor {
  display: flex;
  gap: 0;
  width: max-content;
  animation: schuif 34s linear infinite;
}
.band:hover .band__spoor {
  animation-play-state: paused;
}
.band__spoor span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 13px 17px;
  font-family: var(--kop);
  font-size: 0.86rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.band__spoor span::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--groen);
  border-radius: 50%;
}
@keyframes schuif {
  to {
    transform: translateX(-50%);
  }
}

/* ── secties ────────────────────────────────────────────── */
.sec {
  padding: clamp(56px, 7vw, 94px) 0;
}
.sec--zand {
  background: var(--zand);
}
.sec--ink {
  background: var(--ink);
  color: #fff;
}
.sec--ink h2,
.sec--ink h3 {
  color: #fff;
}
.sec--ink p {
  color: rgba(255, 255, 255, 0.82);
}

.seckop {
  max-width: 640px;
  margin-bottom: 34px;
}
.seckop--midden {
  margin-inline: auto;
  text-align: center;
}
.seckop span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--groen);
  font-weight: 600;
  margin-bottom: 10px;
}
.sec--ink .seckop span {
  color: #7fd3c4;
}
.seckop p {
  color: var(--ink-zacht);
  margin-bottom: 0;
}
.sec--ink .seckop p {
  color: rgba(255, 255, 255, 0.78);
}

/* ── kaarten ────────────────────────────────────────────── */
.raster {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.raster--3 {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--schaduw);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
a.kaart:hover {
  transform: translateY(-4px);
  box-shadow: var(--schaduw-op);
  border-color: #cfc7b9;
}
.kaart__beeld {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--zand);
}
.kaart__beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
a.kaart:hover .kaart__beeld img {
  transform: scale(1.06);
}
.kaart__in {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.kaart__in h3 {
  margin-bottom: 6px;
}
.kaart__in p {
  color: var(--ink-zacht);
  font-size: 0.96rem;
  margin-bottom: 0;
}
.kaart__pijl {
  margin-top: auto;
  padding-top: 14px;
  color: var(--groen);
  font-weight: 600;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.kaart__pijl::after {
  content: '\2192';
  transition: transform 0.22s ease;
}
a.kaart:hover .kaart__pijl::after {
  transform: translateX(5px);
}

/* vakken zonder beeld */
.vakken {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.vak {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
a.vak:hover {
  transform: translateY(-3px);
  border-color: var(--groen);
  box-shadow: var(--schaduw);
}
.vak h3 {
  font-size: 1.06rem;
  margin-bottom: 4px;
}
.vak p {
  color: var(--ink-zacht);
  font-size: 0.93rem;
  margin: 0;
}
.vak__nr {
  font-family: var(--kop);
  font-size: 0.82rem;
  color: var(--groen);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 10px;
}

/* ── troeven ────────────────────────────────────────────── */
.troeven {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.troef {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-left: 3px solid var(--groen);
  border-radius: 12px;
  padding: 22px 22px 20px;
}
.troef h3 {
  font-size: 1.05rem;
}
.troef p {
  margin: 0;
  color: var(--ink-zacht);
  font-size: 0.95rem;
}

/* ── split ──────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.split--om .split__beeld {
  order: 2;
}
.split__beeld {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw-op);
  background: var(--zand);
}
.split__beeld img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split__tekst h2 {
  margin-bottom: 14px;
}
.split__tekst p {
  color: var(--ink-zacht);
}
.sec--ink .split__tekst p {
  color: rgba(255, 255, 255, 0.82);
}

.lijstje {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 9px;
}
.lijstje li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-zacht);
}
.sec--ink .lijstje li {
  color: rgba(255, 255, 255, 0.82);
}
.lijstje li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 13px;
  height: 7px;
  border-left: 2.4px solid var(--groen);
  border-bottom: 2.4px solid var(--groen);
  transform: rotate(-45deg);
}
.sec--ink .lijstje li::before {
  border-color: #7fd3c4;
}

/* ── dienstblokken ──────────────────────────────────────── */
.dienst {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
  padding: clamp(34px, 5vw, 56px) 0;
  border-top: 1px solid var(--lijn);
  scroll-margin-top: 96px;
}
.dienst:first-of-type {
  border-top: 0;
}
.dienst:nth-child(even) .dienst__beeld {
  order: 2;
}
.dienst__beeld {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--zand);
  box-shadow: var(--schaduw);
}
.dienst__beeld img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.dienst__tekst h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}
.dienst__tekst p {
  color: var(--ink-zacht);
}

/* ── stappen ────────────────────────────────────────────── */
.stappen {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  counter-reset: stap;
}
.stap {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
}
.sec--ink .stap {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.stap__nr {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--groen);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--kop);
  font-weight: 700;
  margin-bottom: 14px;
}
.stap h3 {
  font-size: 1.05rem;
}
.stap p {
  margin: 0;
  color: var(--ink-zacht);
  font-size: 0.95rem;
}
.sec--ink .stap p {
  color: rgba(255, 255, 255, 0.78);
}

/* ── vragen ─────────────────────────────────────────────── */
.vragen {
  max-width: 820px;
  scroll-margin-top: 96px;
}
.vraag {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.vraag summary {
  cursor: pointer;
  padding: 17px 52px 17px 20px;
  font-weight: 600;
  font-family: var(--kop);
  position: relative;
  list-style: none;
}
.vraag summary::-webkit-details-marker {
  display: none;
}
.vraag summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--groen);
  line-height: 1;
  transition: transform 0.2s ease;
}
.vraag[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.vraag__in {
  padding: 0 20px 18px;
  color: var(--ink-zacht);
}
.vraag__in p:last-child {
  margin-bottom: 0;
}

/* ── oproep ─────────────────────────────────────────────── */
.oproep {
  background: var(--groen);
  color: #fff;
  border-radius: 18px;
  padding: clamp(32px, 5vw, 54px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}
.oproep h2 {
  color: #fff;
  margin-bottom: 8px;
}
.oproep p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.oproep__knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* ── formulier ──────────────────────────────────────────── */
.formblok {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}
.form {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--schaduw);
}
.form__rij {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 16px;
}
.veld {
  display: block;
}
.veld span {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.veld input,
.veld textarea,
.veld select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--lijn);
  border-radius: 10px;
  font: inherit;
  font-size: 0.97rem;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.veld input:focus,
.veld textarea:focus,
.veld select:focus {
  border-color: var(--groen);
  background: #fff;
  outline: none;
}
.veld textarea {
  min-height: 130px;
  resize: vertical;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}
fieldset legend {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0;
  margin-bottom: 8px;
}
.keuzes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.keuzes label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--lijn);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.92rem;
  cursor: pointer;
  background: var(--paper);
  transition: border-color 0.16s ease, background 0.16s ease;
}
.keuzes label:hover {
  border-color: var(--groen);
}
.keuzes input {
  accent-color: var(--groen);
}
.keuzes input:checked + em {
  font-style: normal;
  font-weight: 600;
}
.keuzes label:has(input:checked) {
  border-color: var(--groen);
  background: var(--groen-licht);
}
.form__knop {
  width: 100%;
  margin-top: 4px;
}
.form__fout {
  margin-top: 12px;
  font-size: 0.93rem;
  color: #a4341c;
}
.form__fout[hidden] {
  display: none;
}
.klaar {
  text-align: center;
  padding: 26px 8px;
}
.klaar__vink {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--groen-licht);
  color: var(--groen);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-size: 1.9rem;
  animation: pop 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes pop {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
}
.klaar pre {
  text-align: left;
  white-space: pre-wrap;
  background: var(--paper);
  border: 1px solid var(--lijn);
  border-radius: 10px;
  padding: 14px;
  font-size: 0.85rem;
  max-height: 260px;
  overflow: auto;
  margin-top: 16px;
}

.zijkaart {
  background: var(--zand);
  border-radius: var(--radius);
  padding: 26px;
}
.zijkaart h3 {
  font-size: 1.1rem;
}
.zijkaart p {
  color: var(--ink-zacht);
  font-size: 0.95rem;
}
.zijkaart__rij {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #ddd5c7;
  text-decoration: none;
  font-weight: 600;
}
.zijkaart__rij small {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink-zacht);
}

/* ── voet ───────────────────────────────────────────────── */
.voet {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 22px;
  margin-top: 0;
}
.voet .brand__txt b {
  color: #fff;
}
.voet .brand__txt i {
  color: rgba(255, 255, 255, 0.55);
}
.voet__in {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
.voet__merk p {
  margin-top: 14px;
  font-size: 0.94rem;
  max-width: 34ch;
}
.voet__knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.voet__kol h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.voet__kol a,
.voet__kol__rij {
  display: block;
  text-decoration: none;
  font-size: 0.94rem;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.78);
}
.voet__kol a:hover {
  color: #fff;
}
.voet__onder {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ── vaste balk op telefoon ─────────────────────────────── */
.mobalk {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(246, 244, 240, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--lijn);
}
.mobalk a {
  flex: 1;
  text-align: center;
  padding: 13px 8px;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.mobalk__wa {
  background: #1f9d55;
  color: #fff;
}
.mobalk__cta {
  background: var(--groen);
  color: #fff;
}

/* ── opkomen bij scrollen ───────────────────────────────── */
.op {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.op.in {
  opacity: 1;
  transform: none;
}

/* ── smal ───────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  /* het menu duwde de rechterkant naar de rand; dat valt op smal scherm weg */
  .nav__right {
    margin-left: auto;
  }
  .burger {
    display: flex;
  }
  .split,
  .dienst,
  .formblok,
  .oproep {
    grid-template-columns: 1fr;
  }
  .split--om .split__beeld,
  .dienst:nth-child(even) .dienst__beeld {
    order: 0;
  }
  .oproep__knoppen {
    justify-content: flex-start;
  }
  .voet__in {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .mobalk {
    display: flex;
  }
  body {
    padding-bottom: 74px;
  }
  .nav__tel {
    display: none;
  }
  .hero__in {
    padding: 92px 0 46px;
  }
  .form__rij {
    grid-template-columns: 1fr;
  }
  .voet__in {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .op {
    opacity: 1;
    transform: none;
  }
  .woord {
    opacity: 1;
    transform: none;
  }
}
