/* =========================================================================
   Ford Performance Club - zelfstandige site
   Design tokens gedistilleerd uit de oude Ucraft-stylesheet
   (static.ucraft.net/.../fordperformance/css/public-en.css) + framework-primitieven.
   Geen Ucraft-runtime of -framework nodig.
   ========================================================================= */

/* ---- fonts -------------------------------------------------------------- */
/* 1) Eén "Ford F-1"-familie met gewichten voor onze eigen CSS. */
@font-face {
  font-family: "Ford F-1";
  src: url("/assets/fonts/FordF-1-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ford F-1";
  src: url("/assets/fonts/FordF-1-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ford F-1";
  src: url("/assets/fonts/FordF-1-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ford F-1";
  src: url("/assets/fonts/FordF-1-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ford F-1";
  src: url("/assets/fonts/FordF-1-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 2) De exacte Ucraft-familienamen ("... Custom"), zodat de CSS die de
   runtime-widgets (event-blokken, hero, ...) injecteren ook de juiste
   Ford F-1-variant krijgt en niet terugvalt op een systeemfont. */
@font-face {
  font-family: "Ford F-1 Light Custom";
  src: url("/assets/fonts/FordF-1-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ford F-1 Regular Custom";
  src: url("/assets/fonts/FordF-1-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ford F-1 Medium Custom";
  src: url("/assets/fonts/FordF-1-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ford F-1 Semibold Custom";
  src: url("/assets/fonts/FordF-1-Semibold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* sommige widgets schrijven "SemiBold" met hoofdletter-B */
@font-face {
  font-family: "Ford F-1 SemiBold Custom";
  src: url("/assets/fonts/FordF-1-Semibold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ford F-1 Bold Custom";
  src: url("/assets/fonts/FordF-1-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ---- design tokens --------------------------------------------------- */
:root {
  /* kleuren (uit Ucraft :root) */
  --fpc-text: rgb(76, 78, 90); /* body / --p-color */
  --fpc-heading: #000;
  --fpc-blue: rgb(1, 77, 139); /* Ford blue - buttons, H6 */
  --fpc-blue-light: rgb(29, 147, 206); /* accent / hover */
  --fpc-blue-pale: rgb(164, 220, 255);
  --fpc-link: rgb(16, 43, 78);
  --fpc-link-hover: #0068b9;
  --fpc-bg: #ffffff;
  --fpc-bg-alt: #f2f2f2;
  --fpc-border: #dbdbdb;
  --fpc-black: #000;
  --fpc-white: #fff;

  /* typografie */
  --fpc-font: "Ford F-1", "Segoe UI", Arial, sans-serif;
  --fpc-base-size: 16px; /* Ucraft basis 14px voelt te klein op moderne schermen; 16 met dezelfde ratio */
  --fpc-body-lh: 1.5;
  --fpc-heading-lh: 1.05;

  /* ritme / layout */
  --fpc-container: 1200px;
  --fpc-container-narrow: 820px;
  --fpc-gutter: 24px;
  --fpc-section-y: clamp(48px, 8vw, 104px);
  --fpc-radius: 10px;
  --fpc-radius-pill: 25px;
  --fpc-header-h: 96px;
  --fpc-header-h-mobile: 64px;

  --fpc-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --fpc-shadow-md: 0 12px 32px rgba(0, 0, 0, 0.12);
}

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

/* ---- content-bescherming + geen mobiele tap-highlight -------------------
   - geen blauw/grijs kader bij het aantikken van links/knoppen op mobiel
   - geen tekstselectie
   - geen slepen van afbeeldingen/links
   - geen lang-indrukken-contextmenu op iOS (callout)
   Formuliervelden zijn de uitzondering: daar moet je wél kunnen typen/selecteren. */
html {
  -webkit-tap-highlight-color: transparent;
}
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
img,
svg,
video,
a,
picture {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
img {
  pointer-events: none; /* voorkomt sleep/opslaan-menu op de afbeelding zelf */
}
/* uitzonderingen: invoervelden moeten normaal werken */
input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--fpc-header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ---- site-brede scroll-reveal (gestuurd door site.js initScrollReveal) ----
   Puur een fade. Geen transform. */
[data-reveal] {
  --reveal-delay: calc(min(var(--reveal-i, 0), 4) * 40ms);
  opacity: 0;
  transition: opacity 0.5s ease var(--reveal-delay);
}
[data-reveal="in"] {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal="in"] {
    opacity: 1 !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--fpc-font);
  font-weight: 500;
  font-size: var(--fpc-base-size);
  line-height: var(--fpc-body-lh);
  color: var(--fpc-text);
  background: var(--fpc-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Formuliercontrols erven font-family NIET van body in de meeste browsers;
   zonder deze regel valt de UA terug op zijn eigen default (op Windows vaak
   Times New Roman). Forceer overal het site-lettertype. */
input,
button,
select,
textarea,
optgroup,
option {
  font-family: var(--fpc-font);
}

/* Vangnet tegen Times New Roman: de runtime-widgets injecteren tientallen
   inline regels met een kale "Ford F-1 ... Custom"-familienaam zonder
   generieke fallback. Zolang die webfont nog laadt (font-display: swap) toont
   de browser een vervangfont — op Windows standaard een serif. Deze regel
   geeft ELK element een sans-serif-basis; een geldige font-family-declaratie
   erbovenop wint gewoon, maar valt nooit meer terug op serif. */
:where(*, *::before, *::after) {
  font-family: var(--fpc-font);
}
:where(code, kbd, samp, pre, pre *) {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", Menlo, Consolas,
    monospace;
}

/* Verberg de zichtbare paginascrollbar zonder scrollen te blokkeren */
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--fpc-link);
  text-decoration: none;
}
a:hover {
  color: var(--fpc-link-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
  color: var(--fpc-heading);
  line-height: var(--fpc-heading-lh);
  font-weight: 700;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}
h6,
.fpc-eyebrow {
  color: var(--fpc-blue);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
p {
  margin: 0 0 1rem;
}
p:last-child {
  margin-bottom: 0;
}

/* ---- layout-primitieven ------------------------------------------- */
.fpc-container {
  width: 100%;
  max-width: var(--fpc-container);
  margin-inline: auto;
  padding-inline: var(--fpc-gutter);
}
.fpc-container--narrow {
  max-width: var(--fpc-container-narrow);
}

.fpc-section {
  padding-block: var(--fpc-section-y);
}
.fpc-section--alt {
  background: var(--fpc-bg-alt);
}
.fpc-section--dark {
  background: var(--fpc-black);
  color: var(--fpc-white);
}
.fpc-section--dark h1,
.fpc-section--dark h2,
.fpc-section--dark h3 {
  color: var(--fpc-white);
}

.fpc-stack > * + * {
  margin-top: 1.25rem;
}
.fpc-center {
  text-align: center;
}
.fpc-measure {
  max-width: 62ch;
}
.fpc-center .fpc-measure {
  margin-inline: auto;
}

/* ---- formulier-selectievakjes (checkbox / radio) --------------------
   Sitebreed, overgenomen van de oude Ucraft-site: 18px, dunne #ddd-rand,
   subtiele witte vulling; checkbox met 3px-radius + Ford-blauw vinkje,
   radio rond met een Ford-blauwe binnenstip. Elke <input type=checkbox|radio>
   op de site krijgt dit; de eigen inschrijf-form (.fpc-reg-*) leunt erop. */
input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
input[type="checkbox"] {
  border-radius: 3px;
}
input[type="radio"] {
  border-radius: 50%;
}
input[type="checkbox"]::before {
  content: "";
  width: 11px;
  height: 11px;
  transform: scale(0);
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-color: var(--fpc-blue);
  -webkit-mask: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
input[type="radio"]::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-color: var(--fpc-blue);
}
input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  transform: scale(1);
}
input[type="checkbox"]:hover,
input[type="radio"]:hover {
  border-color: #b7bcc2;
}
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible {
  outline: 2px solid var(--fpc-blue-light);
  outline-offset: 2px;
}

/* ---- knoppen ----------------------------------------------------- */
.fpc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-width: 120px;
  height: 44px;
  padding-inline: 24px;
  border: 2px solid var(--fpc-blue);
  border-radius: var(--fpc-radius-pill);
  background: var(--fpc-blue);
  color: var(--fpc-white);
  font-family: var(--fpc-font);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}
.fpc-btn:hover {
  background: var(--fpc-blue-light);
  border-color: var(--fpc-blue-light);
  color: var(--fpc-white);
}
.fpc-btn--ghost {
  background: transparent;
  color: var(--fpc-blue);
}
.fpc-btn--ghost:hover {
  background: var(--fpc-blue);
  color: var(--fpc-white);
}
.fpc-btn--on-dark {
  background: var(--fpc-white);
  border-color: var(--fpc-white);
  color: var(--fpc-black);
}
.fpc-btn--on-dark:hover {
  background: #353535;
  border-color: #353535;
  color: var(--fpc-white);
}
.fpc-btn--sm {
  height: 36px;
  min-width: 90px;
  padding-inline: 16px;
  font-size: 0.82rem;
  border-radius: var(--fpc-radius);
}

/* grijze knop met donkere tekst (Ucraft "Discover our events") */
.fpc-btn--grey {
  height: 40px;
  padding-inline: 20px;
  border-radius: var(--fpc-radius);
  background: var(--fpc-bg-alt); /* #f2f2f2 */
  border-color: var(--fpc-bg-alt);
  color: #000;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: none;
}
.fpc-btn--grey:hover {
  background: var(--fpc-blue);
  border-color: var(--fpc-blue);
  color: #fff;
}

/* "Lid worden" in de header: witte pill met blauwe rand + blauwe tekst */
.fpc-btn--member {
  background: #fff;
  border-color: var(--fpc-blue);
  color: var(--fpc-blue);
  font-weight: 700;
  height: 38px;
}
.fpc-btn--member:hover {
  background: var(--fpc-blue);
  border-color: var(--fpc-blue);
  color: #fff;
}

/* ---- header ---------------------------------------------------- */
.fpc-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--fpc-header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
}
.fpc-header__inner {
  width: 100%;
  max-width: var(--fpc-container);
  margin-inline: auto;
  padding-inline: var(--fpc-gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.fpc-header__logo {
  flex: 0 0 auto;
}
.fpc-header__logo img {
  width: 264px;
  max-width: 46vw;
  height: auto;
}
/* Hoofdnavigatie desktop — afgestemd op de oude Ucraft-navigatie:
   Ford F-1 Medium, 14px, weight 100, kleur #000, hover navy #102b4e,
   li-tussenruimte 20px, geen underline/active-blauw. */
.fpc-header__nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fpc-header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.fpc-header__navitem {
  text-align: center;
}
.fpc-header__navitem > a {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-family:
    "Ford F-1 Medium Custom", "Ford F-1", "Segoe UI", Arial, sans-serif;
  font-weight: 100;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: capitalize;
  text-decoration: none;
  padding-block: 6px;
  transition: color 0.3s;
}
.fpc-header__navitem > a:hover {
  color: #102b4e;
}
.fpc-header__navitem.is-active > a {
  color: #000;
}
.fpc-header__navitem.is-active > a:hover {
  color: #102b4e;
}

/* De chevron die megamenu.js in de Events-link injecteert (15px, zoals op Ucraft) */
.fpc-header__nav .fpc-events-megamenu-chevron {
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  color: inherit;
  pointer-events: none;
}
.fpc-header__nav .fpc-events-megamenu-chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}
.fpc-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* profielknop — exact zoals Ucraft's .profile-btn:
   lichtblauw afgerond vierkant (35x35, radius 8), icoon Ford-blauw 15x17,
   hover: blauwe vulling + wit icoon. Opent de pre-login-modal. */
.fpc-header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--fpc-blue-pale); /* #a4dcff */
  color: var(--fpc-blue); /* icoonkleur via currentColor */
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.fpc-header__login:hover,
.fpc-header__login[aria-expanded="true"] {
  background: var(--fpc-blue);
  color: #fff;
}
.fpc-header__login svg {
  width: 15px;
  height: 17px;
}

/* ---- winkelmandje-icoon in de header ---------------------------------
   Zelfde vierkante vorm als de profielknop, met een GEVULD tas-icoon.
   - Leeg  : muted grijs icoon op een lichtgrijze achtergrond.
   - Items : onderscheidende accentkleur (Ford-blauw-licht) + blauw icoon.
   Altijd zichtbaar; de badge verschijnt alleen bij items. */
.fpc-header__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: #eef0f3;          /* lichtgrijs — leeg */
  color: #9aa1ac;              /* muted icoon — leeg */
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.fpc-header__cart:hover {
  background: #e2e5ea;
  color: #6b7280;
}
.fpc-header__cart[data-has-items] {
  background: var(--fpc-blue-pale); /* #a4dcff — onderscheidend */
  color: var(--fpc-blue);
}
.fpc-header__cart[data-has-items]:hover {
  background: var(--fpc-blue);
  color: #fff;
}
.fpc-header__cart svg {
  width: 19px;
  height: 19px;
  display: block;
}
.fpc-header__cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  box-sizing: border-box;
  border-radius: 999px;
  background: #d52b35;                 /* rood */
  color: #fff;
  font-family: "Ford F-1 Bold Custom", "Ford F-1", sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 1;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
}
.fpc-header__cart-badge[hidden] {
  display: none;
}
/* winkelmandje-knop in het mobiele menu: badge inline achter de tekst */
.fpc-mobile-nav__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fpc-mobile-nav__cart .fpc-header__cart-badge {
  position: static;
  box-shadow: none;
}

/* ---- promobar ---------------------------------------------------- */
/* De mobiele weergave komt volledig van de widget zelf (padding 8px 36px 8px
   12px, font-size .78rem, white-space:normal). We overschrijven hier niets;
   zo is de banner identiek aan de oude Ucraft-versie. */

/* ---- pre-login-modal ------------------------------------------- */
.fpc-login-modal[hidden] {
  display: none;
}
.fpc-login-modal {
  position: fixed;
  inset: 0;
  /* boven de promobar (z-index 9999) zodat de blur-overlay ook de bar dimt */
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fpc-login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  animation: fpc-login-fade 0.18s ease;
}
.fpc-login-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  padding: clamp(24px, 5vw, 36px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: fpc-login-pop 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}
.fpc-login-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.fpc-login-modal__close:hover {
  background: var(--fpc-bg-alt);
  color: #000;
}
.fpc-login-modal__close svg {
  width: 18px;
  height: 18px;
}
.fpc-login-modal__icon {
  width: 52px;
  height: 52px;
  margin: 4px auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--fpc-blue-pale);
  color: var(--fpc-blue);
}
.fpc-login-modal__icon svg {
  width: 24px;
  height: 27px;
}
.fpc-login-modal__title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: #000;
}
.fpc-login-modal__intro {
  margin: 0 0 36px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--fpc-text);
}
.fpc-login-modal__form {
  display: grid;
  gap: 10px;
  text-align: left;
}
.fpc-login-modal__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #000;
}
.fpc-login-modal__input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font: inherit;
  color: #000;
  background: #fff;
  border: 1px solid var(--fpc-border);
  border-radius: 8px;
}
.fpc-login-modal__input:focus {
  outline: 2px solid var(--fpc-blue-light);
  outline-offset: 1px;
  border-color: var(--fpc-blue-light);
}
.fpc-login-modal__submit {
  width: 100%;
  margin-top: 4px;
  height: 46px;
}
.fpc-login-modal__alt {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--fpc-text);
}
.fpc-login-modal__alt span {
  opacity: 0.7;
}
.fpc-login-modal__alt a {
  color: var(--fpc-blue);
  font-weight: 600;
}
.fpc-login-modal__alt a:hover {
  color: var(--fpc-blue-light);
}

@keyframes fpc-login-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fpc-login-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fpc-login-modal__backdrop,
  .fpc-login-modal__dialog {
    animation: none;
  }
}
body.fpc-login-open {
  overflow: hidden;
}

.fpc-header__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.fpc-header__burger svg {
  width: 24px;
  height: 24px;
}

/* mobiel menu — full-screen zwarte overlay, gecentreerd (zoals Ucraft) */
.fpc-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.24s ease,
    visibility 0s linear 0.24s;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.fpc-mobile-nav[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.24s ease;
}
.fpc-mobile-nav__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.fpc-mobile-nav__close svg {
  width: 22px;
  height: 22px;
}

.fpc-mobile-nav__inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 88px 24px calc(48px + env(safe-area-inset-bottom));
  text-align: center;
}
.fpc-mobile-nav__logo img {
  width: min(260px, 72vw);
  height: auto;
}
.fpc-mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.fpc-mobile-nav__links a {
  color: #fff;
  font-family: "Ford F-1 Semibold Custom", "Ford F-1", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  padding: 10px 8px;
  transition: color 0.2s ease;
}
.fpc-mobile-nav__links a:hover,
.fpc-mobile-nav__links a.is-active {
  color: var(--fpc-blue-light);
}

.fpc-mobile-nav__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: min(320px, 82vw);
  margin-top: 6px;
}
.fpc-mobile-nav__actions .fpc-btn {
  width: 100%;
  height: 46px;
}

/* ghost-witte knop op zwart */
.fpc-btn--ghost-white {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.fpc-btn--ghost-white:hover {
  background: #fff;
  border-color: #fff;
  color: var(--fpc-blue);
}

.fpc-mobile-nav__socials {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 8px;
}
.fpc-mobile-nav__socials a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.fpc-mobile-nav__socials a:hover {
  color: #fff;
}
.fpc-mobile-nav__socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

body {
  padding-top: var(--fpc-header-h);
}

/* De <main> vult minstens de viewport onder de header, zodat de footer bij
   het laden nooit hoog in beeld staat en dan naar onder verspringt terwijl
   de client-side content (event-lijst, galerij, …) nog binnenkomt. */
.fpc-main {
  min-height: calc(100svh - var(--fpc-header-h));
}
@supports not (height: 100svh) {
  .fpc-main {
    min-height: calc(100vh - var(--fpc-header-h));
  }
}

/* ---- generieke pagina-hero (banner met titel) -------------- */
.fpc-page-hero {
  position: relative;
  min-height: clamp(280px, 42vw, 460px);
  display: flex;
  align-items: flex-end;
  color: var(--fpc-white);
  background: var(--fpc-black) center/cover no-repeat;
  overflow: hidden;
}
/* responsieve achtergrond als <picture>/<img> (geoptimaliseerde headersets) */
.fpc-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fpc-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fpc-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.fpc-page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--fpc-container);
  margin-inline: auto;
  padding: var(--fpc-gutter);
  padding-bottom: clamp(28px, 5vw, 56px);
}
.fpc-page-hero h1 {
  color: var(--fpc-white);
  margin: 0;
}
/* Paginabanner-titel: Ford F-1 in de zwaarste variant, altijd uppercase. */
.fpc-page-hero__inner h1 {
  font-family: "Ford F-1 Bold Custom", "Ford F-1", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
.fpc-page-hero .fpc-eyebrow {
  color: var(--fpc-blue-pale);
}

/* ---- kaarten / rasters ------------------------------------- */
.fpc-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.fpc-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--fpc-radius);
  overflow: hidden;
  background: var(--fpc-white);
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}
.fpc-card:hover {
  border-color: var(--fpc-blue-light);
}
.fpc-card__body {
  padding: 20px;
}

/* ---- multimedia-disclaimer boven de footer -------------- */
.fpc-footer-legal {
  background: rgb(230, 233, 244);
  color: #102b4e;
  padding-block: clamp(28px, 5vw, 44px);
}
.fpc-footer-legal__inner {
  max-width: 900px;
  text-align: center;
}
.fpc-footer-legal__title {
  margin: 0 0 14px;
  font-family: "Ford F-1 Bold Custom", "Ford F-1", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.fpc-footer-legal__body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.fpc-footer-legal__copyright {
  margin: 22px 0 0;
  font-size: 0.9rem;
}

/* ---- footer ---------------------------------------------- */
.fpc-footer {
  background: var(--fpc-black);
  color: rgba(255, 255, 255, 0.85);
  padding-block: 56px 32px;
  /* directe kinderen: __socials, __inner, __cta -> volgorde stuurbaar met order */
  display: flex;
  flex-direction: column;
}
.fpc-footer a {
  color: rgba(255, 255, 255, 0.85);
}
.fpc-footer a:hover {
  color: var(--fpc-blue-light);
}
/* "Volg ons op sociale media": gedempt grijs op zwart (geen blauw) */
.fpc-footer .fpc-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}
.fpc-footer__inner {
  width: 100%;
  max-width: var(--fpc-container);
  margin-inline: auto;
  padding-inline: var(--fpc-gutter);
  display: grid;
  gap: 32px;
}
.fpc-footer__socials {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: var(--fpc-container);
  margin: 0 auto 32px;
  padding-inline: var(--fpc-gutter);
}

/* Mobiele CTA-knoppen: onderaan de footer, boven de social-iconen.
   Op desktop verborgen. */
.fpc-footer__cta {
  display: none;
}
@media (max-width: 767.98px) {
  /* volgorde onderaan: inhoud -> CTA-knoppen -> social media */
  .fpc-footer__inner {
    order: 1;
  }
  .fpc-footer__cta {
    order: 2;
  }
  .fpc-footer__socials {
    order: 3;
    margin: clamp(28px, 8vw, 40px) auto 0;
  }
  .fpc-footer__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: var(--fpc-container);
    /* ruimte erboven; social-buttons volgen eronder */
    margin: clamp(28px, 7vw, 40px) auto 0;
    padding-inline: var(--fpc-gutter);
  }
  .fpc-footer__cta .fpc-btn {
    width: 100%;
    height: 46px;
  }
  /* .fpc-footer a forceert witte tekst -> hier de knop-eigen kleuren teruggeven */
  .fpc-footer__cta a.fpc-btn {
    color: var(--fpc-white);
  }
  .fpc-footer__cta a.fpc-btn--on-dark {
    color: var(--fpc-black);
  }
  .fpc-footer__cta a.fpc-btn--on-dark:hover {
    color: var(--fpc-white);
  }
}
/* footerrij: juridische links links, taalswitcher rechts, op één lijn */
.fpc-footer__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---- taalswitcher (footer) ----------------------------------
   Desktop: knop met vlag + code; dropdown vliegt naar BOVEN open, ook op
   hover. Mobiel (<=640px): tik opent een volledig scherm-modal.
   ------------------------------------------------------------- */
.fpc-langswitch {
  position: relative;
  --ls-radius: 12px;
}
.fpc-langswitch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Ford F-1 Semibold Custom", "Ford F-1", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.fpc-langswitch__toggle:hover,
.fpc-langswitch[data-open="true"] .fpc-langswitch__toggle {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}
.fpc-langswitch__flag {
  width: 20px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  /* border volgt de border-radius netjes; box-shadow deed dat niet */
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.fpc-langswitch__toggle .fpc-langswitch__code {
  color: inherit;
}
.fpc-langswitch__chevron {
  width: 14px;
  height: 14px;
  margin-left: 1px;
  transition: transform 0.2s ease;
}
.fpc-langswitch[data-open="true"] .fpc-langswitch__chevron {
  transform: rotate(180deg);
}

/* ---- popover (desktop) ---- */
.fpc-langswitch__pop {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  min-width: 220px;
  padding: 8px;
  background: #12161d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ls-radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 60;
}
/* hover-intent: klein onzichtbaar bruggetje zodat de muis de gap kan oversteken */
.fpc-langswitch::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 100%;
  height: 12px;
}
.fpc-langswitch:hover .fpc-langswitch__pop,
.fpc-langswitch:focus-within .fpc-langswitch__pop,
.fpc-langswitch[data-open="true"] .fpc-langswitch__pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.fpc-langswitch__heading {
  margin: 4px 8px 8px;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.fpc-langswitch__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fpc-langswitch__menu li + li {
  margin-top: 2px;
}
.fpc-langswitch__menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.14s ease, color 0.14s ease;
}
.fpc-langswitch__menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.fpc-langswitch__menu a.is-active {
  background: rgba(29, 147, 206, 0.16);
  color: #fff;
}
.fpc-langswitch__menu .fpc-langswitch__flag {
  width: 26px;
  height: 19px;
}
.fpc-langswitch__label {
  flex: 1;
}
.fpc-langswitch__short {
  font-family: "Ford F-1 Semibold Custom", "Ford F-1", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.4);
}
.fpc-langswitch__menu a.is-active .fpc-langswitch__short {
  color: var(--fpc-blue-light);
}

/* ---- mobiel: modal ---- */
@media (max-width: 640px) {
  .fpc-langswitch::after {
    display: none;
  }
  .fpc-langswitch__pop {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    background: rgba(0, 0, 0, 0.6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: opacity 0.2s ease, visibility 0.2s;
    z-index: 200; /* boven de vaste header (z-index:100) */
  }
  .fpc-langswitch:hover .fpc-langswitch__pop,
  .fpc-langswitch:focus-within .fpc-langswitch__pop {
    opacity: 0;
    visibility: hidden;
  }
  .fpc-langswitch[data-open="true"] .fpc-langswitch__pop {
    opacity: 1;
    visibility: visible;
  }
  .fpc-langswitch__heading {
    margin: 0;
    padding: 20px 20px 12px;
    background: #12161d;
    border-radius: 16px 16px 0 0;
  }
  .fpc-langswitch__menu {
    background: #12161d;
    padding: 0 12px calc(16px + env(safe-area-inset-bottom));
  }
  .fpc-langswitch__menu a {
    padding: 14px 12px;
    font-size: 1rem;
  }
  .fpc-langswitch__menu li + li {
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .fpc-langswitch__menu .fpc-langswitch__flag {
    width: 30px;
    height: 22px;
  }
}

/* =========================================================================
   Mobiele <select> -> bottom-sheet (assets/js/mobile-select.js).
   Zelfde visuele taal als de taalkiezer-modal: donker paneel dat van onder
   inschuift, scrollbare lijst, begrensde hoogte.
   ========================================================================= */
.fpc-mselect {
  position: fixed;
  inset: 0;
  z-index: 10050; /* boven vaste header (100) en de meeste modals */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fpc-mselect[hidden] {
  display: none;
}
.fpc-mselect__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.fpc-mselect.is-open .fpc-mselect__backdrop {
  opacity: 1;
}
.fpc-mselect__panel {
  position: relative;
  width: 100%;
  max-height: min(58vh, 420px); /* niet hoger dan een native dropdown ong. */
  display: flex;
  flex-direction: column;
  background: #12161d;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.fpc-mselect.is-open .fpc-mselect__panel {
  transform: translateY(0);
}
.fpc-mselect__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 12px 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fpc-mselect__title {
  flex: 1;
  min-width: 0;
  font-family: "Ford F-1 Semibold Custom", "Ford F-1", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fpc-mselect__close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.fpc-mselect__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.fpc-mselect__list {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  list-style: none;
  margin: 0;
  padding: 6px 8px calc(10px + env(safe-area-inset-bottom, 0px));
}
.fpc-mselect__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  cursor: pointer;
}
.fpc-mselect__opt + .fpc-mselect__opt {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.fpc-mselect__opt:hover,
.fpc-mselect__opt:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}
.fpc-mselect__opt.is-selected {
  background: rgba(29, 147, 206, 0.16);
  color: #fff;
}
.fpc-mselect__opt.is-disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: default;
}
.fpc-mselect__opt-text {
  flex: 1;
  min-width: 0;
}
.fpc-mselect__opt-check {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
.fpc-mselect__opt.is-selected .fpc-mselect__opt-check {
  background-color: var(--fpc-blue-light);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
body.fpc-mselect-open {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .fpc-mselect__panel,
  .fpc-mselect__backdrop {
    transition: none;
  }
}

/* ---- jaar-wiel-picker (iOS-stijl) — hergebruikt .fpc-mselect chrome ----- */
.fpc-ywheel .fpc-mselect__panel {
  max-height: none;
}
.fpc-ywheel__done {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--fpc-blue-light);
  font-family: "Ford F-1 Semibold Custom", "Ford F-1", sans-serif;
  font-size: 0.95rem;
  padding: 8px 6px;
  cursor: pointer;
}
/* niet-scrollende wrapper: hier hangen de maskers + selectie-band aan vast */
.fpc-ywheel__wrap {
  position: relative;
  height: 220px; /* 5 rijen à 40px + wat marge */
  overflow: hidden;
}
/* de eigenlijke scroller met de jaren */
.fpc-ywheel__scroll {
  position: absolute;
  inset: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-snap-type: y mandatory;
}
.fpc-ywheel__scroll::-webkit-scrollbar {
  display: none;
}
.fpc-ywheel__scroll {
  scrollbar-width: none;
}
.fpc-ywheel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* onzichtbare rijen boven/onder zodat elk jaar in het midden kan komen.
   (220px - 40px) / 2 = 90px -> ~2.25 rijen, we nemen 2 rijen + 10px */
.fpc-ywheel__pad {
  height: 90px;
}
.fpc-ywheel__opt {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Ford F-1", "Segoe UI", Arial, sans-serif;
  font-size: 1.15rem;
  transition: color 0.12s ease, transform 0.12s ease, opacity 0.12s ease;
  cursor: pointer;
}
.fpc-ywheel__opt.is-centered {
  color: #fff;
  font-family: "Ford F-1 Semibold Custom", "Ford F-1", sans-serif;
  transform: scale(1.12);
}
/* de selectie-band in het midden */
.fpc-ywheel__selrow {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 40px;
  transform: translateY(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 1;
}
/* fade boven/onder (iOS-look) */
.fpc-ywheel__mask {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}
.fpc-ywheel__mask--top {
  top: 0;
  background: linear-gradient(to bottom, #12161d 15%, rgba(18, 22, 29, 0));
}
.fpc-ywheel__mask--bottom {
  bottom: 0;
  background: linear-gradient(to top, #12161d 15%, rgba(18, 22, 29, 0));
}
@media (prefers-reduced-motion: reduce) {
  .fpc-ywheel__scroll {
    scroll-behavior: auto;
  }
  .fpc-ywheel__opt {
    transition: none;
  }
}

/* geen cirkelrand: alleen het icoon zelf */
.fpc-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}
.fpc-footer__socials a:hover {
  color: #fff;
}
.fpc-footer__socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.fpc-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.9rem;
}
/* Onderrand: badge links, daarnaast een tekstkolom met de copyrightregel
   boven de licentietekst. Alles links uitgelijnd. */
.fpc-footer__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
.fpc-footer__badge {
  flex: 0 0 auto;
}
.fpc-footer__badge img {
  width: 82px;
  height: auto;
}
.fpc-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.fpc-footer__copyright {
  color: rgba(255, 255, 255, 0.75);
}
.fpc-footer__licensed {
  font-weight: 200;
}

/* ---- mobiel: alles gecentreerd, links onder elkaar ---- */
@media (max-width: 640px) {
  .fpc-footer {
    text-align: center;
  }
  .fpc-footer__inner {
    justify-items: center;
  }
  .fpc-footer__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .fpc-footer__socials {
    justify-content: center;
  }
  .fpc-footer__links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .fpc-footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .fpc-footer__legal {
    align-items: center;
    text-align: center;
  }
}

/* ---- formulieren -------------------------------------- */
.fpc-form {
  display: grid;
  gap: 18px;
  max-width: 560px;
}
.fpc-field {
  display: grid;
  gap: 6px;
}
.fpc-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fpc-black);
}
.fpc-field label .req {
  color: #f00;
}
.fpc-field input,
.fpc-field select,
.fpc-field textarea {
  width: 100%;
  font: inherit;
  color: var(--fpc-black);
  background: var(--fpc-white);
  border: 1px solid var(--fpc-border);
  border-radius: 5px;
  padding: 12px 14px;
}
.fpc-field textarea {
  min-height: 140px;
  resize: vertical;
}
.fpc-field input:focus,
.fpc-field select:focus,
.fpc-field textarea:focus {
  outline: 2px solid var(--fpc-blue-light);
  outline-offset: 1px;
}
.fpc-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.fpc-form__status {
  font-size: 0.9rem;
}
.fpc-form__status[data-state="ok"] {
  color: #1a7f37;
}
.fpc-form__status[data-state="error"] {
  color: #b91c1c;
}

/* ---- prose (members, roadbook-guide, legal, contact-team) ---- */
.fpc-prose {
  line-height: 1.65;
}
.fpc-prose h2 {
  margin-top: 2.2rem;
}
.fpc-prose h2:first-child {
  margin-top: 0;
}
.fpc-prose p {
  margin-bottom: 1rem;
}
.fpc-prose .fpc-eyebrow + h2 {
  margin-top: 0.2rem;
}
.fpc-prose__figure {
  margin: 1.5rem 0;
}
.fpc-prose__figure img {
  border-radius: var(--fpc-radius);
}

/* ---- juridische accordeon (algemene voorwaarden / privacybeleid) ---- */
.fpc-legal {
  line-height: 1.65;
}
.fpc-legal__intro {
  margin-bottom: clamp(20px, 4vw, 32px);
}
.fpc-legal__intro p {
  margin: 0 0 1rem;
}
.fpc-legal__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.fpc-legal__item:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.fpc-legal__heading {
  margin: 0;
}
.fpc-legal__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 2.4vw, 20px) 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: "Ford F-1 Bold Custom", "Ford F-1", sans-serif;
  font-weight: 700;
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  line-height: 1.3;
  color: #000;
}
.fpc-legal__chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--fpc-blue);
  transition: transform 0.2s ease;
}
.fpc-legal__toggle[aria-expanded="true"] .fpc-legal__chevron {
  transform: rotate(180deg);
}
.fpc-legal__panel[hidden] {
  display: none;
}
.fpc-legal__panel-inner {
  padding: 0 0 clamp(18px, 3vw, 26px);
}
.fpc-legal__subhead {
  margin: clamp(14px, 2vw, 20px) 0 8px;
  font-family: "Ford F-1 Semibold Custom", "Ford F-1", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #000;
}
.fpc-legal__panel-inner > .fpc-legal__subhead:first-child {
  margin-top: 0;
}
.fpc-legal__panel-inner p {
  margin: 0 0 0.9rem;
  color: var(--fpc-text);
  font-size: 0.95rem;
}
.fpc-legal__panel-inner p:last-child {
  margin-bottom: 0;
}
.fpc-legal__figure {
  margin: 1.2rem 0;
}
.fpc-legal__figure img {
  max-width: 100%;
  border-radius: var(--fpc-radius);
}

/* ---- event pagina (widgets) ---- */
.fpc-event {
  display: block;
}
.fpc-event > [data-fpc-widget]:empty {
  display: none;
}
.fpc-event__shop {
  padding-block: clamp(32px, 5vw, 56px);
}

/* ---- Ecwid placeholder -------------------------------- */
.fpc-shop-placeholder {
  border: 2px dashed var(--fpc-border);
  border-radius: var(--fpc-radius);
  padding: 40px 24px;
  text-align: center;
  color: var(--fpc-text);
  background: var(--fpc-bg-alt);
}

/* ---- responsive ------------------------------------- */
/* logo: positief standaard, negatief verborgen */
.fpc-header__logo-neg {
  display: none;
}
/* lidmaatschap-icoon: alleen op mobiel (zie @media ≤1050px) */
.fpc-header__members-icon {
  display: none;
}

@media (max-width: 1050px) {
  .fpc-header__nav {
    display: none;
  }
  .fpc-header__burger {
    display: inline-flex;
  }

  /* Promobar niet tonen op mobiel/tablet.
     initPromoBarOffset() checkt getComputedStyle(bar).display en laat de
     header-offset dan ongemoeid op 0. */
  .fpc-promo-bar {
    display: none !important;
  }
  html {
    scroll-padding-top: calc(var(--fpc-header-h-mobile) + 16px);
  }
  body {
    padding-top: var(--fpc-header-h-mobile);
  }
  .fpc-main {
    min-height: calc(100svh - var(--fpc-header-h-mobile));
  }
  @supports not (height: 100svh) {
    .fpc-main {
      min-height: calc(100vh - var(--fpc-header-h-mobile));
    }
  }

  /* Donkere, mobielvriendelijke header */
  .fpc-header {
    height: var(--fpc-header-h-mobile);
    background: rgb(6, 31, 66);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: none;
  }
  /* negatief (wit) logo tonen, positief verbergen */
  .fpc-header__logo-pos {
    display: none;
  }
  .fpc-header__logo-neg {
    display: block;
  }

  /* Mobiele header: lidmaatschap-icoon links | logo gecentreerd | hamburger rechts.
     "Lid worden"-pill, profielknop en winkelmandje staan in het opengeklapte menu. */
  .fpc-header__actions .fpc-btn--member,
  .fpc-header__login,
  .fpc-header__cart {
    display: none;
  }
  .fpc-header__inner {
    gap: 0;
    justify-content: space-between;
  }
  .fpc-header__members-icon,
  .fpc-header__burger {
    flex: 0 0 44px;
  }
  /* logo neemt de resterende ruimte en centreert zichzelf */
  .fpc-header__logo {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
  }
  .fpc-header__actions {
    flex: 0 0 auto;
  }

  /* icoon links, symmetrisch met de burger rechts */
  .fpc-header__members-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
  }
  .fpc-header__members-icon svg {
    width: auto;
    height: 17px; /* kleiner dan de burger; beeldverhouding 26.2 x 29.1 behouden */
  }

  /* burger-icoon wit + duidelijk aantikbaar */
  .fpc-header__burger {
    color: #fff;
  }
}
@media (min-width: 1051px) {
  .fpc-mobile-nav {
    display: none;
  }
}
@media (max-width: 1050px) {
  .fpc-header__logo img {
    width: 210px;
  }
}
@media (max-width: 600px) {
  .fpc-header__logo img {
    width: 190px;
  }
}

/* Mobiel: ruimere zijmarges rond de contentblokken zodat het rustiger oogt.
   Full-bleed zones (hero-video, event-posterstrip, spotlight-galerij) zetten
   hun eigen padding-inline op 0 en worden hier dus NIET geraakt.
   De header houdt een compactere gutter zodat logo + burger blijven passen. */
@media (max-width: 767.98px) {
  :root {
    --fpc-gutter: 28px;
  }
  .fpc-header__inner {
    padding-inline: 18px;
  }
}
@media (max-width: 380px) {
  :root {
    --fpc-gutter: 22px;
  }
}

/* ---- mobiel: lopende tekst + knoptekst één stap kleiner --------------
   Titels (h1-h6, eyebrows) blijven ongemoeid, net als de badge-/label-
   klassen in widgets (kalender, poster-strip: .fpc-*-badge / .fpc-*-label /
   -date-text / -megamenu-*), die hier bewust niet worden geraakt. */
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }
  p,
  li,
  .fpc-measure,
  .fpc-prose p,
  .home-block__para,
  .home-intro p.fpc-measure,
  .home-europe p.fpc-measure,
  .fpc-field input,
  .fpc-field select,
  .fpc-field textarea,
  .fpc-login-modal__input,
  .fpc-footer__links,
  .fpc-footer__bottom {
    font-size: 0.82rem;
    line-height: 1.55;
  }
  .fpc-btn {
    font-size: 0.85rem;
  }
  .fpc-btn--sm {
    font-size: 0.78rem;
  }
  .fpc-login-modal__intro {
    font-size: 0.82rem;
  }
}
