/* ==========================================================================
   KEUKENS & WONEN HANS TE WILDT — NL-Landingpage
   Monochromes Editorial-Design (Stil-Adaption von LOCK CONSULTING):
   Schwarz/Weiß, große Oswald-Versalheadlines mit roten Oswald-Akzenten,
   Negativraum, ruhige „teure" Scroll-Bewegung. Kein Rot.
   ========================================================================== */

:root {
  --c-black: #161614;
  --c-white: #ffffff;
  --c-grey: #f4f4f2;
  --c-black-60: #333333;   /* Anthrazit — Fließtext */
  --c-black-40: rgba(22, 22, 20, 0.4);
  --c-black-15: rgba(22, 22, 20, 0.15);
  --c-white-60: rgba(255, 255, 255, 0.6);
  --c-white-40: rgba(255, 255, 255, 0.4);
  --c-white-15: rgba(255, 255, 255, 0.18);

  --c-red: #E30612;        /* Merkrood uit het logo — alleen als subtiel accent */
  --c-red-hover: #c2050f;

  --font-sans: "Open Sans", Arial, sans-serif;            /* Fließtext */
  --font-serif: "Fraunces", Georgia, serif;
  --font-display: "Oswald", "Open Sans", Arial, sans-serif; /* koppen, knoppen, labels */

  --pad-x: clamp(20px, 4.5vw, 72px);
  --pad-sec: clamp(88px, 15vh, 180px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-black);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  /* clip i.p.v. hidden: voorkomt horizontaal scrollen ZONDER een scroll-container
     te maken — anders breekt position:sticky (o.a. de sticky-scene) in Chrome */
  overflow-x: clip;
}

::selection { background: var(--c-red); color: var(--c-white); }
.sec-black ::selection, .hero ::selection { background: var(--c-red); color: var(--c-white); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
em { font-family: var(--font-serif); font-style: italic; font-weight: 420; letter-spacing: -0.01em; color: var(--c-red); }

:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

/* ---------- Grain-Textur ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--c-black);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.loader-logo {
  height: clamp(38px, 5vw, 52px);
  width: auto;
  filter: brightness(0) invert(1); /* dunkler Loader: Logo weiß */
}
.loader-brand {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-white-60);
}
.loader-num {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  font-stretch: 110%;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.loader-line {
  width: clamp(160px, 24vw, 280px);
  height: 1px;
  background: var(--c-white-15);
  overflow: hidden;
}
.loader-line-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- Header (transparent über Hero, weißer Balken nach Scroll) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: clamp(16px, 2.4vh, 26px) var(--pad-x);
  color: var(--c-white);
  /* Inhalt invertiert sich gegen den Hintergrund → immer lesbar (zoals Eurohotel) */
  mix-blend-mode: difference;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.site-header.scrolled {
  /* Zodra de witte balk verschijnt: blend uit, normaal logo + zwarte tekst */
  mix-blend-mode: normal;
  background: var(--c-white);
  color: var(--c-black);
  box-shadow: 0 1px 0 var(--c-black-15), 0 14px 40px rgba(22, 22, 20, 0.06);
  padding-top: clamp(11px, 1.6vh, 16px);
  padding-bottom: clamp(11px, 1.6vh, 16px);
}

.header-claim {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.header-logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.header-logo img {
  height: clamp(24px, 2.4vw, 30px);
  width: auto;
  filter: brightness(0) invert(1); /* über dem dunklen Hero: weiß */
  transition: filter 0.4s var(--ease-out);
}
.site-header.scrolled .header-logo img { filter: none; } /* weißer Balken: echtes Logo met merkkleuren */

.menu-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.menu-toggle-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.menu-toggle-icon { display: flex; flex-direction: column; gap: 5px; width: 26px; }
.menu-toggle-icon i {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--ease-out);
}
.menu-open .menu-toggle-icon i:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-open .menu-toggle-icon i:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* Menü offen: Header transparent über dem dunklen Overlay, Inhalt weiß */
.menu-open .site-header {
  mix-blend-mode: normal;
  background: transparent;
  color: var(--c-white);
  box-shadow: none;
}
.menu-open .site-header .header-logo img { filter: brightness(0) invert(1); }

/* ---------- Fullscreen-Menü ---------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9995;
  background: var(--c-black);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad-x);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.7s var(--ease-out), visibility 0s 0.7s;
}
.menu-open .menu-overlay {
  clip-path: inset(0 0 0% 0);
  visibility: visible;
  transition: clip-path 0.7s var(--ease-out), visibility 0s 0s;
}
.menu-list li { border-bottom: 1px solid var(--c-white-15); }
.menu-list a {
  display: block;
  padding: clamp(0.6rem, 2vh, 1.1rem) 0;
  font-size: clamp(2rem, 7vh, 3.4rem);
  font-weight: 700;
  font-stretch: 112%;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  transition: padding-left 0.35s var(--ease-out), opacity 0.3s;
}
.menu-list a:hover { padding-left: 0.4em; color: var(--c-red); }
.menu-list sup {
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0.1em;
  vertical-align: super;
  margin-right: 1em;
  color: var(--c-red);
}
.menu-footer {
  margin-top: clamp(2rem, 6vh, 4rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-white-60);
}

/* ---------- Buttons & Links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.15em 2em;
  border-radius: 999px;
  border: 1px solid currentColor;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-arrow { color: var(--c-red); transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(0.35em); }

.btn-light { background: var(--c-white); color: var(--c-black); border-color: var(--c-white); }
.btn-light:hover { background: transparent; color: var(--c-white); }

.btn-dark { background: var(--c-black); color: var(--c-white); border-color: var(--c-black); }
.btn-dark:hover { background: transparent; color: var(--c-black); }

.btn-ghost { background: transparent; color: var(--c-white); border-color: var(--c-white-40); }
.btn-ghost:hover { background: var(--c-white); color: var(--c-black); border-color: var(--c-white); }

.btn-red { background: var(--c-red); color: var(--c-white); border-color: var(--c-red); }
.btn-red:hover { background: var(--c-red-hover); border-color: var(--c-red-hover); }
.btn-red .btn-arrow { color: var(--c-white); }

.btn-big { font-size: 0.9rem; padding: 1.3em 2.6em; }

.u-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.3em;
  transition: opacity 0.3s;
}
.u-link:hover { color: var(--c-red); border-bottom-color: var(--c-red); }

/* ---------- Trennpunkt ---------- */
.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-red);
  margin: 0 1em;
  vertical-align: middle;
  opacity: 0.9;
}

/* ---------- Medien / Bilder ---------- */
.media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #e9e9e5;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.9s var(--ease-out);
}
.media:hover img { transform: scale(1.04); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--c-black);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(96px, 13vh, 150px) var(--pad-x) clamp(48px, 8vh, 90px);
}
.hero-meta {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-white-60);
  margin-bottom: clamp(1.2rem, 3vh, 2.4rem);
}
.hero-portrait {
  width: clamp(200px, min(24vw, 38vh), 340px);
  aspect-ratio: 4 / 5;
  flex: none;
}
.hero-portrait .media img { filter: none; }
.hero-headline {
  position: relative;
  z-index: 2;
  margin-top: clamp(1rem, 3vh, 2rem);
  font-weight: 700;
  font-stretch: 112%;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 0.96;
  font-size: clamp(2.8rem, min(12vw, 18vh), 11rem);
}
.h-line { display: block; overflow: hidden; padding-block: 0.04em; }
.h-line-inner { display: block; }
.h-line-serif {
  font-family: var(--font-display);
  font-weight: 400;
  font-stretch: 100%;
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 1.12em;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.h-line-serif em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
}
.hero-headline .h-line-serif em { color: var(--c-red); }
.hero-sub {
  max-width: 58ch;
  margin-top: clamp(1.2rem, 3vh, 2.2rem);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  color: var(--c-white-60);
}
.hero-cta { margin-top: clamp(1.5rem, 3.5vh, 2.6rem); display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-corner {
  position: absolute;
  top: calc(100svh - 56px);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-white-40);
}
.hero-corner-left { left: var(--pad-x); }
.hero-corner-right { right: var(--pad-x); }
.scroll-arrow { display: inline-block; color: var(--c-red); animation: bob 2.2s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--c-black);
  color: var(--c-white);
  border-top: 1px solid var(--c-white-15);
  overflow: hidden;
  padding: clamp(0.9rem, 2vh, 1.4rem) 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.mq {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 600;
  font-stretch: 110%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mq-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-red);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   SEKTIONEN — Grundgerüst
   ========================================================================== */
.sec { padding: var(--pad-sec) var(--pad-x); }
.sec-white { background: var(--c-white); color: var(--c-black); }
.sec-grey { background: var(--c-grey); color: var(--c-black); }
.sec-greyalt { background: #F1F1F0; color: var(--c-black); }
.sec-black { background: var(--c-black); color: var(--c-white); }

.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: 2rem;
  align-items: end;
  padding-top: 1.6rem;
  margin-bottom: clamp(3rem, 8vh, 5.5rem);
}
.sec-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red);
}
.sec-white .sec-label { color: var(--c-white); }
.sec-grey .sec-label { color: var(--c-grey); }
.sec-greyalt .sec-label { color: #F1F1F0; }
.sec-black .sec-label { color: var(--c-black); }
.sec-label-center { text-align: center; margin-bottom: clamp(2rem, 5vh, 3.4rem); }
.sec-title {
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  font-weight: 700;
  font-stretch: 112%;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 1;
}
.sec-title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.035em;
}
.sec-intro {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--c-black-60);
  margin-bottom: clamp(2rem, 5vh, 3rem);
  max-width: 56ch;
}
.sec-black .sec-intro { color: var(--c-white-60); }
.sec-cta { margin-top: clamp(3rem, 7vh, 4.5rem); text-align: center; }

/* ---------- Keukenactie (SIEMENS) ---------- */
.sec-action { background: #F3F3F1; color: var(--c-black); }
.action-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.action-label { color: var(--c-red); margin-bottom: 1.1rem; }
.action-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  font-weight: 700;
  font-stretch: 112%;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 1;
}
.action-title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.035em;
}
.action-sub {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--c-black-60);
  max-width: 46ch;
  margin: 1.4rem 0 2rem;
}
.action-logo { display: flex; justify-content: center; align-items: center; }
.action-logo svg { width: min(300px, 85%); height: auto; }

@media (max-width: 820px) {
  .action-card { grid-template-columns: 1fr; gap: 2.2rem; }
  .action-logo { order: -1; justify-content: flex-start; }
  .action-logo svg { width: min(240px, 70%); }
}

/* Großes Statement mit Wort-Reveal beim Scrollen */
.big-statement {
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  font-weight: 600;
  font-stretch: 108%;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 22em;
}
.big-statement-small { font-size: clamp(1.5rem, 3vw, 2.8rem); }
.big-statement .w { display: inline-block; }

/* ==========================================================================
   ( 01 ) OVER ONS
   ========================================================================== */
.sec-why .big-statement { margin-bottom: clamp(3.5rem, 9vh, 6rem); }
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.why-text { max-width: 56ch; display: grid; gap: 1.4rem; font-size: clamp(1rem, 1.25vw, 1.15rem); color: var(--c-black-60); }
.why-text .pull-quote {
  margin-top: 1rem;
  padding-left: 1.6rem;
  border-left: 2px solid var(--c-red);
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
  line-height: 1.35;
  color: var(--c-black);
}
.why-portrait { max-width: 560px; justify-self: stretch; width: 100%; height: auto; aspect-ratio: auto; }
.why-portrait img { height: auto; } /* volledige teamfoto in liggend formaat, geen uitsnede */
.why-portrait:hover img { transform: scale(1.05); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: clamp(4rem, 10vh, 7rem);
}
.stat { border-top: 1px solid var(--c-black); padding-top: 1.4rem; }
.stat dt {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  font-weight: 700;
  font-stretch: 115%;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat dt sup { font-size: 0.4em; vertical-align: super; font-weight: 600; color: var(--c-red); }
.stat dt .unit { font-size: 0.34em; font-weight: 600; letter-spacing: 0; margin-left: 0.15em; color: var(--c-red); }
.stat dd {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-black-60);
  max-width: 22ch;
}

/* ==========================================================================
   ( 02 ) UW VOORDEEL  (genummerde lijst + slot-statement)
   ========================================================================== */
.reality-list { border-top: 1px solid var(--c-black-15); }
.reality-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: baseline;
  border-bottom: 1px solid var(--c-black-15);
  padding: clamp(1.4rem, 3.5vh, 2.2rem) 0;
}
.reality-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--c-red);
  font-variant-numeric: tabular-nums;
  display: none;
}
.reality-list .r-name {
  font-size: clamp(1.25rem, 2.4vw, 2.1rem);
  font-weight: 600;
  font-stretch: 105%;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}
.reality-list .r-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.55;
  color: var(--c-black-60);
}
.reality-close { margin-top: clamp(3.5rem, 9vh, 6rem); }
.reality-close-sub {
  margin-top: 1.6rem;
  max-width: 50ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--c-black-60);
}

/* ==========================================================================
   STICKY-SZENE
   ========================================================================== */
.sticky-scene {
  position: relative;
  height: 320vh;
  background: #575756;
  color: var(--c-white);
}
.sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1em;
  overflow: hidden;
  text-align: center;
  padding: 0 var(--pad-x);
}
.sticky-word {
  font-size: clamp(3rem, 12vw, 12rem);
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.sticky-word-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-white);
}
.sticky-word-serif {
  font-family: var(--font-display);
  font-weight: 400;
  font-stretch: 100%;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--c-red);
}
.sticky-word-serif em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--c-red);
}

/* ==========================================================================
   ( 03 ) MERKEN  (donkere logo-grid)
   ========================================================================== */
.sec-brands,
.sec-brands .brand-cell {
  background: #575756;
}

.sec-brands .sec-label {
  color: #575756;
}
.sec-brands .sec-title em {
  color: #000000;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.5rem, 1.25vw, 1.25rem) clamp(0.5rem, 1.5vw, 1.5rem);
  max-width: 960px;
  margin-inline: auto;
  background: transparent;
  border: 0;
}
.brand-cell {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.8rem, 1.75vh, 1.3rem) 0.5rem;
  min-height: 84px;
}
.brand-cell img {
  width: 100%;
  max-width: 240px;
  height: 92px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
/* Elementa heeft al een groot logo (met claim) — op huidige maat houden */
.brand-cell img[src*="elementa"] {
  max-width: 150px;
  height: 58px;
}
.brand-cell:hover img { opacity: 1; transform: scale(1.05); }

/* ==========================================================================
   ( 04 ) SHOWROOM  (editorial galerij)
   ========================================================================== */
.gallery {
  columns: 3;
  column-gap: clamp(0.8rem, 1.5vw, 1.4rem);
}
.gallery figure {
  position: relative;
  margin: 0 0 clamp(0.8rem, 1.5vw, 1.4rem);
  break-inside: avoid;
  overflow: hidden;
  background: #e9e9e5;
}
.gallery img {
  width: 100%;
  height: auto;
  filter: none;
  transition: transform 0.9s var(--ease-out);
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.1rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   ( 05 ) ROUTE & LOCATIE
   ========================================================================== */
.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.method-text { display: grid; gap: 1.4rem; max-width: 56ch; font-size: clamp(1rem, 1.25vw, 1.15rem); color: var(--c-black-60); }
.route-facts { display: grid; border-top: 1px solid var(--c-black-15); margin-top: 0.6rem; }
.route-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-black-15);
}
.route-facts .k {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-black-40);
}
.route-facts .v { font-weight: 600; text-align: right; color: var(--c-black); }
.route-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.6rem; }
.map-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--c-black-15);
  min-height: 460px;
  background: var(--c-grey);
}
.map-frame #map {
  width: 100%;
  height: 100%;
  min-height: 460px;
  background: var(--c-grey);
}
.map-frame .leaflet-tile-pane { filter: none; }
.tw-pin { filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.35)); }
.tw-pin svg { display: block; width: 100%; height: 100%; }

/* ==========================================================================
   ( 06 ) AANSPREEKPUNT (team / contactpersonen)
   ========================================================================== */
.team-grid {
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1.1rem, 2vw, 2rem);
}
.team-card { display: flex; flex-direction: column; }
.team-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  /* geen achtergrond: vrijstaande portretten staan direct op de witte sectie.
     De placeholder houdt zijn grijs (zit in het SVG-bestand zelf). */
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.9s var(--ease-out);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-card figcaption { padding-top: clamp(0.9rem, 1.6vw, 1.2rem); }
.team-name {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.1;
  color: var(--c-black);
}
.team-role {
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--c-red);
}
.team-contact {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.25rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--c-black-60);
  word-break: break-word;
}
.team-contact a { color: var(--c-black-60); transition: color 0.25s; }
.team-contact a:hover { color: var(--c-red); }

@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px)  { .team-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; } }

/* ==========================================================================
   ( 07 ) CONTACT
   ========================================================================== */
.sec-contact .contact-headline {
  font-size: clamp(2.4rem, 7.4vw, 7rem);
  font-weight: 700;
  font-stretch: 112%;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-align: center;
}
.contact-sub {
  max-width: 56ch;
  margin: clamp(2rem, 5vh, 3rem) auto 0;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--c-black-60);
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: clamp(3.5rem, 9vh, 6rem);
  border-top: 1px solid var(--c-black-15);
  padding-top: clamp(2.5rem, 6vh, 4rem);
}
.info-list { display: grid; gap: 0.9rem; align-content: start; }
.info-list .lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-black-40);
  margin-bottom: 0.35rem;
}
.info-list .val { font-size: 1.05rem; font-weight: 500; line-height: 1.45; }
.info-list .val a { border-bottom: 1px solid var(--c-black-15); transition: border-color 0.3s, color 0.3s; }
.info-list .val a:hover { border-color: var(--c-red); color: var(--c-red); }
.contact-qr {
  display: inline-block;
  margin-top: 0.1rem;
  line-height: 0;
}
.contact-qr img {
  width: clamp(130px, 11.25vw, 165px);
  height: auto;
  display: block;
}

/* Formular (editorial, monochrom) */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 1.4rem; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-black-60);
  margin-bottom: 0.5rem;
}
.field label .req { color: var(--c-red); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--c-black);
  background: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--c-black-15);
  padding: 0.7rem 0;
  height: 2.9rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.3s;
}
.field textarea { height: auto; }
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--c-black-40); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--c-red); }
.field select {
  cursor: pointer;
  padding-right: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23161614' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  background-size: 12px 8px;
}
.form-foot { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start; }
.form-note { font-size: 0.8rem; color: var(--c-black-40); line-height: 1.6; }
.form-note a { border-bottom: 1px solid currentColor; }
.form-success {
  display: none;
  border: 1px solid var(--c-black-15);
  border-left: 3px solid var(--c-red);
  padding: 1.3rem 1.4rem;
  margin-bottom: 1.4rem;
}
.form-success.show { display: block; }
.form-success strong {
  display: block;
  font-weight: 700;
  font-stretch: 110%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.form-success p { margin: 0; font-size: 0.92rem; color: var(--c-black-60); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #B2B2B2;
  color: var(--c-black);
  padding: var(--pad-sec) var(--pad-x) clamp(24px, 4vh, 40px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 8vh, 5.5rem);
}
.footer-brand img { height: 34px; filter: none; margin-bottom: 1.3rem; }
.footer-brand p { font-size: 0.95rem; max-width: 32ch; line-height: 1.6; color: rgba(22, 22, 20, 0.72); }
.footer-col { display: grid; gap: 0.65rem; align-content: start; justify-items: start; }
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(22, 22, 20, 0.56);
  margin-bottom: 0.8rem;
}
.footer-col a, .footer-col li {
  font-size: 0.95rem;
  color: rgba(22, 22, 20, 0.72);
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--c-red); padding-left: 0.4em; }
/* Openingstijden — dag links, tijd rechts; de huidige (geopende) regel in rood */
.hours { display: grid; gap: 0.35rem; }
.hours li { display: flex; justify-content: space-between; gap: 1.4rem; }
.hours .hours-time { color: rgba(22, 22, 20, 0.56); white-space: nowrap; }
#openingHours li.is-open,
#openingHours li.is-open .hours-day,
#openingHours li.is-open .hours-time { color: var(--c-red); }
#openingHours li.is-open { font-weight: 600; }
.footer-claim { margin-top: 1.6rem; font-size: 1.15rem; color: var(--c-black); }
.footer-claim em { color: var(--c-red); }

.footer-giant {
  border-top: 1px solid var(--c-black-15);
  margin-inline: calc(-1 * var(--pad-x));
  padding-top: clamp(2rem, 5vh, 3.5rem);
  text-align: center;
  font-weight: 800;
  font-stretch: 118%;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  /* "HANS TE WILDT" op één regel — iets rustiger (~72% breedte), met marge links/rechts */
  font-size: clamp(1.4rem, 13.5vw, 15rem);
  user-select: none;
}
.footer-giant-line { display: block; overflow: hidden; white-space: nowrap; }
.footer-giant .gl { display: inline-block; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vh, 4rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--c-black-15);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: rgba(22, 22, 20, 0.56);
}
.footer-powered a { transition: color 0.3s; }
.footer-powered a:hover { color: var(--c-red); }

/* ---------- Schwebender CTA ---------- */
.floating-cta {
  position: fixed;
  right: clamp(20px, 3vw, 40px);
  bottom: clamp(20px, 3.5vh, 36px);
  z-index: 9980;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: var(--c-red);
  color: var(--c-white);
  border: 1px solid var(--c-red);
  border-radius: 999px;
  padding: 1em 1.7em;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(227, 6, 18, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.45s, transform 0.45s var(--ease-out), visibility 0s 0.45s, background 0.3s, color 0.3s;
}
.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.45s, transform 0.45s var(--ease-out), visibility 0s 0s, background 0.3s, color 0.3s;
}
.floating-cta:hover { background: var(--c-red-hover); border-color: var(--c-red-hover); color: var(--c-white); }
.floating-cta .btn-arrow { color: var(--c-white); }

/* ---------- Modals (Impressum / Privacyverklaring) ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  padding: clamp(1rem, 4vh, 3rem) var(--pad-x);
}
.modal.open { display: flex; align-items: flex-start; justify-content: center; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 20, 0.72);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  color: var(--c-black);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.6rem);
  border-bottom: 1px solid var(--c-black-15);
}
.modal-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-stretch: 112%;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
}
.modal-close {
  flex: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--c-black-15);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--c-black);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.modal-close:hover { background: var(--c-red); color: var(--c-white); border-color: var(--c-red); }
.modal-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-black-60);
}
.modal-body h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--c-black);
  margin: 1.7rem 0 0.5rem;
}
.modal-body p { margin: 0 0 0.9rem; }
.modal-body a { color: var(--c-red); border-bottom: 1px solid currentColor; }
.modal-body strong { color: var(--c-black); }
.modal-body .legal-note { margin-top: 1.6rem; font-size: 0.8rem; color: var(--c-black-40); }

.legal-dl { display: grid; gap: 0; margin-bottom: 0.6rem; }
.legal-dl > div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--c-black-15);
}
.legal-dl dt {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--c-black-40);
}
.legal-dl dd { margin: 0; font-weight: 500; color: var(--c-black); }

body.modal-active { overflow: hidden; }

@media (max-width: 600px) {
  .legal-dl > div { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ---------- Modal-voet (cookie-instellingen) ---------- */
.modal-foot {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  padding: clamp(1.1rem, 2.4vw, 1.6rem) clamp(1.4rem, 3vw, 2.6rem);
  border-top: 1px solid var(--c-black-15);
}
.cookie-foot-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-black);
  border-bottom: 1px solid var(--c-black-15);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.cookie-foot-link:hover { color: var(--c-red); border-color: var(--c-red); }
.cookie-foot-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-foot-actions .btn { font-size: 0.68rem; padding: 0.95em 1.5em; }

/* Cookie-modal onder de juridische modals, zodat de privacyverklaring erover komt */
.cookie-modal { z-index: 10045; }

/* ---------- Cookie-categorieën ---------- */
.cookie-cats { margin-top: 1.6rem; display: grid; gap: 0; }
.cookie-cat { padding: 1.1rem 0; border-top: 1px solid var(--c-black-15); }
.cookie-cat:last-child { border-bottom: 1px solid var(--c-black-15); }
.cookie-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.cookie-cat-name {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  color: var(--c-black);
}
.cookie-cat p { margin: 0; font-size: 0.86rem; line-height: 1.6; color: var(--c-black-60); }

/* Toggle-schakelaar */
.cookie-switch { position: relative; flex: none; display: inline-flex; cursor: pointer; }
.cookie-switch input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.cookie-switch-track {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: var(--c-black-15);
  transition: background 0.3s var(--ease-out);
}
.cookie-switch-track i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease-out);
}
.cookie-switch input:checked + .cookie-switch-track { background: var(--c-red); }
.cookie-switch input:checked + .cookie-switch-track i { transform: translateX(20px); }
.cookie-switch input:focus-visible + .cookie-switch-track { outline: 2px solid var(--c-red); outline-offset: 2px; }
.cookie-switch.is-locked { cursor: not-allowed; }
.cookie-switch.is-locked input { cursor: not-allowed; }
.cookie-switch.is-locked .cookie-switch-track { background: var(--c-black-40); }

/* ---------- Cookie-banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10020;
  background: #585958;
  color: var(--c-white);
  box-shadow: 0 -14px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(110%);
  transition: transform 0.6s var(--ease-out);
}
.cookie-banner[hidden] { display: block; }
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1.2rem, 3vh, 1.8rem) var(--pad-x);
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
}
.cookie-banner-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-stretch: 112%;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.cookie-banner-text p { font-size: 0.88rem; line-height: 1.6; color: var(--c-white); margin: 0; }
.cookie-banner-text a { color: var(--c-white); border-bottom: 1px solid var(--c-white-40); }
.cookie-banner-text a:hover { color: var(--c-red); border-color: var(--c-red); }
.cookie-banner-actions { flex: none; display: flex; gap: 0.7rem; }
.cookie-banner-actions .btn { font-size: 0.7rem; padding: 1em 1.7em; white-space: nowrap; }

@media (max-width: 760px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-actions .btn { justify-content: center; }
  .cookie-foot { flex-direction: column; align-items: stretch; }
  .cookie-foot-actions { flex-direction: column; }
  .cookie-foot-actions .btn { justify-content: center; }
}

/* ---------- Mobile sticky CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--c-white);
  border-top: 1px solid var(--c-black-15);
  padding: 0.7rem 0.9rem;
  gap: 0.7rem;
}
.sticky-cta .btn { flex: 1; justify-content: center; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .sec-head { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
  .why-grid, .method-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-portrait { justify-self: start; max-width: 340px; }
  .map-frame { order: -1; }
  .reality-list li {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }
  .gallery { columns: 2; }
}

@media (max-width: 820px) {
  .floating-cta { display: none; }
  .header-claim { display: none; }
  .sticky-cta { display: flex; }
  /* ruimte voor de vaste mobiele CTA (≈74px) + veilige zone onderin (iPhone home-indicator) */
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr; gap: 2rem; }
  .hero-corner { display: none; }
  .hero-portrait { width: min(62vw, 280px); }
  .hero-headline { margin-top: 1rem; }
  .footer-top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 1; }
}

/* ---------- Heel smalle telefoons (≤380px): iets compacter ---------- */
@media (max-width: 380px) {
  .menu-toggle-label { display: none; }            /* alleen het icoon, voorkomt krap header */
  .sticky-cta .btn { font-size: 0.72rem; padding: 1.05em 1rem; letter-spacing: 0.1em; }
  .cookie-banner-actions .btn { font-size: 0.66rem; }
}

/* ---------- Liggend op telefoons (lage hoogte): hero compacter ---------- */
@media (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; padding-top: clamp(78px, 22vh, 110px); padding-bottom: 2.4rem; }
  .hero-portrait { width: clamp(140px, 30vh, 220px); }
  .hero-headline { margin-top: 0.6rem; font-size: clamp(2rem, 8.5vh, 3.4rem); }
  .hero-corner { display: none; }
}

/* ---------- Veilige zones: notch & home-indicator (iPhone X en nieuwer) ---------- */
@supports (padding: max(0px, env(safe-area-inset-left))) {
  .site-header {
    padding-left: max(var(--pad-x), env(safe-area-inset-left));
    padding-right: max(var(--pad-x), env(safe-area-inset-right));
  }
  .sticky-cta {
    padding-left: max(0.9rem, env(safe-area-inset-left));
    padding-right: max(0.9rem, env(safe-area-inset-right));
    padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
  }
  .cookie-banner-inner { padding-bottom: max(clamp(1.2rem, 3vh, 1.8rem), env(safe-area-inset-bottom)); }
  .floating-cta { margin-bottom: env(safe-area-inset-bottom, 0px); }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .scroll-arrow { animation: none; }
  .sticky-scene { height: auto; padding: var(--pad-sec) 0; }
  .sticky-stage { position: static; height: auto; padding-block: 2rem; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   DISPLAY-LETTERTYPE — Oswald (koppen, knoppen, labels)
   Flietekst, formulieren e.d. blijven Archivo (var(--font-sans)) voor leesbaarheid.
   Serif-accenten (Fraunces, bv. "thuis."/"gemak.") behouden hun eigen font.
   ========================================================================== */
.loader-brand, .loader-num,
.header-claim, .menu-toggle-label, .menu-list a,
.btn, .u-link, .cookie-foot-link,
.hero-meta, .hero-headline, .mq,
.sec-label, .sec-title, .big-statement,
.stat dt, .stat dd, .reality-num, .reality-list .r-name,
.sticky-word, .gallery figcaption, .route-facts .k,
.contact-headline, .info-list .lbl,
.footer-col-title, .footer-claim, .footer-giant,
.modal-title, .modal-body h3, .cookie-cat-name, .cookie-banner-title, .legal-dl dt {
  font-family: var(--font-display);
}

/* Grote koppen in Oswald Regular (zoals gevraagd) */
.hero-headline, .sec-title, .contact-headline, .sticky-word,
.footer-giant, .big-statement, .stat dt, .menu-list a, .loader-num {
  font-weight: 400;
}
