/* =========================================================================
   Taxi HR — hoja van stijl
   Kleuren en typografie afgeleid van de bestaande website (WordPress/Elementor)
   ========================================================================= */

/* ---------- Lettertypes (zelf gehost, zie README) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --gold:        #b08d3f;
  --gold-bright: #c2a24e;
  --gold-soft:   #d9c48a;
  --gold-deep:   #96762c;

  --ink:      #101010;
  --ink-2:    #1a1a1a;
  --ink-line: rgba(255, 255, 255, .14);

  --paper:    #f1f0ee;
  --paper-2:  #fafaf9;
  --paper-line: rgba(0, 0, 0, .10);

  --on-dark:      #ffffff;
  --on-dark-mut:  rgba(255, 255, 255, .68);
  --on-light:     #111111;
  --on-light-mut: #8a8a8a;

  --serif: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --sans:  'Jost', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1240px;
  --gut: clamp(1.25rem, 5vw, 4rem);
  --sec-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 2px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--on-light);
  background: var(--paper-2);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.06; letter-spacing: -.005em; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #fff; padding: .75rem 1.25rem;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Secties ---------- */
.sec { padding-block: var(--sec-y); position: relative; }
.sec--dark  { background: var(--ink);   color: var(--on-dark); }
.sec--light { background: var(--paper); color: var(--on-light); }
.sec--paper { background: var(--paper-2); color: var(--on-light); }

.eyebrow {
  font-family: var(--sans); font-weight: 500;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.sec--dark .eyebrow  { color: var(--on-dark); }
.sec--light .eyebrow,
.sec--paper .eyebrow { color: var(--on-light); }

.h-display { font-size: clamp(3rem, 8.4vw, 6.2rem); }
.h-section { font-size: clamp(2.15rem, 4.8vw, 3.5rem); max-width: 20ch; }
.sec--dark .h-section  { color: var(--gold-bright); }
.sec--light .h-section,
.sec--paper .h-section { color: var(--gold-deep); }

.lede { max-width: 46ch; }
.sec--dark .lede  { color: var(--on-dark-mut); }
.sec--light .lede,
.sec--paper .lede { color: var(--on-light-mut); }
.lede + .lede { margin-top: 1.1rem; }

/* ---------- Knoppen ---------- */
.btn {
  --btn-bg: var(--gold); --btn-fg: #fff; --btn-bd: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 2.1rem; min-height: 48px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--radius);
  font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover  { --btn-bg: var(--gold-deep); --btn-bd: var(--gold-deep); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--gold-bright); --btn-bd: var(--gold); }
.btn--ghost:hover { --btn-bg: var(--gold); --btn-fg: #fff; }
.btn--ghost-dark { --btn-bg: transparent; --btn-fg: var(--gold-deep); --btn-bd: var(--gold); }
.btn--ghost-dark:hover { --btn-bg: var(--gold); --btn-fg: #fff; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

.call { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.25rem, 4vw, 2.75rem); }
.calls__label { font-family: var(--sans); font-weight: 500; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }
.calls__num {
  font-family: var(--serif); font-weight: 600; color: var(--gold-bright);
  font-size: clamp(1.55rem, 3.2vw, 2.2rem); text-decoration: none; white-space: nowrap;
}
.calls { padding-left: clamp(1.25rem, 4vw, 2.75rem); border-left: 1px solid var(--ink-line); }
@media (max-width: 640px) { .calls { padding-left: 0; border-left: 0; } }

/* ---------- Header ---------- */
.hdr {
  position: absolute; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.hdr--stuck {
  position: fixed;
  background: rgba(16, 16, 16, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--ink-line);
}
.hdr__in {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 104px;
}
.hdr--stuck .hdr__in { min-height: 80px; }
.hdr__logo { display: block; padding-block: .35rem; }
.hdr__logo img { width: clamp(158px, 19vw, 208px); height: auto; }
@media (max-width: 900px) { .hdr__logo img { width: clamp(140px, 40vw, 172px); } }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav__link {
  color: #fff; text-decoration: none; font-weight: 600; font-size: .95rem;
  padding: .4rem 0; position: relative; transition: color .25s var(--ease);
}
.nav__link:hover, .nav__link[aria-current='page'] { color: var(--gold-bright); }

.lang {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--on-dark-mut); text-decoration: none;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  padding: .45rem .7rem; border: 1px solid var(--ink-line); border-radius: var(--radius);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.lang:hover { color: #fff; border-color: var(--gold); }

.burger {
  display: none; width: 46px; height: 46px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--ink-line); border-radius: var(--radius); cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: .3s var(--ease); }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: #fff; transition: .3s var(--ease);
}
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger[aria-expanded='true'] span { background: transparent; }
.burger[aria-expanded='true'] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded='true'] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed; inset: 0; z-index: 99;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: .35rem; padding: 6rem var(--gut) 3rem;
    background: var(--ink);
    transform: translateX(100%); transition: transform .4s var(--ease);
    overflow-y: auto;
  }
  .nav[data-open='true'] { transform: none; }
  .nav__link { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; padding: .45rem 0; }
  .nav .btn { margin-top: 1.5rem; width: 100%; }
  .nav .lang { margin-top: 1rem; }
  body[data-lock] { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: clamp(560px, 92svh, 900px);
  padding-block: 9rem clamp(3rem, 8vw, 6rem);
  background: var(--ink); color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.62) 45%, rgba(10,10,10,.30) 100%),
    linear-gradient(to top, rgba(10,10,10,.85) 0%, rgba(10,10,10,0) 45%);
}
.hero__in { position: relative; width: 100%; }
.hero h1 { color: var(--gold-bright); max-width: 12ch; }
.hero__sub {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.4;
  color: #fff; max-width: 26ch; margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.hero__actions { margin-top: clamp(2rem, 4vw, 3rem); display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; }

/* variant voor binnenpagina's */
.hero--page { min-height: clamp(420px, 62svh, 620px); }
.hero--page .hero__grid { display: grid; gap: clamp(1rem, 3vw, 3rem); align-items: end; }
@media (min-width: 900px) { .hero--page .hero__grid { grid-template-columns: 1fr 1fr; } }
.hero--page h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }

/* ---------- Split (tekst + beeld) ---------- */
.split { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); }
  .split--rev .split__media { order: -1; }
}
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__media--wide img { aspect-ratio: 16 / 11; }
.split__body > * + * { margin-top: 1.6rem; }

/* volledige-breedte beeld tegen de rand (zoals 'Why choose us') */
.bleed { display: grid; align-items: center; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 1000px) { .bleed { grid-template-columns: minmax(0, 42%) minmax(0, 1fr); gap: clamp(3rem, 6vw, 6rem); } }
.bleed__media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
@media (min-width: 1000px) { .bleed__media img { min-height: 640px; } }
.bleed__body { padding-inline: var(--gut); padding-block: clamp(0rem, 2vw, 2rem); max-width: 760px; }
@media (min-width: 1000px) { .bleed__body { padding-right: max(var(--gut), calc((100vw - var(--wrap)) / 2)); padding-left: 0; } }
@media (max-width: 999px) { .bleed__body { padding-inline: var(--gut); } }

.cols2 { display: grid; gap: 1.6rem 3rem; }
@media (min-width: 700px) { .cols2 { grid-template-columns: 1fr 1fr; } }

/* ---------- Diensten ---------- */
.svc-grid { display: grid; gap: clamp(2.2rem, 4vw, 3.4rem); margin-top: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 640px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc { border-top: 1px solid var(--gold); padding-top: 1.5rem; }
.svc h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: .8rem; }
.sec--dark .svc h3 { color: #fff; }
.svc p { color: var(--on-light-mut); font-size: .95rem; }
.sec--dark .svc p { color: var(--on-dark-mut); }
.svc__more { display: block; margin-top: 1rem; font-size: .95rem; color: var(--gold-deep); }

.svc-detail { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.svc-detail__item { border-top: 1px solid var(--paper-line); padding-top: 2rem; display: grid; gap: 1rem 3rem; }
@media (min-width: 900px) { .svc-detail__item { grid-template-columns: minmax(0, 30%) minmax(0, 1fr); } }
.svc-detail__item h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--on-light); }

/* ---------- Genummerde punten ---------- */
.nums { display: grid; gap: 2rem clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(3rem, 5vw, 4rem); }
@media (min-width: 560px)  { .nums { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .nums { grid-template-columns: repeat(4, 1fr); } }
.num__n {
  font-family: var(--serif); font-weight: 600; line-height: 1;
  font-size: clamp(3.8rem, 6.6vw, 5.6rem); color: var(--gold);
}
.num__t {
  font-family: var(--serif); font-weight: 600; font-size: 1.18rem; line-height: 1.3;
  margin-top: .7rem; color: var(--on-light);
}
.sec--dark .num__t { color: #fff; }

/* ---------- Werkgebied ---------- */
.area { display: grid; gap: clamp(2.5rem, 5vw, 4rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 900px) { .area { grid-template-columns: 1fr 1fr; } }
.area h3 { font-size: 1.15rem; margin-bottom: 1.25rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; }
.chips li {
  border: 1px solid var(--paper-line); border-radius: 999px;
  padding: .4rem 1rem; font-size: .88rem; color: var(--on-light-mut);
}
.routes { list-style: none; padding: 0; }
.routes li {
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: baseline;
  padding: .8rem 0; border-bottom: 1px solid var(--paper-line); font-size: .95rem;
}
.routes b { font-weight: 400; }
.routes span { color: var(--gold-deep); font-weight: 600; white-space: nowrap; }

/* ---------- CTA-band ---------- */
.band { position: relative; color: #fff; overflow: hidden; padding-block: clamp(5rem, 10vw, 9rem); }
.band__bg { position: absolute; inset: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.90) 0%, rgba(10,10,10,.62) 55%, rgba(10,10,10,.42) 100%);
}
.band__in { position: relative; }
.band h2 { font-size: clamp(2.5rem, 6.2vw, 4.8rem); color: var(--gold-bright); max-width: 16ch; }
.band__sub {
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45; color: #fff; max-width: 44ch; margin-top: 1.5rem;
}
.band__actions { margin-top: clamp(2rem, 4vw, 3rem); display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; align-items: center; }

/* ---------- Formulier ---------- */
.form-shell { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 1000px) { .form-shell { grid-template-columns: minmax(0, 1fr) minmax(0, 340px); } }

.card {
  background: #fff; border: 1px solid var(--paper-line); border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
}
.card--muted { background: var(--paper); }

.fieldset { border: 0; padding: 0; }
.fieldset + .fieldset { margin-top: 2.5rem; }
.fieldset > legend {
  font-family: var(--serif); font-weight: 600; font-size: 1.5rem;
  padding: 0 0 1.25rem; color: var(--on-light);
}
.grid-f { display: grid; gap: 1.25rem; }
@media (min-width: 620px) { .grid-f--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 620px) { .grid-f--3 { grid-template-columns: 1fr 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #555; }
.field .req { color: var(--gold-deep); }
.field .hint { font-size: .82rem; color: var(--on-light-mut); line-height: 1.5; }
.field input, .field select, .field textarea {
  width: 100%; padding: .95rem 1rem; min-height: 52px;
  background: #fff; color: var(--on-light);
  border: 1px solid #d8d6d2; border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176, 141, 63, .16);
}
.field input[aria-invalid='true'], .field textarea[aria-invalid='true'] { border-color: #b3261e; }
.field .err { font-size: .82rem; color: #b3261e; }

/* honeypot — onzichtbaar voor mensen, zichtbaar voor bots */
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

.check { display: flex; gap: .8rem; align-items: flex-start; font-size: .92rem; line-height: 1.6; }
.check input { width: 20px; height: 20px; min-height: 0; margin-top: .25rem; flex: none; accent-color: var(--gold); }

.steps { list-style: none; padding: 0; counter-reset: s; }
.steps li {
  counter-increment: s; position: relative; padding-left: 2.6rem;
  font-size: .95rem; line-height: 1.6; color: #4a4a4a;
}
.steps li + li { margin-top: 1.1rem; }
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: 0;
  width: 1.9rem; height: 1.9rem; display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 50%;
  font-family: var(--sans); font-weight: 500; font-size: .85rem; color: var(--gold-deep);
}

.note {
  margin-top: 1.75rem; padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold); background: rgba(176, 141, 63, .07);
  font-size: .92rem; line-height: 1.6;
}

.alert { padding: 1.5rem; border-radius: var(--radius); border: 1px solid; }
.alert h2 { font-size: 1.4rem; margin-bottom: .6rem; }
.alert--ok  { border-color: #2e7d32; background: #f0f7f0; color: #1b5e20; }
.alert--err { border-color: #b3261e; background: #fdf1f0; color: #8c1d18; }
.alert p { color: inherit; }
.alert code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 600; letter-spacing: .06em; }
[hidden] { display: none !important; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.cinfo { list-style: none; padding: 0; }
.cinfo li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--paper-line); }
.cinfo svg { flex: none; width: 20px; height: 20px; margin-top: .3rem; color: var(--gold); }
.cinfo .k { font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--on-light-mut); }
.cinfo .v { font-size: 1.05rem; }
.cinfo a { text-decoration: none; }
.cinfo a:hover { color: var(--gold-deep); }

.map-box {
  position: relative; aspect-ratio: 4 / 3; background: var(--paper);
  border: 1px solid var(--paper-line); display: grid; place-items: center;
}
.map-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-ask { padding: 2rem; text-align: center; max-width: 44ch; }
.map-ask p { font-size: .95rem; color: var(--on-light-mut); margin-bottom: 1.5rem; }
.map-ask small { display: block; margin-top: 1rem; font-size: .78rem; color: var(--on-light-mut); }

/* ---------- Prose (privacy) ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin-top: 2.75rem; margin-bottom: .9rem; color: var(--on-light); }
.prose p { color: #4a4a4a; }
.prose p + p { margin-top: 1rem; }
.prose a { color: var(--gold-deep); }

/* ---------- Footer ---------- */
.ftr { background: var(--paper-2); border-top: 1px solid var(--paper-line); }
.ftr__top { display: grid; gap: 2.75rem; padding-block: clamp(3.5rem, 6vw, 5rem); }
@media (min-width: 760px) { .ftr__top { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.ftr h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.ftr ul { list-style: none; padding: 0; }
.ftr li + li { margin-top: .65rem; }
.ftr a { text-decoration: none; color: var(--on-light-mut); }
.ftr a:hover { color: var(--gold-deep); }
.ftr address { font-style: normal; color: var(--on-light-mut); line-height: 2; }

.ftr__cta { border-top: 1px solid var(--gold); padding-block: clamp(3rem, 6vw, 4.5rem); }
.ftr__cta p { font-family: var(--sans); font-weight: 500; font-size: .78rem;
                  letter-spacing: .16em; text-transform: uppercase; }
.ftr__tel {
  display: inline-block; margin-top: .75rem; text-decoration: none;
  font-family: var(--serif); font-weight: 600; color: var(--on-light);
  font-size: clamp(2.5rem, 8.6vw, 5.8rem); line-height: 1.05; letter-spacing: -.015em;
}
.ftr__tel:hover { color: var(--gold-deep); }

.ftr__end {
  border-top: 1px solid var(--paper-line); padding-block: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between;
  font-size: .85rem; color: var(--on-light-mut);
}
.ftr__end nav { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.soc { display: grid; place-items: center; width: 20px; height: 20px; color: var(--on-light-mut); }
.soc:hover { color: var(--gold-deep); }
.soc svg { width: 18px; height: 18px; }

/* ---------- Cookiebanner ---------- */
.cookie {
  position: fixed; inset: auto 0 0 0; z-index: 150;
  background: var(--ink); color: #fff; border-top: 1px solid var(--gold);
  transform: translateY(110%); transition: transform .45s var(--ease);
}
.cookie[data-show='true'] { transform: none; }
.cookie__in {
  display: grid; gap: 1.25rem; padding-block: 1.5rem; align-items: center;
}
@media (min-width: 860px) { .cookie__in { grid-template-columns: 1fr auto; gap: 2.5rem; } }
.cookie p { font-size: .9rem; line-height: 1.65; color: var(--on-dark-mut); }
.cookie strong { color: #fff; display: block; font-family: var(--serif); font-size: 1.25rem; margin-bottom: .3rem; }
.cookie a { color: var(--gold-bright); }
.cookie__btns { display: flex; flex-wrap: wrap; gap: .75rem; }
.cookie .btn { padding: .8rem 1.5rem; min-height: 44px; }

/* ---------- Zwevende WhatsApp-knop ---------- */
.wa {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 120;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  transition: transform .25s var(--ease);
}
.wa:hover { transform: scale(1.07); }
.wa svg { width: 30px; height: 30px; }
@media (min-width: 900px) { .wa { right: 1.75rem; bottom: 1.75rem; } }

/* ---------- Zachte binnenkomst ---------- */
@media (prefers-reduced-motion: no-preference) {
  .rise { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .rise.is-in { opacity: 1; transform: none; }
}

/* ---------- Sectie met vervaagde achtergrondfoto ---------- */
.sec--wash { position: relative; overflow: hidden; }
.sec__wash { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.sec__wash img { width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.sec--wash > .wrap { position: relative; z-index: 1; }

/* ---------- Adres-aanvulling ---------- */
.field { position: relative; }
.ac {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 60;
  list-style: none; margin: 0; padding: .35rem;
  background: #fff; border: 1px solid #d8d6d2; border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12); max-height: 260px; overflow-y: auto;
}
.ac li {
  padding: .7rem .8rem; font-size: .92rem; line-height: 1.4;
  cursor: pointer; border-radius: var(--radius);
}
.ac li:hover, .ac li.is-active { background: rgba(176, 141, 63, .12); }

@media print {
  .hdr, .cookie, .wa, .band, .ftr__cta { display: none !important; }
  body { background: #fff; }
}
