/* Whitney's Beauty Addicts – Dark Luxury Theme v7.0
   Zwart · Goud · Glassmorphism · Shimmer buttons · B&W foto's
*/

/* ===================== 1) Design tokens ===================== */
:root {
  --maxw: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.7);

  /* Donkere basis */
  --bg:       #080808;
  --surface:  #0f0f0f;
  --panel:    #111111;
  --card:     #111111;
  --border:   rgba(255,255,255,0.07);

  --text:     #f0f0f0;
  --muted:    #888888;

  --menu:     #cccccc;
  --menu-hover: #ffffff;

  /* Goud palette */
  --gold-1: #b07d2a;
  --gold-2: #f0d898;
  --gold-3: #c9a96e;
  --gold-4: #ffe8a0;

  /* Knoppen (goud gradient) */
  --btn-start: #b07d2a;
  --btn-end:   #f0d898;

  /* Afbeeldingen */
  --thumb-ratio: 4/3;
  --thumb-fit:   cover;
  --thumb-bg:    #1a1a1a;

  --btn-shift-duration: 3s;
}

/* ===================== 2) Reset / Base ===================== */
*, *::before, *::after { box-sizing: border-box }
html, body { margin: 0; max-width: 100%; overflow-x: hidden }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { max-width: 100%; height: auto; display: block }
img[width][height] { height: auto }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s }
a:hover { color: var(--gold-3) }
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 .6rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-hyphens: auto; hyphens: auto;
}
h1 { font-size: clamp(28px, 5.6vw, 46px); line-height: 1.15 }
h2 { font-size: clamp(22px, 3.8vw, 34px); line-height: 1.25 }
h3 { font-size: clamp(17px, 2.4vw, 22px); line-height: 1.3 }
:where(p, li, small, label, input, textarea, button) { color: var(--text) }
p { margin: 0 0 .75rem }
p:last-child { margin-bottom: 0 }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap
}
.sr-only-focusable:focus {
  position: static; width: auto; height: auto; clip: auto;
  white-space: normal; padding: 8px; border-radius: 8px;
  background: var(--panel); border: 1px solid var(--border)
}
:focus-visible {
  outline: 2px solid var(--gold-3);
  outline-offset: 2px
}
.content-clip { overflow-x: clip }
a, p, li, h1, h2, h3 { overflow-wrap: anywhere; word-break: break-word }

/* Utilities */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px }
.section { padding: 60px 0 }
@media (max-width: 640px) { .section { padding: 40px 0 } }
.text-center { text-align: center }
.meta { color: var(--muted) }
.mt-1 { margin-top: .5rem }
.mt-2 { margin-top: 1.25rem }

/* Grid helpers */
.grid { display: grid; gap: 20px }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)) } }
@media (max-width: 640px) { .grid-2, .grid-3 { grid-template-columns: 1fr } }

/* ===================== 3) Header / Navigatie ===================== */
.nav {
  position: sticky; top: 0; z-index: 2000;
  background: rgba(8, 8, 8, 0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06)
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; max-width: var(--maxw); margin: 0 auto; padding: 12px 20px
}
.brand img { width: 200px; height: auto }

.menu { display: flex; align-items: center; gap: 6px }
.menu a {
  padding: 9px 14px; border-radius: 10px; color: var(--menu);
  font-size: .95rem; font-weight: 500;
  transition: color .2s, background .2s
}
.menu a:hover { color: var(--menu-hover); background: rgba(255,255,255,0.06) }
.menu a[aria-current="page"] { color: var(--gold-3); font-weight: 700 }

.dropdown { position: relative }
.dropbtn {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 0;
  padding: 9px 14px; border-radius: 10px;
  color: var(--menu); cursor: pointer; font: inherit; font-size: .95rem; font-weight: 500
}
.dropbtn:hover, .dropdown:focus-within .dropbtn {
  background: rgba(255,255,255,0.06); color: var(--menu-hover)
}
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #181818; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  padding: 8px; padding-top: 16px; display: none; z-index: 3000;
  margin-top: -4px
}
.dropdown:hover .dropdown-menu,
.dropdown[data-open="true"] .dropdown-menu { display: block }

/* Bridge: voorkomt dat de hover verloren gaat tussen knop en menu */
.dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0;
  width: 100%; height: 8px;
}
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-size: .93rem }
.dropdown-menu a:hover { background: rgba(255,255,255,0.07); color: var(--gold-3) }
@media (max-width: 980px) { .dropdown-menu { display: none !important } }

.burger {
  display: none; cursor: pointer;
  background: rgba(255,255,255,0.06);
  padding: 10px 13px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; color: var(--menu);
  line-height: 1; box-shadow: var(--shadow);
  min-width: 44px; font-size: 1.1rem
}
.burger:hover { background: rgba(255,255,255,0.1); color: #fff }

/* ===================== 4) Mobile panel ===================== */
.backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 2050; opacity: 0; pointer-events: none; transition: opacity .25s
}
.backdrop.show { opacity: 1; pointer-events: auto }

.mobile-panel {
  position: fixed; inset: 0 0 0 auto; width: min(85%, 360px);
  height: 100dvh; max-height: 100dvh;
  background: #0f0f0f !important; color: var(--menu);
  transform: translateX(100%); transition: transform .28s ease;
  box-shadow: -20px 0 80px rgba(0,0,0,0.8); z-index: 2100;
  display: flex; flex-direction: column; overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.07)
}
.mobile-panel.open { transform: translateX(0) }
.mobile-panel, .mobile-panel * { pointer-events: auto }
.mobile-panel .panel-inner {
  flex: 1; min-height: 0;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 24px;
  padding-top: calc(24px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px))
}
.mobile-panel a {
  display: block; padding: 12px 10px; border-radius: 10px;
  color: var(--menu); font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.04)
}
.mobile-panel a:hover { background: rgba(255,255,255,0.06); color: var(--gold-3) }
.mobile-close {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  padding: 10px 14px; background: rgba(255,255,255,0.05);
  color: var(--menu); margin-bottom: 16px; font-size: .95rem
}
.mobile-close:hover { background: rgba(255,255,255,0.1); color: #fff }

html.menu-open, body.menu-open, body.nav-open { overflow: hidden }
body.nav-open { background: var(--bg) !important }

/* iOS 100vh fix */
.mobile-panel {
  height: calc(var(--vh, 1vh) * 100);
  max-height: calc(var(--vh, 1vh) * 100)
}

/* ===================== 5) Buttons ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 14px; border: none;
  font-weight: 700; font-size: .95rem; font-family: inherit;
  color: #0a0608;
  background: linear-gradient(105deg, var(--gold-1) 0%, var(--gold-4) 40%, var(--gold-2) 60%, var(--gold-3) 80%, var(--gold-1) 100%);
  background-size: 300% 100%;
  animation: btn-shimmer var(--btn-shift-duration) linear infinite;
  box-shadow: 0 4px 20px rgba(176,125,42,0.35), 0 1px 0 rgba(255,255,255,0.1) inset;
  transition: transform .2s, box-shadow .2s, filter .2s;
  min-height: 46px; max-width: 100%; white-space: normal;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  cursor: pointer
}
@keyframes btn-shimmer {
  0%   { background-position: 100% center }
  100% { background-position: -200% center }
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(176,125,42,0.5), 0 1px 0 rgba(255,255,255,0.15) inset;
  filter: brightness(1.08)
}
.btn:active { transform: translateY(0) scale(.97); filter: brightness(.97) }
.btn + .btn { margin-top: 12px !important }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px }
.btn-row .btn + .btn { margin-top: 0 !important }

.btn--primary { /* zelfde als .btn — is al goud */ }
.btn--ghost {
  background: transparent;
  animation: none;
  border: 1px solid rgba(201,169,110,0.45);
  color: var(--gold-3);
  box-shadow: none;
  text-shadow: none
}
.btn--ghost:hover {
  background: rgba(201,169,110,0.08);
  border-color: var(--gold-3);
  color: var(--gold-4);
  box-shadow: 0 0 20px rgba(201,169,110,0.12)
}

/* ===================== 6) Cards ===================== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), border-color .3s, box-shadow .3s;
  min-width: 0; overflow: hidden
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,169,110,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,169,110,0.07)
}
.card-body { padding: 18px; min-width: 0 }
.card-body h3 { margin-bottom: .4rem }

/* Card afbeeldingen — B&W met gold reveal */
.card > img:first-child,
.card > a:first-child > img,
.grid .card > a > img:first-child {
  width: 100%;
  aspect-ratio: var(--thumb-ratio);
  object-fit: var(--thumb-fit);
  object-position: center;
  background: var(--thumb-bg);
  filter: grayscale(100%) brightness(0.75) contrast(1.05);
  transition: filter .6s ease
}
.card:hover > img:first-child,
.card:hover > a:first-child > img,
.card:hover .grid > a > img:first-child {
  filter: grayscale(15%) brightness(0.9)
}
.thumb-cover { object-fit: cover; background: transparent }

/* ===================== 7) Hero ===================== */
.hero {
  position: relative;
  min-height: min(90vh, 800px);
  display: flex; align-items: center;
  overflow: hidden;
  padding: 80px 0
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: grayscale(100%) brightness(0.45) contrast(1.1);
  transition: filter 8s ease
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.72) 50%,
    rgba(12,8,4,0.82) 100%
  )
}
/* Goud accent gloed links */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(176,125,42,0.12) 0%, transparent 60%);
  z-index: 1
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 20px
}
.hero h1 {
  color: #fff;
  margin-bottom: .75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6)
}
.hero p { color: rgba(240,240,240,0.85); max-width: 640px }
.hero p strong { color: #fff }
.hero p a { color: var(--gold-3) }
.hero p a:hover { color: var(--gold-4) }
.hero .sub { font-size: .92rem; color: rgba(255,255,255,0.7) }
.hero .sub a { color: var(--gold-3) }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 16px }
@media (max-width: 640px) {
  .hero { min-height: min(70vh, 600px); padding: 60px 0 }
  .hero .actions { flex-direction: column }
  .hero .actions .btn { width: 100%; justify-content: center }
}

/* ===================== 8) Badges ===================== */
.badge {
  display: inline-block;
  padding: .4rem 1rem; border-radius: 999px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--gold-3);
  font-weight: 600; font-size: .87rem;
  margin-bottom: 1rem
}
.badge-soft {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: .25rem .7rem;
  color: var(--muted); font-weight: 600; font-size: .85rem
}

/* ===================== 9) Reviews ===================== */
.reviews--compact .head { margin-bottom: 24px }
.reviews--compact .head h2 { margin-bottom: 4px }
.rating { color: var(--gold-3); font-weight: 700; font-size: 1.05rem }

.review-mini {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color .3s, box-shadow .3s
}
.review-mini:hover {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4)
}
.review-mini header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #0a0608; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0
}
.who .name { display: block; font-weight: 700; color: #fff; font-size: .95rem }
.who .sub { display: block; font-size: .82rem; color: var(--muted) }
.review-mini p { font-size: .93rem; color: rgba(240,240,240,0.8); line-height: 1.6; margin: 0 }

/* ===================== 10) Pricing ===================== */
.price-list { display: flex; flex-direction: column; gap: 10px; margin-top: 12px }
.price-item {
  display: grid; grid-template-columns: minmax(0,1fr) auto;
  gap: 12px; align-items: start;
  padding: 13px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  min-width: 0
}
.price-item .title,
.price-item .money {
  font-weight: 700; line-height: 1.35; min-width: 0;
  overflow-wrap: anywhere; word-break: break-word;
  white-space: normal; -webkit-hyphens: auto; hyphens: auto
}
.price-item .money {
  font-weight: 800; margin-left: 10px; align-self: center;
  color: var(--gold-3); white-space: nowrap
}
.price-group > h3 { margin: 20px 0 10px; font-size: 1.05rem; font-weight: 800; color: var(--gold-3) }

.rates { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end }
.rate {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  font-weight: 800; color: var(--gold-3)
}
.rate small { font-weight: 600; opacity: .7 }
.nowrap { white-space: nowrap }

@media (max-width: 560px) {
  .price-item { grid-template-columns: 1fr; row-gap: 4px }
  .price-item .money { margin: 2px 0 0; align-self: flex-start }
  .price-list { gap: 12px }
}

/* ===================== 11) Forms ===================== */
main form, .container form {
  --cf-gap: 14px;
  --cf-border: rgba(255,255,255,0.1);
  --cf-radius: 14px;
  --cf-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: block;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; box-shadow: var(--cf-shadow); padding: 22px
}
main form label, .container form label {
  display: block; font-weight: 700; margin: 14px 0 6px; color: var(--text)
}
main form :is(input[type="text"],input[type="email"],input[type="tel"],input[type="url"],input[type="search"],input[type="password"],textarea),
.container form :is(input[type="text"],input[type="email"],input[type="tel"],input[type="url"],input[type="search"],input[type="password"],textarea) {
  width: 100%; padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--cf-radius);
  background: rgba(255,255,255,0.04);
  color: var(--text); font: inherit; line-height: 1.4;
  transition: border-color .15s, box-shadow .15s
}
main form textarea, .container form textarea { min-height: 160px; resize: vertical }
main form :is(input,textarea)::placeholder,
.container form :is(input,textarea)::placeholder { color: rgba(255,255,255,0.3); opacity: 1 }
main form :is(input,textarea):focus,
.container form :is(input,textarea):focus {
  outline: 0;
  border-color: rgba(201,169,110,0.5);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12)
}
main form :is(input,textarea):required:user-invalid,
.container form :is(input,textarea):required:user-invalid {
  border-color: rgba(230,80,80,0.6);
  box-shadow: 0 0 0 3px rgba(230,80,80,0.12)
}
@media (min-width: 640px) {
  main form .row-2, .container form .row-2 {
    display: grid; grid-template-columns: 2fr 1fr; gap: var(--cf-gap)
  }
}
main form input[type="checkbox"], .container form input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--gold-3);
  vertical-align: top; margin-right: 10px
}
main form :is(button[type="submit"],input[type="submit"]),
.container form :is(button[type="submit"],input[type="submit"]) {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 14px; border: 0;
  font-weight: 800; font-family: inherit; color: #0a0608; font-size: .95rem;
  background: linear-gradient(105deg, var(--gold-1) 0%, var(--gold-4) 40%, var(--gold-2) 60%, var(--gold-3) 80%, var(--gold-1) 100%);
  background-size: 300% 100%;
  animation: btn-shimmer 3s linear infinite;
  box-shadow: 0 4px 20px rgba(176,125,42,0.35);
  margin-top: 18px; min-height: 46px; cursor: pointer
}
main form :is(button[type="submit"],input[type="submit"]):hover,
.container form :is(button[type="submit"],input[type="submit"]):hover {
  filter: brightness(1.08); transform: translateY(-2px)
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none
}

/* ===================== 12) Footer ===================== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0 28px;
  margin-top: 40px
}
.footer a { color: var(--muted); font-size: .875rem }
.footer a:hover { color: var(--gold-3) }
.footer .notice { color: var(--muted); font-size: .82rem; text-align: center }

/* ===================== 13) Cookie banner ===================== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 2200;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  max-width: 980px; margin: 0 auto; padding: 18px; display: none
}
.cookie-banner h3 { margin: .2rem 0 .5rem; font-size: 1.1rem; color: #fff }
.cookie-banner p { color: rgba(240,240,240,0.75); font-size: .9rem }
.cookie-banner label { color: rgba(240,240,240,0.8); font-size: .9rem }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px }
.cookie-actions .btn { min-width: 130px }
details.cookie-more summary { cursor: pointer; font-weight: 700; margin: .2rem 0; color: var(--gold-3) }
details.cookie-more ul { color: rgba(240,240,240,0.7); font-size: .88rem; margin-top: .4rem }

/* ===================== 14) Responsive / Mobile ===================== */
@media (max-width: 980px) {
  .menu { display: none }
  .burger { display: inline-flex; align-items: center; justify-content: center }
  .brand img { width: 175px }
}
@media (max-width: 640px) {
  .brand img { width: 155px }
  :root { --thumb-ratio: 16/10 }
  .btn-row { flex-direction: column }
  input, textarea, select, button { font-size: 16px }
}

/* ===================== 15) Misc utility classes ===================== */
.hero .actions .btn { min-width: 200px; min-height: 50px; border-radius: 14px }
@media (max-width: 640px) {
  .hero .actions { flex-direction: column; align-items: stretch }
  .hero .actions .btn { width: 100% }
}

.feature-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, minmax(0,1fr))
}
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)) } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr } }

.card--soft {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  box-shadow: var(--shadow)
}
.card--soft .card-body { padding: 20px }
.card--soft h3 { margin: 0 0 .4rem }

.cta-stack { display: flex; flex-wrap: wrap; gap: 10px }
.cta-stack .btn { min-height: 46px }
@media (max-width: 640px) {
  .cta-stack { flex-direction: column }
  .cta-stack .btn { width: 100% }
}

/* Tabel-achtige rijen (behandelingpagina's) */
.table-like { display: flex; flex-direction: column; gap: 10px }
.row-like {
  display: grid; grid-template-columns: minmax(0,1fr) auto;
  gap: 8px; align-items: center;
  padding: 11px 14px;
  border: 1px solid var(--border); border-radius: 12px;
  background: rgba(255,255,255,0.03)
}
@media (max-width: 560px) {
  .row-like { grid-template-columns: 1fr }
  .row-like .right { justify-self: start }
}

.pillbar { display: flex; flex-wrap: wrap; gap: 8px }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center }
.actions .btn, .pillbar .btn { min-height: 46px; line-height: 1.1 }
@media (max-width: 640px) {
  .actions .btn, .pillbar .btn { width: 100%; justify-content: center }
}
.stack-quick { display: flex; flex-direction: column; gap: 12px }

/* Hero-media op behandelingpagina's */
.hero-media img {
  width: 100%; height: auto;
  aspect-ratio: 3/2; object-fit: cover;
  border-radius: 18px;
  filter: grayscale(100%) brightness(0.75);
  transition: filter .6s ease
}
.hero-media img:hover { filter: grayscale(20%) brightness(0.9) }

/* ===================== 16) WhatsApp FAB ===================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform .25s, box-shadow .25s;
  border: 2px solid rgba(255,255,255,0.15)
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  color: #fff
}
.whatsapp-fab svg { display: block }

/* Ruimte voor WhatsApp knop */
.section { position: relative }

/* ===================== 17) Animaties & motion ===================== */
@media (prefers-reduced-motion: reduce) {
  *, .btn {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }
}

/* Touch: geen grijze tap highlight */
a, .btn, button { -webkit-tap-highlight-color: rgba(0,0,0,0) }

html.touch-capable .btn.is-tapping,
html.touch-capable .btn:active { filter: brightness(1.1); transform: translateY(-1px) }

/* Smooth scroll */
html:focus-within { scroll-behavior: smooth }

/* ===================== 18) Behandeling detail styles ===================== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; gap: 24px }
}

/* Gestructureerde data tabel */
.info-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 16px
}
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr } }
.info-block {
  padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border)
}
.info-block .label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em }
.info-block .value { font-weight: 700; color: var(--gold-3); font-size: 1rem; margin-top: 2px }