/* ============================================================
   Schaft Le pot — Optie 1 "Krantenpapier"
   ============================================================ */

:root {
  --espresso: #2b1810;
  --espresso-2: #34211a;
  --cream: #f4ebdc;
  --cream-2: #eadfca;
  --cream-3: #ece2cf;
  --text-cream: #f5edd8;
  --brown: #5a4636;
  /* rust verdonkerd van #c8482e voor WCAG AA contrast (4.5:1+ op cream) */
  --rust: #b03a22;
  --rust-dark: #93301b;
  --rust-2: #d93b1f;
  --gold: #e8b547;
  --line-dark: rgba(43, 24, 16, 0.13);
  --line-cream: rgba(245, 237, 216, 0.16);
  --maxw: 1440px;
  --pad: 60px;
  --header-h: 84px;
}

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

html {
  /* JS verzorgt smooth scroll; geen CSS scroll-behavior (botst met de JS-animatie) */
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: clip;
}

body {
  font-family: "Bitter", Georgia, serif;
  background-color: var(--espresso);
  color: var(--text-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-top: var(--header-h);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #3a2410;
  padding: 12px 18px;
  z-index: 999;
  font-weight: 700;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* ---------- Scroll-reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Shared display + eyebrow ---------- */
.display {
  font-family: "Shrikhand", serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.5px;
}
.display--dark {
  color: var(--espresso);
}
.display--cream {
  color: var(--text-cream);
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.eyebrow--light {
  color: var(--text-cream);
  letter-spacing: 0.25em;
}
.eyebrow--rust {
  color: var(--rust);
}
.eyebrow--gold {
  color: var(--gold);
}
.eyebrow__line {
  width: 40px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

/* ---------- Toetsenbordnavigatie: zichtbare focus (WCAG 2.4.7) ---------- */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}
.btn--gold:focus-visible,
.pill input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn--rust:focus-visible {
  outline: 3px solid var(--text-cream);
  outline-offset: 3px;
}

/* overal een soepele ease op hover */
a,
button {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}
.link-normal {
  text-decoration: underline;
  color: #d99e2f;
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Bitter", serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  padding: 0 24px;
  height: 48px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}
.btn--gold {
  background: var(--gold);
  color: #3a2410;
}
.btn--gold:hover {
  background: #d99e2f;
  transform: translateY(-2px);
}
.btn--rust {
  background: var(--rust);
  color: var(--text-cream);
  height: 56px;
  padding: 0 32px;
}
.btn--rust:hover {
  background: var(--rust-dark);
  transform: translateY(-2px);
}

.link-underline {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--espresso);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--rust-2);
  transition:
    color 0.18s ease,
    letter-spacing 0.18s ease;
}
.link-underline:hover {
  color: var(--rust);
  letter-spacing: 0.12em;
}

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--espresso);
  border-bottom: 1px solid var(--line-cream);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  will-change: transform;
}
.site-header--scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
/* valt naar boven weg bij omlaag scrollen, zakt weer omlaag bij omhoog scrollen */
.site-header--hidden {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 111; /* logo blijft zichtbaar boven het open mobiele menu */
}
.brand__mark {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.brand:hover .brand__mark {
  transform: rotate(-4deg) scale(1.04);
}
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__schaft {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-cream);
}
.brand__lepot {
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.nav__links {
  list-style: none;
  display: flex;
  gap: 36px;
  margin-left: auto;
  align-items: center;
}
.nav__links a {
  font-size: 0.95rem;
  color: var(--text-cream);
  position: relative;
  transition: color 0.18s ease;
  /* groter tap target zonder de layout te verschuiven */
  display: inline-block;
  padding: 12px 4px;
  margin: -12px -4px;
}
.nav__links > li:not(.nav__links-cta) > a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav__links > li:not(.nav__links-cta) > a:hover {
  color: var(--gold);
}
.nav__links > li:not(.nav__links-cta) > a:hover::after {
  width: 100%;
}
.nav__links-cta {
  display: none; /* only used inside mobile menu */
}
.nav__cta {
  flex-shrink: 0;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--text-cream);
  transition:
    transform 0.28s ease,
    opacity 0.2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--espresso);
  padding: 28px 0 72px;
}
.hero__stage {
  position: relative;
  height: clamp(420px, 42vw, 600px);
}
.hero__collage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 2.68fr) minmax(0, 1fr);
  gap: 16px;
  height: 100%;
  overflow: hidden;
}
.hero__photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.hero__photo--main {
  grid-row: 1 / 3;
}
/* donkere waas: links sterk (voor leesbaarheid tekst), rechts open */
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(43, 24, 16, 0.86) 0%,
    rgba(43, 24, 16, 0.62) 34%,
    rgba(43, 24, 16, 0.22) 56%,
    rgba(43, 24, 16, 0.05) 72%,
    rgba(43, 24, 16, 0) 100%
  );
}
.hero__overlay {
  position: absolute;
  left: clamp(8px, 3vw, 44px);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  pointer-events: none;
}
.hero__overlay .eyebrow--light {
  margin-bottom: clamp(14px, 1.6vw, 24px);
  color: rgba(245, 237, 216, 0.85);
}
.hero__title {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-cream);
  font-size: clamp(2.6rem, 9.2vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: 0.5px;
  max-width: 13ch;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.45);
}
.hero__footer {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__quote {
  font-style: italic;
  color: rgba(245, 237, 216, 0.82);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.55;
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head {
  margin-bottom: 56px;
}
.section-head .eyebrow {
  margin-bottom: 22px;
}
.section-head__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.section-head__row .display {
  font-size: clamp(2.4rem, 5.2vw, 4.75rem);
}
.section-head__lead {
  color: var(--brown);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 470px;
}
.section-head__lead--cream {
  color: rgba(245, 237, 216, 0.72);
}

/* ============================================================
   CONCEPTEN
   ============================================================ */
.concepten {
  background: var(--cream);
  color: var(--espresso);
  padding: 120px 0;
}
.concept-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* Ruimte voor de hover-animatie (shadow & lift) zodat deze niet wordt afgekapt */
  padding: 32px 0;
  margin: -32px 0;
  /* scrollbalk verbergen, wel scrollbaar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.concept-grid::-webkit-scrollbar {
  display: none;
}
.concept-grid-wrap {
  position: relative;
}
.concept-grid__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  box-shadow: 0 6px 18px rgba(43, 24, 16, 0.2);
}
.concept-grid__arrow--prev {
  left: -12px;
}
.concept-grid__arrow--next {
  right: -12px;
}
.carousel-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: var(--cream-2);
  color: var(--espresso);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.carousel-arrow:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--text-cream);
}
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.carousel-arrow:disabled:hover {
  background: var(--cream-2);
  border-color: var(--line-dark);
  color: var(--espresso);
}
.concept-card {
  /* 3 kaarten volledig in beeld, de 4de piept er half achter -> duidelijk scrollbaar */
  flex: 0 0 calc((100% - 48px) / 3.4);
  scroll-snap-align: start;
  background: var(--cream-2);
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
}
.concept-card:hover {
  transform: translateY(-4px);
  border-color: var(--rust);
  box-shadow: 0 8px 16px rgba(43, 24, 16, 0.1);
  z-index: 2;
}
.concept-card__media {
  height: 300px;
  overflow: hidden;
}
.concept-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.concept-card:hover .concept-card__media img {
  transform: scale(1.06);
}
.concept-card__body {
  padding: 30px 24px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.concept-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}
.concept-card__index {
  color: var(--rust);
}
.concept-card__guests {
  color: var(--brown);
}
.concept-card__title {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 10px;
}
.concept-card__sub {
  font-style: italic;
  color: var(--rust);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.concept-card__text {
  color: var(--brown);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

/* CTA-kaart in de carousel ("Eigen idee?") */
.concept-card--cta {
  background: var(--espresso);
  border-color: var(--espresso);
}
.concept-card--cta .concept-card__body {
  justify-content: center;
}
.concept-card--cta .concept-card__index {
  color: var(--gold);
}
.concept-card--cta .concept-card__title {
  color: var(--text-cream);
}
.concept-card--cta .concept-card__text {
  color: rgba(245, 237, 216, 0.78);
}
.concept-card--cta .btn {
  align-self: flex-start;
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  background: var(--espresso);
  padding: 120px 0;
}
.menu .section-head__row {
  align-items: center;
}
.menu-gallery-wrap {
  position: relative;
}
.menu-gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-gallery::-webkit-scrollbar {
  display: none;
}
.menu-gallery__page {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
.menu-gallery__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.menu-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-gallery__item:hover img {
  transform: scale(1.08);
}
.menu-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  box-shadow: 0 6px 18px rgba(20, 10, 5, 0.35);
}
.menu-gallery__arrow--prev {
  left: 12px;
}
.menu-gallery__arrow--next {
  right: 12px;
}
.menu-download {
  margin-top: 48px;
  border: 1px solid var(--line-cream);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.menu-download p {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-cream);
}

/* ============================================================
   HOE HET WERKT — TIJDLIJN
   ============================================================ */
.werkwijze {
  background: var(--cream-2);
  color: var(--espresso);
  padding: 110px 0;
}
.werkwijze .section-head {
  margin-bottom: 72px;
}
.werkwijze .display {
  font-size: clamp(2.6rem, 6vw, 5rem);
}
.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
/* continuous horizontal line behind the dots */
.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: rgba(43, 24, 16, 0.22);
  z-index: 0;
}
.timeline__step {
  position: relative;
  z-index: 1;
}
.timeline__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--cream);
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-size: 1.9rem;
  margin-bottom: 30px;
  box-shadow: 0 0 0 8px var(--cream-2);
  transition: transform 0.3s ease;
}
.timeline__step:hover .timeline__dot {
  transform: scale(1.06);
}
.timeline__title {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 14px;
  color: var(--espresso);
}
.timeline__text {
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.timeline__time {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social {
  background: var(--cream);
  color: var(--espresso);
  padding: 100px 0;
  text-align: center;
}
.social__eyebrow {
  justify-content: center;
}
.social__title {
  font-size: clamp(2.6rem, 7vw, 6rem);
  margin: 22px 0 60px;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.review {
  background: var(--cream-3);
  border: 1px solid var(--line-dark);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(43, 24, 16, 0.12);
}
.review__stars {
  /* rust i.p.v. gold: gold haalt geen 4.5:1 contrast op de lichte kaart */
  color: var(--rust);
  letter-spacing: 0.18em;
  margin-bottom: 22px;
}
.review__text {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--espresso);
  flex: 1;
  margin-bottom: 28px;
}
.review__author {
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
}
.review__name {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 3px;
}
.review__role {
  font-size: 0.82rem;
  color: var(--brown);
}
.logos {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.logos li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: rgba(43, 24, 16, 0.55);
}
.logos img {
  height: 42px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  opacity: 1;
  transition:
    filter 0.2s ease,
    opacity 0.2s ease;
}
/* ============================================================
   OVER ONS
   ============================================================ */
.over {
  background: var(--cream-2);
  color: var(--espresso);
  padding: 100px 0;
}
.over__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.over__media {
  position: relative;
}
.over__media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.over__badge {
  position: absolute;
  top: 22px;
  left: 0;
  background: var(--rust);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  padding: 8px 14px;
  transform: rotate(-3.8deg);
}
.over__content .eyebrow {
  margin-bottom: 20px;
}
.over__content .display {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  margin-bottom: 24px;
}
.over__text {
  color: var(--brown);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.over__divider {
  height: 1px;
  background: rgba(43, 24, 16, 0.2);
  margin: 18px 0 28px;
}
.stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat__num {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-size: 3.2rem;
  color: var(--rust);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--brown);
}

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq {
  background: var(--cream);
  color: var(--espresso);
  padding: 100px 0;
}
.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.faq__intro .eyebrow {
  margin-bottom: 20px;
}
.faq__intro .display {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  margin-bottom: 24px;
}
.faq__lead {
  color: var(--brown);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 420px;
}
.faq__contact {
  font-weight: 500;
  line-height: 1.9;
}
.faq__contact a {
  display: inline-block;
  padding: 8px 0;
}
.faq__contact a:hover {
  color: var(--rust);
}
.faq__list {
  border-top: 1px solid var(--line-dark);
}
.faq-item {
  border-bottom: 1px solid var(--line-dark);
}
.faq-item__q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-family: "Bitter", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--espresso);
  text-align: left;
}
.faq-item__q:hover {
  color: var(--rust);
}
/* +/- icon */
.faq-item__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--rust);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.faq-item__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-item__icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faq-item__q[aria-expanded="true"] .faq-item__icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
.faq-item__q[aria-expanded="true"] {
  color: var(--rust);
}
.faq-item__a {
  overflow: hidden;
  height: 0;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__a p {
  color: var(--brown);
  line-height: 1.7;
  padding: 0 60px 26px 0;
  max-width: 640px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--espresso);
  padding: 110px 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__intro .eyebrow {
  margin-bottom: 22px;
}
.contact__intro .display {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  margin-bottom: 28px;
}
.contact__lead {
  color: rgba(245, 237, 216, 0.72);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 1.05rem;
}
.contact__details a {
  display: inline-block;
  padding: 8px 0;
}
.contact__details a:hover {
  color: var(--gold);
}
.contact-form {
  background: rgba(245, 237, 216, 0.03);
  border: 1px solid var(--line-cream);
  padding: 44px 40px;
}
.form-status {
  display: none;
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: 0.95rem;
  border: 1px solid transparent;
}
.form-status.is-success {
  display: block;
  color: #bfe3b0;
  border-color: rgba(120, 200, 110, 0.4);
  background: rgba(120, 200, 110, 0.08);
}
.form-status.is-error {
  display: block;
  color: #f0a89a;
  border-color: rgba(216, 80, 60, 0.5);
  background: rgba(216, 80, 60, 0.1);
}
.field {
  margin-bottom: 30px;
  border: none;
}
.field > label,
.field > legend {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.7);
  margin-bottom: 12px;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-cream);
  border-radius: 0;
  color: var(--text-cream);
  font-family: "Bitter", serif;
  font-size: 1rem;
  padding: 8px 0;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  transition: border-color 0.2s ease;
}
.field textarea {
  resize: vertical;
  min-height: 60px;
}
.field__hint {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--gold);
}
.field__hint[hidden] {
  display: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
}
.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  box-shadow: 0 1px 0 0 var(--gold);
}
.field:has(input[type="date"]) {
  position: relative;
}
.field input[type="date"] {
  padding-right: 26px;
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  width: 22px;
  height: 22px;
  opacity: 0;
  cursor: pointer;
}
.field:has(input[type="date"])::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  background-color: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.field input[type="number"]::-webkit-outer-spin-button,
.field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.field input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  cursor: pointer;
}
.pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pill span {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--line-cream);
  font-size: 0.85rem;
  color: rgba(245, 237, 216, 0.8);
  transition: all 0.18s ease;
}
.pill span:hover {
  border-color: rgba(245, 237, 216, 0.5);
}
.pill input:checked + span {
  background: var(--gold);
  border-color: var(--gold);
  color: #3a2410;
}
.pill input:focus-visible + span {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.contact-form__submit {
  width: 100%;
  height: 54px;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--espresso-2);
  border-top: 1px solid var(--line-cream);
  padding: 56px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.brand__name--lg .brand__schaft {
  font-size: 2rem;
}
.brand__name--lg .brand__lepot {
  font-size: 1rem;
}
.footer__logo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}
.footer__brand p {
  color: rgba(245, 237, 216, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}
.footer__col h3 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__col a {
  color: rgba(245, 237, 216, 0.72);
  font-size: 0.95rem;
  transition: color 0.18s ease;
  display: inline-block;
  padding: 7px 0;
}
.footer__col a:hover {
  color: var(--gold);
}
.footer__col[aria-label="Volg ons"] ul {
  flex-direction: row;
  gap: 8px;
}
.footer__col[aria-label="Volg ons"] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-cream);
  border-radius: 50%;
  color: rgba(245, 237, 216, 0.72);
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}
.footer__col[aria-label="Volg ons"] a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(232, 181, 71, 0.08);
  transform: translateY(-2px);
}
.footer__col[aria-label="Volg ons"] svg {
  width: 20px;
  height: 20px;
  display: block;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line-cream);
  font-size: 0.82rem;
  color: rgba(245, 237, 216, 0.65);
}
.footer__bottom a {
  display: inline-block;
  padding: 6px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__bottom a:hover {
  color: var(--gold);
}

/* ============================================================
   LANDINGSPAGINA'S (SEO)
   ============================================================ */
.breadcrumbs {
  font-size: 0.8rem;
  color: rgba(245, 237, 216, 0.6);
  padding-top: 28px;
}
.breadcrumbs a:hover {
  color: var(--gold);
}
.breadcrumbs span {
  color: rgba(245, 237, 216, 0.65);
  margin: 0 8px;
}
.breadcrumbs a {
  display: inline-block;
  padding: 10px 0;
  margin: -10px 0;
}
.page-hero {
  background: var(--espresso);
  padding: 8px 0 80px;
}
.page-hero__eyebrow {
  margin: 40px 0 22px;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.page-hero h1 {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-cream);
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1;
  margin-bottom: 24px;
}
.page-hero__lead {
  color: rgba(245, 237, 216, 0.78);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}
.page-hero__img {
  height: 460px;
  width: 100%;
  object-fit: cover;
}
.page-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* beide actieknoppen even groot (rust-knop is elders bewust groter) */
.page-actions .btn--rust {
  height: 48px;
  padding: 0 24px;
}

/* zelfde verticale ritme als de secties op de homepagina */
.prose {
  background: var(--cream);
  color: var(--espresso);
  padding: 100px 0;
}
.prose--alt {
  background: var(--cream-2);
}
/* fotogrid volgt direct op een tekstsectie met dezelfde achtergrond */
.impressie.prose {
  padding-top: 0;
}
.prose__inner {
  max-width: 820px;
}
.prose h2 {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin: 0 0 22px;
  color: var(--espresso);
}
.prose h3 {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 36px 0 12px;
}
.prose p {
  color: var(--brown);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.prose ul {
  list-style: none;
  margin: 8px 0 24px;
  display: grid;
  gap: 12px;
}
.prose li {
  position: relative;
  padding-left: 28px;
  color: var(--brown);
  line-height: 1.6;
}
.prose li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--rust);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.feature-card {
  background: var(--cream-3);
  border: 1px solid var(--line-dark);
  padding: 28px 24px;
}
.feature-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}
.feature-card p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* ---- menupakketten op de dienst-pagina's ---- */
.menu-packs {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}
.menu-pack {
  border: 1px solid var(--line-dark);
  background: var(--cream-2);
  padding: 30px 30px 20px;
}
.menu-pack__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 16px;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 16px;
  margin-bottom: 6px;
}
.menu-pack__head h3 {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.55rem;
  margin: 0;
  color: var(--espresso);
}
.menu-pack__from {
  font-style: italic;
  color: var(--rust);
  font-size: 0.92rem;
  white-space: nowrap;
}
.menu-pack__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 44px;
  align-items: start;
}
.menu-pack__body:has(.menu-pack__group:only-child) {
  grid-template-columns: 1fr;
}
.menu-pack__group {
  margin-top: 22px;
}
.menu-pack__group h4 {
  font-style: italic;
  color: var(--rust);
  font-size: 1.05rem;
  margin: 0 0 10px;
}
.menu-pack__group ul {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 7px;
}
.menu-pack__group li {
  position: relative;
  padding-left: 20px;
  color: var(--brown);
  font-size: 0.96rem;
  line-height: 1.5;
}
.menu-pack__group li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: -1px;
  color: var(--rust);
}
.menu-pack__group li span {
  display: block;
  color: var(--brown);
  opacity: 0.85;
  font-size: 0.86rem;
}
@media (max-width: 700px) {
  .menu-pack__body {
    grid-template-columns: 1fr;
  }
}
/* ---- inklapbare menu's (lange menukaarten) ---- */
.menu-pack--collapsible .menu-pack__head {
  cursor: pointer;
  user-select: none;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.menu-pack--collapsible .menu-pack__from {
  margin-left: auto;
}
.menu-pack--collapsible .menu-pack__head::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--rust);
  border-bottom: 2px solid var(--rust);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.menu-pack--collapsible .menu-pack__head[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}
.menu-pack--collapsible .menu-pack__head:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 4px;
}
.menu-pack--collapsible .menu-pack__body {
  overflow: hidden;
  transition: height 0.3s ease;
}

/* ---- impressie-fotogrid op de dienst-pagina's ---- */
.impressie__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
  height: clamp(360px, 48vw, 540px);
}
.impressie__grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--cream-2);
}
.impressie__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impressie__big {
  grid-column: 1;
  grid-row: 1 / 3;
}
@media (max-width: 600px) {
  .impressie__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    height: auto;
  }
  .impressie__big {
    grid-row: auto;
  }
}

.cta-band {
  background: var(--rust);
  color: var(--text-cream);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(245, 237, 216, 0.94);
  margin-bottom: 28px;
  max-width: 560px;
  margin-inline: auto;
}
.related {
  background: var(--espresso);
  padding: 100px 0;
}
.related h2 {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-cream);
  font-size: 1.8rem;
  margin-bottom: 28px;
}
.related__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related__links a {
  border: 1px solid var(--line-cream);
  padding: 22px 24px;
  color: var(--text-cream);
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.related__links a:hover {
  background: rgba(245, 237, 216, 0.05);
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 900px) {
  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-hero__img {
    height: 320px;
  }
  .feature-grid,
  .related__links {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- tot ~1080px: laptop / iPad landscape ---- */
@media (max-width: 1080px) {
  :root {
    --pad: 40px;
  }
  .section-head__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---- tot 900px: mobiel menu + stapelen ---- */
@media (max-width: 900px) {
  .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }

  /* full mobiel menu paneel */
  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    background: var(--espresso);
    margin: 0;
    padding: 100px var(--pad) 48px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.4s ease,
      visibility 0s linear 0.55s;
    z-index: 105;
    overflow-y: auto;
    will-change: transform;
  }
  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition:
      transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.3s ease,
      visibility 0s;
  }
  /* geen tekst-stagger: links zijn meteen zichtbaar, alleen het paneel schuift in */
  .nav__links a {
    font-family: "Shrikhand", serif;
    font-style: italic;
    font-size: 2rem;
    transition:
      color 0.2s ease,
      transform 0.2s ease;
  }
  .nav__links a:active {
    transform: scale(0.96);
  }
  .nav__links li a:hover {
    color: var(--gold);
  }
  .nav__links a::after {
    display: none;
  }
  .nav__links-cta {
    display: block;
    margin-top: 24px;
  }
  .nav__links-cta a {
    font-family: "Bitter", serif;
    font-style: normal;
    font-size: 0.95rem;
  }
  body.nav-open {
    overflow: hidden;
  }

  /* hero op tablet: titel over één grote foto, leesbaar */
  .hero {
    padding: 20px 0 56px;
  }
  .hero__stage {
    height: clamp(420px, 72vw, 560px);
  }
  .hero__collage {
    grid-template-columns: 1.4fr 1fr;
  }
  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(43, 24, 16, 0.55) 0%,
      rgba(43, 24, 16, 0.35) 45%,
      rgba(43, 24, 16, 0.78) 100%
    );
  }
  .hero__overlay {
    top: auto;
    bottom: clamp(20px, 4vw, 40px);
    transform: none;
    left: clamp(16px, 4vw, 32px);
    right: clamp(16px, 4vw, 32px);
  }
  .hero__title {
    font-size: clamp(2.6rem, 8.4vw, 5rem);
    max-width: 16ch;
  }

  /* tablet: ~2,3 kaarten in beeld, de volgende piept erachter */
  .concept-card {
    flex-basis: calc((100% - 24px) / 2.3);
  }
  /* tablet: galerij van 3x2 naar 2x3, iets kleinere gap */
  .menu-gallery__page {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
  }

  /* tijdlijn -> verticaal */
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 40px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .timeline__step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding-bottom: 44px;
  }
  .timeline__step:last-child {
    padding-bottom: 0;
  }
  .timeline__dot {
    margin-bottom: 0;
  }
  .timeline__body {
    padding-top: 8px;
  }

  .reviews {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
  .over__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .over__media img {
    height: 440px;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ---- tot 600px: telefoon ---- */
@media (max-width: 600px) {
  :root {
    --pad: 20px;
    --header-h: 72px;
  }
  .brand__mark {
    width: 54px;
    height: 54px;
  }
  .concepten,
  .menu,
  .werkwijze,
  .social,
  .over,
  .faq,
  .contact,
  .prose,
  .related {
    padding: 64px 0;
  }
  .cta-band {
    padding: 56px 0;
  }
  .page-hero {
    padding-bottom: 56px;
  }
  /* telefoon: geen carousel, gewoon een gestapelde kolom */
  .concept-grid {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .concept-card {
    flex-basis: auto;
  }
  .concept-grid__arrow {
    display: none;
  }
  .menu-gallery__arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .menu-gallery__arrow--prev {
    left: 6px;
  }
  .menu-gallery__arrow--next {
    right: 6px;
  }
  /* telefoon: één schone foto met titel eroverheen */
  .hero__stage {
    height: clamp(380px, 92vw, 480px);
  }
  .hero__collage {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0;
  }
  .hero__photo--top,
  .hero__photo--bottom {
    display: none;
  }
  .hero__photo--main {
    grid-row: auto;
  }
  .hero__overlay .eyebrow--light {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    gap: 8px;
  }
  .hero__overlay .eyebrow__line {
    width: 22px;
  }
  /* telefoon: titel groter en wat hoger geplaatst */
  .hero__overlay {
    bottom: clamp(44px, 14vw, 104px);
  }
  .hero__title {
    font-size: clamp(2.1rem, 9vw, 3.3rem);
    max-width: none;
  }
  .hero__footer {
    gap: 22px;
  }
  .btn--rust {
    width: 100%;
  }
  .hero__quote {
    font-size: 0.98rem;
  }
  .menu-download {
    padding: 24px;
  }
  .menu-download p {
    font-size: 1.25rem;
  }
  .menu-download .btn {
    width: 100%;
  }
  .timeline__step {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }
  .timeline__dot {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    box-shadow: 0 0 0 6px var(--cream-2);
  }
  .timeline::before {
    left: 32px;
  }
  .stats {
    gap: 24px 36px;
  }
  .stat__num {
    font-size: 2.6rem;
  }
  .logos {
    justify-content: flex-start;
    gap: 14px 24px;
  }
  .logos li {
    font-size: 0.85rem;
  }
  .logos img {
    height: 30px;
  }
  .contact-form {
    padding: 32px 22px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .faq-item__a p {
    padding-right: 12px;
  }
  .faq-item__q {
    font-size: 1.05rem;
  }
}

/* ---- toegankelijkheid: minder beweging ---- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
