/*
Theme Name: Willi Car Rent
Version: 1.0.0
*/

:root {
  /* Neutral */
  --color-midnight: #0e1418;
  --color-iguana: #6a6c6a;
  --color-limestone: #999793;
  --color-sand: #f5efe5;
  --color-shell: #faf6ec;
  --color-ntb: #e5decf;
  --color-sisal: #efe4ca;

  /* Brand */
  --color-flamboya: #fc500e;
  --color-ocean: #1856a3;
  --color-cactus: #007143;
  --color-sun: #f0c56e;
  --color-flamingo: #ff7a9a;

  /* Radii + border widths */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --border-width-default: 1px;
  --border-width-accent: 2px;

  /* Families (fall back to the theme.json presets when registered) */
  --font-heading: var(
    --wp--preset--font-family--heading,
    "PP Monument Wide",
    "Helvetica Neue",
    Arial,
    sans-serif
  );
  --font-condensed: var(
    --wp--preset--font-family--condensed,
    "PP Monument Condensed",
    "PP Monument Wide",
    "Helvetica Neue",
    Arial,
    sans-serif
  );
  --font-body: var(
    --wp--preset--font-family--body,
    "Manrope",
    system-ui,
    sans-serif
  );

  /* Type scale — size / line-height / tracking.
       Figma % tracking is converted to em (e.g. -4% = -0.04em). */
  --h1-size: 48px;
  --h1-lh: 56px;
  --h1-ls: -0.04em;
  --h2-size: 32px;
  --h2-lh: 42px;
  --h2-ls: -0.03em;
  --h3-size: 24px;
  --h3-lh: 32px;
  --h3-ls: -0.025em;
  --h4-size: 17px;
  --h4-lh: 22px;
  --h4-ls: -0.01em;
  --body-size-s: 12px;
  --body-size-md: 13px;
  --body-size: 15px;
  --body-size-l: 18px;
  --body-lh: 24px;
  --body-ls: 0;
  --heading-weight: 800;

  /* Rhythm — gap between a heading and the body beneath it */
  --space-eyebrow-heading: 8px;
  --space-display-body: 24px;
  --space-h1-body: 20px;
  --space-h2-body: 16px;
  --space-h3-body: 12px;
  --space-h4-body: 12px;

  --inner-padding: 60px;
  --main-grid: 1312px;
  --hero-grid: 1388px; /* de hero mag iets buiten het grid steken */
}

:root {
  --background-main: var(--color-sand);
  --background-secondary: var(--color-shell);
  --background-subtle: var(--color-sisal);

  --text-primary: var(--color-midnight);
  --text-secondary: var(--color-iguana);
  --text-label: var(--color-iguana);

  --border-default: var(--color-ntb);
  --border-subtle: rgba(14, 20, 24, 0.1); /* Midnight 10% */

  --action-primary: var(--color-flamboya);
  --action-secondary: var(--color-shell);
  --action-text: var(--color-midnight);
  --action-disabled: var(--color-iguana);

  --icon-primary: var(--color-midnight);
  --icon-brand: var(--color-flamboya);
}

[data-theme="dark"] {
  --background-main: var(--color-midnight);
  --background-secondary: rgba(250, 246, 236, 0.2); /* Shell 20% */
  --background-subtle: var(--color-limestone);

  --text-primary: var(--color-shell);
  --text-secondary: var(--color-limestone);
  --text-label: var(--color-limestone);

  --border-default: var(--color-iguana);
  --border-subtle: rgba(250, 246, 236, 0.2);

  --action-primary: var(--color-flamboya);
  --action-secondary: var(--color-midnight);
  --action-text: var(--color-shell);
  --action-disabled: var(--color-sisal);

  --icon-primary: var(--color-shell);
  --icon-brand: var(--color-flamboya);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]):not([data-theme="dark"]) {
    --background-main: var(--color-midnight);
    --background-secondary: rgba(250, 246, 236, 0.2);
    --background-subtle: var(--color-limestone);
    --text-primary: var(--color-shell);
    --text-secondary: var(--color-limestone);
    --text-label: var(--color-limestone);
    --border-default: var(--color-iguana);
    --border-subtle: rgba(250, 246, 236, 0.2);
    --action-primary: var(--color-flamboya);
    --action-secondary: var(--color-midnight);
    --action-text: var(--color-shell);
    --action-disabled: var(--color-sisal);
    --icon-primary: var(--color-shell);
    --icon-brand: var(--color-flamboya);
  }
}

body {
  background-color: var(--background-main);
  color: var(--text-primary);
  font-family: var(--font-body), serif;
  font-size: var(--body-size);
  line-height: var(--body-lh);
  letter-spacing: var(--body-ls);
  font-weight: 400;
}

h1,
h2,
h3:not(.site-footer__heading),
h4,
.wp-block-heading {
  font-family: var(--font-heading), serif;
  font-weight: var(--heading-weight);
  font-style: normal; /* "Black" is the weight (800), not italic */
  color: var(--text-primary);
  margin-top: 0;
}

h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-lh);
  letter-spacing: var(--h1-ls);
  margin-bottom: var(--space-h1-body);
}

h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-lh);
  letter-spacing: var(--h2-ls);
  margin-bottom: var(--space-h2-body);
}

h3:not(.site-footer__heading) {
  font-size: var(--h3-size);
  line-height: var(--h3-lh);
  letter-spacing: var(--h3-ls);
  margin-bottom: var(--space-h3-body);
}

.site-footer__heading {
  color: var(--color-sun);
  text-transform: uppercase;
  font-size: var(--body-size-s);
  font-weight: 600;
  letter-spacing: 1.44px;
  margin: 0;
}

h4 {
  font-size: var(--h4-size);
  line-height: var(--h4-lh);
  letter-spacing: var(--h4-ls);
  margin-bottom: var(--space-h4-body);
}

/* Your spec centres h1 & h2. Uncomment for site-wide centring,
   or leave it and set alignment per block in the editor.
h1, h2 { text-align: center; }
*/

p {
  margin-top: 0;
}

a {
  color: var(--action-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-label {
  color: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.bg-secondary {
  background-color: var(--background-secondary);
}

.bg-subtle {
  background-color: var(--background-subtle);
}

.btn-primary {
  background-color: var(--action-primary);
  color: var(--color-shell);
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: var(--font-heading), serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-4px);
}
/* Lichte variant: wit vlak met donkere tekst (o.a. op gekleurde balken). */
.btn-primary--light {
  background-color: var(--color-shell);
  color: var(--color-midnight);
}
.btn-primary--light:hover {
  background-color: #fff;
}

.btn-secondary {
  background-color: var(--action-secondary);
  color: var(--action-text);
  border: var(--border-width-default) solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: var(--font-heading), serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.btn-secondary:hover {
  transform: translateY(-4px);
}

.btn-primary[disabled],
.btn-secondary[disabled] {
  background-color: var(--action-disabled);
  cursor: not-allowed;
}

.container {
  width: var(--main-grid);
  margin: 0 auto;
}

footer {
  background-color: var(--color-midnight);
  padding: var(--inner-padding) 0;
}

section {
  padding: var(--inner-padding) 0;
}

footer,
footer li,
footer a {
  color: var(--color-shell);
  text-decoration: none;
}

footer li {
  text-decoration: none;
  list-style: none;
  width: max-content;
  font-size: var(--body-size-md);
  line-height: 20px;
}

footer ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer li.current-menu-item {
  border-bottom: 1px solid var(--color-sun);
}

.site-footer__address,
.site-footer__rating,
.site-footer__contact {
  font-size: var(--body-size-l);
}

.site-footer__desc {
  margin-bottom: 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.site-footer__heading {
  margin-top: 0;
}

h2.site-footer__brand {
  color: var(--color-shell);
}

.site-footer__col {
  grid-column: span 3;
}

.site-footer__col.site-footer__col--brand {
  grid-column: span 6;
}

.site-footer__payments {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.site-footer__payments__container {
  display: flex;
  justify-content: center;
  font-size: var(--body-size-s);
  font-family: var(--font-heading), serif;
  color: var(--color-limestone);
  gap: 8px;
  z-index: 1;
  position: relative;
  background-color: var(--color-midnight);
  width: max-content;
  padding: 0 8px;
  align-items: center;
}

.site-footer__payments::before {
  width: 100%;
  content: "";
  position: absolute;
  height: 1px;
  background-color: var(--color-iguana);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.2;
}

span.site-footer_payment-method {
  color: var(--color-shell);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-iguana);
  background-color: rgba(250, 246, 236, 0.2);
}

.site-footer__copyright {
  font-weight: 700;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

nav.menu-footer-copyright-container ul {
  display: flex;
  flex-direction: row;
  grid-gap: 2rem;
}
/* =========================================================================
   HOMEPAGE BLOCKS
   Alle onderstaande stijlen horen bij de ACF-blocks van de homepage.
   Ze bouwen voort op de design tokens hierboven.
   ========================================================================= */

/* Voorkom padding/rand-overflow binnen de eigen blocks (footer blijft ongemoeid). */
.site-header__bar,
.site-header__bar *,
.hero,
.hero *,
.usp-bar,
.usp-bar *,
.fleet,
.fleet *,
.steps,
.steps *,
.founder,
.founder *,
.cta,
.cta *,
.faq,
.faq * {
  box-sizing: border-box;
}

/* Laat grid/flex-items binnen de eigen blocks krimpen (voorkomt mobiele overflow). */
.car-card,
.booking-field,
.hero__booking-bar,
.hero__booking,
.hero__booking-btn,
.fleet__grid > *,
.steps__item,
.steps__body,
.founder__grid > *,
.cta__actions > *,
.faq__col {
  min-width: 0;
}
.hero__booking-btn {
  overflow-wrap: anywhere;
}

/* Responsieve container: fluid onder de vaste grid-breedte. */
@media (max-width: 1372px) {
  .container {
    width: auto;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }
}

img.willi-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Foto-fallback placeholder */
.willi-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 160px;
  color: var(--color-limestone);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(14, 20, 24, 0.02) 0 12px,
      rgba(14, 20, 24, 0.05) 12px 24px
    ),
    var(--color-ntb);
  border-radius: var(--radius-md);
}
.willi-img-placeholder__icon svg {
  width: 28px;
  height: 28px;
}
.willi-img-placeholder__label {
  font-size: var(--body-size-s);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Gedeelde eyebrow */
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--body-size-s); /* 12px */
  line-height: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 var(--space-eyebrow-heading);
}
.section-eyebrow--brand {
  color: var(--color-flamboya);
}

.willi-img,
.willi-img-placeholder {
  border-radius: inherit;
}

/* -------------------------------------------------------------------- HERO */
.hero {
  padding: 0 0 8px;
}
/* De hero staat op 1388px i.p.v. de 1312px van de rest van het grid,
   waardoor hij bewust iets buiten de menubreedte valt. */
.hero .container {
  width: var(--hero-grid);
}
@media (max-width: 1436px) {
  .hero .container {
    width: auto;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }
}
.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  box-sizing: border-box;
}
.hero__bg {
  position: absolute;
  inset: 0;
  border-radius: 0;
  z-index: 0;
}
.hero__media .willi-img-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 20, 24, 0.35) 0%, rgba(14, 20, 24, 0) 30%),
    linear-gradient(0deg, rgba(14, 20, 24, 0.65) 0%, rgba(14, 20, 24, 0) 55%);
}
.hero__content,
.hero__booking {
  position: relative;
  z-index: 2;
}
.hero__content {
  max-width: 830px;
}
.hero__title {
  font-family: var(--font-condensed), serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(40px, 6.9vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-shell);
  margin: 0 0 20px;
}
.hero__intro {
  color: rgba(250, 246, 236, 0.9);
  max-width: 460px;
  font-size: var(--body-size); /* 15px */
  line-height: 24px;
  font-weight: 400;
  margin: 0;
}
.hero__booking-bar {
  background: var(--color-shell);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  align-items: center;
  gap: 0;
  padding: 14px 14px 14px 4px;
}
/* De boekbalk is altijd crème, ook binnen de donkere hero. Daarom expliciete
   kleuren i.p.v. thema-tokens (die hier naar hun donkere variant omslaan). */
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 20px;
  border-right: 1px solid rgba(14, 20, 24, 0.12);
}
.booking-field:last-of-type {
  border-right: none;
}
.booking-field__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  line-height: 12px;
  font-weight: 600;
  color: var(--color-iguana);
}
.booking-field__label svg {
  width: 14px;
  height: 14px;
  color: var(--color-iguana);
}
.booking-field__value {
  font-family: var(--font-heading), serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0;
  color: var(--color-midnight);
}
.hero__booking-btn {
  margin-left: 16px;
  white-space: nowrap;
  text-decoration: none;
}
.hero__trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 16px;
  color: rgba(250, 246, 236, 0.85);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  line-height: 12px;
  font-weight: 600;
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust svg {
  width: 14px;
  height: 14px;
  color: var(--color-flamboya);
}

@media (max-width: 900px) {
  .hero__media {
    padding: 28px;
    min-height: 0;
  }
  .hero__booking-bar {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
    gap: 4px;
  }
  .booking-field {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .hero__booking-btn {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    justify-content: center;
    text-align: center;
  }
  .hero__trust {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ----------------------------------------------------------------- USP BAR */
.usp-bar {
  background: var(--color-midnight);
  padding: 22px 0;
  overflow: hidden;
}
.usp-bar__viewport {
  overflow: hidden;
}
.usp-bar__track {
  display: flex;
  width: max-content;
  animation: usp-marquee var(--usp-speed, 30s) linear infinite;
}
.usp-bar:hover .usp-bar__track {
  animation-play-state: paused;
}
.usp-bar__group {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.usp-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  white-space: nowrap;
}
.usp-bar__icon {
  display: inline-flex;
  color: var(--color-flamboya);
}
.usp-bar__icon svg {
  width: 22px;
  height: 22px;
}
.usp-bar__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-shell);
  letter-spacing: -0.01em;
}
/* Precies één set opschuiven: de tweede set staat er dan naadloos achter. */
@keyframes usp-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Wie animaties uitzet, krijgt een gewone scrollbare balk. */
@media (prefers-reduced-motion: reduce) {
  .usp-bar__track {
    animation: none;
  }
  .usp-bar__viewport {
    overflow-x: auto;
  }
  .usp-bar__group[aria-hidden="true"] {
    display: none;
  }
}
@media (max-width: 720px) {
  .usp-bar {
    padding: 16px 0;
  }
  .usp-bar__item {
    padding: 0 20px;
    gap: 10px;
  }
  .usp-bar__label {
    font-size: 16px;
  }
  .usp-bar__icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ------------------------------------------------------------------ FLEET */
.fleet__head {
  max-width: 695px;
  margin-bottom: 40px;
}
.fleet__title {
  margin-bottom: var(--space-h2-body);
  font-size: var(--h1-size); /* 48px */
  line-height: var(--h1-lh); /* 56px */
  letter-spacing: var(--h1-ls); /* -4% */
}
.fleet__intro {
  margin: 0;
  font-size: var(--body-size); /* 15px */
  line-height: 24px;
}
.fleet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.car-card {
  background: var(--color-shell);
  border: 1px solid var(--border-default); /* #E5DECF */
  box-shadow: 0 0 18px 0 #0000000d;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
/* Kleurtint per type auto, in lijn met de badge-kleur. */
.car-card--city {
  background: #1856a30f;
}
.car-card--pickup,
.car-card--pick-up {
  background: #0071430f;
}
.car-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* prijs onderaan uitlijnen met de titel */
  gap: 16px;
}
.car-card__badge {
  display: inline-block;
  background: var(--color-ocean);
  color: var(--color-shell);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}
.car-card__badge--pickup,
.car-card__badge--pick-up {
  background: var(--color-cactus);
}
.car-card .car-card__name {
  margin: 0;
  font-size: var(--h2-size); /* 32px */
  line-height: var(--h2-lh); /* 42px */
  letter-spacing: var(--h2-ls); /* -3% */
}
.car-card__price {
  text-align: right;
  white-space: nowrap;
}
.car-card__amount {
  display: block;
  font-family: var(--font-heading), serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.car-card__amount small {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-left: 2px;
}
.car-card__price-note {
  display: block;
  font-size: var(--body-size-s);
}
.car-card__media {
  margin: 20px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.car-card__media .willi-img,
.car-card__media .willi-img-placeholder {
  border-radius: var(--radius-md);
}
.car-card__desc {
  margin: 0 0 18px;
  max-width: 66%;
  color: var(--text-primary);
}
.car-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin: 0 0 22px;
}
.car-card__spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.car-card__spec dt {
  color: var(--text-secondary);
  font-size: var(--body-size-md);
  margin: 0;
}
.car-card__spec dd {
  margin: 0;
  font-weight: 700;
  font-size: var(--body-size-md);
}
.car-card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.car-card__btn {
  text-decoration: none;
  background: var(--color-midnight);
  color: var(--color-shell);
}
.car-card__btn:hover {
  background: #000;
}
/* Op smalle schermen past de 40px-prijs niet naast de autonaam:
   dan onder elkaar i.p.v. naast elkaar. */
@media (max-width: 560px) {
  .car-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .car-card__price {
    text-align: left;
    white-space: normal;
  }
  .car-card__desc {
    max-width: 100%;
  }
}
.car-card__cancel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 10px;
  font-weight: 600;
}
.car-card__cancel svg {
  width: 14px;
  height: 14px;
  color: var(--color-cactus);
}
@media (max-width: 860px) {
  .fleet__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .car-card__specs {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero__booking-bar {
    grid-template-columns: 1fr;
    padding: 8px;
  }
  .booking-field {
    padding: 6px 12px;
  }
  .hero__media {
    padding: 20px;
  }
  .hero__booking-btn {
    white-space: normal;
  }
}

/* ------------------------------------------------------------------ STEPS */
.steps {
  background: var(--background-main);
  padding: 120px 0;
}
.steps__layout {
  display: grid;
  /* Ontwerp: 412px links, 864px rechts binnen de 1312px-container.
     Als verhouding (103:216) met 36px gap komt dat exact uit én schaalt het mee. */
  grid-template-columns: 103fr 216fr;
  gap: 36px;
  align-items: start;
}
.steps__title {
  margin: 0;
  font-size: var(--h1-size); /* 48px */
  line-height: var(--h1-lh); /* 56px */
  letter-spacing: var(--h1-ls); /* -4% */
}
.steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle); /* #FAF6EC33 in de donkere sectie */
}
.steps__item:first-child {
  padding-top: 0;
}
.steps__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-flamboya);
}
.steps .steps__item-title {
  margin: 0 0 8px;
  font-weight: 400; /* PP Monument Wide Regular */
  font-size: var(--h3-size); /* 24px */
  line-height: 28px;
  letter-spacing: -0.025em;
  color: var(--text-primary); /* #FAF6EC in de donkere sectie */
}
.steps__item-text {
  margin: 0;
  color: var(--text-secondary); /* #999793 in de donkere sectie */
  font-size: var(--body-size-l); /* 18px */
  line-height: 28px;
  font-weight: 400;
}
@media (max-width: 820px) {
  .steps__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---------------------------------------------------------------- FOUNDER */
.founder {
  background: var(--background-secondary);
}
/* Variant: dezelfde achtergrond als de pagina (Over ons). */
.founder--plain {
  background: var(--background-main);
}
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.founder__title {
  margin: 0 0 20px;
}
.founder__body {
  margin: 0 0 28px;
  font-size: var(--body-size); /* 15px */
  line-height: 24px;
  color: var(--text-primary);
}
.founder__quote {
  margin: 0;
  max-width: 377px;
  padding-left: 20px;
  border-left: 2px solid var(--color-flamboya);
}
.founder__quote p {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--h4-size);
  line-height: 24px;
  margin: 0 0 10px;
}
.founder__signature {
  min-height: 28px;
}
.founder__sign-img {
  max-width: 160px;
  height: auto;
}
.founder__media {
  position: relative;
  width: 100%;
  max-width: 528px;
  margin-left: auto; /* rechts uitlijnen binnen de kolom */
}
.founder__portrait {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
/* Alleen de placeholder krijgt een vaste verhouding; een echte foto
   behoudt zijn eigen verhouding, zodat er niets wordt bijgesneden. */
.willi-img-placeholder.founder__portrait {
  aspect-ratio: 4 / 5;
}
.founder__card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  background: var(--color-shell);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(14, 20, 24, 0.12);
}
.founder__card-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--h4-size);
}
.founder__card-role {
  display: block;
  font-size: var(--body-size); /* 15px */
  line-height: 24px;
  color: var(--text-primary);
}
.founder__card-btn {
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .founder__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder__media {
    margin-inline: auto;
  }
  .founder__card {
    position: static;
    margin-top: 16px;
  }
}

/* -------------------------------------------------------------------- CTA */
.cta__card {
  position: relative;
  overflow: hidden;
  background-color: var(--color-midnight);
  /* Glows uit het ontwerp: geel linksboven, roze rechtsonder. */
  background-image:
    url("assets/img/cta-glow-top.svg"), url("assets/img/cta-glow-bottom.svg");
  background-position:
    left top,
    right bottom;
  background-repeat: no-repeat, no-repeat;
  border-radius: var(--radius-lg);
}
.cta__eyebrow {
  color: var(--color-sun);
}
.cta__title {
  margin: 0 0 16px;
  font-size: var(--h1-size); /* 48px */
  line-height: var(--h1-lh); /* 56px */
  letter-spacing: var(--h1-ls); /* -4% */
}
.cta__text {
  margin: 0 0 32px;
  font-size: var(--body-size-l); /* 18px */
  line-height: 28px;
}
.cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta__actions a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta__whatsapp svg {
  width: 18px;
  height: 18px;
}
.cta__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary); /* #FAF6EC in de donkere kaart */
}
.cta__trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cta__trust svg {
  width: 14px;
  height: 14px;
  color: var(--color-flamboya);
}

/* Variant: gecentreerd */
.cta__card--center {
  padding: 64px 48px;
}
.cta__card--center .cta__inner {
  text-align: center;
}
.cta__card--center .cta__eyebrow {
  text-align: center;
}
.cta__card--center .cta__title {
  max-width: 620px;
  margin-inline: auto;
}
.cta__card--center .cta__text {
  max-width: 560px;
  margin-inline: auto;
}
.cta__card--center .cta__actions,
.cta__card--center .cta__trust {
  justify-content: center;
}

/* Variant: tekst links, foto rechts */
.cta__card--image {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  /* Eigen glow linksboven in plaats van de twee van de gecentreerde variant. */
  background-image: url("assets/img/cta2-glow-top.svg");
  background-position: left top;
}
.cta__card--image .cta__body {
  padding: 80px;
}
.cta__card--image .cta__title {
  max-width: 460px;
}
.cta__card--image .cta__text {
  max-width: 440px;
}
.cta__card--image .cta__media {
  position: relative;
  min-height: 100%;
}
/* Zachte overgang vanuit het zwarte deel over de foto heen. */
.cta__card--image .cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--color-midnight) 0%,
    rgba(14, 20, 24, 0.75) 18%,
    rgba(14, 20, 24, 0) 55%
  );
}
.cta__card--image .cta__media .willi-img,
.cta__card--image .cta__media .willi-img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

@media (max-width: 820px) {
  .cta__card--image {
    grid-template-columns: 1fr;
  }
  .cta__card--image .cta__media {
    min-height: 260px;
  }
}
@media (max-width: 640px) {
  .cta__card--center {
    padding: 40px 24px;
  }
  .cta__card--image .cta__body {
    padding: 32px 24px;
  }
  .cta__actions a {
    width: 100%;
    justify-content: center;
  }
}

/* -------------------------------------------------------------------- FAQ */
.faq__eyebrow {
  text-align: center;
  letter-spacing: 0.12em;
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.faq__item {
  border-bottom: 1px solid var(--border-default);
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}
/* Hover: oranje onderrand en oranje plus. */
.faq__item:hover {
  border-bottom-color: var(--color-flamboya);
}
.faq__item:hover .faq__toggle {
  color: var(--color-flamboya);
}
/* Open: achtergrondvlak dat iets buiten de tekst valt, plus oranje onderrand. */
.faq__item[open] {
  background: var(--background-secondary); /* #FAF6EC */
  border-bottom-color: var(--color-flamboya);
  padding-inline: 16px;
  margin-inline: -16px;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--h4-size);
  color: var(--text-primary);
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__toggle {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--color-ocean); /* #1856A3 */
  transition:
    transform 0.2s ease,
    color 0.15s ease;
}
.faq__toggle svg {
  width: 20px;
  height: 20px;
}
.faq__item[open] .faq__toggle {
  transform: rotate(45deg);
  color: var(--color-flamboya);
}
.faq__answer {
  padding: 0 40px 22px 0;
}
.faq__answer p {
  margin: 0 0 8px;
}
@media (max-width: 760px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* -------------------------------------------------------------- SITE HEADER */
header {
  background: var(--background-main);
}
.site-header__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.site-header__logo {
  justify-self: start;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__nav {
  justify-self: center;
  position: relative;
}
.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__menu li {
  margin: 0;
}
.site-header__menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

/* Schuivende onderstreep (JS). Volgt hover en keert terug naar het actieve item. */
.site-header__underline {
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--color-flamboya);
  opacity: 0;
  transform: translateX(0);
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease;
  pointer-events: none;
}

/* No-JS fallback: vaste onderstreep onder het actieve item. */
.site-header__menu .current-menu-item > a,
.site-header__menu .current_page_item > a,
.site-header__menu .current-menu-ancestor > a {
  border-bottom-color: var(--color-flamboya);
}

/* Met JS nemen we de schuivende lijn; losse borders uit. */
.site-header__nav--js .site-header__menu a {
  border-bottom-color: transparent;
}

.site-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Taalkeuze */
.site-header__lang {
  position: relative;
  cursor: pointer;
}
.site-header__lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--body-size-l);
}
.site-header__lang-current svg {
  width: 20px;
  height: 20px;
}
.site-header__lang-current svg:last-child {
  width: 15px;
  height: 15px;
  color: var(--text-secondary);
}
.site-header__lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  list-style: none;
  padding: 6px;
  min-width: 130px;
  background: var(--color-shell);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px rgba(14, 20, 24, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0.15s;
  z-index: 30;
}
.site-header__lang:hover .site-header__lang-menu,
.site-header__lang:focus-within .site-header__lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header__lang-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: var(--body-size);
}
.site-header__lang-menu a:hover {
  background: var(--background-subtle);
}

/* WhatsApp-knop */
.site-header__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  background: var(--color-midnight);
  color: var(--color-shell);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--body-size-l);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition:
    transform 0.12s ease,
    background-color 0.15s ease;
}
.site-header__wa:hover {
  background: #000;
}
.site-header__wa:active {
  transform: translateY(1px);
}
.site-header__wa svg {
  width: 20px;
  height: 20px;
}
.site-header__wa-icon {
  display: inline-flex;
}

/* Hamburger (alleen mobiel) */
.site-header__burger {
  display: none;
  cursor: pointer;
  color: var(--text-primary);
}
.site-header__burger svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 900px) {
  .site-header__bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .site-header__burger {
    display: inline-flex;
    order: 2;
  }
  .site-header__logo {
    order: 1;
  }
  .site-header__nav,
  .site-header__actions {
    order: 3;
    flex-basis: 100%;
    display: none;
    justify-self: stretch;
  }
  #willi-nav-toggle:checked ~ .site-header__nav,
  #willi-nav-toggle:checked ~ .site-header__actions {
    display: flex;
  }
  .site-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .site-header__menu a {
    display: block;
    padding: 10px 0;
    border-bottom: none;
  }
  .site-header__menu .current-menu-item > a {
    color: var(--color-flamboya);
  }
  .site-header__underline {
    display: none;
  }
  .site-header__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 4px;
  }
  .site-header__wa {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================================
   OVER ONS — extra blocks & varianten
   ========================================================================= */

/* box-sizing/min-width scoping voor de nieuwe blocks */
.values,
.values *,
.location,
.location * {
  box-sizing: border-box;
}
.values__grid > *,
.location__grid > * {
  min-width: 0;
}

.section-eyebrow--accent {
  color: var(--color-flamingo);
}

/* -------------------------------------------------------- HERO (pagina-variant) */
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: var(--body-size-s);
  color: var(--color-sun);
  margin: 0 0 14px;
}
.hero--simple .hero__media {
  justify-content: center;
  min-height: 440px;
}
.hero--simple .hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(14, 20, 24, 0.82) 0%,
    rgba(14, 20, 24, 0.35) 42%,
    rgba(14, 20, 24, 0) 70%
  );
}
.hero--simple .hero__content {
  max-width: 820px;
}
.hero--simple .hero__intro {
  max-width: 416px;
}

/* -------------------------------------------------------------- KERNWAARDEN */
.values__head {
  max-width: 660px;
  margin: 0 auto 56px;
  text-align: center;
}
.values__head .section-eyebrow {
  text-align: center;
}
.values__title {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
}
.values__intro {
  margin: 0 auto;
  max-width: 528px;
  font-size: var(--body-size-l);
  line-height: 26px;
}

/* Mobiel: rechte stapel */
.values__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}
/* De wikkel doet het zweven (alleen verticaal); de kaart zelf de rotatie.
   Zo kan de rotatie netjes overvloeien terwijl de zweefbeweging bevriest. */
.value-card-wrap {
  width: 100%;
  max-width: 420px;
}
.value-card {
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  color: var(--color-shell);
  box-shadow: 0 24px 50px rgba(14, 20, 24, 0.16);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s ease;
  will-change: transform;
}
.value-card--midnight {
  background: var(--color-midnight);
}
.value-card--cactus {
  background: var(--color-cactus);
}
.value-card--flamboya {
  background: var(--color-flamboya);
}
.value-card--ocean {
  background: var(--color-ocean);
}
.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 20px;
}
.value-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-shell);
}
.value-card .value-card__title {
  margin: 0 0 10px;
  font-size: var(--h4-size);
  line-height: 22px;
  color: rgba(250, 246, 236, 1);
}
.value-card__text {
  margin: 0;
  color: rgba(250, 246, 236, 0.82);
  line-height: 22px;
}

/* Tablet: net 2x2-grid met lichte draaiing */
@media (min-width: 721px) {
  .values__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    max-width: 760px;
    align-items: start;
  }
  .value-card-wrap {
    width: auto;
    max-width: none;
  }
  .value-card-wrap:nth-child(1) {
    --rot: -4deg;
  }
  .value-card-wrap:nth-child(2) {
    --rot: 3deg;
    margin-top: 34px;
  }
  .value-card-wrap:nth-child(3) {
    --rot: -3deg;
    margin-top: -12px;
  }
  .value-card-wrap:nth-child(4) {
    --rot: 3deg;
    margin-top: 26px;
  }
  .value-card-wrap:hover .value-card {
    transform: rotate(0deg) translateY(-4px);
  }
}

/* Desktop: overlappende, scheve collage zoals het ontwerp.
   Pas vanaf 1160px, want de collage is 1100px breed + containerpadding. */
@media (min-width: 1160px) {
  .values__grid {
    display: block;
    position: relative;
    width: 1100px;
    max-width: 100%;
    height: 660px;
    margin: 0 auto;
  }
  .value-card-wrap {
    position: absolute;
    width: 348px;
    max-width: none;
    margin-top: 0;
    animation: value-float 7s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
  }
  .value-card {
    box-shadow: 0 30px 60px rgba(14, 20, 24, 0.22);
  }
  .value-card-wrap:nth-child(1) {
    --rot: -6deg;
    --delay: 0s;
    top: 10px;
    left: 175px;
    z-index: 3;
  }
  .value-card-wrap:nth-child(2) {
    --rot: -4deg;
    --delay: -3.6s;
    top: 40px;
    left: 692px;
  }
  .value-card-wrap:nth-child(3) {
    --rot: -5deg;
    --delay: -2.4s;
    top: 220px;
    left: 20px;
  }
  .value-card-wrap:nth-child(4) {
    --rot: 4deg;
    --delay: -1.2s;
    top: 300px;
    left: 515px;
    z-index: 4;
  }

  /* Zweven; bij hover bevriest de beweging en draait de kaart vloeiend recht. */
  @keyframes value-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-12px);
    }
  }
  .value-card-wrap:hover {
    animation-play-state: paused;
    z-index: 5;
  }
  .value-card-wrap:hover .value-card {
    transform: rotate(0deg) translateY(-6px);
  }
  @media (prefers-reduced-motion: reduce) {
    .value-card-wrap {
      animation: none;
    }
  }
}

/* ------------------------------------------------------------ BASIS & KAART */
.location__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
/* Verborgen radio's; sturen zowel het lijstitem als het bolletje op de kaart aan. */
.location__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.location__title {
  margin: 0 0 20px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
}
.location__intro {
  margin: 0 0 28px;
  max-width: 460px;
  font-size: var(--body-size-l);
  line-height: 26px;
}
.location__list-label {
  color: var(--color-ocean);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: var(--body-size-s);
  margin: 0 0 14px;
}
.location__options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loc-option {
  background: var(--color-shell);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease;
}
.loc-option__label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
}
.loc-option:hover {
  border-color: var(--color-limestone);
}
.loc-option__radio {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-limestone);
  position: relative;
  transition: border-color 0.15s ease;
}
.loc-option__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--color-flamboya);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.loc-option__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.loc-option__name {
  font-weight: 700;
}
.loc-option__sub {
  color: var(--text-secondary);
  font-size: var(--body-size-md);
}
.loc-option__meta {
  color: var(--color-flamboya);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* --- Gekozen locatie --- */
.location__radio:nth-of-type(1):checked
  ~ .location__text
  .loc-option:nth-child(1),
.location__radio:nth-of-type(2):checked
  ~ .location__text
  .loc-option:nth-child(2),
.location__radio:nth-of-type(3):checked
  ~ .location__text
  .loc-option:nth-child(3),
.location__radio:nth-of-type(4):checked
  ~ .location__text
  .loc-option:nth-child(4),
.location__radio:nth-of-type(5):checked
  ~ .location__text
  .loc-option:nth-child(5),
.location__radio:nth-of-type(6):checked
  ~ .location__text
  .loc-option:nth-child(6) {
  border-color: var(--color-flamboya);
}
.location__radio:nth-of-type(1):checked
  ~ .location__text
  .loc-option:nth-child(1)
  .loc-option__radio,
.location__radio:nth-of-type(2):checked
  ~ .location__text
  .loc-option:nth-child(2)
  .loc-option__radio,
.location__radio:nth-of-type(3):checked
  ~ .location__text
  .loc-option:nth-child(3)
  .loc-option__radio,
.location__radio:nth-of-type(4):checked
  ~ .location__text
  .loc-option:nth-child(4)
  .loc-option__radio,
.location__radio:nth-of-type(5):checked
  ~ .location__text
  .loc-option:nth-child(5)
  .loc-option__radio,
.location__radio:nth-of-type(6):checked
  ~ .location__text
  .loc-option:nth-child(6)
  .loc-option__radio {
  border-color: var(--color-flamboya);
}
.location__radio:nth-of-type(1):checked
  ~ .location__text
  .loc-option:nth-child(1)
  .loc-option__radio::after,
.location__radio:nth-of-type(2):checked
  ~ .location__text
  .loc-option:nth-child(2)
  .loc-option__radio::after,
.location__radio:nth-of-type(3):checked
  ~ .location__text
  .loc-option:nth-child(3)
  .loc-option__radio::after,
.location__radio:nth-of-type(4):checked
  ~ .location__text
  .loc-option:nth-child(4)
  .loc-option__radio::after,
.location__radio:nth-of-type(5):checked
  ~ .location__text
  .loc-option:nth-child(5)
  .loc-option__radio::after,
.location__radio:nth-of-type(6):checked
  ~ .location__text
  .loc-option:nth-child(6)
  .loc-option__radio::after {
  opacity: 1;
}
/* Toetsenbordfocus zichtbaar houden. */
.location__radio:nth-of-type(1):focus-visible
  ~ .location__text
  .loc-option:nth-child(1),
.location__radio:nth-of-type(2):focus-visible
  ~ .location__text
  .loc-option:nth-child(2),
.location__radio:nth-of-type(3):focus-visible
  ~ .location__text
  .loc-option:nth-child(3),
.location__radio:nth-of-type(4):focus-visible
  ~ .location__text
  .loc-option:nth-child(4),
.location__radio:nth-of-type(5):focus-visible
  ~ .location__text
  .loc-option:nth-child(5),
.location__radio:nth-of-type(6):focus-visible
  ~ .location__text
  .loc-option:nth-child(6) {
  outline: 2px solid var(--color-ocean);
  outline-offset: 2px;
}

/* --- Kaart --- */
.location__map {
  display: flex;
  justify-content: center;
}
.location__map-inner {
  position: relative;
  width: 100%;
  max-width: 752px;
}
.location__map-island {
  display: block;
  width: 100%;
  height: auto;
}
.location__map-pins {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.location__map-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}
.location__pin {
  color: var(--color-iguana);
  transition: color 0.2s ease;
}
.location__pin-ring {
  stroke: currentColor;
}
.location__pin-dot,
.location__pin-halo {
  fill: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.location__radio:nth-of-type(1):checked ~ .location__map .location__pin--1,
.location__radio:nth-of-type(2):checked ~ .location__map .location__pin--2,
.location__radio:nth-of-type(3):checked ~ .location__map .location__pin--3,
.location__radio:nth-of-type(4):checked ~ .location__map .location__pin--4,
.location__radio:nth-of-type(5):checked ~ .location__map .location__pin--5,
.location__radio:nth-of-type(6):checked ~ .location__map .location__pin--6 {
  color: var(--color-flamboya);
}
.location__radio:nth-of-type(1):checked
  ~ .location__map
  .location__pin--1
  .location__pin-dot,
.location__radio:nth-of-type(2):checked
  ~ .location__map
  .location__pin--2
  .location__pin-dot,
.location__radio:nth-of-type(3):checked
  ~ .location__map
  .location__pin--3
  .location__pin-dot,
.location__radio:nth-of-type(4):checked
  ~ .location__map
  .location__pin--4
  .location__pin-dot,
.location__radio:nth-of-type(5):checked
  ~ .location__map
  .location__pin--5
  .location__pin-dot,
.location__radio:nth-of-type(6):checked
  ~ .location__map
  .location__pin--6
  .location__pin-dot {
  opacity: 1;
}
.location__radio:nth-of-type(1):checked
  ~ .location__map
  .location__pin--1
  .location__pin-halo,
.location__radio:nth-of-type(2):checked
  ~ .location__map
  .location__pin--2
  .location__pin-halo,
.location__radio:nth-of-type(3):checked
  ~ .location__map
  .location__pin--3
  .location__pin-halo,
.location__radio:nth-of-type(4):checked
  ~ .location__map
  .location__pin--4
  .location__pin-halo,
.location__radio:nth-of-type(5):checked
  ~ .location__map
  .location__pin--5
  .location__pin-halo,
.location__radio:nth-of-type(6):checked
  ~ .location__map
  .location__pin--6
  .location__pin-halo {
  opacity: 0.18;
}

@media (max-width: 860px) {
  .location__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .location__intro {
    max-width: none;
  }
  .location__map {
    order: 2;
  }
}

/* =========================================================================
   CONTACT-PAGINA — blocks
   ========================================================================= */
.contact-cards,
.contact-cards *,
.contact-form,
.contact-form *,
.reviews,
.reviews *,
.map-card,
.map-card * {
  box-sizing: border-box;
}

.section-eyebrow--gold {
  color: var(--color-sun);
}

/* ---------------------------------------------------------- CONTACTKAARTEN */
.contact-cards {
  padding-top: 40px;
}
.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  background: var(--color-shell);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
a.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(14, 20, 24, 0.12);
}
.contact-card--featured {
  background: var(--color-midnight);
  border-color: transparent;
}
.contact-card__icon {
  color: var(--color-flamboya);
  margin-bottom: 12px;
}
.contact-card__icon svg {
  width: 26px;
  height: 26px;
}
.contact-card__label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  line-height: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.contact-card__value {
  font-family: var(--font-heading), serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.contact-card__desc {
  color: var(--text-secondary);
  font-size: var(--body-size-md);
  line-height: 20px;
}
@media (max-width: 820px) {
  .contact-cards__grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------- CONTACTFORMULIER */
.contact-form {
  background: var(--background-main);
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-form__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.cform__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.cform__label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}
.cform__field input,
.cform__field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 246, 236, 0.22);
  color: var(--color-shell);
  font: inherit;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.15s ease;
}
.cform__field input::placeholder,
.cform__field textarea::placeholder {
  color: rgba(250, 246, 236, 0.4);
}
.cform__field input:focus,
.cform__field textarea:focus {
  border-bottom-color: var(--color-flamboya);
}
.cform textarea {
  resize: vertical;
  min-height: 70px;
}
.cform__consent {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin: 8px 0 24px;
  color: var(--text-secondary);
  font-size: var(--body-size-md);
  line-height: 20px;
  cursor: pointer;
}
.cform__consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--color-flamboya);
}
.cform__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cform__actions .btn-primary {
  border: none;
  cursor: pointer;
}
.cform__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  line-height: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.cform__note svg {
  width: 15px;
  height: 15px;
  color: var(--color-flamboya);
}
@media (max-width: 820px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cform__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ------------------------------------------------------------------ REVIEWS */
.reviews__head {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
}
.reviews__eyebrow {
  text-align: center;
}
.reviews__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
}
.reviews__rating {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}
/* Sterren: dezelfde SVG, grijs in de kop en oranje op de kaarten. */
.willi-star {
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}
.reviews__stars,
.review-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.reviews__stars {
  color: var(--color-iguana); /* #6A6C6A */
  margin-right: 8px;
  vertical-align: middle;
}
.review-card__stars {
  color: var(--color-flamboya);
}
.review-card__stars .willi-star {
  width: 14px;
  height: 14px;
}

.reviews__viewport {
  overflow: hidden;
}
.reviews__track {
  display: flex;
  width: max-content;
  animation: reviews-marquee var(--reviews-speed, 60s) linear infinite;
}
.reviews:hover .reviews__track {
  animation-play-state: paused;
}
.reviews__group {
  display: flex;
  align-items: flex-start; /* kaarten houden hun eigen hoogte */
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}
.review-card {
  width: min(380px, 82vw);
  flex: 0 0 auto;
  background: var(--color-shell);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-card__stars {
  font-size: 15px;
  margin-bottom: 16px;
}
.review-card__text {
  margin: 0;
  color: var(--text-primary);
  line-height: 24px;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  /* Scheidingslijn met 20px lucht boven en onder. */
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-default);
}
.review-card__name {
  font-family: var(--font-heading), serif;
  font-weight: 800;
  font-size: var(--h4-size);
}
.review-card__meta {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
}
/* Precies één set opschuiven: de rest staat er naadloos achter. */
@keyframes reviews-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reviews__track {
    animation: none;
  }
  .reviews__viewport {
    overflow-x: auto;
  }
  .reviews__group[aria-hidden="true"] {
    display: none;
  }
}

/* ----------------------------------------------------------------- MAP-CARD */
.map-card__head {
  max-width: 620px;
  margin-bottom: 36px;
}
.map-card__title {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
}
.map-card__intro {
  margin: 0;
  font-size: var(--body-size-l);
  line-height: 26px;
}
.map-card__frame {
  position: relative;
}
.map-card__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  background: repeating-conic-gradient(
      var(--color-ntb) 0% 25%,
      var(--color-shell) 0% 50%
    )
    50% / 40px 40px;
}
.map-card__map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}
.map-card__map .willi-img {
  min-height: 520px;
}
.map-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 520px;
  color: var(--color-limestone);
}
.map-card__placeholder svg {
  width: 30px;
  height: 30px;
}
.map-card__placeholder .willi-img-placeholder__label {
  font-size: var(--body-size-s);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.map-card__info {
  position: absolute;
  top: 28px;
  left: 28px;
  bottom: 28px; /* volledige hoogte, met dezelfde marge als boven/links */
  display: flex;
  flex-direction: column;
  width: 396px;
  max-width: calc(100% - 56px);
  background: var(--color-midnight);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 30px 60px rgba(14, 20, 24, 0.28);
}
.map-card__info-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-flamingo);
  margin: 0 0 10px;
}
.map-card__address {
  margin: 0 0 20px;
  font-size: var(--h3-size);
  line-height: 28px;
  color: var(--color-shell);
}
.map-card__points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.map-card__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(250, 246, 236, 0.85);
  font-size: var(--body-size); /* 15px */
  line-height: 24px;
  /* Scheidingslijn tussen de punten, 12px lucht boven en onder. */
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle); /* #FAF6EC33 */
}
.map-card__points li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.map-card__point-icon {
  flex: 0 0 auto;
  color: var(--color-flamboya);
}
.map-card__point-icon svg {
  width: 18px;
  height: 18px;
}
.map-card__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-card__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  width: 100%;
}
.map-card__actions svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 820px) {
  .map-card__map,
  .map-card__map iframe,
  .map-card__placeholder,
  .map-card__map .willi-img {
    min-height: 360px;
  }
  .map-card__info {
    position: static;
    width: auto;
    max-width: none;
    margin-top: 16px;
  }
  .map-card__actions {
    margin-top: 8px;
  }
}

/* =========================================================================
   HOE HET WERKT — blocks
   ========================================================================= */
.timeline,
.timeline *,
.included,
.included *,
.qa-grid,
.qa-grid *,
.banner,
.banner *,
.paycancel,
.paycancel * {
  box-sizing: border-box;
}

.section-eyebrow--green {
  color: var(--color-cactus);
}
.faq__eyebrow {
  color: var(--color-ocean);
}

/* ----------------------------------------------------------------- TIJDLIJN */
.timeline__head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.timeline__head .section-eyebrow {
  text-align: center;
}
.timeline__title {
  margin: 0 0 16px;
  font-size: var(--h2-size); /* 32px */
  line-height: var(--h2-lh); /* 42px */
  letter-spacing: var(--h2-ls); /* -3% */
  text-align: center;
}
.timeline__intro {
  margin: 0 auto;
  max-width: 560px;
  font-size: var(--body-size-l);
  line-height: 26px;
}
.timeline__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(var(--n, 5), minmax(0, 1fr));
  gap: 32px;
  position: relative;
}
.timeline__step {
  position: relative;
  z-index: 1;
}
.timeline__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 28px;
  width: calc(100% + 24px);
  border-top: 2px dashed rgba(14, 20, 24, 0.18);
  z-index: 0;
}
.timeline__node {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-shell);
  border: 2px solid var(--color-midnight);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.timeline__node--done {
  background: var(--color-flamboya);
  border-color: var(--color-flamboya);
  color: var(--color-shell);
}
.timeline__node--done svg {
  width: 24px;
  height: 24px;
}
/* Ruimere specificiteit dan de basisregel voor h3. */
.timeline .timeline__step-title {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.timeline__step-text {
  margin: 0;
  font-size: var(--body-size-md); /* 13px */
  line-height: 20px;
  color: var(--text-secondary);
}
@media (max-width: 720px) {
  .timeline__steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .timeline__step::after {
    display: none;
  }
  .timeline__node {
    margin-bottom: 14px;
  }
}

/* ---------------------------------------------------------------- INBEGREPEN */
.included__head {
  max-width: 620px;
  margin-bottom: 40px;
}
.included__title {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
}
.included__viewport {
  overflow: hidden;
  padding: 6px 0 8px;
}
.included__track {
  display: flex;
  width: max-content;
  animation: included-marquee var(--included-speed, 45s) linear infinite;
}
.included:hover .included__track {
  animation-play-state: paused;
}
.included__group {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}
.included-card {
  position: relative;
  width: min(440px, 84vw);
  flex: 0 0 auto;
  background: var(--color-shell);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 28px 56px 28px 28px;
}
/* Precies één set opschuiven; de rest staat er naadloos achter. */
@keyframes included-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .included__track {
    animation: none;
  }
  .included__viewport {
    overflow-x: auto;
  }
  .included__group[aria-hidden="true"] {
    display: none;
  }
}
.included-card__check {
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--color-flamboya);
}
.included-card__check svg {
  width: 22px;
  height: 22px;
}
.included .included-card__title {
  margin: 0;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.included .included-card__text {
  margin: 0;
  font-size: var(--body-size-md); /* 13px */
  line-height: 20px;
  color: var(--text-primary);
}

/* ---------------------------------------------------------- QA-GRID (borg, donker) */
.qa-grid {
  background: var(--background-main);
}
.qa-grid__head {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}
.qa-grid__head .section-eyebrow {
  text-align: center;
}
.qa-grid__title {
  margin: 0 0 16px;
  font-size: var(--h2-size); /* 32px */
  line-height: var(--h2-lh); /* 42px */
  letter-spacing: var(--h2-ls); /* -3% */
  text-align: center;
}
.qa-grid__intro {
  margin: 0 auto;
  max-width: 640px;
  color: var(--text-secondary);
  font-size: var(--body-size); /* 15px */
  line-height: 24px;
  text-align: center;
}
.qa-grid__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.qa-grid__col {
  display: flex;
  flex-direction: column;
  gap: 40px; /* verticale ruimte tussen de items */
}
.qa-item {
  border-left: 1px solid rgba(250, 246, 236, 0.14);
  padding: 4px 0 4px 28px;
}
.qa-item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.qa-grid .qa-item__q {
  margin: 0;
  font-family: var(--font-body), serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: var(--text-primary);
}
.qa-item__meta {
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-flamingo);
  white-space: nowrap;
}
.qa-item__a {
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 28px;
  max-width: 46ch;
}
@media (max-width: 820px) {
  .qa-grid__cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ----------------------------------------------------------------- BANNER */
.banner {
  padding: 0;
}
/* De witruimte bóven het blok komt van de flow-layout van WordPress
   (`:where(.wp-block-group.is-layout-flow) > *`). Die selector heeft
   specificiteit 0, dus deze class wint zonder !important. */
.banner--flush-top {
  margin-block-start: 0;
  margin-top: 0;
}
.banner__media {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end; /* inhoud onderaan uitlijnen */
  overflow: hidden;
  padding: 40px 0 60px;
}
.banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
}
.banner__media .willi-img-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: 0;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(14, 20, 24, 0.82) 0%,
    rgba(14, 20, 24, 0.35) 45%,
    rgba(14, 20, 24, 0) 72%
  );
}
.banner .container {
  position: relative;
  z-index: 2;
}
.banner__content {
  max-width: none; /* de titel mag over de volle breedte */
}
.banner__eyebrow {
  margin-bottom: 12px;
}
.banner__title {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--color-shell);
}
.banner__intro {
  margin: 0;
  max-width: 460px;
  color: rgba(250, 246, 236, 0.9);
  line-height: 24px;
}
@media (max-width: 640px) {
  .banner__media {
    min-height: 340px;
    padding: 28px 0;
  }
}

/* ------------------------------------------------------- BETALEN & ANNULEREN */
.paycancel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.paycancel__title {
  margin: 0 0 16px;
  font-size: var(--h2-size); /* 32px */
  line-height: var(--h2-lh); /* 42px */
  letter-spacing: var(--h2-ls); /* -3% */
}
.paycancel__intro {
  margin: 0;
  max-width: 420px;
  font-size: var(--body-size-l);
  line-height: 26px;
}

.paycard {
  margin-top: 32px;
  min-height: 460px;
  background: var(--color-shell);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.paycard__label,
.cancelcard__label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--body-size-s); /* 12px */
  line-height: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 10px;
}
.paycancel .paycard__title {
  margin: 0 0 12px;
  font-size: var(--h3-size); /* 24px */
  line-height: 32px;
  letter-spacing: -0.025em;
}
.paycard__text {
  margin: 0 0 24px;
  line-height: 24px;
}
.paycard__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.paycard__badge {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  background: var(--color-shell);
}

.cancelcard {
  margin-top: 110px;
  background: var(--color-shell);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 50px rgba(14, 20, 24, 0.1);
}
.paycancel .cancelcard__title {
  margin: 0 0 12px;
  font-size: var(--h3-size); /* 24px */
  line-height: 32px;
  letter-spacing: -0.025em;
}
.cancelcard__text {
  margin: 0 0 24px;
  line-height: 24px;
}
.cancelcard__terms {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cancel-term {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.cancel-term:last-child {
  border-bottom: none;
}
.cancel-term__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.cancel-term__dot--cactus {
  background: var(--color-cactus);
}
.cancel-term__dot--sun {
  background: var(--color-sun);
}
.cancel-term__dot--flamboya {
  background: var(--color-flamboya);
}
.cancel-term__dot--midnight {
  background: var(--color-midnight);
}
.cancel-term__label {
  color: var(--text-primary);
}
.cancel-term__value {
  font-family: var(--font-heading), serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.01em;
  text-align: right;
  color: var(--text-primary);
}
@media (max-width: 820px) {
  .paycancel__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .paycancel__intro {
    max-width: none;
  }
  /* Onder elkaar hebben de kaarten de desktop-uitlijning niet nodig. */
  .paycard {
    min-height: 0;
  }
  .cancelcard {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .cancel-term {
    grid-template-columns: auto 1fr;
  }
  .cancel-term__value {
    grid-column: 1 / -1;
    text-align: left;
    padding-left: 23px;
    font-size: var(--body-size);
  }
}

/* =========================================================================
   WAGENPARK — blocks
   ========================================================================= */
.book-bar,
.book-bar *,
.locations,
.locations *,
.gallery,
.gallery *,
.compare,
.compare *,
.car-detail,
.car-detail *,
.car-inc,
.car-inc * {
  box-sizing: border-box;
}
.compare__head > *,
.compare__row > * {
  min-width: 0;
}
.car-inc__cards > *,
.car-detail__specs > * {
  min-width: 0;
}

/* --------------------------------------------------------- CTA licht thema */
.cta__card--theme-light {
  background:
    radial-gradient(
      700px 320px at 50% -10%,
      var(--color-sisal),
      transparent 60%
    ),
    var(--color-shell);
  border: 1px solid var(--border-default);
}
.cta__card--theme-light .cta__eyebrow {
  color: var(--color-ocean);
}
.cta__card--theme-light .cta__title {
  color: var(--text-primary);
}

/* ------------------------------------------------------------ BOEK-BALK */
.book-bar {
  padding: 12px 0;
}
.book-bar__inner {
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.book-bar--ocean {
  background: var(--color-ocean);
}
.book-bar--cactus {
  background: var(--color-cactus);
}
.book-bar--flamboya {
  background: var(--color-flamboya);
}
.book-bar--midnight {
  background: var(--color-midnight);
}
.book-bar__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(250, 246, 236, 0.8);
  margin: 0 0 10px;
}
.book-bar__title {
  margin: 0 0 6px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 800;
  color: var(--color-shell);
  letter-spacing: -0.01em;
}
.book-bar__price {
  margin: 0;
  font-size: var(--h3-size);
  color: rgba(250, 246, 236, 0.9);
}
.book-bar__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.book-bar__btn {
  width: 100%;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.book-bar__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 600;
  color: rgba(250, 246, 236, 0.85);
}
.book-bar__note svg {
  width: 15px;
  height: 15px;
  color: var(--color-flamboya);
}
@media (max-width: 720px) {
  .book-bar__inner {
    padding: 28px;
  }
  .book-bar__action {
    align-items: flex-start;
    width: 100%;
  }
  .book-bar__btn {
    width: 100%;
    text-align: center;
  }
}

/* ------------------------------------------------------------- LOCATIES */
.locations__head {
  max-width: 620px;
  margin-bottom: 40px;
}
.locations__title {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
}
.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc-card {
  background: var(--color-shell);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.loc-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.loc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
}
.loc-card__icon svg {
  width: 22px;
  height: 22px;
}
.loc-card__icon--ocean {
  background: rgba(24, 86, 163, 0.12);
  color: var(--color-ocean);
}
.loc-card__icon--flamingo {
  background: rgba(255, 122, 154, 0.16);
  color: var(--color-flamingo);
}
.loc-card__icon--cactus {
  background: rgba(0, 113, 67, 0.12);
  color: var(--color-cactus);
}
.loc-card__icon--flamboya {
  background: rgba(252, 80, 14, 0.12);
  color: var(--color-flamboya);
}
.loc-card__badge {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.loc-card__badge--free {
  background: rgba(0, 113, 67, 0.12);
  color: var(--color-cactus);
}
.loc-card__badge--paid {
  background: rgba(252, 80, 14, 0.12);
  color: var(--color-flamboya);
}
.loc-card__title {
  margin: 0 0 10px;
  font-size: var(--h4-size);
  letter-spacing: -0.01em;
}
.loc-card__text {
  margin: 0;
  line-height: 22px;
}
@media (max-width: 820px) {
  .locations__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------- FOTOGALERIJ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
  grid-template-areas:
    "a c c d"
    "b c c e";
}
.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery__item--1 {
  grid-area: a;
}
.gallery__item--2 {
  grid-area: b;
}
.gallery__item--3 {
  grid-area: c;
}
.gallery__item--4 {
  grid-area: d;
}
.gallery__item--5 {
  grid-area: e;
}
.gallery__img,
.gallery__item .willi-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  min-height: 0;
}
@media (max-width: 720px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px repeat(2, 150px);
    grid-template-areas:
      "c c"
      "a b"
      "d e";
  }
}

/* -------------------------------------------------------- VERGELIJK-TABEL */
.compare__card {
  background: var(--color-shell);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.compare__head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: end;
}
.compare__title {
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
}
.compare__carhead {
  border-radius: var(--radius-md);
  padding: 24px;
}
.compare__carhead--ocean {
  background: #eae8e4;
}
.compare__carhead--cactus {
  background: rgba(0, 113, 67, 0.09);
}
.compare__carhead--flamboya {
  background: rgba(252, 80, 14, 0.09);
}
.compare__carhead--flamingo {
  background: rgba(255, 122, 154, 0.12);
}
.compare__carmeta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.compare__badge {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-shell);
}
.compare__badge--ocean {
  background: var(--color-ocean);
}
.compare__badge--cactus {
  background: var(--color-cactus);
}
.compare__badge--flamboya {
  background: var(--color-flamboya);
}
.compare__badge--flamingo {
  background: var(--color-flamingo);
}
.compare__sub {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-ocean);
}
.compare__sub--cactus {
  color: var(--color-cactus);
}
.compare__sub--flamboya {
  color: var(--color-flamboya);
}
.compare__sub--flamingo {
  color: var(--color-flamingo);
}
.compare__carname {
  margin: 0;
  font-size: var(--h3-size);
  line-height: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  align-items: center;
}
.compare__row:first-child {
  margin-top: 12px;
}
.compare__rowlabel {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}
.compare__rowval {
  font-weight: 700;
}
@media (max-width: 820px) {
  .compare__card {
    padding: 20px;
  }
  .compare__head {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .compare__intro {
    grid-column: 1 / -1;
  }
  .compare__carhead {
    padding: 14px;
  }
  .compare__carmeta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 10px;
  }
  .compare__badge {
    padding: 4px 9px;
    font-size: 10px;
  }
  .compare__sub {
    font-size: 9px;
    letter-spacing: 0;
  }
  .compare__carname {
    font-size: 15px;
    line-height: 19px;
  }
  .compare__row {
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
  }
  .compare__rowlabel {
    grid-column: 1 / -1;
  }
}

/* ------------------------------------------------------------ AUTO DETAIL */
.car-detail__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 24px;
  border: 1px solid var(--border-default); /* #E5DECF */
  border-radius: var(--radius-lg);
  align-items: stretch;
}
/* Kleurvarianten: blauw of groen, gelijk aan de pil bovenaan. */
.car-detail--ocean {
  background: #1856a30f;
}
.car-detail--cactus {
  background: #0071430f;
}
.car-detail__info {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.car-detail__badge {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-shell);
}
.car-detail__badge--ocean {
  background: var(--color-ocean);
}
.car-detail__badge--cactus {
  background: var(--color-cactus);
}
.car-detail__badge--flamboya {
  background: var(--color-flamboya);
}
.car-detail__badge--flamingo {
  background: var(--color-flamingo);
}
.car-detail__name {
  font-family: var(--font-condensed), serif;
  margin: 18px 0 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.car-detail__desc {
  margin: 0 0 28px;
  max-width: 420px;
  font-size: var(--body-size-l);
  line-height: 26px;
}
.car-detail__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin: 0 0 28px;
}
.car-detail__spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(14, 20, 24, 0.1);
}
.car-detail__spec dt {
  margin: 0;
  color: var(--text-secondary);
}
.car-detail__spec dd {
  margin: 0;
  font-weight: 700;
}
.car-detail__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.car-detail__amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
}
.car-detail__amount small {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-left: 3px;
}
.car-detail__price-note {
  display: block;
  font-size: var(--body-size-md);
  color: var(--text-secondary);
}
.car-detail__btn {
  text-decoration: none;
  white-space: nowrap;
}
.car-detail__btn:hover {
  background: #000;
}
.car-detail__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 420px;
}
.car-detail__media .willi-img,
.car-detail__media .willi-img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
@media (max-width: 860px) {
  .car-detail__card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
  .car-detail__info {
    padding: 16px;
  }
  .car-detail__name {
    font-size: clamp(30px, 8.5vw, 48px);
  }
  .car-detail__media {
    min-height: 280px;
    order: -1;
  }
  .car-detail__specs {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* -------------------------------------------- AUTO INBEGREPEN & PERFECT VOOR */
.car-inc__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.car-inc__panel {
  background: var(--color-midnight);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.car-inc__title {
  margin: 0 0 24px;
  font-size: var(--h3-size);
  font-weight: 800;
  color: var(--color-shell);
  letter-spacing: -0.02em;
}
.car-inc__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.car-inc__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250, 246, 236, 0.1);
  color: rgba(250, 246, 236, 0.9);
}
.car-inc__list li:last-child {
  border-bottom: none;
}
.car-inc__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.car-inc__dot--in {
  background: var(--color-flamingo);
}
.car-inc__dot--opt {
  background: var(--color-sisal);
}
.car-inc__optlabel {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 700;
  color: rgba(250, 246, 236, 0.5);
  margin: 0 0 8px;
}
.car-inc__list--opt {
  margin-bottom: 0;
}
.car-inc__list--opt li {
  color: rgba(250, 246, 236, 0.75);
}
.car-inc__optname {
  flex: 1;
}
.car-inc__optprice {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(250, 246, 236, 0.5);
  font-weight: 600;
  white-space: nowrap;
}
.car-inc__pf-title {
  margin: 0 0 28px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
}
.car-inc__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pf-card {
  background: var(--color-shell);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 24px;
}
.pf-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading), serif;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 32px;
}
/* Kleurvarianten voor het label en de nummers. */
.car-inc__perfect--cactus .section-eyebrow {
  color: var(--color-cactus);
}
.car-inc__perfect--cactus .pf-card__num {
  background: rgba(0, 113, 67, 0.1);
  color: var(--color-cactus);
}
.car-inc__perfect--ocean .section-eyebrow {
  color: var(--color-ocean);
}
.car-inc__perfect--ocean .pf-card__num {
  background: rgba(24, 86, 163, 0.1);
  color: var(--color-ocean);
}
.pf-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.pf-card__text {
  margin: 0;
  line-height: 22px;
}
@media (max-width: 860px) {
  .car-inc__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 520px) {
  .car-inc__cards {
    grid-template-columns: 1fr;
  }
}
