/* ==========================================================================
   Visscher Hospitality Consultancy
   Brand: wit / zwart / rood (#921819, rood uit het logo)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --red:          #921819;
  --red-bright:   #b02226;
  --red-deep:     #6f1213;

  --ink:          #141212;
  --ink-2:        #3c3634;
  --ink-3:        #6f6663;
  --muted:        #9a918d;

  --paper:        #ffffff;
  --paper-alt:    #f5f2f0;
  --paper-warm:   #ece7e3;

  --line:         rgba(20, 18, 18, .12);
  --line-light:   rgba(255, 255, 255, .18);

  --dark:         #141212;
  --dark-2:       #1d1a19;

  --font-display: "Cormorant Garamond", "Times New Roman", Times, serif;
  --font-body:    "Jost", "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;

  --shell:        min(1280px, 100%);
  --ease:         cubic-bezier(.22, .61, .36, 1);

  --header-h:     clamp(68px, 9vw, 104px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
figure { margin: 0; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.005em;
  margin: 0;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

button { font: inherit; color: inherit; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: .85rem 1.4rem;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Shared type helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: clamp(.62rem, 1.1vw, .7rem);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1.4rem;
}
.eyebrow--light { color: rgba(255, 255, 255, .72); }

.display {
  font-size: clamp(2.35rem, 5.4vw, 4.15rem);
  line-height: 1.02;
}

.title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
}

.subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.24;
  color: var(--ink-3);
  margin: .55rem 0 1.9rem;
}

.lede {
  font-size: clamp(1rem, 1.35vw, 1.075rem);
  color: var(--ink-2);
}

.prose { max-width: 56ch; }
/* alleen kale alinea's: anders overschrijft dit .eyebrow / .subtitle / .signature */
.prose p:not([class]) { color: var(--ink-2); font-size: .975rem; }

.rule {
  width: 54px;
  height: 1px;
  background: var(--red);
  border: 0;
  /* ruimte boven, anders raakt de lijn de staartletters van de kop erboven */
  margin: 1.4rem 0 1.9rem;
}
.rule--center { margin-inline: auto; }

/* ---------- Buttons & links ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  padding: 1.02rem 2.1rem;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover,
.btn:focus-visible {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.btn--light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .45);
}
.btn--light:hover,
.btn--light:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.link-arrow:hover,
.link-arrow:focus-visible {
  color: var(--red);
  border-color: var(--red);
}
.link-arrow:hover::after { width: 28px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: clamp(.85rem, 2vw, 1.5rem);
  padding: clamp(1.1rem, 2.4vw, 1.9rem) clamp(1.1rem, 4vw, 3.25rem);
  pointer-events: none;
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.site-header > * { pointer-events: auto; }

/* verborgen bij naar beneden scrollen */
.site-header.is-hidden {
  transform: translateY(-115%);
  opacity: 0;
}

/* Hamburger */
.nav-toggle {
  order: 0;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), width .35s var(--ease), background .35s var(--ease);
}
.nav-toggle span:nth-child(2) { width: 72%; }
.nav-toggle:hover span:nth-child(2) { width: 100%; }

/* Brand naast het menu */
.brand {
  order: 1;
  font-size: clamp(.63rem, 1.25vw, .76rem);
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.brand strong { font-weight: 500; }

/* Compacte modus: alleen het hamburgermenu bij omhoog scrollen */
.site-header.is-compact .brand {
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
}
.site-header.is-compact .nav-toggle {
  background: rgba(20, 18, 18, .72);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Donkere variant (voor lichte achtergronden) */
.site-header.on-light:not(.is-compact) .nav-toggle span { background: var(--ink); }
.site-header.on-light:not(.is-compact) .brand { color: var(--ink); }

/* Mobiele volgorde: naam links, hamburger rechts */
@media (max-width: 860px) {
  .site-header { justify-content: space-between; }
  .brand { order: 0; }
  .nav-toggle { order: 1; }
  .site-header.is-compact { justify-content: flex-end; }
  .site-header.is-compact .brand { display: none; }
}

@media (max-width: 520px) {
  .brand { font-size: .6rem; letter-spacing: .15em; }
}
@media (max-width: 370px) {
  .brand { white-space: normal; max-width: 15ch; line-height: 1.45; }
}

/* ==========================================================================
   Overlay navigatie
   ========================================================================== */
.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--dark);
  padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 6vw, 5rem) clamp(1.75rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .5s var(--ease), visibility .4s;
}
.nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/banner.jpg") center 45% / cover no-repeat;
  opacity: .1;
  filter: grayscale(1);
  pointer-events: none;
}

.nav-panel__close {
  position: absolute;
  top: clamp(1.1rem, 2.4vw, 1.9rem);
  right: clamp(1.1rem, 4vw, 3.25rem);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.nav-panel__close:hover { background: var(--red); border-color: var(--red); transform: rotate(90deg); }
.nav-panel__close svg { width: 15px; height: 15px; }

.nav-panel__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-content: center;
  width: var(--shell);
  margin-inline: auto;
}

.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-list li { overflow: hidden; }
.nav-list a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6.5vw, 4rem);
  line-height: 1.24;
  color: #fff;
  text-decoration: none;
  transition: color .3s var(--ease), transform .4s var(--ease);
}
.nav-list a:hover,
.nav-list a:focus-visible { color: var(--red-bright); transform: translateX(12px); }
.nav-list a[aria-current="page"] { color: var(--red-bright); }
.nav-list a[aria-current="page"]::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: .75rem;
}

.nav-meta { align-self: end; color: rgba(255, 255, 255, .62); font-size: .86rem; }
.nav-meta h3 {
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
  margin: 0 0 1.1rem;
}
.nav-meta a { color: #fff; text-decoration: none; transition: color .3s var(--ease); }
.nav-meta a:hover { color: var(--red-bright); }
.nav-meta p { margin-bottom: .6rem; }

.nav-panel__foot {
  position: relative;
  width: var(--shell);
  margin-inline: auto;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

@media (max-width: 860px) {
  .nav-panel__inner { grid-template-columns: 1fr; align-content: start; }
  .nav-meta { align-self: start; margin-top: 1.5rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

/* donkere overlay op de bannerafbeelding */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 7, .8) 0%, rgba(8, 7, 7, .44) 24%,
                             rgba(8, 7, 7, .5) 56%, rgba(8, 7, 7, .9) 100%),
    radial-gradient(112% 72% at 50% 50%, rgba(8, 7, 7, .34) 0%, rgba(8, 7, 7, .68) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  /* iets onder het midden, zodat het logo vrij blijft van het onderwerp in de foto */
  padding: calc(var(--header-h) + 3rem) 1.5rem 3rem;
}

.hero__title { margin: 0; line-height: 0; }

.hero__logo {
  width: clamp(190px, 26vw, 330px);
  height: auto;
  filter: drop-shadow(0 18px 46px rgba(0, 0, 0, .45));
}

.hero__tagline {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: clamp(1.5rem, 3.5vw, 2.4rem);
  font-size: clamp(.6rem, 1.15vw, .72rem);
  font-weight: 300;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .86);
}
.hero__tagline::before,
.hero__tagline::after {
  content: "";
  width: clamp(24px, 6vw, 54px);
  height: 1px;
  background: rgba(255, 255, 255, .34);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.75rem, 4vh, 2.75rem);
  transform: translateX(-50%);
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: .85rem;
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.hero__scroll:hover { color: #fff; }
.hero__scroll i {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0));
  animation: scrollCue 2.6s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollCue {
  0%, 100% { transform: scaleY(.35); opacity: .4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ---------- Pagina-hero (subpagina's) ---------- */
.page-hero {
  position: relative;
  min-height: clamp(380px, 62vh, 620px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 7, .84) 0%, rgba(8, 7, 7, .5) 40%, rgba(8, 7, 7, .93) 100%),
    radial-gradient(120% 82% at 50% 45%, rgba(8, 7, 7, .24) 0%, rgba(8, 7, 7, .52) 100%);
}
.page-hero__inner {
  position: relative;
  width: var(--shell);
  margin-inline: auto;
  padding: var(--header-h) clamp(1.25rem, 4vw, 3.25rem) clamp(2.75rem, 6vw, 4.5rem);
  color: #fff;
}
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero .subtitle { color: rgba(255, 255, 255, .72); margin-bottom: 0; }

/* ==========================================================================
   Split / schaakbord secties
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper-alt);
}
.split--paper { background: var(--paper); }

.split__body {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6.5vw, 7rem) clamp(1.5rem, 5.5vw, 6rem);
}
.split__media {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-height: clamp(360px, 48vw, 720px);
  overflow: hidden;
  background: var(--paper-warm);
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split__media:hover img { transform: scale(1.04); }

.split--reverse .split__body { grid-column: 2; }
.split--reverse .split__media { grid-column: 1; }

.split__caption {
  position: absolute;
  left: clamp(1.1rem, 2vw, 1.9rem);
  bottom: clamp(1.1rem, 2vw, 1.9rem);
  padding: .5rem .95rem;
  background: rgba(20, 18, 18, .62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.signature {
  margin-top: 2.1rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
}
.signature span { display: block; color: var(--muted); font-weight: 300; letter-spacing: .18em; margin-top: .3rem; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__body,
  .split--reverse .split__body { grid-column: 1; grid-row: 1; }
  .split__media,
  .split--reverse .split__media { grid-column: 1; grid-row: 2; min-height: 0; aspect-ratio: 4 / 3; }
  .split__media img { height: 100%; }
}

/* ==========================================================================
   Generieke secties
   ========================================================================== */
.section {
  padding: clamp(3.5rem, 8vw, 7.5rem) clamp(1.25rem, 4vw, 3.25rem);
}
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--alt { background: var(--paper-alt); }
.section--dark { background: var(--dark); color: rgba(255, 255, 255, .78); }
.section--dark h2, .section--dark h3 { color: #fff; }

.shell { width: var(--shell); margin-inline: auto; }
.shell--narrow { width: min(760px, 100%); margin-inline: auto; }

.section__head { max-width: 64ch; margin-bottom: clamp(2.25rem, 5vw, 3.75rem); }
.section__head--center { text-align: center; margin-inline: auto; }
.section__head--center .rule { margin-inline: auto; }

/* ---------- Dienstenlijst (genummerd) ---------- */
.service-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.service-list li { border-bottom: 1px solid var(--line); }
.service-list a,
.service-list .service-list__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(.9rem, 2.5vw, 2rem);
  padding: 1.35rem 0;
  text-decoration: none;
  color: inherit;
  transition: color .3s var(--ease), padding .3s var(--ease);
}
.service-list a:hover { color: var(--red); padding-inline-start: .6rem; }
.service-list .num {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--red);
  letter-spacing: .04em;
}
.service-list .name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  line-height: 1.2;
}
.service-list .name em {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: .01em;
  color: var(--ink-3);
  margin-top: .4rem;
  max-width: 48ch;
}
.service-list .go { font-size: 1.1rem; color: var(--muted); transition: transform .3s var(--ease); }
.service-list a:hover .go { transform: translateX(5px); color: var(--red); }

/* ---------- Kaarten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: var(--paper);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
}
.section--alt .card { background: var(--paper-alt); }
.card h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: .7rem;
}
.card p { font-size: .9rem; color: var(--ink-3); margin: 0; }
.card__num {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--red);
  margin-bottom: 1.1rem;
}

/* ---------- Stappen ---------- */
.steps { display: grid; gap: 1px; background: var(--line-light); }
.section--dark .steps { border: 1px solid var(--line-light); }
.step {
  background: var(--dark);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.6rem, 3.5vw, 2.4rem) clamp(1.25rem, 3vw, 2.4rem);
}
.step__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--red-bright);
  line-height: 1;
}
.step h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); margin-bottom: .55rem; }
.step p { font-size: .9rem; color: rgba(255, 255, 255, .62); margin: 0; max-width: 62ch; }

@media (max-width: 620px) {
  .step { grid-template-columns: 1fr; gap: .6rem; }
}

/* ---------- Statistiek / pijlers ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}
.pillar h3 {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  margin-bottom: .55rem;
}
.pillar p { font-size: .88rem; color: var(--ink-3); margin: 0; }
.pillar__mark {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--red);
  margin-bottom: 1.25rem;
}

/* ---------- Quote ---------- */
.quote {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.2vw, 3rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.24;
  color: var(--ink);
  max-width: 22ch;
  margin-inline: auto;
}
.section--dark .quote { color: #fff; }
.quote__by {
  display: block;
  font-family: var(--font-body);
  font-size: .66rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.9rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 18, 18, .96) 0%, rgba(20, 18, 18, .6) 52%, rgba(20, 18, 18, .8) 100%),
    url("../img/sfeer-2.jpg") center 38% / cover no-repeat;
  filter: grayscale(.45);
}
.cta-band__inner {
  width: var(--shell);
  margin-inline: auto;
  padding: clamp(3.25rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3.25rem);
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: 1.4fr auto;
  align-items: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3.2rem); }
.cta-band p { color: rgba(255, 255, 255, .7); max-width: 48ch; margin-top: 1rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

@media (max-width: 860px) {
  .cta-band__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Formulieren
   ========================================================================== */
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .55rem;
}
.field label .req { color: var(--red); }
.field label .opt {
  color: var(--muted);
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: none;
}

.field input,
.field textarea {
  width: 100%;
  padding: .92rem 1rem;
  font: inherit;
  font-size: .94rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(146, 24, 25, .1);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--red-bright); }

.field__error {
  display: none;
  margin-top: .45rem;
  font-size: .76rem;
  letter-spacing: .02em;
  color: var(--red-bright);
}
.field.has-error .field__error { display: block; }

.form__note {
  font-size: .76rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.6;
}

.form__status {
  display: none;
  margin-top: 1.1rem;
  padding: .95rem 1.1rem;
  font-size: .86rem;
  border-left: 2px solid var(--red);
  background: var(--paper-alt);
  color: var(--ink-2);
}
.form__status.is-visible { display: block; }

/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   Contactpagina
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-block { border-top: 1px solid var(--line); }
.info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.info-row dt {
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: .22rem;
}
.info-row dd { margin: 0; color: var(--ink-2); }
.info-row dd a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); transition: color .25s var(--ease), border-color .25s var(--ease); }
.info-row dd a:hover { color: var(--red); border-color: var(--red); }

@media (max-width: 480px) {
  .info-row { grid-template-columns: 1fr; gap: .25rem; }
}

/* ==========================================================================
   Zwevende knop + modal
   ========================================================================== */
.float-cta {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.9rem);
  bottom: clamp(1rem, 2.5vw, 1.9rem);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .95rem 1.5rem;
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(146, 24, 25, .36);
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.float-cta:hover,
.float-cta:focus-visible {
  background: var(--red-bright);
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(146, 24, 25, .45);
}
.float-cta svg { width: 17px; height: 17px; flex: none; }

@media (max-width: 420px) {
  .float-cta { padding: .85rem 1.2rem; font-size: .64rem; letter-spacing: .16em; }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.modal.is-open { opacity: 1; visibility: visible; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 10, .68);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  width: min(480px, 100%);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  background: var(--paper);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .4);
  transform: translateY(14px) scale(.985);
  transition: transform .4s var(--ease);
}
.modal.is-open .modal__dialog { transform: none; }

.modal__close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.modal__close:hover { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(90deg); }
.modal__close svg { width: 13px; height: 13px; }

.modal__dialog h2 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); margin-bottom: .5rem; }
.modal__dialog .modal__intro { font-size: .9rem; color: var(--ink-3); margin-bottom: 1.75rem; }
.modal .btn { width: 100%; }

/* ==========================================================================
   Footer (smal)
   ========================================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .58);
  font-size: .8rem;
}
.site-footer__main {
  width: var(--shell);
  margin-inline: auto;
  padding: clamp(1.9rem, 3.5vw, 2.6rem) clamp(1.25rem, 4vw, 3.25rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 2.5rem);
}
.site-footer__brand { display: flex; align-items: center; gap: .9rem; text-decoration: none; }
.site-footer__brand img { width: 40px; height: auto; }
.site-footer__brand span {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.5;
  max-width: 11ch;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(.9rem, 2.2vw, 1.9rem);
  margin-inline-end: auto;
}
.site-footer nav a {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, .62);
  transition: color .25s var(--ease);
}
.site-footer nav a:hover { color: #fff; }

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.25rem;
  font-size: .78rem;
}
.site-footer__contact a { color: rgba(255, 255, 255, .72); text-decoration: none; transition: color .25s var(--ease); }
.site-footer__contact a:hover { color: var(--red-bright); }

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: #fff;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-footer__social:hover { background: var(--red); border-color: var(--red); }
.site-footer__social svg { width: 15px; height: 15px; }

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.site-footer__bar > div {
  width: var(--shell);
  margin-inline: auto;
  padding: .9rem clamp(1.25rem, 4vw, 3.25rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  font-size: .68rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .38);
}
.site-footer__bar a { color: inherit; text-decoration: none; }
.site-footer__bar a:hover { color: rgba(255, 255, 255, .7); }

@media (max-width: 720px) {
  .site-footer__main { flex-direction: column; align-items: flex-start; }
  .site-footer nav { margin-inline-end: 0; }
}

/* ==========================================================================
   Reveal-animaties
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

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

/* ---------- Print ---------- */
@media print {
  .site-header, .nav-panel, .float-cta, .modal, .hero__scroll { display: none !important; }
  body { color: #000; }
}
