/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
/* Work Sans — lokaal gehost (variabel font 100–900), niet meer render-blocking via Google */
/* latin */
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work-sans-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: optional;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work-sans-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: optional;
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin — italic */
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work-sans-italic-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: optional;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* latin-ext — italic */
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work-sans-italic-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: optional;
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Ws Paradose";
  src:
    url("../fonts/ws-paradose.woff2") format("woff2"),
    url("../fonts/ws-paradose.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: optional;
}

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Google Font */
  --work-sans: "Work Sans", sans-serif;
  --ws-paradose: "Ws Paradose", serif;

  /* Color Palette */
  --white: #fff;
  --black: #000;
  --primary: #e3a700;
  --dark: #1e1e1e;
  --gray: #d9c99c;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #d9c99c;
  font-size: 16px;
  font-family: var(--work-sans);
  font-weight: 400;
  line-height: 24px;
  background-color: var(--black);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ws-paradose);
  color: var(--primary);
  font-weight: normal;
}

section,
.section {
  position: relative;
}

a,
button {
  outline: none;
  box-shadow: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

button {
  padding: 0;
  border: none;
  background: unset;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ol li,
ul li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
  outline: none;
  box-shadow: none;
}

* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

/* =============================== */
/* :: 4.0 Common CSS */
/* =============================== */

/* ===== Typography CSS Start ===== */
.fs-1 {
  letter-spacing: 0.05em !important;
  line-height: 1 !important;
}

.fs-2 {
  letter-spacing: 0.05em !important;
}

.text-lg {
  font-size: 20px;
  line-height: 32px;
}

.text-md {
  font-size: 18px;
  line-height: 28px;
}

.text-base {
  font-size: 16px;
  line-height: 24px;
}

.text-sm {
  font-size: 14px;
  line-height: 22px;
}

.text-xs {
  font-size: 12px;
  line-height: 20px;
}

.commone-pretitle {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.1;
}

.ff-ws-paradose {
  font-family: var(--ws-paradose) !important;
}

.ff-work-sans {
  font-family: var(--work-sans) !important;
}

/* ===== Typography CSS End ===== */

/* ===== Color CSS Start ===== */
.text-primary {
  color: var(--primary) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

/* ===== Color CSS End ===== */

/* ===== Button CSS Start ===== */
.btn {
  height: 40px;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-family: var(--work-sans);
  font-weight: 400;
  border: 1px solid transparent;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-main {
  color: var(--black);
  background-color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-main:hover {
  color: var(--black);
  background-color: #ffbb00;
  border: 1px solid #ffbb00;
}

.btn-main-outline {
  color: var(--primary);
  background-color: transparent;
  border: 1px solid var(--primary);
}

.btn-main-outline:hover svg path {
  fill: #000;
}

.btn-main-outline:hover {
  color: var(--black);
  background-color: var(--primary);
}

.btn-light {
  background-color: #fff;
  color: #000;
  border-color: #000;
}

/* btn-animation */
.text-container {
  position: relative;
  display: flex;
  overflow: hidden;
}

.text-original,
.text-hover {
  display: flex;
  white-space: pre;
  /* Text structure thik rakhbe */
}

.text-hover {
  position: absolute;
  top: 0;
  left: 0;
}

.char {
  display: inline-block;
  /* GEEN permanente will-change hier. Dat promootte alle 215+ .char-spans naar
     een eigen GPU-laag (laag-explosie, vooral zwaar op mobiel). De wave-button-
     animatie speelt enkel op mouseenter; script.js zet will-change daarom JIT
     op de paar chars van de gehoverde knop en haalt 'm na afloop weer weg. */
}

/* Button Animation */

/* ===== Button CSS End ===== */

/* ===== CSS for Random Componetns/Classes Start ===== */

/* ===== CSS for Random Componetns/Classes End ===== */

/* =============================== */
/* :: 5.0 Header Area CSS Start */
/* =============================== */

.header {
  width: 100%;
  height: auto;
  z-index: 300;
  padding: 50px 0px;
  background: transparent;
  transition:
    background 0.3s ease,
    padding 0.3s ease;
}

.header--absolute {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.header__wrapper {
  max-width: 1224px;
  padding: 0px 24px;
  width: 100%;
  margin: 0 auto;
}

.header__logo {
  max-width: 182px;
  height: 32px;
  position: relative;
  display: block;
  width: 100%;
}

.logo__main {
  display: block;
  line-height: 0;
}

.header__logo a img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  max-height: 100%;
  object-fit: contain;
}

.logo__main img {
  max-width: 182px;
  width: 100%;
}

.logo__sm {
  max-width: 60px;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
}

/* =============================== */
/* :: 5.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Hero Section CSS Start */
/* =============================== */
.hero--section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__vector {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.hero__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__content {
  max-width: 374px;
  width: 100%;
  position: relative;
  margin: 0 0 0 auto;
}

.hero__thumb__image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 75%;
}

.sectionIndicator {
  width: 48px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

.sectionIndicator span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  will-change: transform, opacity;
  animation: scrollDownFix 1.4s linear infinite;
}

@keyframes scrollDownFix {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* Mobiele hero pan-zoom (Ken Burns) + fade-in.
   Toegepast op .hero__thumb__image binnen @media (max-width: 991px). */
@keyframes heroFadeIn {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 1;
  }
}

/* Eenmalige entrance op de container: zoomt iets in en zakt naar rust.
   Staat op .hero__thumb (niet op de image) zodat hij niet vecht met de
   doorlopende heroPanZoom-transform op de image; de transforms vermenigvuldigen.
   Schaal blijft >= 1, dus volledige screencoverage blijft behouden. */
@keyframes heroIntroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

/* Meer scale, minder fade. Schaal blijft altijd >= 1.06 en de pan (translateX)
   blijft binnen de overscan, zodat de afbeelding op elk moment van de loop het
   volledige scherm blijft bedekken (geen randen zichtbaar). */
@keyframes heroPanZoom {
  0% {
    transform: scale(1.06) translateX(-1.5%);
  }
  100% {
    transform: scale(1.18) translateX(1.5%);
  }
}

/* Respecteer gebruikers die minder beweging willen: enkel de fade, geen zoom. */
@media (prefers-reduced-motion: reduce) {
  .hero--section:not(.hero--about) .hero__thumb {
    animation: none !important;
  }
  .hero--section:not(.hero--about) .hero__thumb__image {
    animation: heroFadeIn 1.6s ease-out both !important;
  }
}

/* =============================== */
/* :: 6.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Gallery-section CSS Start */
/* =============================== */

.gallery--section {
  min-height: 100vh;
  padding: 100px 0px 0px;
  overflow: hidden;
}

.gallery__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 140px;
  overflow-x: visible;
  width: max-content;
  will-change: transform;
  position: relative;
  transform: translateX(60vw);
  padding-right: 40px;
}

.gallery__column {
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
}

/* Beeld-kolommen een VASTE breedte geven zodat de horizontale scroll-afstand
   (galleryWrapper.scrollWidth) niet verandert zodra de lazy-loaded beelden
   binnenkomen. Met width:100% in een width:max-content flex-container valt de
   kolombreedte terug op de intrinsieke inhoud: vóór het laden = titel-tekst
   (~200px), ná het laden = beeldbreedte (capped op max-width). Die sprong
   tijdens de EERSTE scrub liet ScrollTrigger midden in de beweging hermeten ->
   de sectie "snapte"/versprong. Bij terugscrollen waren de beelden al geladen,
   vandaar dat het dan wél soepel ging. De max-width per breakpoint capt deze
   400px vanzelf naar de juiste waarde (350/345/310px). Swiper-kolommen krijgen
   hun breedte al van Swiper en blijven hierbuiten. */
.gallery__column:not(:has(.swiper)) {
  width: 400px;
}

.spaceTop {
  margin-bottom: 50px;
}

.spaceTop-md {
  margin-top: 100px;
}

.spaceTop-lg {
  margin-top: 150px;
}

.spaceTop-xl {
  margin-top: 220px;
}

.gallery__content-end {
  margin: 0 0 0 auto;
}

.gallery__content {
  max-width: 262px;
  width: 100%;
  margin-bottom: 80px;
}

.gallery__card {
  /* GEEN backdrop-filter hier. Deze kaarten zitten in .gallery__wrapper die bij
     het pinnen elk scroll-frame horizontaal scrubt, met daarachter een
     afspelende achtergrondvideo. Een backdrop-filter zou die video per kaart
     élk frame opnieuw moeten blurren én verhindert dat de wrapper als één
     goedkope GPU-laag verschuift -> dat was de zware scroll-jank ("schokken").
     De blur was op deze donkere, semi-transparante kaart toch nauwelijks
     zichtbaar; een iets dekkendere achtergrond vervangt 'm (zelfde keuze als
     op touch, zie responsive.css). */
  background: #000000d9;
  border-radius: 24px;
  padding: 16px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery__card-md {
  max-width: 303px;
  margin: 0 auto;
}

.gallery__card-title {
  line-height: 32px;
  font-weight: normal;
  margin-bottom: 8px;
  display: block;
}

.gallery__card-img {
  border-radius: 4px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow: hidden;
  display: block;
}

.gallery__card-img img {
  width: 100%;
  height: 362px;
  border-radius: 4px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.gallery__card-img-lg img {
  width: 100%;
  height: 490px;
  border-radius: 4px;
}

.swiper-navigation {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  width: 100%;
  transform: translateY(-50%);
  height: 20px;
}

.swiper-navigation div {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 9px;
  box-shadow: 0px 2px 4px #00000073;
}

.swiper-navigation div:last-child {
  left: auto;
  right: 8px;
}

.swiper-navigation {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  width: 100%;
  transform: translateY(-50%);
  height: 20px;
}

.swiper-navigation div {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 9px;
  color: #ccc;
  box-shadow: 0px 2px 4px #00000073;
}

.swiper-navigation div:last-child {
  left: auto;
  right: 8px;
}

.swiper-pagination.g-swiper-pagination {
  bottom: 2px;
}

.swiper-pagination.g-swiper-pagination span {
  height: 6px;
  width: 6px;
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination.g-swiper-pagination span.swiper-pagination-bullet-active {
  opacity: 1;
}

.gallery__card-profile {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 8px;
  z-index: 2;
}

.gallery__card-profile span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00000099;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

/* Background Video Engineering */

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: -1;
  will-change: transform;
}

.topContent {
  position: relative;
  z-index: 1;
}

.videobg__gallery .bg-video {
  width: 100%;
  left: auto;
  right: 0%;
  top: -10%;
}

.videobg.videobg__gallery::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 86%;
  content: "";
  background: linear-gradient(to top, black, transparent);
}

/* =============================== */
/* :: 7.0 Gallery-section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Racing section CSS Start */
/* =============================== */
.racing--section {
  padding: 100px 0px 0px;
  overflow: hidden;
}

.videobg__racing .bg-video {
  top: 29%;
  left: 12vw;
  object-fit: cover;
}

.racing__wrapper {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.racing__content {
  flex-shrink: 0;
  max-width: 455px;
  padding-top: 10px;
}

.racing__thumbnail {
  flex-grow: 1;
  text-align: center;
}

.racing__thumbnail img {
  display: inline-block;
  max-width: 100%;
}

/* =============================== */
/* :: 8.0 Racing section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Video Section CSS Start */
/* =============================== */

.video__wrapper {
  width: 100%;
  height: 740px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.videoPlay-btn {
  width: 72px;
  height: 56px;
  border-radius: 12px;
  background-color: #000;
  border: 1px solid #e3a700;
}

.lg-backdrop {
  background-color: var(--primary);
}

.lg-backdrop.in {
  opacity: 0.25;
}

/* =============================== */
/* :: 9.0 Video Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Quote Section CSS Start */
/* =============================== */
.quote--section {
  padding-top: 28px;
}

.quote__wrapper {
  max-width: 1340px;
}

.quote__thumb {
  height: 100%;
}

.quote__content {
  padding: 114px 0 78px;
}

.quote__box {
  max-width: 368px;
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.quote__title {
  letter-spacing: 0 !important;
}

.quote__thumb__img {
  height: 100%;
  width: auto;
}

.quote__lightspeed__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* =============================== */
/* :: 10.0 Quote Section CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 Working Section CSS Start */
/* =============================== */
.working--section {
  padding: 160px 0;
}

.working--section .section__head {
  max-width: 514px;
}

/* =============================== */
/* :: 11.0 Working Section CSS End */
/* =============================== */

/* =============================== */
/* :: Footer Area CSS Start */
/* =============================== */
.footer__wrapper {
  max-width: 1156px;
}

.footer__top {
  padding: 80px 0 72px;
}

.logo--footer {
  max-width: 182px;
  width: 100%;
}

.footer__widget__title {
  font-size: 11px;
  letter-spacing: 2px;
}

.nav__link--footer,
.footer__text__link {
  color: var(--gray);
  transition: all 0.3s ease-in-out;
}

.nav__link--footer:hover,
.footer__text__link:hover {
  color: var(--primary);
}

.footer__bottom__inner {
  padding: 32px 0 70px;
  border-top: 1px solid var(--gray);
}

/* =============================== */
/* :: Footer Area CSS End */
/* =============================== */

/* =============================== */
/* :: Coatching Section Area CSS Start */
/* =============================== */

.coatching--section {
  padding: 130px 0px 88px;
}

.coatching__content {
  max-width: 455px;
  margin: 0 auto;
}

.coatching__feature span.line {
  width: 24px;
  height: 2px;
  background: var(--primary);
  display: block;
  margin-bottom: 9px;
}

.coatching__heading {
  margin-bottom: 24px;
}

.coatching__feature p {
  font-size: 13px;
  line-height: 1.6;
}

.coatching__videoBg.videobg .bg-video {
  right: 0;
  bottom: 0;
  width: 40vw;
  height: 42vh;
  left: auto;
  top: auto;
}

.coatching__profile {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24vw;
  height: auto;
}

.coatching__profile .bg-video {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}

.coatching__profile img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.coatching__profile::after {
  position: absolute;
  width: 50%;
  height: 100%;
  content: "";
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* =============================== */
/* :: Coatching Section Area CSS End */
/* =============================== */

/* =============================== */
/* :: Sponsor Section Area CSS Start */
/* =============================== */

.sponsor--section {
  position: relative;
  background: var(--primary);
  padding: 84px 0px 80px;
}

.sponsor__title {
  margin-bottom: 50px;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0px 0;
  cursor: pointer;
  display: flex;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 80px;
}

.marquee-item {
  background: #e3a700;
}

.marquee-item img {
  max-width: 200px;
  height: auto;
  width: 250px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* =============================== */
/* :: Sponsor Section Area CSS End */
/* =============================== */

/* =============================== */
/* :: Partner Section Area CSS Start */
/* =============================== */
.partner-section {
  padding-top: 17vh;
}

.partner__content {
  display: flex;
  align-items: center;
  gap: 8vw;
}

.partner__content-inner {
  max-width: 457px;
  flex-shrink: 0;
}

.partner__content-thumbnail {
  position: relative;
  width: 45vw;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-shrink: 0;
}

.partner__content-thumbnail::after {
  position: absolute;
  width: 50%;
  height: 100%;
  content: "";
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  right: 0;
  bottom: 0;
  z-index: 1;
}

.layer-img {
  position: absolute;
  height: 100%;
  object-fit: contain;
  bottom: 0;
}

.light-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  mix-blend-mode: screen;
  pointer-events: none;
}

.driver-shadow {
  z-index: 2;
  opacity: 0.8;
  transform: scale(1.02);
  filter: blur(8px);
}

.driver-main {
  position: relative;
  z-index: 3;
}

/* =============================== */
/* :: Partner Section Area CSS End */
/* =============================== */

/* =============================== */
/* :: Testimonial Section Area CSS Start */
/* =============================== */

.testimonial--section {
  padding: 15vh 0;
  min-height: 100vh;
}

.testimonial__slides {
  display: flex;
  width: max-content;
  gap: 10px;
  transform: translateX(40vw);
}

.testimonial__header {
  padding-bottom: 10vh;
}

.testimonial__slideItem {
  width: 35vw;
  /* De box bepaalt de verhouding (en dus de hoogte). Alle slides krijgen zo
     dezelfde hoogte; de --sm variant is alleen smaller, niet lager. */
  aspect-ratio: 4 / 3;
  position: relative;
  cursor: pointer;
  /* Donkere placeholder achter de img: zolang die nog niet geladen is zie je
     deze nette box i.p.v. een kaal/zwart of broken-image vlak. */
  background-color: #16181b;
  border-radius: 8px;
}

/* Add this */
.testimonial__slideItem--sm {
  width: 21vw;
}

.testimonial__slideItem img {
  /* Vult altijd de volledige slidebox (bijsnijden i.p.v. uitrekken), zodat
     elk beeld even groot is en het hele vlak coveren — ongeacht de
     beeldverhouding of de --sm/standaard breedte. */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  /* Niet-actieve slides staan gedimd zichtbaar; de actieve/hover-slide licht
     op. Geen lazy-load meer -> beelden zijn meteen zichtbaar (geen .is-loaded). */
  opacity: 0.4;
  transition:
    opacity 0.6s ease,
    box-shadow 0.5s ease;
}

/* .is-active wordt door de scroll gezet (slide het dichtst bij het midden),
   :hover blijft werken op desktop. Beide krijgen dezelfde smooth highlight. */
.testimonial__slideItem.is-active img,
.testimonial__slideItem:hover img {
  opacity: 1;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

/* =============================== */
/* :: Testimonial Section Area CSS End */
/* =============================== */

/* =============================== */
/* :: Commone Hero Section Section Area CSS Start */
/* =============================== */
.hero__thubmail {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-left: 5vw;
  overflow: hidden;
}

.hero__thubmail img {
  width: 25vw;
  height: auto;
}

.hero__thubmail .bg-video {
  left: 0;
  top: 36vh;
}

.hero--commone .hero__content {
  margin: 0 0 0 19vw;
  max-width: 374px;
}

/* =============================== */
/* :: Commone Hero Section Section Area CSS End */
/* =============================== */

/* =============================== */
/* :: Counter Section Area CSS Start */
/* =============================== */
.counter--section {
  padding-top: 10vh;
}

.counter__wrapper {
  max-width: 1030px;
  margin: 0 auto;
  width: 100%;
}

.counter-item h2 {
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* achtervoegsel (bv. "+") dat Odometer niet wegstript */
.counter[data-suffix] {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}
.counter[data-suffix]::after {
  content: attr(data-suffix);
}

/* =============================== */
/* :: Counter Section Area CSS End */
/* =============================== */

/* =============================== */
/* :: Timeline Section Area CSS Start */
/* =============================== */
.timeline--section {
  padding: 11vh 0 10vh;
}

.timeline-section__header {
  margin-bottom: 6vh;
}

.timeline__track {
  max-width: 1030px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 6;
}

/* Centrale verticale lijn */
.timeline__track::after {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--primary);
  content: "";
  top: 0;
  margin-left: -1px;
}

.timeline__row {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 28px;
}

.timeline__row:last-child {
  margin-bottom: 0;
}

.timeline__row--left {
  left: 0;
  padding-right: 40px;
  text-align: right;
}

.timeline__row--right {
  left: 50%;
  padding-left: 40px;
  text-align: left;
}

/* Stip op de centrale lijn */
.timeline__row::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--primary);
  z-index: 2;
}

.timeline__row--left::after {
  right: -7px;
}

.timeline__row--right::after {
  left: -7px;
}

.timeline__card {
  position: relative;
  padding: 20px 24px;
  background: #25252599;
  backdrop-filter: blur(4px);
  border: 1px solid #ffffff24;
  border-radius: 24px;
  transition: all 0.4s ease;
}

/* Afbeelding boven in elke tijdlijn-kaart */
.timeline__card-thumb {
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
}

.timeline__card-thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.timeline__card-year {
  font-size: 20px;
}

/* =============================== */
/* :: Timeline Section Area CSS End */
/* =============================== */

/* =============================== */
/* :: about.html Page CSS Start */
/* =============================== */

/* ----- Hero Section Start */
.mh-inherit {
  min-height: inherit;
}

.breadcrumb-item,
.breadcrumb-item.active,
.breadcrumb-item a,
.breadcrumb-item.active a,
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero--about .hero__thumb__image {
  height: 75%;
  width: auto;
  margin-right: 48px;
}

.hero__about__content {
  max-width: 362px;
  width: 100%;
  margin-left: 100px;
  padding-bottom: 100px;
}

.light-video--aboutHero {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  height: auto;
  width: 75%;
  top: auto;
  bottom: 0;
}

/* ----- Hero Section End */

/* ----- AboutBlocks Section Start */
.aboutBlocks--section {
  padding: 80px 0;
}

.aboutBlocks__wrapper {
  max-width: 1024px;
}

.aboutBlocks__inner {
  gap: 64px;
}

.aboutBlocks__item {
  gap: 64px;
}

.aboutBlocks__item--odd {
  margin-left: 76px;
}

.aboutBlocks__item__thumb {
  width: 100%;
  height: fit-content;
}

.aboutBlocks__item__thumb--one {
  max-width: 324px;
}

.aboutBlocks__item__thumb--two {
  max-width: 406px;
}

.aboutBlocks__item__thumb--three {
  max-width: 312px;
}

.aboutBlocks__item__thumb--four {
  max-width: 310px;
}

.aboutBlocks__item__box {
  max-width: 352px;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: auto;
  margin-right: -168px;
}

/* ----- AboutBlocks Section End */

/* =============================== */
/* :: about.html Page CSS End */
/* =============================== */

/* =============================== */
/* :: coaching.html Page CSS Start */
/* =============================== */
.coachingBlocks--section {
  padding: 112px 0;
}

.coachingBlocks__wrapper {
  max-width: 972px;
}

.coachingBlocks__features__item {
  max-width: 250px;
  width: 100%;
}

.coachingBlocks__features__item .hr-bar {
  width: 24px;
  height: 2px;
  background-color: var(--primary);
}

.coachingBlocks__features__item .para {
  font-size: 13px;
  line-height: 1.6;
}

.coachingBlocks__content__block__item {
  border-bottom: 1px solid var(--gray);
}

/* =============================== */
/* :: coaching.html Page CSS End */
/* =============================== */

/* =============================== */
/* :: Partnership Section Area CSS Start */
/* =============================== */

.partnership__header {
  max-width: 490px;
  width: 100%;
  margin: 0 0 0 auto;
  padding: 0px 24px 24px 0px;
}

.partnership--section {
  padding: 11vh 0 11vh;
}

.partnership__item {
  position: relative;
  cursor: pointer;
  padding: 0px 23px 0px 20px;
}

.partnership__item-thumbnail {
  position: absolute;
  top: -40px;
  opacity: 0;
  visibility: hidden;
  max-width: 356px;
  height: 470px;
  border-radius: 8px;
  box-shadow: 0px 4px 16px 0px #00000040;
  left: 4vw;
  transform: scale(0.9);
  transition: all 0.3s ease-in;
}

.partnership__item-content {
  max-width: 467px;
  margin: 0 0 0 auto;
  padding: 23px 0px;
  border-bottom: 1px solid #d9c99c;
}

.partnership__item:last-child .partnership__item-thumbnail {
  top: -220px;
}

.partnership__item.active .partnership__item-thumbnail {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.partnership__item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  content: "";
  background: #25252599;
  backdrop-filter: blur(4px);
  z-index: -1;
  border-radius: 24px;
  border: 1px solid #fff1;
  opacity: 0;
  transition: all 0.3s ease;
}

.partnership__item:hover::after {
  height: 100%;
  opacity: 1;
}

.partnership__item.active::after {
  height: 100%;
  opacity: 1;
}

.partnership__wrapper {
  max-width: 1030px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 14vh;
}

.partnership__item-thumbnail img {
  border-radius: 8px;
}

.partnership__jaap {
  max-width: 514px;
  margin: 0 auto;
  text-align: center;
}

.partnership__jaap h2 {
  margin-bottom: 10px;
}

.partnership__jaap p {
  margin-bottom: 20px;
}

/* =============================== */
/* :: Partnership Section Area CSS End */
/* =============================== */

/* =============================== */
/* :: Mega Menu CSS Start */
/* =============================== */

/* Fixed width so the label can swap (Menu <-> Sluiten) without shifting */
.js-menu-toggle {
  min-width: 116px;
}

/* Burger inside the toggle button */
.menu-toggle__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 16px;
  margin-right: 2px;
}

.menu-toggle__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.4s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.3s ease,
    width 0.4s ease;
}

.js-menu-toggle.is-active .menu-toggle__burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.js-menu-toggle.is-active .menu-toggle__burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.js-menu-toggle.is-active .menu-toggle__burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Fade the toggle label when it swaps between "Menu" and "Sluiten" */
.js-menu-toggle .text-container {
  transition: opacity 0.18s ease;
}

.js-menu-toggle .text-container.is-swapping {
  opacity: 0;
}

/* Overlay shell — sits BELOW the header so the logo stays on top */
.megamenu {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  /* keep the panel rendered until the fade-out finishes */
  transition: visibility 0s linear 0.5s;
}

.megamenu.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}

/* The panel fades in/out */
.megamenu__bg {
  position: absolute;
  inset: 0;
  background-color: #0b0b0b;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Background video — desaturated, fades in after the panel slides */
.megamenu__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.megamenu.is-open .megamenu__video {
  opacity: 0.25;
  transition: opacity 4s ease 0.6s;
}

/* Dark overlay so the menu text stays readable */
.megamenu__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 11, 11, 0.92) 0%,
      rgba(11, 11, 11, 0.55) 70%,
      rgba(11, 11, 11, 0.4) 100%
    ),
    radial-gradient(circle at 85% 10%, rgba(227, 167, 0, 0.08), transparent 50%);
}

.megamenu.is-open .megamenu__bg {
  opacity: 1;
}

.megamenu__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
  /* clears the fixed header / logo line */
  padding: 132px 24px 40px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.megamenu.is-open .megamenu__inner {
  opacity: 1;
}

/* Body layout */
.megamenu__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 32px 0;
  min-height: 0;
}

/* Navigation list */
.megamenu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.megamenu__item {
  will-change: opacity, transform;
}

.megamenu.is-open .megamenu__item {
  animation: megamenuItemIn 0.75s ease both;
}

.megamenu.is-open .megamenu__item:nth-child(1) {
  animation-delay: 0.5s;
}
.megamenu.is-open .megamenu__item:nth-child(2) {
  animation-delay: 0.8s;
}
.megamenu.is-open .megamenu__item:nth-child(3) {
  animation-delay: 0.95s;
}
.megamenu.is-open .megamenu__item:nth-child(4) {
  animation-delay: 1.07s;
}
.megamenu.is-open .megamenu__item:nth-child(5) {
  animation-delay: 1.17s;
}
.megamenu.is-open .megamenu__item:nth-child(6) {
  animation-delay: 1.29s;
}

@keyframes megamenuItemIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shared subtle fade-up for preview + meta */
@keyframes megamenuFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Plain fade-in (no movement) */
@keyframes megamenuFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slow ambient zoom on the preview image */
@keyframes megamenuKenBurns {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

.megamenu__item {
  border-bottom: 1px solid rgba(217, 201, 156, 0.1);
}

.megamenu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border-radius: 8px;
  color: var(--gray);
  text-decoration: none;
  background-image: linear-gradient(
    90deg,
    rgba(227, 167, 0, 0.08),
    transparent 55%
  );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.megamenu__link:hover {
  background-size: 100% 100%;
}

.megamenu__text {
  font-family: var(--ws-paradose);
  font-size: clamp(1.5rem, 3.2vw, 3rem);
  line-height: 1.15;
  color: var(--gray);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease;
}

.megamenu__link:hover .megamenu__text {
  color: var(--white);
  transform: translateX(8px);
}

.megamenu__arrow {
  font-size: 30px;
  color: var(--primary);
  transform: translateX(-8px);
  transition:
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.megamenu__link:hover .megamenu__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Aside / preview */
.megamenu__aside {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.megamenu__preview {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background-color: #111;
  border: 1px solid rgba(217, 201, 156, 0.08);
}

.megamenu.is-open .megamenu__preview {
  animation: megamenuFadeIn 1.6s ease 1s both;
}

.megamenu__preview-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
  transform: scale(1.06);
  aspect-ratio: 1/1;
}

.megamenu.is-open .megamenu__preview-img {
  animation: megamenuKenBurns 16s ease-in-out infinite alternate;
}

.megamenu__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(217, 201, 156, 0.12);
}

.megamenu.is-open .megamenu__meta {
  animation: megamenuFadeUp 0.85s ease 1.5s both;
}

.megamenu__meta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.megamenu__meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  font-weight: 600;
}

.megamenu__meta-value {
  font-family: var(--ws-paradose);
  font-size: 18px;
  color: var(--gray) !important;
}

.megamenu__meta-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.megamenu__meta-link:hover {
  color: var(--primary);
}

.megamenu__socials {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.megamenu__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray) !important;
  color: var(--gray) !important;
  font-size: 17px;
  text-decoration: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.megamenu__social:hover {
  color: var(--black) !important;
  background-color: var(--primary);
  border-color: var(--primary) !important;
  transform: translateY(-3px);
}

/* Footer line */
.megamenu__foot {
  padding-top: 22px;
  border-top: 1px solid rgba(217, 201, 156, 0.14);
}

.megamenu__foot-text {
  font-size: 12px;
  color: rgba(217, 201, 156, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .megamenu__inner {
    padding-top: 120px;
    overflow-y: auto;
  }

  .megamenu__body {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .megamenu__aside {
    order: -1;
  }

  .megamenu__preview {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 575px) {
  .megamenu__inner {
    padding: 104px 16px 28px;
  }

  .megamenu__foot {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}
/* =============================== */
/* :: Mega Menu CSS End */
/* =============================== */

/* =============================== */
/* :: Contact Page CSS Start */
/* =============================== */
.hero--contact {
  min-height: 58vh;
  align-items: flex-end;
  overflow: hidden;
}

/* Full-bleed media with a dark gradient so the copy stays readable */
.hero--contact__media {
  position: absolute;
  top: -75%;
  z-index: -1;
}

.hero--contact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero--contact__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      270deg,
      #000 0%,
      rgba(0, 0, 0, 0.88) 32%,
      rgba(0, 0, 0, 0.25) 72%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    linear-gradient(0deg, #000 2%, transparent 38%);
  transform: rotate(180deg);
}

.hero--contact__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      20deg,
      #000 0%,
      rgba(0, 0, 0, 0.55) 34%,
      rgba(0, 0, 0, 0.25) 72%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    linear-gradient(0deg, #000 30%, transparent 44%);
  transform: rotate(180deg);
}

.hero--contact__row {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: start;
  gap: 48px;
  padding-top: 80px;
}

.hero--contact__content {
  max-width: 520px;
  width: 100%;
}

.hero--contact__lead {
  max-width: 420px;
}

.hero--contact__portrait {
  flex-shrink: 0;
  width: 34%;
  max-width: 320px;
  display: flex;
  justify-content: flex-end;
}

.hero--contact__portrait-img {
  width: 100%;
  height: auto;
  max-height: 48vh;
  object-fit: contain;
}

@media (max-width: 767px) {
  .hero--contact__portrait {
    display: none;
  }
}

.contact--section {
  padding: 120px 0 80px;
}

.contact__info {
  max-width: 440px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 32px;
}

.contact__list-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__list-item .line {
  width: 24px;
  height: 2px;
  background: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.contact__list-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  font-weight: 600;
}

.contact__list-value {
  font-family: var(--ws-paradose);
  font-size: 18px;
  color: var(--gray) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact__list-value:hover {
  color: var(--primary);
}

.contact__socials {
  display: flex;
  gap: 10px;
}

.contact__social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray) !important;
  color: var(--gray) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact__social:hover {
  color: var(--black) !important;
  background-color: var(--primary);
  border-color: var(--primary) !important;
  transform: translateY(-3px);
}

/* Form */
.contact__form {
  background: #00000099;
  backdrop-filter: blur(4px);
  border-radius: 24px;
  padding: 50px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 201, 156, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--work-sans);
  font-size: 14px;
  line-height: 1.5;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

/* Eigen pijltje zodat de positie instelbaar is */
.form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23d9c99c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(217, 201, 156, 0.45);
}

/* Select toont placeholder-kleur zolang er geen onderwerp gekozen is */
.form-field select:invalid {
  color: rgba(217, 201, 156, 0.45);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.06);
}

.form-field select option {
  color: #000;
}

.contact__form-note {
  font-size: 13px;
  color: var(--primary);
}

/* Map */
.contact-map--section {
  padding: 20px 0 100px;
}

.contact-map__frame {
  padding: 10px;
  border: 2px dashed rgba(227, 167, 0, 0.55);
  border-radius: 24px;
  height: 440px;
  line-height: 0;
}

.contact-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
  /* tint the embed to match the dark theme */
  filter: grayscale(0.3) invert(0.92) hue-rotate(180deg);
}

/* =============================== */
/* :: Contact Page CSS End */
/* =============================== */

/* =============================== */
/* :: 404 Page CSS Start */
/* =============================== */
.error-404 {
  /* genoeg ruimte boven zodat de absolute header de "404" nooit overlapt */
  padding-block: 240px 160px;
}

.error-404__inner {
  max-width: 640px;
}

.error-404__code {
  display: block;
  font-family: var(--ws-paradose);
  font-weight: 700;
  line-height: 0.85;
  font-size: clamp(110px, 24vw, 240px);
  color: var(--primary);
  margin-bottom: 8px;
}

.error-404__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 480px;
}
/* =============================== */
/* :: 404 Page CSS End */
/* =============================== */

/* =============================== */
/* :: Legal / Privacy Page CSS Start */
/* =============================== */
.hero--legal {
  /* genoeg ruimte boven zodat de absolute header de titel nooit overlapt */
  min-height: auto;
  padding-block: 200px 48px;
  overflow: hidden;
}

.hero--legal__content {
  max-width: 720px;
}

.hero--legal__lead {
  max-width: 520px;
}

.legal--section {
  padding: 32px 0 120px;
}

.legal__wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.legal__updated {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 40px;
}

.legal__block + .legal__block {
  margin-top: 40px;
}

.legal__block h2 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.legal__block p {
  color: var(--gray);
  margin-bottom: 14px;
}

.legal__block p:last-child {
  margin-bottom: 0;
}

.legal__block a {
  color: var(--primary);
  text-decoration: underline;
}

.legal__block a:hover {
  color: var(--white);
}

.legal__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 14px;
}

.legal__list li {
  position: relative;
  padding-left: 22px;
  color: var(--gray);
}

.legal__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 2px;
  background: var(--primary);
}
/* =============================== */
/* :: Legal / Privacy Page CSS End */
/* =============================== */

/* Taalswitcher (header + mega-menu) */
.lang-switch { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; }
.lang-switch__link { color: inherit; text-decoration: none; opacity: .6; transition: opacity .15s ease; }
.lang-switch__link:hover { opacity: 1; }
.lang-switch__link.is-active { opacity: 1; text-decoration: underline; }
.lang-switch__sep { opacity: .4; }

@media (max-width: 767px) {
  .header__end .lang-switch {
    display: none;
  }
}
