/* =============================================================
   Prestige Executive Mobility — gedeelde stijl voor dienst-detailpagina's
   (zelfde branding/tokens als index.html)
   ============================================================= */
:root {
  --bg:           #0A0A0B;
  --surface:      #111111;
  --surface-2:    #18181A;
  --surface-3:    #202023;
  --border:       #26251F;
  --border-2:     #34322A;

  --accent:       #C9A86A;
  --accent-light: #E4CC92;
  --accent-dim:   #6E5C33;

  --text-1:       #F2EFE9;
  --text-2:       #9B968C;
  --text-3:       #585249;

  --nav-h:        72px;
  --max-w:        1340px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --r-sm:         4px;
  --r-md:         10px;
  --r-lg:         18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

.display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.accent-rule { display: block; width: 32px; height: 1px; background: var(--accent); margin-bottom: 24px; }
.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

/* Scroll reveal */
.r { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.r.in { opacity: 1; transform: none; }
.r-d1 { transition-delay: 0.08s; }
.r-d2 { transition-delay: 0.16s; }
.r-d3 { transition-delay: 0.24s; }
.r-d4 { transition-delay: 0.33s; }
@media (prefers-reduced-motion: reduce) { .r { opacity: 1; transform: none; transition: none; } }

/* Grain */
.grain {
  position: fixed; inset: 0; z-index: 500; pointer-events: none; opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ===== Navigatie ===== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s, border-color 0.4s; border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,11,0.90);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav__inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-img { height: 46px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav__links li { white-space: nowrap; }
.nav__links a { font-size: 12px; font-weight: 400; letter-spacing: 0.05em; color: var(--text-2); transition: color 0.2s; }
.nav__links a:hover { color: var(--text-1); }
.nav__book {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bg); background: var(--accent); padding: 10px 22px; border-radius: var(--r-sm);
  flex-shrink: 0; white-space: nowrap; transition: background 0.2s, transform 0.15s;
}
.nav__book:hover  { background: var(--accent-light); }
.nav__book:active { transform: scale(0.97); }

/* ===== Taalwisselaar ===== */
#pem-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.pem-lang-btn {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  color: var(--text-2);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 4px 5px;
  cursor: pointer;
  transition: color 0.2s;
}
.pem-lang-btn:hover { color: var(--text-1); }
.pem-lang-btn.is-active { color: var(--accent); }

/* ===== Knoppen ===== */
.btn-primary {
  display: inline-block; font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--bg); background: var(--accent);
  padding: 15px 32px; border-radius: var(--r-sm); border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover  { background: var(--accent-light); }
.btn-primary:active { transform: scale(0.97); }
.btn-ghost {
  display: inline-block; font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-2); background: none; border: none;
  border-bottom: 1px solid var(--border-2); padding: 4px 0; cursor: pointer; white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--text-1); border-color: var(--text-3); }

/* =============================================================
   DIENST-DETAIL — HERO
   ============================================================= */
.svc-hero {
  position: relative; min-height: 82vh; display: flex; align-items: flex-end;
  padding-top: var(--nav-h); overflow: hidden;
}
.svc-hero__media { position: absolute; inset: 0; z-index: 0; }
.svc-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.svc-hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,11,0.96) 0%, rgba(10,10,11,0.55) 42%, rgba(10,10,11,0.25) 72%, rgba(10,10,11,0.45) 100%),
    linear-gradient(to right, rgba(10,10,11,0.55) 0%, transparent 62%);
}
.svc-hero__inner { position: relative; z-index: 1; width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 48px 84px; }
.svc-back { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.06em; color: var(--text-2); margin-bottom: 30px; transition: color 0.2s, gap 0.2s; }
.svc-back:hover { color: var(--accent); gap: 12px; }
.svc-hero__title { font-size: clamp(44px, 7vw, 92px); color: var(--text-1); max-width: 15ch; margin-bottom: 22px; }
.svc-hero__title em { font-style: italic; color: var(--accent-light); }
.svc-hero__sub { font-size: 17px; font-weight: 300; color: var(--text-2); max-width: 540px; line-height: 1.78; margin-bottom: 42px; }
.svc-hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.svc-hero__price { font-size: 12px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--accent); }
.svc-hero__price span { color: var(--text-3); font-weight: 400; letter-spacing: 0.04em; text-transform: none; }

/* ===== Intro + uitgebreide uitleg ===== */
.svc-intro { padding: 112px 0 8px; }
.svc-intro__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.svc-section-hl { font-size: clamp(32px, 3.8vw, 54px); color: var(--text-1); }
.svc-lead { font-size: 19px; font-weight: 300; color: var(--text-1); line-height: 1.7; margin-bottom: 26px; }
.svc-text p { font-size: 16px; font-weight: 300; color: var(--text-2); line-height: 1.85; }
.svc-text p + p { margin-top: 20px; }

/* ===== Voordelen ===== */
.svc-benefits { padding: 112px 0; }
.svc-intro-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 54px; }
.svc-intro-row p { font-size: 14px; font-weight: 300; color: var(--text-2); max-width: 340px; line-height: 1.7; }
.svc-benefits__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px;
  background: var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.svc-benefit { background: var(--surface); padding: 40px 40px 44px; transition: background 0.3s; }
.svc-benefit:hover { background: var(--surface-2); }
.svc-benefit__ico {
  width: 44px; height: 44px; border-radius: var(--r-sm); display: inline-flex; align-items: center; justify-content: center;
  background: rgba(201,168,106,0.10); border: 1px solid var(--border-2);
}
.svc-benefit__ico svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc-benefit__title { font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 400; color: var(--text-1); margin: 20px 0 10px; line-height: 1.2; }
.svc-benefit__desc { font-size: 13px; font-weight: 300; color: var(--text-2); line-height: 1.72; }

/* ===== Waarom kiezen ===== */
.svc-why { padding: 112px 0; background: var(--surface); }
.svc-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; }
.svc-why__item { padding: 0 40px; border-left: 1px solid var(--border); }
.svc-why__item:first-child { padding-left: 0; border-left: none; }
.svc-why__title { font-size: 21px; color: var(--text-1); margin-bottom: 12px; }
.svc-why__desc { font-size: 14px; font-weight: 300; color: var(--text-2); line-height: 1.75; }

/* ===== Tour-dagprogramma (timeline) ===== */
.tour-prog { padding: 112px 0; }
.tour-steps { margin-top: 54px; max-width: 820px; }
.tour-step { display: grid; grid-template-columns: 92px 1fr; gap: 30px; align-items: start; }
.tour-step__time { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; color: var(--accent); padding-top: 3px; }
.tour-step__body { position: relative; border-left: 1px solid var(--border); padding: 0 0 38px 34px; }
.tour-step:last-child .tour-step__body { border-left-color: transparent; padding-bottom: 0; }
.tour-step__body::before {
  content: ''; position: absolute; left: -5px; top: 5px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.12);
}
.tour-step__title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--text-1); line-height: 1.2; margin-bottom: 7px; }
.tour-step__desc { font-size: 14px; font-weight: 300; color: var(--text-2); line-height: 1.72; }
@media (max-width: 600px) {
  .tour-step { grid-template-columns: 58px 1fr; gap: 16px; }
  .tour-step__body { padding-left: 24px; }
}

/* ===== Mid-page CTA strip ===== */
.svc-midcta { padding: 72px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.svc-midcta__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.svc-midcta__text { display: flex; flex-direction: column; gap: 6px; }
.svc-midcta__hl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.8vw, 38px); font-weight: 300; color: var(--text-1); line-height: 1.1;
}
.svc-midcta__sub { font-size: 14px; font-weight: 300; color: var(--text-2); }
.svc-midcta__actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== Sticky mobiele boekingsbalk ===== */
.svc-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(10,10,11,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-2);
  padding: 14px 20px;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  display: none;
}
body.has-svcbar .svc-bar { transform: translateY(0); }
.svc-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; max-width: var(--max-w); margin: 0 auto;
}
.svc-bar__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; overflow: hidden; }
.svc-bar__service {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.svc-bar__price { font-size: 15px; font-weight: 500; color: var(--accent); white-space: nowrap; }
.svc-bar__cta { padding: 11px 22px; flex-shrink: 0; }

/* ===== Slot-CTA ===== */
.svc-cta { padding: 130px 0; position: relative; overflow: hidden; text-align: center; }
.svc-cta::before { content: ''; position: absolute; inset: 0; background: url('images/duo-nacht.jpg') center 40% / cover no-repeat; opacity: 0.08; }
.svc-cta::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--bg) 0%, transparent 30%, var(--bg) 100%); }
.svc-cta__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.svc-cta__hl { font-size: clamp(38px, 4.8vw, 68px); color: var(--text-1); margin-bottom: 22px; }
.svc-cta__hl em { font-style: italic; color: var(--accent-light); }
.svc-cta__sub { font-size: 16px; font-weight: 300; color: var(--text-2); max-width: 480px; margin: 0 auto 42px; line-height: 1.75; }
.svc-cta__actions { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }

/* ===== Footer ===== */
.footer { padding: 72px 0 56px; border-top: 1px solid var(--border); }
.footer__main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; align-items: start; }
.footer__logo-img { height: 58px; width: auto; display: block; margin-bottom: 18px; }
.footer__brand-desc { font-size: 13px; font-weight: 300; color: var(--text-3); line-height: 1.7; max-width: 260px; }
.footer__col-title { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-bottom: 20px; }
.footer__col-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer__col-title a:hover { color: var(--accent); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 13px; font-weight: 300; color: var(--text-2); transition: color 0.2s; }
.footer__links a:hover { color: var(--text-1); }
.footer__bottom {
  margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
}
.footer__bottom p { font-size: 12px; font-weight: 300; color: var(--text-3); }
.footer__legal {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
  font-size: 12px;
}
.footer__legal a { color: var(--text-2); transition: color 0.2s; }
.footer__legal a:hover { color: var(--accent); }
.footer__legal span { color: var(--border-2); }

/* ===== Floating contact-bubble (WhatsApp + bellen) ===== */
.fab { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.fab__options {
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.fab.is-open .fab__options { opacity: 1; visibility: visible; transform: translateY(0); }
.fab__action {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px 11px 16px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text-1);
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em; text-decoration: none;
  box-shadow: 0 8px 28px rgba(10,10,11,0.55); transition: transform 0.2s, border-color 0.2s;
}
.fab__action:hover { transform: translateY(-2px); border-color: var(--accent); }
.fab__ico { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.fab__ico svg { width: 17px; height: 17px; display: block; }
.fab__ico--wa { background: #25D366; }
.fab__ico--call { background: var(--accent); }
.fab__toggle {
  width: 60px; height: 60px; border-radius: 50%; border: none;
  background: var(--accent); color: var(--bg); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 32px rgba(201,168,106,0.35);
  transition: transform 0.25s var(--ease), background 0.2s;
}
.fab__toggle:hover { background: var(--accent-light); }
.fab__toggle svg { width: 26px; height: 26px; transition: transform 0.3s var(--ease); }
.fab.is-open .fab__toggle svg { transform: rotate(135deg); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .wrap, .nav__inner { padding: 0 28px; }
  .svc-hero__inner { padding: 0 28px 64px; }
  .svc-intro__grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-benefits__grid { grid-template-columns: 1fr; }
  .svc-why__grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-why__item { padding: 0; border-left: none; }
  .svc-intro-row { flex-direction: column; align-items: flex-start; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  .wrap, .nav__inner, .svc-hero__inner { padding-left: 20px; padding-right: 20px; }
  .nav__links { display: none; }
  .nav__logo-img { height: 40px; }
  .svc-hero__actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .fab { right: 16px; bottom: 16px; }
  .fab__toggle { width: 54px; height: 54px; }
  /* Sticky bar: alleen zichtbaar op mobiel */
  .svc-bar { display: block; }
  body.has-svcbar { padding-bottom: 74px; }
  .svc-midcta__inner { flex-direction: column; align-items: flex-start; }
  .svc-midcta__actions { width: 100%; }
}

/* =============================================
   FASE 9B — DESIGN POLISH (gedeeld met homepage)
   Shimmer op primaire CTA · magnetische knoppen ·
   gouden scroll-progressbar
   ============================================= */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary,
.nav__book { transform: translate(var(--magx, 0px), var(--magy, 0px)); }
.btn-primary:active { transform: translate(var(--magx, 0px), var(--magy, 0px)) scale(0.97); }
.nav__book:active   { transform: translate(var(--magx, 0px), var(--magy, 0px)) scale(0.97); }
.btn-primary::after {
  content: '';
  position: absolute;
  top: -2px; bottom: -2px; left: 0;
  width: 44%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.32) 50%, transparent 100%);
  transform: translateX(-130%) skewX(-18deg);
  animation: pemShimmer 7s ease-in-out 2.5s infinite;
  pointer-events: none;
}
@keyframes pemShimmer {
  0%   { transform: translateX(-130%) skewX(-18deg); }
  16%  { transform: translateX(380%)  skewX(-18deg); }
  100% { transform: translateX(380%)  skewX(-18deg); }
}
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 210;
  background: linear-gradient(to right, var(--accent-dim), var(--accent));
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { animation: none; opacity: 0; }
}

/* =============================================
   FASE 9C — SUBPAGINA-CHOREOGRAFIE
   Ken Burns op svc-hero · mask-reveal herotitels ·
   sectie-dividers · tilt + sheen op voertuigkaarten
   ============================================= */

/* — Ken Burns: trage zoom op elke svc-hero-foto — */
.svc-hero__media img {
  transform-origin: 50% 45%;
  animation: pemKenBurns 30s linear both;
}
@keyframes pemKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* — Mask-reveal op herotitels (inline-block: behoudt regelval) — */
.hl-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  /* compensatie zodat staartletters niet worden afgeknipt */
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hl-mask > span,
.hl-mask > em {
  display: inline-block;
  transform: translateY(118%);
  animation: pemLineUp 1.05s var(--ease) 0.12s forwards;
}
.hl-mask + .hl-mask > span,
.hl-mask + .hl-mask > em { animation-delay: 0.32s; }
@keyframes pemLineUp { to { transform: translateY(0); } }
/* Choreografie: label → titel → subtitel → CTA's */
.svc-hero .r-d2 { transition-delay: 0.62s; }
.svc-hero .r-d3 { transition-delay: 0.82s; }

/* — Sectie-divider: gouden hairline met ornament — */
.sec-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto 64px;
  max-width: 460px;
}
.sec-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-2));
}
.sec-divider__line:last-child {
  background: linear-gradient(to left, transparent, var(--border-2));
}
.sec-divider__mark {
  color: var(--accent);
  font-size: 11px;
  line-height: 1;
}

/* — 3D-tilt + gouden sheen op voertuigkaarten (vlootpagina's) —
   body-prefix: wint van de paginalokale .vehicle-card-transition */
body .vehicle-card {
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.45s var(--ease);
}
.vehicle-card__img-wrap { position: relative; }
.vehicle-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(420px circle at var(--shx, 50%) var(--shy, 50%), rgba(228,204,146,0.16), transparent 60%);
  transition: opacity 0.35s var(--ease);
}
.vehicle-card:hover .vehicle-card__img-wrap::after { opacity: 1; }

@media (max-width: 640px) {
  .sec-divider { margin-bottom: 48px; max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  .svc-hero__media img { animation: none; }
  .hl-mask > span, .hl-mask > em { animation: none; transform: none; }
  .svc-hero .r-d2, .svc-hero .r-d3 { transition-delay: 0s; }
  body .vehicle-card { transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease); }
}

/* =============================================================
   PAGINAOVERGANGEN — crossfade-door-zwart + gouden lichtveeg
   (zie motion.js; entree is pure CSS zodat het ook zonder JS werkt)
   ============================================================= */
@media (prefers-reduced-motion: no-preference) {
  body { animation: pemPageIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
}
@keyframes pemPageIn { from { opacity: 0; } to { opacity: 1; } }

.pem-veil {
  position: fixed; inset: 0; background: var(--bg);
  opacity: 0; pointer-events: none; z-index: 99999;
  transition: opacity 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}
.pem-veil.is-on { opacity: 1; }

.pem-sweep {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  z-index: 100000; pointer-events: none;
}
.pem-sweep.is-on { transform: scaleX(1); transition: transform 0.44s cubic-bezier(0.4, 0, 0.2, 1); }

/* ── Socials in footer (LinkedIn) ───────────────────────────── */
.footer__social { margin-top: 18px; display: flex; gap: 12px; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-2); color: var(--text-2);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer__social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
