﻿/*
 * home-redesign.css
 * Vernieuwd modern design voor de Mens Hairfashion landing page.
 * Stijl: Premium Barbershop – zacht blauw/grijs, card-based, mobile first.
 * Afhankelijkheden: Bootstrap 5, jQuery UI (voor tabs/accordion/tooltip)
 * Toegankelijkheid: WCAG AAA, high contrast mode, skip-to-content, focus management.
 */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Kleuren – Zacht blauw/grijs palet */
  --hr-cream: #F0F4F8;
  --hr-white: #FFFFFF;
  --hr-gold: #4A90D9;
  --hr-gold-dark: #2B6CB0;
  --hr-gold-light: #D4E4F7;
  --hr-gold-xlight: #EBF2FA;
  --hr-charcoal: #2D3748;
  --hr-slate: #4A5568;
  --hr-muted: #718096;
  --hr-border: #D2DCE8;
  --hr-border-gold: rgba(74, 144, 217, 0.30);
  --hr-card-shadow: 0 4px 6px -1px rgba(45, 55, 72, 0.04), 0 2px 4px -1px rgba(45, 55, 72, 0.03);
  --hr-card-shadow-hover:
    0 20px 25px -5px rgba(45, 55, 72, 0.08),
    0 10px 10px -5px rgba(45, 55, 72, 0.04),
    0 0 0 1px rgba(74, 144, 217, 0.20);
  --hr-shadow-lg:
    0 10px 15px -3px rgba(45, 55, 72, 0.08),
    0 4px 6px -2px rgba(45, 55, 72, 0.04);

  /* Extra tokens */
  --hr-success: #48BB78;
  --hr-success-light: #E6F7ED;
  --hr-beige: #E8DCC8;
  --hr-beige-light: #F5F0E8;
  --hr-focus-ring: rgba(74, 144, 217, 0.45);
  --hr-focus-ring-offset: 3px;

  /* Typografie */
  --hr-font-heading: 'Outfit', system-ui, sans-serif;
  --hr-font-body: 'Inter', system-ui, sans-serif;
  --hr-font-strak: 'Space Grotesk', system-ui, sans-serif;

  /* Radius */
  --hr-radius: 18px;
  --hr-radius-sm: 10px;
  --hr-radius-pill: 999px;

  /* Transition */
  --hr-transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);

  /* Barber pole – afgestemd op blauw thema */
  --hr-pole-red: #C05555;
  --hr-pole-white: #FFFFFF;
  --hr-pole-blue: #4A6FA5;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.home-redesign {
  font-family: var(--hr-font-body);
  background-color: var(--hr-cream);
  color: var(--hr-charcoal);
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.65;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  display: block !important;
  /* override flex van root-landing.css op 601px+ */
  position: relative;
  scroll-behavior: smooth !important;
  scroll-snap-type: y proximity;
  min-width: 300px;
}

/* Elke sectie klapt op zijn plaats bij scrollen */
body.home-redesign .hr-hero,
body.home-redesign .hr-section {
  scroll-snap-align: start;
}

body.home-redesign::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

body.home-redesign h1,
body.home-redesign h2,
body.home-redesign h3,
body.home-redesign h4 {
  font-family: var(--hr-font-heading);
  font-weight: 700;
  color: var(--hr-charcoal);
  line-height: 1.18;
}

/* ============================================================
   3. SITE MELDING TOPBALK
   ============================================================ */
.hr-notice-bar {
  width: 100%;
  background: linear-gradient(90deg, rgba(43, 108, 176, 0.38) 0%, rgba(74, 144, 217, 0.32) 100%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  color: var(--hr-white);
  font-family: var(--hr-font-body);
  font-size: 0.88rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  max-height: 200px;
  overflow: hidden;
  border-bottom: 1.5px solid rgba(74, 144, 217, 0.45);
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  transition: max-height 0.35s ease, opacity 0.3s ease, box-shadow 0.4s ease;
}

/* Shimmer sweep overlay – gebruik transform ipv left voor GPU compositing */
.hr-notice-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  will-change: transform, opacity;
}

.hr-notice-bar.is-scrolled {
  box-shadow:
    0 4px 24px rgba(43, 108, 176, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.18);
}

.hr-notice-bar.is-scrolled::after {
  animation: hr-notice-shimmer 3.6s ease infinite;
}

@keyframes hr-notice-shimmer {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  65% {
    transform: translateX(185%);
    opacity: 1;
  }

  80% {
    transform: translateX(185%);
    opacity: 0;
  }

  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.hr-notice-bar.is-hidden {
  max-height: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.hr-notice-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem;
  max-width: 100%;
}

.hr-notice-bar__messages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  flex: 1;
}

.hr-notice-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.45;
}

.hr-notice-bar__item--sep {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.hr-notice-bar__item svg,
.hr-notice-bar__item i {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.hr-notice-bar__close {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--hr-white);
  flex-shrink: 0;
  transition: background 0.2s;
  padding: 0;
}

.hr-notice-bar__close:hover {
  background: rgba(255, 255, 255, 0.32);
}

.hr-notice-bar__close svg,
.hr-notice-bar__close i {
  width: 15px;
  height: 15px;
  stroke: var(--hr-white);
}

@media (max-width: 575px) {


  .hr-notice-bar__inner {
    padding: 1.2rem 1rem;
  }

  .hr-notice-bar__item--sep {
    padding-left: 0;
    border-left: none;
  }
}

/* ============================================================
   4. SPLASH SCREEN – herontwikkeld naar homepage esthetiek
   ============================================================ */

/* Achtergrond: dezelfde cream-base als de homepage hero */
body.home-redesign .root-splash {
  background:
    radial-gradient(circle at 80% 20%, rgba(74, 144, 217, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(74, 144, 217, 0.09) 0%, transparent 45%),
    var(--hr-cream);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}



/* Content kaart: glassmorphism, vergelijkbaar met het hero text-frame */
body.home-redesign .root-splash__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: min(400px, 90vw);
  padding: 2.5rem 2.25rem 2.25rem;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1.5px solid var(--hr-border-gold);
  border-radius: 28px;
  box-shadow:
    0 24px 60px rgba(45, 55, 72, 0.1),
    0 8px 24px rgba(74, 144, 217, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* Logo: gouden ring, schaduw – zelfde als hr-hero__logo-circle sfeer */
body.home-redesign .root-splash__logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hr-white);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 3px var(--hr-gold-xlight),
    0 0 0 5px rgba(74, 144, 217, 0.35),
    0 12px 28px rgba(74, 144, 217, 0.22);
  padding: 0.75rem;
  animation: hr-splash-logo-pulse 2.8s ease-in-out infinite;
}

@keyframes hr-splash-logo-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px var(--hr-gold-xlight), 0 0 0 5px rgba(74, 144, 217, 0.30), 0 12px 28px rgba(74, 144, 217, 0.18);
  }

  50% {
    box-shadow: 0 0 0 5px var(--hr-gold-xlight), 0 0 0 8px rgba(74, 144, 217, 0.22), 0 16px 36px rgba(74, 144, 217, 0.26);
  }
}

body.home-redesign .root-splash__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Fallback tekst in logo */
body.home-redesign .root-splash__logo-text {
  font-family: var(--hr-font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--hr-gold-dark);
  letter-spacing: -0.03em;
}

/* Titel: Outfit font, zelfde als h1 op de homepage */
body.home-redesign .root-splash__title {
  font-family: var(--hr-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hr-charcoal);
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.2;
}

/* Ondertitel: muted, zelfde sfeer als hr-section-lead */
body.home-redesign .root-splash__subtitle {
  font-size: 0.82rem;
  color: var(--hr-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

/* Progress bar track */
body.home-redesign .root-splash__bar {
  width: 100%;
  height: 4px;
  background: var(--hr-border);
  border-radius: 999px;
  overflow: hidden;
  margin: 0.25rem 0;
}

/* Progress bar fill: blauw met shimmer sweep */
body.home-redesign .root-splash__bar-fill {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--hr-gold) 35%,
      #7AB8F5 62%,
      var(--hr-gold) 100%);
  background-size: 200% 100%;
  animation: hr-splash-bar 1.6s ease-in-out infinite;
}

@keyframes hr-splash-bar {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

/* Eyebrow-stijl streepje boven de bar – vergelijkbaar met hr-hero__eyebrow */
body.home-redesign .root-splash__content::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--hr-gold);
  border-radius: 2px;
  margin: 0 auto -0.5rem;
}


/* ============================================================
   4. NAVBAR
   ============================================================ */
.hr-navbar {
  position: fixed;
  top: calc(var(--hr-notice-h, 0px) + 1.25rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(248, 246, 242, 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--hr-border-gold);
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: var(--hr-radius-pill);
  width: calc(100% - 2.5rem);
  max-width: 1060px;
  box-shadow:
    0 10px 30px -5px rgba(45, 55, 72, 0.1),
    0 4px 12px -2px rgba(74, 144, 217, 0.08);
  transition: var(--hr-transition);
}

.hr-navbar.is-scrolled {
  top: 0.75rem;
  background: rgba(248, 246, 242, 0.9);
  padding: 0.5rem 1.25rem;
  box-shadow: var(--hr-shadow-lg);
}

.hr-navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.hr-navbar__logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
}

.hr-navbar__logo-text {
  font-family: var(--hr-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--hr-charcoal);
  line-height: 1;
}

.hr-navbar__logo-sub {
  font-size: 0.68rem;
  color: var(--hr-muted);
  display: block;
  font-weight: 400;
  font-family: var(--hr-font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hr-navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Taalknop in navbar */
.hr-lang-form {
  display: flex;
  gap: 4px;
  background: var(--hr-white);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius-pill);
  padding: 4px 8px;
}

.hr-lang-btn {
  background: none;
  border: none;
  padding: 2px 6px;
  border-radius: var(--hr-radius-pill);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hr-muted);
  transition: var(--hr-transition);
  font-family: var(--hr-font-body);
}

.hr-lang-btn:hover {
  color: var(--hr-charcoal);
  background: var(--hr-gold-xlight);
}

.hr-lang-btn.is-active {
  color: var(--hr-gold-dark);
  pointer-events: none;
}

.hr-lang-btn img {
  width: 18px;
  height: auto;
  vertical-align: middle;
  border-radius: 2px;
}

.hr-navbar__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hr-gold);
  color: var(--hr-white);
  border: none;
  border-radius: var(--hr-radius-pill);
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--hr-transition);
  font-family: var(--hr-font-body);
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .hr-navbar__cta {
    display: none;
    /* Hidden on mobile because it's in the bottom nav */
  }

  .hr-navbar__logo-text {
    display: none;
  }

  .hr-navbar__logo-sub {
    display: none;
  }
}

@media (min-width: 576px) {
  .hr-navbar__cta:hover {
    background: var(--hr-gold-dark);
    color: var(--hr-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(43, 108, 176, 0.35);
  }
}

/* ============================================================
   4b. MOBILE BOTTOM NAVIGATION
   ============================================================ */
.hr-mobile-nav {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 400px;
  background: rgba(45, 55, 72, 0.85);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hr-radius-pill);
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 2000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: none;
  /* Desktop hidden */
}

@media (max-width: 767px) {
  .hr-mobile-nav {
    display: flex;
  }
}

.hr-mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 600;
  transition: var(--hr-transition);

  /* Reset button defaults */
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.hr-mobile-nav__item i,
.hr-mobile-nav__item svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.6);
  transition: var(--hr-transition);
}

.hr-mobile-nav__item:hover,
.hr-mobile-nav__item.is-active {
  color: var(--hr-gold);
}

.hr-mobile-nav__item:hover i,
.hr-mobile-nav__item.is-active i {
  stroke: var(--hr-gold);
  transform: translateY(-2px);
}

.hr-mobile-nav__main {
  background: var(--hr-gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2.5rem;
  border: 4px solid var(--hr-charcoal);
  box-shadow: 0 8px 16px rgba(43, 108, 176, 0.4);
}

.hr-mobile-nav__main i {
  stroke: var(--hr-white) !important;
  width: 24px;
  height: 24px;
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */
.hr-hero {
  background-color: var(--hr-cream);
  background-image:
    linear-gradient(150deg, rgba(248, 246, 242, 0.45) 0%, rgba(255, 255, 255, 0.38) 55%, rgba(248, 246, 242, 0.48) 100%),
    var(--hr-hero-bg-image, url('../../images/afspraak/background/background-1.jpg'));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: calc(var(--hr-notice-h, 0px) + var(--hr-navbar-h, 72px) + 2rem) 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  /* fallback voor oudere browsers */
  min-height: 100dvh;
  /* dynamic viewport – past zich aan bij rotatie en browser-UI */
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}

.hr-hero.hr-hero--bg-color {
  background-image: none;
  background-color: var(--hr-hero-bg-color, var(--hr-cream));
}

.hr-hero.hr-hero--bg-none {
  background-image: none;
  background-color: transparent;
}

.hr-hero.hr-hero--bg-color .hr-hero__background,
.hr-hero.hr-hero--bg-none .hr-hero__background {
  display: none;
}

.hr-hero__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hr-hero__background-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 0.95s ease, transform 7.8s ease;
  will-change: opacity, transform;
}

.hr-hero__background-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 10%, rgba(74, 144, 217, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 5% 85%, rgba(74, 144, 217, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hr-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(74, 144, 217, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}

.hr-hero.hr-hero--bg-color::before,
.hr-hero.hr-hero--bg-color::after,
.hr-hero.hr-hero--bg-none::before,
.hr-hero.hr-hero--bg-none::after {
  display: none;
}

/* Decoratieve sierrand – geanimeerde barber pole border rondom badge-wrap */
.hr-hero__pole-stripe {
  position: absolute;
  inset: -5px;
  border-radius: calc(var(--hr-radius) + 5px);
  padding: 5px;
  background:
    repeating-linear-gradient(135deg,
      var(--hr-pole-red) 0, var(--hr-pole-red) 8px,
      rgba(255, 255, 255, 0.45) 8px, rgba(255, 255, 255, 0.45) 12px,
      var(--hr-pole-blue) 12px, var(--hr-pole-blue) 20px,
      rgba(255, 255, 255, 0.45) 20px, rgba(255, 255, 255, 0.45) 24px);
  background-size: 200% 200%;
  animation: hr-pole-scroll 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  filter: drop-shadow(0 0 4px rgba(74, 144, 217, 0.2));
}

@keyframes hr-pole-scroll {
  to {
    background-position: 100% 100%;
  }
}

.hr-hero__inner {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

/* ── Hero loading spinner overlay ── */
.hr-hero__loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  pointer-events: none;
  transition: opacity .5s ease;
}

.hr-hero__loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hr-hero__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--hr-border, #D2DCE8);
  border-top-color: var(--hr-gold, #4A90D9);
  border-radius: 50%;
  animation: hrSpin 0.8s linear infinite;
}

@keyframes hrSpin {
  to {
    transform: rotate(360deg);
  }
}


@media (min-width: 768px) {
  .hr-hero__inner {
    grid-template-columns: 1fr;
    max-width: 1060px;
  }
}

.hr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hr-hero-eyebrow-color, var(--hr-gold-dark));
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 3px rgba(45, 55, 72, 0.55);
}

.hr-hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--hr-gold);
  border-radius: 2px;
}

.hr-hero__text-frame {
  border: 1.5px solid var(--hr-border-gold);
  border-radius: var(--hr-radius);
  padding: 2.25rem;
  margin-bottom: 2.25rem;
  background: rgba(45, 55, 72, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
  transition: var(--hr-transition);
}

.hr-hero__text-frame:hover {
  background: rgba(45, 55, 72, 0.30);
  border-color: var(--hr-gold-light);
}

.hr-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-family: var(--hr-font-heading);
  font-weight: 700;
  color: var(--hr-hero-title-main-color, var(--hr-charcoal));
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.hr-hero__title span {
  color: var(--hr-hero-title-accent-color, var(--hr-gold-dark));
}

.hr-hero__lead {
  font-family: var(--hr-font-strak);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--hr-hero-intro-color, var(--hr-slate));
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 1.5rem;
}

/* Wrapper – neemt de float over zodat badge absoluut gepositioneerd kan worden */
.hr-hero__img-wrap {
  float: left;
  clear: left;
  margin: 0 1.75rem 1.5rem 0;
  position: relative;
  width: 200px;
}

/* Live badge – halverwege de onderrand van de afbeelding */
.hr-hero__img-wrap .hr-live-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
}

@media (max-width: 780px) {
  .hr-hero__img-wrap {
    float: none;
    width: 100%;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Inline afbeelding-slideshow */
.hr-hero__inline-img {
  float: none;
  clear: none;
  width: 100%;
  height: 240px;
  margin: 0;
  border-radius: var(--hr-radius);
  border: 1.5px solid rgba(74, 144, 217, 0.45);
  background: #2D3748;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 28px rgba(45, 55, 72, 0.28);
}

.hr-hero__inline-img::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04));
  z-index: 2;
}

.hr-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.85s ease, transform 10s ease;
  will-change: opacity, transform;
  z-index: 1;
}

.hr-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hr-hero__background-slide {
    transition: none !important;
    transform: none !important;
  }

  .hr-hero__slide {
    transition: none !important;
    transform: none !important;
  }
}

/* Hero entry-animaties – pending (verborgen) en visible (zichtbaar) states */
.hr-hero--pending {
  opacity: 0;
  filter: blur(10px);
  transition:
    transform 1.2s cubic-bezier(0.18, 0.9, 0.22, 1.15),
    opacity 0.75s ease-out,
    filter 0.75s ease-out;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  transform-origin: center;
}

.hr-hero__eyebrow.hr-hero--pending:not(.hr-hero--visible) {
  transform: translate3d(14vw, -12vh, 0) rotate(-4deg) scale(0.96);
}

.hr-hero__img-wrap.hr-hero--pending:not(.hr-hero--visible) {
  transform: translate3d(-28vw, 0, 0) rotate(-6deg) scale(0.94);
}

.hr-hero__badge-wrap.hr-hero--pending:not(.hr-hero--visible) {
  transform: translate3d(-24vw, 16vh, 0) rotate(-8deg) scale(0.92);
}

.hr-hero__text-frame.hr-hero--pending:not(.hr-hero--visible) {
  transform: translate3d(26vw, 0, 0) rotate(2.5deg) scale(0.98);
}

.hr-hero__ctas.hr-hero--pending:not(.hr-hero--visible) {
  transform: translate3d(0, 18vh, 0) scale(0.95);
}

.hr-hero--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  filter: blur(0);
  will-change: auto;
}

@supports not (filter: blur(2px)) {

  .hr-hero--pending,
  .hr-hero--visible {
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hr-hero--pending {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }

  .hr-hero--visible {
    transition: none;
  }
}

/* Clearfix zodat de container de float omsluit */
.hr-hero__inner>div:first-child::after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 780px) {
  .hr-hero__inline-img {
    height: 160px !important;
    width: 100%;
    max-width: 100%;
  }
}

/* Desktop: 2-kolom grid layout
   Links:  rij 1+2 → img-wrap  |  rij 3 → badge-wrap
   Rechts: rij 1–3 → text-frame (eyebrow staat erin als eerste kind)
   Onder:  rij 4   → ctas (volle breedte) */
@media (min-width: 781px) {
  .hr-hero__inner>div:first-child {
    display: grid;
    grid-template-columns: 240px 1fr;
    grid-template-rows: auto 1fr auto auto;
    column-gap: 1.75rem;
    row-gap: 1rem;
    align-items: stretch;
  }

  .hr-hero__inner>div:first-child::after {
    display: none;
  }

  /* Kolom 1, rijen 1–2: slideshow afbeelding vult linker kolom */
  .hr-hero__img-wrap {
    grid-column: 1;
    grid-row: 1 / 3;
    float: none;
    margin: 0;
    width: calc(100% - 10px);
    justify-self: center;
    align-self: stretch;
    min-height: 0;
  }

  /* Inline img vult nu de volledige hoogte van img-wrap */
  .hr-hero__inline-img {
    height: 100%;
    min-height: 220px;
  }

  /* Kolom 1, rij 3: badge met logo en 24/7-stat */
  .hr-hero__inner>div:first-child .hr-hero__badge-wrap {
    grid-column: 1;
    grid-row: 3;
    float: none;
    width: calc(100% - 10px);
    margin: 0;
    justify-self: center;
    align-self: start;
  }

  /* Kolom 2, rijen 1–3: tekst-box (eyebrow staat als eerste kind erin) */
  .hr-hero__text-frame {
    grid-column: 2;
    grid-row: 1 / 4;
    margin-bottom: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

}

.hr-hero__notice {
  background: var(--hr-gold-light);
  border: 1px solid var(--hr-border-gold);
  border-left: 4px solid var(--hr-gold);
  border-radius: var(--hr-radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--hr-hero-notice-color, var(--hr-slate));
  margin-bottom: 1.75rem;
}

.hr-hero__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: -0.35rem;
}

.hr-hero__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.9rem;
  border-radius: var(--hr-radius-pill);
  border: 1px solid var(--hr-border-gold);
  background: rgba(255, 255, 255, 0.88);
  color: var(--hr-charcoal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--hr-transition);
}

.hr-hero__social-link:hover {
  background: var(--hr-gold-light);
  border-color: var(--hr-gold);
  color: var(--hr-gold-dark);
  transform: translateY(-1px);
}

.hr-hero__social-link:focus-visible {
  outline: 2px solid var(--hr-gold);
  outline-offset: 2px;
}

/* Live bezoekers badge */
.hr-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hr-white);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius-pill);
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  color: var(--hr-slate);
  margin-bottom: 1.25rem;
}

.hr-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: hr-pulse 2s ease infinite;
}

@keyframes hr-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(1.3);
  }
}


.hr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--hr-radius-pill);
  font-family: var(--hr-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--hr-transition);
  line-height: 1.2;
}

.hr-btn--primary {
  background: var(--hr-gold);
  color: var(--hr-white);
  border-color: var(--hr-gold);
  box-shadow: 0 4px 18px rgba(43, 108, 176, 0.28);
}

.hr-btn--primary:hover {
  background: var(--hr-gold-dark);
  border-color: var(--hr-gold-dark);
  color: var(--hr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43, 108, 176, 0.38);
}

.hr-btn--outline {
  background: transparent;
  color: var(--hr-charcoal);
  border-color: var(--hr-border);
}

.hr-btn--outline:hover {
  background: var(--hr-white);
  border-color: var(--hr-gold);
  color: var(--hr-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--hr-card-shadow);
}

/* Hero afbeelding / badge */
.hr-hero__badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  position: relative;
  padding: 1.5rem;
  border-radius: var(--hr-radius);
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    repeating-linear-gradient(45deg,
      rgba(158, 42, 42, 0.88) 0, rgba(158, 42, 42, 0.88) 10px,
      rgba(255, 255, 255, 0.12) 10px, rgba(255, 255, 255, 0.12) 14px,
      rgba(42, 67, 113, 0.82) 14px, rgba(42, 67, 113, 0.82) 24px,
      rgba(255, 255, 255, 0.12) 24px, rgba(255, 255, 255, 0.12) 28px);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);

  float: left;
  clear: left;
  width: 200px;
  margin: 0.5rem 1.75rem 1.5rem 0;
}

.hr-hero__logo-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--hr-white);
  border: 3px solid var(--hr-border-gold);
  box-shadow: 0 8px 32px rgba(74, 144, 217, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.hr-hero__logo-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(135deg, var(--hr-gold), transparent, var(--hr-gold)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.hr-hero__logo-circle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hr-hero__logo-circle {
    width: 160px;
    height: 160px;
  }
}

/* ============================================================
   6. CHIPS / SERVICE TAGS
   ============================================================ */
.hr-chips-bar {
  background: var(--hr-white);
  border-top: 1px solid var(--hr-border);
  border-bottom: 1px solid var(--hr-border);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}

.hr-chips-inner {
  display: flex;
  width: max-content;
  animation: hr-marquee var(--hr-marquee-duration, 35s) linear infinite;
  will-change: transform;
}

.hr-chips-bar:hover .hr-chips-inner {
  animation-play-state: paused;
}

.hr-chips-set {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
  padding-right: 0.6rem;
}

@keyframes hr-marquee {
  to {
    transform: translateX(-25%);
  }
}

.hr-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--hr-gold-xlight);
  border: 1px solid var(--hr-border-gold);
  color: var(--hr-gold-dark);
  border-radius: var(--hr-radius-pill);
  padding: 0.38rem 1.9rem;
  margin-inline: 1.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--hr-transition);
  cursor: default;
}

.hr-chip:hover {
  background: var(--hr-gold-light);
  border-color: var(--hr-gold);
  transform: translateY(-1px);
}

.hr-chip svg,
.hr-chip i {
  width: 14px;
  height: 14px;
  stroke: var(--hr-gold-dark);
}

/* ============================================================
   7. SECTIE WRAPPER / LAYOUT
   ============================================================ */
.hr-section {
  padding: 3.5rem 1.5rem;
  min-height: 100vh;
  /* fallback */
  min-height: 100dvh;
  /* dynamic viewport – past zich aan bij rotatie en browser-UI */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hr-section--alt {
  background: var(--hr-cream);
}

.hr-section--white {
  background: var(--hr-white);
}

.hr-section--dark {
  background: var(--hr-charcoal);
  color: var(--hr-white);
}

.hr-section.hr-section--bg-none,
#availability-section.hr-section--bg-none {
  background: transparent !important;
  background-image: none !important;
}

.hr-section.hr-section--bg-color,
#availability-section.hr-section--bg-color {
  background: var(--hr-section-bg-color, var(--hr-cream)) !important;
  background-image: none !important;
}

.hr-section.hr-section--bg-image,
#availability-section.hr-section--bg-image {
  position: relative;
  isolation: isolate;
  background-color: var(--hr-section-bg-color, transparent) !important;
  background-image: var(--hr-section-bg-image) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hr-section.hr-section--bg-image::before,
#availability-section.hr-section--bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hr-section-overlay-color, #F0F4F8);
  opacity: var(--hr-section-overlay-opacity, 0.72);
  pointer-events: none;
  z-index: 0;
}

.hr-section.hr-section--bg-image>*,
#availability-section.hr-section--bg-image>* {
  position: relative;
  z-index: 1;
}

.hr-container {
  max-width: var(--hr-section-container-max-width, 100%);
  width: 100%;
  margin: 0 auto;
}

.hr-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hr-gold-dark);
  margin-bottom: 0.5rem;
}

.hr-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-family: var(--hr-font-heading);
  font-weight: 700;
  color: var(--hr-charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.hr-section-lead {
  font-size: 1rem;
  color: var(--hr-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* ============================================================
   8. ACTION CARDS (Boeken / Raadplegen / Live wachttijd)
   ============================================================ */
.hr-actions-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .hr-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  /* 3 kaarten: grote primaire kaart (2×2) + 2 kleine rechts */
  .hr-actions-grid--count-3 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.25rem;
  }

  .hr-actions-grid--count-3 > :first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .hr-actions-grid--count-3 > :nth-child(n+2) {
    grid-column: span 2;
  }

  /* 2 kaarten: gelijke 2-kolom naast elkaar */
  .hr-actions-grid--count-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* 1 kaart: gecentreerd, max breedte */
  .hr-actions-grid--count-1 {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
  }
}

.hr-action-card {
  background: var(--hr-white);
  border: 2px solid rgba(45, 55, 72, 0.22);
  border-radius: var(--hr-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--hr-charcoal);
  transition: var(--hr-transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45, 55, 72, 0.09), 0 1px 3px rgba(45, 55, 72, 0.07);
  container-type: inline-size;
}

.hr-action-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--hr-radius);
  border: 2px solid var(--hr-gold);
  opacity: 0;
  transition: var(--hr-transition);
}

.hr-action-card:hover,
.hr-action-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--hr-card-shadow-hover);
  color: var(--hr-charcoal);
  border-color: var(--hr-border-gold);
}

.hr-action-card:hover::before,
.hr-action-card:focus-visible::before {
  opacity: 1;
}

.hr-action-card--primary {
  background: linear-gradient(135deg, var(--hr-gold) 0%, #5BA0E8 100%);
  border-color: var(--hr-gold);
  color: var(--hr-white);
}

.hr-action-card--primary:hover {
  background: linear-gradient(135deg, var(--hr-gold-dark) 0%, var(--hr-gold) 100%);
  color: var(--hr-white);
  border-color: var(--hr-gold-dark);
}

.hr-action-card--primary::before {
  border-color: rgba(255, 255, 255, 0.6);
}

.hr-action-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--hr-gold-xlight);
  border: 1px solid var(--hr-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  transition: var(--hr-transition);
}

.hr-action-card--primary .hr-action-card__icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.hr-action-card__icon svg,
.hr-action-card__icon i {
  width: 20px;
  height: 20px;
  stroke: var(--hr-gold-dark);
}

.hr-action-card--primary .hr-action-card__icon svg,
.hr-action-card--primary .hr-action-card__icon i {
  stroke: var(--hr-white);
}

.hr-action-card__title {
  font-family: var(--hr-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.hr-action-card--primary .hr-action-card__title {
  color: var(--hr-white);
}

.hr-action-card__desc {
  font-size: 0.85rem;
  color: var(--hr-muted);
  margin: 0;
  line-height: 1.5;
}

.hr-action-card--primary .hr-action-card__desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Pulse animatie op primaire actiekaart */
.hr-action-card--pulse {
  animation: hr-card-pulse 3s ease-in-out infinite;
}

@keyframes hr-card-pulse {

  0%,
  100% {
    box-shadow: var(--hr-card-shadow);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(74, 144, 217, 0.18), var(--hr-card-shadow-hover);
  }
}

/* Container query: brede action card → horizontale layout */
@container (min-width: 320px) {
  .hr-action-card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .hr-action-card__icon {
    margin-bottom: 0;
  }
}

/* ============================================================
   9. SITE MELDINGEN
   ============================================================ */
.hr-melding {
  background: linear-gradient(135deg, var(--hr-gold-xlight), var(--hr-gold-light));
  border: 1px solid var(--hr-border-gold);
  border-left: 4px solid var(--hr-gold);
  border-radius: var(--hr-radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.hr-melding__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--hr-gold-dark);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.hr-melding__body {
  font-size: 0.88rem;
  color: var(--hr-slate);
  line-height: 1.55;
}

/* ============================================================
   10. BESCHIKBAARHEID – jQuery UI Tabs
   ============================================================ */
.hr-availability,
#availability-section {
  background:
    linear-gradient(160deg, var(--hr-cream) 0%, var(--hr-gold-xlight) 50%, var(--hr-cream) 100%) !important;
}

.hr-availability .hr-section-title,
#availability-section .hr-section-title {
  color: var(--hr-charcoal);
}

/* jQuery UI Tabs overschrijving */
.hr-tabs.ui-tabs {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  font-family: var(--hr-font-body);
}

.hr-tabs .ui-tabs-nav {
  background: var(--hr-cream) !important;
  border: none !important;
  border-bottom: 2px solid var(--hr-border) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: flex;
  gap: 0;
}

.hr-tabs .ui-tabs-nav li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

.hr-tabs .ui-tabs-nav li a {
  font-family: var(--hr-font-body) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  color: var(--hr-muted) !important;
  padding: 0.7rem 1.25rem !important;
  border-bottom: 3px solid transparent !important;
  display: block;
  transition: color 0.2s !important;
  text-decoration: none;
}

.hr-tabs .ui-tabs-nav li.ui-tabs-active a,
.hr-tabs .ui-tabs-nav li a:hover {
  color: var(--hr-gold-dark) !important;
  border-bottom-color: var(--hr-gold) !important;
}

.hr-tabs .ui-tabs-panel {
  background: transparent !important;
  border: none !important;
  padding: 1.5rem 0 !important;
}


/* ============================================================
   11. FEATURES GRID – Info Cards
   ============================================================ */
.hr-feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .hr-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .hr-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px;
    gap: 1.25rem;
  }

  .hr-feature-grid> :first-child {
    grid-row: span 2;
  }

  .hr-feature-grid> :nth-child(2) {
    grid-column: span 2;
  }
}

@media (min-width: 860px) and (max-width: 1000px) {
  .hr-feature-grid {
    grid-template-rows: minmax(228px, auto);
  }

  .hr-feature-card__cta {
    margin-bottom: 0.55rem;
  }
}

.hr-feature-card {
  background: var(--hr-white);
  border: 1.5px solid var(--hr-border);
  border-radius: var(--hr-radius);
  padding: 1.5rem;
  cursor: pointer;
  text-align: left;
  transition: var(--hr-transition);
  box-shadow: var(--hr-card-shadow);
  text-decoration: none;
  color: var(--hr-charcoal);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  container-type: inline-size;
}

.hr-feature-card:hover,
.hr-feature-card:focus-visible {
  border-color: var(--hr-gold);
  box-shadow: var(--hr-card-shadow-hover);
  transform: translateY(-3px);
  color: var(--hr-charcoal);
}

.hr-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--hr-gold-xlight);
  border: 1px solid var(--hr-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.hr-feature-card__icon svg,
.hr-feature-card__icon i {
  width: 22px;
  height: 22px;
  stroke: var(--hr-gold-dark);
}

.hr-feature-card__title {
  font-family: var(--hr-font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--hr-charcoal);
}

.hr-feature-card__body {
  font-size: 0.87rem;
  color: var(--hr-muted);
  line-height: 1.55;
  margin: 0;
}

/* Container query: brede feature card → horizontale layout */
@container (min-width: 360px) {
  .hr-feature-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .hr-feature-card__icon {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

/* ============================================================
   12. CONTACT & AANVRAGEN SECTIE
   ============================================================ */
.hr-contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .hr-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hr-contact-panel {
  background: var(--hr-white);
  border: 1.5px solid var(--hr-border);
  border-radius: var(--hr-radius);
  padding: 1.75rem;
  box-shadow: var(--hr-card-shadow);
}

.hr-contact-panel h3 {
  font-family: var(--hr-font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hr-contact-panel p {
  font-size: 0.9rem;
  color: var(--hr-muted);
  margin-bottom: 1.25rem;
}

.hr-contact-btn-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hr-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--hr-cream);
  border: 1.5px solid var(--hr-border);
  border-radius: var(--hr-radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hr-charcoal);
  cursor: pointer;
  transition: var(--hr-transition);
  text-align: left;
  font-family: var(--hr-font-body);
  text-decoration: none;
}

.hr-contact-btn:hover {
  background: var(--hr-gold-xlight);
  border-color: var(--hr-gold);
  color: var(--hr-gold-dark);
  transform: translateX(3px);
}

.hr-contact-btn svg,
.hr-contact-btn i {
  width: 18px;
  height: 18px;
  stroke: var(--hr-gold-dark);
  flex-shrink: 0;
}

/* ============================================================
   13. MAP SECTIE
   ============================================================ */
.hr-map-section {
  padding: 0;
}

.hr-map-header {
  padding: 2.5rem 1.5rem 1.5rem;
  background: var(--hr-cream);
}

.hr-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-top: 1px solid var(--hr-border);
}

@media (max-width: 768px) {
  .hr-map-frame {
    aspect-ratio: 4/3;
  }
}

.hr-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(30%) saturate(85%);
}

/* ============================================================
   14. GOUDEN DIVIDER LIJN
   ============================================================ */
.hr-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hr-gold-light), var(--hr-gold), var(--hr-gold-light), transparent);
  margin: 0;
  border: none;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.hr-footer {
  background: var(--hr-charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: 2rem 1.5rem;
}

.hr-footer__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 576px) {
  .hr-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.hr-footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hr-footer__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
}

.hr-footer__info-item svg,
.hr-footer__info-item i {
  width: 15px;
  height: 15px;
  stroke: var(--hr-gold);
  flex-shrink: 0;
}

.hr-footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.hr-footer__copy span {
  color: var(--hr-gold);
}

/* ============================================================
   16. COOKIE BANNER (hergebruikt / licht thema)
   ============================================================ */
body.home-redesign .cookie-banner {
  background: var(--hr-white);
  border: 1px solid var(--hr-border);
  box-shadow: var(--hr-shadow-lg);
  border-radius: var(--hr-radius);
  color: var(--hr-charcoal);
}

body.home-redesign .cookie-banner p {
  color: var(--hr-slate);
}

body.home-redesign .cookie-banner .cta.primary {
  background: var(--hr-gold);
  border-color: var(--hr-gold);
  color: var(--hr-white);
}

body.home-redesign .cookie-banner .cta.secondary {
  border-color: var(--hr-border);
  color: var(--hr-charcoal);
  background: var(--hr-cream);
}

/* ============================================================
   17. MODALS (licht thema override)
   ============================================================ */
body.home-redesign .contact-modal .modal-content {
  background: var(--hr-white);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius);
  box-shadow: var(--hr-shadow-lg);
  color: var(--hr-charcoal);
}

body.home-redesign .contact-modal .modal-header {
  background: var(--hr-cream);
  border-bottom: 1px solid var(--hr-border);
  border-radius: var(--hr-radius) var(--hr-radius) 0 0;
  padding: 1.25rem 1.5rem;
}

body.home-redesign .contact-modal .modal-title {
  color: var(--hr-charcoal);
  font-family: var(--hr-font-heading);
  font-weight: 700;
}

body.home-redesign .contact-modal .modal-body {
  padding: 1.5rem;
}

body.home-redesign .contact-modal .form-label {
  color: var(--hr-charcoal);
  font-size: 0.85rem;
  font-weight: 600;
}

body.home-redesign .contact-modal .form-control {
  background: var(--hr-cream);
  border: 1.5px solid var(--hr-border);
  color: var(--hr-charcoal);
  border-radius: var(--hr-radius-sm);
  font-family: var(--hr-font-body);
}

body.home-redesign .contact-modal .form-control:focus {
  background: var(--hr-white);
  border-color: var(--hr-gold);
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.18);
  color: var(--hr-charcoal);
}

body.home-redesign .contact-modal .btn-close {
  filter: none;
  opacity: 0.6;
}

body.home-redesign .contact-modal .btn-close:hover {
  opacity: 1;
}

body.home-redesign .contact-modal .contact-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hr-gold-dark);
  margin-bottom: 0.2rem;
}

body.home-redesign .contact-modal .btn-outline-secondary {
  border-color: var(--hr-border);
  color: var(--hr-charcoal);
}

body.home-redesign .contact-modal .btn-outline-secondary:hover {
  background: var(--hr-cream);
  color: var(--hr-charcoal);
}

body.home-redesign .contact-modal .btn-primary {
  background: var(--hr-gold);
  border-color: var(--hr-gold);
  color: var(--hr-white);
  border-radius: var(--hr-radius-pill);
}

body.home-redesign .contact-modal .btn-primary:hover {
  background: var(--hr-gold-dark);
  border-color: var(--hr-gold-dark);
}

body.home-redesign .contact-modal .text-white-50 {
  color: var(--hr-muted) !important;
}

/* ── Price List Modal (licht thema override) ────────────────── */
body.home-redesign #priceListModal .modal-content {
  background: var(--hr-white);
  color: var(--hr-charcoal);
}

body.home-redesign #priceListModal .modal-header {
  background: var(--hr-cream);
  border-bottom: 1px solid var(--hr-border);
  border-radius: 0;
}

body.home-redesign #priceListModal .price-list-eyebrow {
  color: var(--hr-gold-dark);
  opacity: 1;
}

body.home-redesign #priceListModal .modal-title {
  color: var(--hr-charcoal);
  font-family: var(--hr-font-heading);
}

body.home-redesign #priceListModal .modal-header p {
  color: var(--hr-muted) !important;
  opacity: 1;
}

body.home-redesign #priceListModal .btn-close {
  filter: none;
  opacity: 0.5;
}

body.home-redesign #priceListModal .btn-close:hover {
  opacity: 1;
}

/* Notice / Warning */
body.home-redesign #priceListModal #priceListNotice .alert {
  background: var(--hr-gold-xlight) !important;
  border-left-color: var(--hr-gold) !important;
  color: var(--hr-charcoal);
}

body.home-redesign #priceListModal #priceListNotice .alert h6 {
  color: var(--hr-charcoal);
}

body.home-redesign #priceListModal #priceListNotice .alert p {
  color: var(--hr-slate);
  opacity: 1;
}

body.home-redesign #priceListModal #priceListAgreeBtn {
  background: var(--hr-gold);
  border-color: var(--hr-gold);
  color: var(--hr-white);
  border-radius: var(--hr-radius-pill);
}

body.home-redesign #priceListModal #priceListAgreeBtn:hover {
  background: var(--hr-gold-dark);
  border-color: var(--hr-gold-dark);
}

/* Section headers */
body.home-redesign #priceListModal .text-primary {
  color: var(--hr-gold-dark) !important;
}

/* Tables: override dark tables */
body.home-redesign #priceListModal .custom-calc-table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--hr-charcoal);
  --bs-table-hover-bg: var(--hr-cream);
  --bs-table-hover-color: var(--hr-charcoal);
}

body.home-redesign #priceListModal .table-dark {
  --bs-table-bg: transparent;
  --bs-table-color: var(--hr-charcoal);
  --bs-table-border-color: var(--hr-border);
  --bs-table-striped-bg: var(--hr-cream);
  --bs-table-hover-bg: var(--hr-cream);
  --bs-table-hover-color: var(--hr-charcoal);
  color: var(--hr-charcoal);
  background: transparent;
}

body.home-redesign #priceListModal .table-dark thead th {
  color: var(--hr-muted);
  font-weight: 600;
  border-bottom-color: var(--hr-border);
}

/* Table rows: mobile card style */
@media (max-width: 991.98px) {
  body.home-redesign #priceListModal .calc-row {
    border: 1px solid var(--hr-border);
    background: var(--hr-white);
  }
  body.home-redesign #priceListModal .custom-calc-table .calc-row.active {
    background: var(--hr-gold-xlight);
    border-color: var(--hr-gold);
  }
}

/* Table rows: desktop */
@media (min-width: 992px) {
  body.home-redesign #priceListModal .calc-row td {
    border-top-color: var(--hr-border);
    border-bottom-color: var(--hr-border);
    color: var(--hr-charcoal);
  }
  body.home-redesign #priceListModal .calc-row td:first-child {
    border-left-color: var(--hr-border);
  }
  body.home-redesign #priceListModal .calc-row td:last-child {
    border-right-color: var(--hr-border);
  }
  body.home-redesign #priceListModal .custom-calc-table .calc-row.active {
    background: var(--hr-gold-xlight);
  }
}

body.home-redesign #priceListModal .custom-calc-table .calc-row:not(.active) {
  opacity: 0.7;
}

body.home-redesign #priceListModal .custom-calc-table .calc-row:hover {
  background: var(--hr-cream);
}

/* Text inside rows */
body.home-redesign #priceListModal .calc-row .fw-semibold {
  color: var(--hr-charcoal);
}

body.home-redesign #priceListModal .calc-row .text-muted {
  color: var(--hr-muted) !important;
}

/* Checkboxes */
body.home-redesign #priceListModal .form-check-input {
  background-color: var(--hr-cream);
  border-color: var(--hr-border);
}

body.home-redesign #priceListModal .form-check-input:checked {
  background-color: var(--hr-gold);
  border-color: var(--hr-gold);
}

body.home-redesign #priceListModal .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.25);
  border-color: var(--hr-gold);
}

/* Quantity buttons */
body.home-redesign #priceListModal .btn-outline-light {
  border-color: var(--hr-border);
  color: var(--hr-charcoal);
  background: var(--hr-white);
}

body.home-redesign #priceListModal .btn-outline-light:hover {
  background: var(--hr-cream);
  border-color: var(--hr-gold);
  color: var(--hr-charcoal);
}

body.home-redesign #priceListModal .qty-input {
  background: var(--hr-white);
  border-color: var(--hr-border);
  color: var(--hr-charcoal);
}

/* Column divider & total section borders */
@media (min-width: 992px) {
  body.home-redesign #priceListModal .price-list-selection {
    border-right: 1px solid var(--hr-border);
  }
}
body.home-redesign #priceListModal .calc-total-section {
  border-top-color: var(--hr-border);
}

/* Summary panel */
body.home-redesign #priceListModal .calc-summary-panel {
  background: var(--hr-cream) !important;
}

body.home-redesign #priceListModal .col-lg-4 h6 {
  color: var(--hr-charcoal);
}

body.home-redesign #priceListModal #calc-summary-items .text-muted {
  color: var(--hr-muted) !important;
}

body.home-redesign #priceListModal .calc-summary-item {
  background: var(--hr-white);
  border: 1px solid var(--hr-border);
  color: var(--hr-charcoal);
}

body.home-redesign #priceListModal .calc-summary-item .text-muted {
  color: var(--hr-muted) !important;
}

body.home-redesign #priceListModal .calc-summary-item .fw-semibold {
  color: var(--hr-charcoal);
}

/* Total price */
body.home-redesign #priceListModal .text-primary.h4,
body.home-redesign #priceListModal span.text-primary {
  color: var(--hr-gold-dark) !important;
}

body.home-redesign #priceListModal .h5.fw-bold {
  color: var(--hr-charcoal);
}

/* Reset button */
body.home-redesign #priceListModal #calc-reset {
  border-color: var(--hr-border);
  color: var(--hr-charcoal);
  background: var(--hr-white);
  border-radius: var(--hr-radius-sm);
}

body.home-redesign #priceListModal #calc-reset:hover {
  background: var(--hr-cream);
  border-color: var(--hr-gold);
}

/* Radio options for addons */
body.home-redesign #priceListModal .addon-option-radio {
  border-color: var(--hr-border);
}

body.home-redesign #priceListModal .addon-option-radio:checked {
  background-color: var(--hr-gold);
  border-color: var(--hr-gold);
}

body.home-redesign #priceListModal .form-check-label {
  color: var(--hr-muted);
}

/* ── Team cards (licht thema override) ──────────────────────── */
body.home-redesign .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.85rem;
}

body.home-redesign .team-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--hr-radius);
  background: var(--hr-white);
  border: 1.5px solid var(--hr-border);
  box-shadow: var(--hr-card-shadow);
  transition: var(--hr-transition);
  isolation: auto;
  overflow: visible;
}

body.home-redesign .team-card::before {
  display: none;
}

body.home-redesign .team-card:hover,
body.home-redesign .team-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--hr-border-gold);
  box-shadow: var(--hr-card-shadow-hover);
}

body.home-redesign .team-avatar {
  width: 84px;
  height: 84px;
  align-self: center;
  flex-shrink: 0;
  justify-self: unset;
  border-radius: 50%;
  border: 2px solid rgba(74, 144, 217, 0.45);
  box-shadow:
    0 0 0 3px var(--hr-gold-xlight),
    0 4px 12px rgba(74, 144, 217, 0.18);
}

body.home-redesign .team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

body.home-redesign .team-card:hover .team-avatar img,
body.home-redesign .team-card:focus-within .team-avatar img {
  transform: scale(1.06);
}

body.home-redesign .team-info {
  flex: 0 1 auto;
  width: 100%;
  min-width: 0;
}

body.home-redesign .team-name {
  font-family: var(--hr-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--hr-charcoal);
  text-align: left;
  margin: 0 0 0.3rem;
  letter-spacing: 0.01em;
}

body.home-redesign .team-bio {
  color: var(--hr-muted);
  font-size: 0.875rem;
  line-height: 1.57;
  text-align: justify;
}

@media (max-width: 600px) {
  body.home-redesign .team-grid {
    grid-template-columns: 1fr;
  }

  body.home-redesign .team-card {
    padding: 0.9rem 1rem;
    gap: 0.85rem;
  }

  body.home-redesign .team-avatar {
    width: 70px;
    height: 70px;
  }

  body.home-redesign .team-name {
    font-size: 0.95rem;
  }

  body.home-redesign .team-bio {
    font-size: 0.84rem;
    line-height: 1.5;
  }
}

/* ============================================================
   18. BESCHIKBAARHEID GRID (volledig licht thema override)
   ============================================================ */

/* Kaart zelf */
body.home-redesign .availability-card {
  background: var(--hr-white);
  border: 1.5px solid var(--hr-border);
  border-radius: var(--hr-radius);
  color: var(--hr-charcoal);
  box-shadow: var(--hr-card-shadow);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.home-redesign .availability-card:hover {
  border-color: var(--hr-border-gold);
  box-shadow: var(--hr-card-shadow-hover);
}

body.home-redesign .availability-card::before {
  display: none;
}

/* Dag header */
body.home-redesign .day-label {
  color: var(--hr-charcoal);
  font-family: var(--hr-font-heading);
}

body.home-redesign .day-subtitle {
  color: var(--hr-muted);
}

body.home-redesign .day-badge {
  background: var(--hr-gold-xlight);
  color: var(--hr-gold-dark);
  border: 1px solid var(--hr-border-gold);
}

body.home-redesign .day-pill {
  background: var(--hr-cream);
  color: var(--hr-muted);
  border: 1px solid var(--hr-border);
}

/* Medewerker rijen */
body.home-redesign .availability-staff {
  border-top: 1px solid var(--hr-border);
}

body.home-redesign .staff-name {
  color: var(--hr-charcoal);
}

body.home-redesign .staff-status--unscheduled {
  background: var(--hr-cream);
  border: 1px solid var(--hr-border);
  color: var(--hr-muted);
  border-radius: var(--hr-radius-sm);
}

body.home-redesign .staff-badge--outside-hours {
  background: rgba(59, 130, 246, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

/* Slot lijnen */
body.home-redesign .slot-line {
  background: var(--hr-cream);
  border: 2px solid rgba(45, 55, 72, 0.22);
  border-radius: var(--hr-radius-sm);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

body.home-redesign .slot-line:hover {
  background: var(--hr-gold-xlight);
}

body.home-redesign .slot-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--hr-slate);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--hr-white);
  border: 1px solid var(--hr-border);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  white-space: nowrap;
  min-width: 140px;
  justify-content: center;
}

body.home-redesign .slot-label i {
  width: 13px;
  height: 13px;
  stroke: var(--hr-muted);
}

/* Met afspraak (1e slot-line) → warm goud */
body.home-redesign .staff-lines .slot-line:nth-child(1) {
  border-color: var(--hr-gold);
}

body.home-redesign .staff-lines .slot-line:nth-child(1) .slot-label {
  background: var(--hr-gold-xlight);
  border-color: var(--hr-border-gold);
  color: var(--hr-gold-dark);
}

body.home-redesign .staff-lines .slot-line:nth-child(1) .slot-label i {
  stroke: var(--hr-gold-dark);
}

/* Zonder afspraak (2e slot-line) → staal blauw */
body.home-redesign .staff-lines .slot-line:nth-child(2) {
  border-color: rgba(59, 130, 246, 0.6);
}

body.home-redesign .staff-lines .slot-line:nth-child(2) .slot-label {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.28);
  color: #2563EB;
}

body.home-redesign .staff-lines .slot-line:nth-child(2) .slot-label i {
  stroke: #2563EB;
}

body.home-redesign .slot-value {
  color: var(--hr-charcoal);
  font-weight: 600;
  font-size: 0.95rem;
}

body.home-redesign .availability-empty {
  color: var(--hr-muted);
}

/* Loading / error state */
body.home-redesign .availability-card.availability-loading,
body.home-redesign .availability-card.availability-error {
  color: var(--hr-muted);
}

/* Overlay bij laden */
body.home-redesign .availability-slider-overlay {
  background: rgba(248, 246, 242, 0.82);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: var(--hr-radius);
}

body.home-redesign .availability-slider-overlay-content {
  background: var(--hr-white);
  border: 1.5px solid var(--hr-border);
  color: var(--hr-charcoal);
  border-radius: var(--hr-radius-sm);
}

body.home-redesign .availability-slider-spinner {
  border-color: var(--hr-border);
  border-top-color: var(--hr-gold);
}

/* Navigatieknoppen */
body.home-redesign .availability-nav-btn {
  background: var(--hr-white);
  border: 1.5px solid var(--hr-border);
  color: var(--hr-charcoal);
  border-radius: var(--hr-radius-pill);
  font-family: var(--hr-font-body);
  transition: var(--hr-transition);
}

body.home-redesign .availability-nav-btn:hover:not(:disabled) {
  background: var(--hr-gold-xlight);
  border-color: var(--hr-gold);
  color: var(--hr-gold-dark);
}

body.home-redesign .availability-nav-btn:disabled {
  opacity: 0.4;
}

/* ============================================================
   19. jQuery UI ACCORDION (voor aanvragenblok)
   ============================================================ */
.hr-accordion.ui-accordion {
  font-family: var(--hr-font-body);
  background: transparent;
  border: none;
}

.hr-accordion .ui-accordion-header {
  background: var(--hr-white) !important;
  border: 1.5px solid var(--hr-border) !important;
  border-radius: var(--hr-radius-sm) !important;
  color: var(--hr-charcoal) !important;
  font-family: var(--hr-font-body) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 0.85rem 1.1rem !important;
  margin-top: 0.5rem !important;
  cursor: pointer;
  transition: var(--hr-transition);
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hr-accordion .ui-accordion-header:first-child {
  margin-top: 0 !important;
}

.hr-accordion .ui-accordion-header:hover,
.hr-accordion .ui-accordion-header-active {
  background: var(--hr-gold-xlight) !important;
  border-color: var(--hr-gold) !important;
  color: var(--hr-gold-dark) !important;
}

.hr-accordion .ui-accordion-header .ui-accordion-header-icon {
  display: none;
}

.hr-accordion .ui-accordion-content {
  background: var(--hr-cream) !important;
  border: 1.5px solid var(--hr-border) !important;
  border-top: none !important;
  border-radius: 0 0 var(--hr-radius-sm) var(--hr-radius-sm) !important;
  padding: 1rem 1.1rem !important;
  color: var(--hr-slate) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
}

/* ============================================================
   20. jQuery UI TOOLTIP
   ============================================================ */
.ui-tooltip {
  background: var(--hr-charcoal) !important;
  color: var(--hr-white) !important;
  border: none !important;
  border-radius: var(--hr-radius-sm) !important;
  font-family: var(--hr-font-body) !important;
  font-size: 0.82rem !important;
  padding: 0.4rem 0.75rem !important;
  box-shadow: 0 4px 16px rgba(45, 55, 72, 0.22) !important;
  max-width: 220px;
  line-height: 1.4;
}

/* ============================================================
   21. ANIMATIONS & ENTRANCE EFFECTS
   ============================================================ */
.hr-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.hr-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hr-fade-up:nth-child(1) {
  transition-delay: 0.05s;
}

.hr-fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.hr-fade-up:nth-child(3) {
  transition-delay: 0.16s;
}

.hr-fade-up:nth-child(4) {
  transition-delay: 0.22s;
}

.hr-fade-up:nth-child(5) {
  transition-delay: 0.28s;
}

/* ============================================================
   22. MAIN SHELL – 100% breedte, verwijdert dark shell look
   ============================================================ */
body.home-redesign .shell {
  all: unset;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 100vh;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: var(--hr-cream) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

body.home-redesign .shell--pending {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

body.home-redesign .barber-pole-bottom {
  display: none !important;
}

body.home-redesign .shell::before {
  display: none !important;
}

body.home-redesign .shell::after {
  display: none !important;
}

/* ============================================================
   23. ROOT SPLASH – licht thema
   ============================================================ */
.root-splash {
  background: var(--hr-cream) !important;
}

/* ============================================================
   24. STATS STRIP
   ============================================================ */
.hr-stats-strip {
  background: var(--hr-charcoal);
  padding: 1.1rem 1.5rem;
}

.hr-stats-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.hr-stat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.75rem;
  flex: 1 0 auto;
  justify-content: center;
}

.hr-stat__value {
  font-family: var(--hr-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hr-gold);
  line-height: 1;
}

.hr-stat__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.hr-stat__icon {
  width: 20px;
  height: 20px;
  stroke: var(--hr-gold);
  flex-shrink: 0;
}

.hr-stat__sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* --- Stats strip carousel animation --- */
.hr-stats-strip {
  overflow: hidden;
}

.hr-stats-inner.hr-stats--carousel {
  position: relative;
  height: 2.8rem;
  display: block;
}

.hr-stats--carousel .hr-stat__sep {
  display: none;
}

.hr-stats--carousel .hr-stat {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(100vw);
  opacity: 0;
  white-space: nowrap;
  transition: none;
}

.hr-stats--carousel .hr-stat.hr-stat--fly-in {
  transform: translate(-50%, -50%) translateX(0);
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.hr-stats--carousel .hr-stat.hr-stat--pulse {
  animation: statPulse 0.45s ease-in-out;
}

@keyframes statPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.hr-stats--carousel .hr-stat.hr-stat--fly-out {
  transform: translate(-50%, -50%) translateX(-100vw);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.55, 0, 1, 0.45), opacity 0.35s ease 0.15s;
}

@media (max-width: 575px) {
  .hr-stat {
    padding: 0.4rem 1rem;
  }

  .hr-stat__sep {
    display: none;
  }

  .hr-stats-inner {
    gap: 0.5rem;
  }
}

/* ============================================================
   25. REFINED SECTION LABELS
   ============================================================ */
.hr-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.65rem;
  border-left: 3px solid var(--hr-gold);
}

.hr-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

/* ============================================================
   26. FEATURE CARD HOVER TOP BORDER
   ============================================================ */
.hr-feature-card {
  border-top: 3px solid transparent;
  transition: var(--hr-transition), border-top-color 0.25s;
}

.hr-feature-card:hover,
.hr-feature-card:focus-visible {
  border-top-color: var(--hr-gold);
}

/* ============================================================
   27. DIVIDER – IETS PROMINENTER
   ============================================================ */
.hr-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--hr-gold-light) 20%, var(--hr-gold) 50%, var(--hr-gold-light) 80%, transparent 100%);
}

/* ============================================================
   28. FOOTER GOLD TOP ACCENT
   ============================================================ */
.hr-footer {
  border-top: 3px solid var(--hr-gold);
}

/* ============================================================
   30. SCROLL CUE (Hero onderkant)
   ============================================================ */
.hr-scroll-cue {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  position: relative;
  z-index: 2;
}

.hr-scroll-cue svg,
.hr-scroll-cue i {
  width: 26px;
  height: 26px;
  stroke: var(--hr-gold);
  animation: hr-bounce 2.2s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
}

.hr-action-card:hover .hr-action-card__icon svg,
.hr-action-card:hover .hr-action-card__icon i,
.hr-feature-card:hover .hr-feature-card__icon svg,
.hr-feature-card:hover .hr-feature-card__icon i {
  transform: scale(1.1) rotate(5deg);
  stroke: var(--hr-gold);
}

.hr-actions-grid>.hr-fade-up:nth-child(1) {
  transition-delay: 0.1s;
}

.hr-actions-grid>.hr-fade-up:nth-child(2) {
  transition-delay: 0.25s;
}

.hr-actions-grid>.hr-fade-up:nth-child(3) {
  transition-delay: 0.4s;
}

.hr-feature-grid>.hr-fade-up:nth-child(1) {
  transition-delay: 0.1s;
}

.hr-feature-grid>.hr-fade-up:nth-child(2) {
  transition-delay: 0.25s;
}

.hr-feature-grid>.hr-fade-up:nth-child(3) {
  transition-delay: 0.4s;
}

.hr-feature-grid>.hr-fade-up:nth-child(4) {
  transition-delay: 0.55s;
}

@keyframes hr-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }

  50% {
    transform: translateY(7px);
    opacity: 0.55;
  }
}

/* ============================================================
   31. HERO BADGE STAT (onder logo cirkel)
   ============================================================ */
.hr-hero__badge-stat {
  background: var(--hr-white);
  border: 1.5px solid var(--hr-border-gold);
  border-radius: var(--hr-radius-pill);
  padding: 0.4rem 1.1rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(74, 144, 217, 0.14);
  position: relative;
  animation: hr-badge-pulse 2.4s ease-in-out infinite;
  will-change: transform;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hr-hero__badge-stat:hover {
  border-color: var(--hr-gold);
  box-shadow: 0 6px 22px rgba(74, 144, 217, 0.32);
}

/* Uitdijende sonar-ring – puur GPU via transform + opacity */
.hr-hero__badge-stat::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(74, 144, 217, 0.65);
  animation: hr-badge-ring 2.4s ease-out infinite;
  will-change: transform, opacity;
  pointer-events: none;
}

@keyframes hr-badge-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes hr-badge-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  75% {
    transform: scale(1.45);
    opacity: 0;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.hr-hero__badge-stat-value {
  display: block;
  font-family: var(--hr-font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hr-gold-dark);
  line-height: 1.1;
}

.hr-hero__badge-stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--hr-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.1rem;
}

/* ============================================================
   32. ACTION CARD CTA ROW
   ============================================================ */
.hr-action-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(232, 227, 218, 0.55);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--hr-gold-dark);
  transition: var(--hr-transition);
}

.hr-action-card__cta svg,
.hr-action-card__cta i {
  width: 15px;
  height: 15px;
  stroke: var(--hr-gold-dark);
  transition: transform 0.25s ease;
}

.hr-action-card:hover .hr-action-card__cta svg,
.hr-action-card:hover .hr-action-card__cta i {
  transform: translateX(4px);
}

.hr-action-card--primary .hr-action-card__cta {
  color: rgba(255, 255, 255, 0.9);
  border-top-color: rgba(255, 255, 255, 0.25);
}

.hr-action-card--primary .hr-action-card__cta svg,
.hr-action-card--primary .hr-action-card__cta i {
  stroke: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   33. FEATURE CARD CTA ROW
   ============================================================ */
.hr-feature-card__cta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  margin-bottom: 0.4rem;
  padding-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hr-gold-dark);
}

.hr-feature-card__cta svg,
.hr-feature-card__cta i {
  width: 14px;
  height: 14px;
  stroke: var(--hr-gold-dark);
  transition: transform 0.25s ease;
}

.hr-feature-card:hover .hr-feature-card__cta svg,
.hr-feature-card:hover .hr-feature-card__cta i {
  transform: translateX(4px);
}

/* ============================================================
   34. CONTACT INFO STRIP
   ============================================================ */
.hr-contact-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: center;
  background: var(--hr-white);
  border: 1.5px solid var(--hr-border);
  border-radius: var(--hr-radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--hr-card-shadow);
}

.hr-contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--hr-slate);
}

.hr-contact-info-item svg,
.hr-contact-info-item i {
  width: 16px;
  height: 16px;
  stroke: var(--hr-gold);
  flex-shrink: 0;
}

.hr-contact-info-item a {
  color: var(--hr-slate);
  text-decoration: none;
  transition: color 0.2s;
}

.hr-contact-info-item a:hover {
  color: var(--hr-gold-dark);
}

.hr-contact-info-sep {
  width: 1px;
  height: 20px;
  background: var(--hr-border);
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .hr-contact-info-sep {
    display: none;
  }

  .hr-contact-info-strip {
    padding: 0.75rem 1rem;
  }
}

/* ============================================================
   35. FOOTER EXPANDED
   ============================================================ */
.hr-footer {
  padding: 2.5rem 1.5rem 0;
}

.hr-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 576px) {
  .hr-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
    flex-direction: unset;
    justify-content: unset;
  }
}

.hr-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hr-footer__brand-name {
  font-family: var(--hr-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hr-white);
  display: block;
}

.hr-footer__links {
  min-width: 160px;
}

.hr-footer__links-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hr-gold);
  margin-bottom: 0.75rem;
}

.hr-footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hr-footer__links ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.hr-footer__links ul li a:hover {
  color: var(--hr-gold);
  gap: 0.7rem;
}

.hr-footer__links ul li a svg,
.hr-footer__links ul li a i {
  width: 14px;
  height: 14px;
  stroke: var(--hr-gold);
  flex-shrink: 0;
}

.hr-footer__bottom {
  padding: 1rem 0;
}

/* ============================================================
   36. RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 780px) {
  .hr-hero__badge-wrap {
    display: none;
  }
}

@media (max-width: 575px) {
  .hr-hero {
    padding: calc(var(--hr-notice-h, 0px) + var(--hr-navbar-h, 72px) + 1.25rem) 1rem 1.75rem;
    min-height: auto;
    justify-content: flex-start;
  }

  .hr-hero__inner {
    gap: 1.25rem;
    overflow: hidden;
  }

  .hr-hero__title {
    font-size: 1.85rem;
    margin-bottom: 0.6rem;
  }

  .hr-hero__lead {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }

  .hr-hero__notice {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .hr-hero__social-links {
    gap: 0.45rem;
  }

  .hr-hero__social-link {
    width: 100%;
    justify-content: center;
  }

  .hr-hero__inline-img {
    height: 155px !important;
  }

  .hr-section {
    padding: 2.5rem 1rem;
  }

  .hr-navbar {
    width: calc(100% - 1rem);
    top: calc(var(--hr-notice-h, 0px) + 0.5rem);
    gap: 0.5rem;
    padding: 0.6rem 1rem;
  }

  .hr-navbar.is-scrolled {
    top: 0.35rem;
    padding: 0.5rem 0.9rem;
  }

  .hr-lang-form {
    padding: 3px 6px;
    gap: 2px;
  }

  .hr-lang-btn {
    font-size: 0.72rem;
    padding: 2px 4px;
  }

  .hr-lang-btn img {
    width: 14px;
  }

  .hr-contact-info-item a,
  .hr-contact-info-item span {
    overflow-wrap: anywhere;
  }

  .hr-footer__links {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 399px) {
  body.home-redesign {
    scroll-snap-type: none;
  }

  .hr-navbar {
    width: calc(100% - 0.75rem);
    padding: 0.45rem 0.65rem;
    border-radius: 18px;
  }

  .hr-navbar.is-scrolled {
    padding: 0.4rem 0.6rem;
  }

  .hr-navbar__brand {
    gap: 0.4rem;
    min-width: 0;
  }

  .hr-navbar__logo {
    width: 32px;
    height: 32px;
  }

  .hr-navbar__actions {
    gap: 0.35rem;
  }

  .hr-lang-form {
    padding: 2px 5px;
  }

  .hr-lang-btn {
    font-size: 0.68rem;
    padding: 1px 3px;
  }

  .hr-lang-btn img {
    width: 12px;
  }

  .hr-scroll-cue {
    display: none;
  }

  .hr-hero {
    padding: calc(var(--hr-notice-h, 0px) + var(--hr-navbar-h, 72px) + 1.15rem) 0.75rem 1.5rem;
  }

  .hr-hero__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
  }

  .hr-hero__eyebrow::before {
    width: 16px;
  }

  .hr-hero__title {
    font-size: clamp(1.55rem, 8.8vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .hr-hero__lead {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .hr-hero__notice {
    font-size: 0.82rem;
    padding: 0.6rem 0.75rem;
    margin-bottom: 1rem;
  }

  .hr-hero__img-wrap {
    margin-bottom: 1rem;
  }

  .hr-hero__inline-img {
    height: 150px;
    border-radius: 14px;
  }

  .hr-live-badge {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
  }

  .hr-btn {
    min-height: 44px;
    width: 100%;
    justify-content: center;
    font-size: 0.84rem;
    padding: 0.6rem 0.75rem;
  }

  .hr-section {
    min-height: auto;
    padding: 2rem 0.75rem;
  }

  .hr-section-label {
    font-size: 0.64rem;
    letter-spacing: 0.09em;
    padding-left: 0.5rem;
  }

  .hr-section-title {
    font-size: clamp(1.2rem, 7vw, 1.55rem);
  }

  .hr-section-lead {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .hr-actions-grid,
  .hr-feature-grid,
  .hr-contact-grid {
    gap: 0.75rem;
  }

  .hr-action-card,
  .hr-feature-card,
  .hr-contact-panel {
    padding: 1rem;
  }

  .hr-action-card__icon {
    width: 36px;
    height: 36px;
  }

  .hr-action-card__icon svg,
  .hr-action-card__icon i {
    width: 17px;
    height: 17px;
  }

  .hr-action-card__title {
    font-size: 0.95rem;
  }

  .hr-action-card__desc,
  .hr-feature-card__body,
  .hr-contact-panel p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .hr-feature-card__icon {
    width: 40px;
    height: 40px;
  }

  .hr-feature-card__icon svg,
  .hr-feature-card__icon i {
    width: 18px;
    height: 18px;
  }

  .hr-feature-card__title {
    font-size: 0.92rem;
  }

  .hr-contact-btn {
    min-height: 44px;
    padding: 0.65rem 0.8rem;
    font-size: 0.84rem;
  }

  .hr-contact-info-strip {
    padding: 0.7rem 0.75rem;
    gap: 0.45rem 0.9rem;
  }

  .hr-contact-info-item {
    font-size: 0.8rem;
    align-items: flex-start;
  }

  .hr-contact-info-item a,
  .hr-contact-info-item span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .availability-header {
    gap: 0.6rem;
    align-items: flex-start;
  }

  .availability-meta {
    align-items: stretch;
    gap: 0.5rem;
  }

  .availability-nav {
    width: 100%;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.2rem;
  }

  .availability-nav-btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 40px;
    padding: 0.48rem 0.7rem;
    font-size: 0.76rem;
  }

  .availability-nav-btn i {
    width: 14px;
    height: 14px;
  }

  .availability-card {
    border-radius: 16px;
    padding: 0.9rem !important;
  }

  .day-label {
    font-size: 1rem;
  }

  .day-subtitle {
    font-size: 0.78rem;
  }

  .staff-name {
    font-size: 0.9rem;
  }

  .slot-line {
    padding: 0.45rem 0.55rem;
  }

  .slot-label {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    gap: 0.35rem;
  }

  .slot-value {
    font-size: 0.82rem;
    overflow-wrap: anywhere;
  }

  .hr-footer {
    padding: 1.75rem 0.75rem 0;
  }

  .hr-footer__inner {
    gap: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .hr-footer__brand-name {
    font-size: 1rem;
  }

  .hr-footer__links ul li a {
    font-size: 0.82rem;
    overflow-wrap: anywhere;
  }

  .hr-footer__copy {
    font-size: 0.74rem;
  }
}

@media (max-width: 360px) {
  .implode-trigger {
    filter: blur(4px) !important;
    transform: scale(1.35) !important;
    transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease !important;
  }

  .implode-trigger.implode-active {
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: scale(1) !important;
  }
}

@media (max-width: 340px) {
  .hr-navbar {
    width: calc(100% - 0.5rem);
    padding: 0.35rem 0.45rem;
  }

  .hr-lang-form {
    padding: 2px 4px;
  }

  .hr-lang-btn {
    font-size: 0.64rem;
    padding: 1px 2px;
  }

  .hr-lang-btn img {
    width: 11px;
  }

  .hr-hero {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .hr-section {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .hr-hero__title {
    font-size: clamp(1.42rem, 9vw, 1.82rem);
  }

  .hr-section-title {
    font-size: clamp(1.1rem, 8vw, 1.35rem);
  }

  .hr-btn {
    font-size: 0.8rem;
  }

  .hr-action-card,
  .hr-feature-card,
  .hr-contact-panel {
    padding: 0.85rem;
  }

  .availability-nav-btn {
    min-width: 0;
    padding: 0.4rem 0.58rem;
    font-size: 0.72rem;
  }
}

/* ============================================================
   37. IMPLODE-ON-SCROLL EFFECT
   ============================================================ */
.implode-trigger {
  opacity: 0;
  filter: blur(5px);
  transform: scale(1.2);
  transition:
    opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity, filter;
}

.implode-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* Accessibility: skip animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .implode-trigger {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   25. SCROLLBAR STYLING
   ============================================================ */
body.home-redesign ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

body.home-redesign ::-webkit-scrollbar-track {
  background: var(--hr-cream);
}

body.home-redesign ::-webkit-scrollbar-thumb {
  background: var(--hr-border);
  border-radius: 3px;
}

body.home-redesign ::-webkit-scrollbar-thumb:hover {
  background: var(--hr-gold);
}

/* ============================================================
   TEST-NOTICE / COOKIE LOCK: verberg redesign navigatie-elementen
   .hr-notice-bar (z-index 1100), .hr-navbar (z-index 1000) en
   .hr-mobile-nav (z-index 2000) staan boven de overlays
   (test-notice z-index 90, cookie-overlay z-index 30).
   Verberg ze zolang de melding of cookie-banner actief is.
   ============================================================ */
body.test-notice-locked .hr-notice-bar,
body.test-notice-locked .hr-navbar,
body.test-notice-locked .hr-mobile-nav,
body.cookie-locked .hr-notice-bar,
body.cookie-locked .hr-navbar,
body.cookie-locked .hr-mobile-nav {
  visibility: hidden;
  pointer-events: none;
}

/* Mobile override for hero text frame */
@media (max-width: 575px) {
  .hr-hero__text-frame {
    padding: 1.25rem !important;
    margin-bottom: 1.5rem !important;
    border-width: 1px !important;
  }
}

/* ============================================================
   TOEGANKELIJKHEID – Skip-to-content link
   ============================================================ */
.hr-skip-link {
  position: absolute;
  top: -100vh;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hr-charcoal);
  color: var(--hr-white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--hr-radius-sm) var(--hr-radius-sm);
  font-family: var(--hr-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s ease;
  white-space: nowrap;
}

.hr-skip-link:focus,
.hr-skip-link:focus-visible {
  top: 0;
  outline: 3px solid var(--hr-gold);
  outline-offset: 2px;
  color: var(--hr-white);
}

/* ============================================================
   TOEGANKELIJKHEID – Verbeterde focus indicators (WCAG AAA)
   ============================================================ */
body.home-redesign *:focus-visible {
  outline: 3px solid var(--hr-gold);
  outline-offset: var(--hr-focus-ring-offset, 3px);
  box-shadow: 0 0 0 6px var(--hr-focus-ring);
}

/* Buttons: duidelijker contrast ring */
body.home-redesign .hr-btn:focus-visible,
body.home-redesign .hr-navbar__cta:focus-visible,
body.home-redesign .hr-contact-btn:focus-visible,
body.home-redesign .hr-mobile-nav__item:focus-visible,
body.home-redesign .hr-mobile-nav__main:focus-visible {
  outline: 3px solid var(--hr-charcoal);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--hr-focus-ring);
}

/* Cards: combineer schaduw + focus ring */
body.home-redesign .hr-action-card:focus-visible,
body.home-redesign .hr-feature-card:focus-visible {
  outline: 3px solid var(--hr-gold);
  outline-offset: 0;
  box-shadow: var(--hr-card-shadow-hover), 0 0 0 4px var(--hr-focus-ring);
  transform: translateY(-4px);
}

/* Contact panels */
body.home-redesign .hr-contact-panel:focus-within {
  border-color: var(--hr-gold);
  box-shadow: 0 0 0 3px var(--hr-focus-ring);
}

/* Form controls in modals */
body.home-redesign .contact-modal .form-control:focus,
body.home-redesign .contact-modal .form-select:focus {
  border-color: var(--hr-gold);
  box-shadow: 0 0 0 3px var(--hr-focus-ring);
}

/* Lang buttons */
body.home-redesign .hr-lang-btn:focus-visible {
  outline: 2px solid var(--hr-gold);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--hr-focus-ring);
}

/* Availability navigation buttons */
body.home-redesign .availability-nav-btn:focus-visible {
  outline: 3px solid var(--hr-gold);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--hr-focus-ring);
}

/* Appointment-only notice */
body.home-redesign .availability-appointment-notice {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #0f1923 0%, #1a2a3a 60%, #0f1923 100%);
  border: 1px solid rgba(74, 144, 217, 0.35);
  border-radius: 18px;
  padding: 2rem 2rem 1.75rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}

body.home-redesign .availability-appointment-notice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 90% 10%, rgba(74,144,217,0.18) 0%, transparent 70%);
  pointer-events: none;
}

body.home-redesign .availability-appointment-notice > i[data-lucide] {
  width: 28px;
  height: 28px;
  color: var(--hr-gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
  filter: drop-shadow(0 0 8px rgba(74,144,217,0.6));
}

body.home-redesign .availability-appointment-notice__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

body.home-redesign .availability-appointment-notice__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

body.home-redesign .availability-appointment-notice__body p:first-child {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

body.home-redesign .availability-kanaal-chips {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

body.home-redesign .availability-kanaal-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: clamp(0.78rem, 2.2vw, 0.85rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s;
}

body.home-redesign .availability-kanaal-chip:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

body.home-redesign .availability-kanaal-chip i[data-lucide] {
  width: 15px;
  height: 15px;
}

body.home-redesign .availability-kanaal-chip--online {
  background: var(--hr-gold);
  color: #fff;
  box-shadow: 0 3px 12px rgba(74,144,217,0.45);
}

body.home-redesign .availability-kanaal-chip--telefoon {
  background: #10b981;
  color: #fff;
  box-shadow: 0 3px 12px rgba(16,185,129,0.4);
}

body.home-redesign .availability-kanaal-chip--email {
  background: #6366f1;
  color: #fff;
  box-shadow: 0 3px 12px rgba(99,102,241,0.4);
}

/* ≤ 600px: icoon verbergen, 1-kolom layout */
@media (max-width: 600px) {
  body.home-redesign .availability-appointment-notice {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1.5rem 1.25rem 1.25rem;
  }
  body.home-redesign .availability-appointment-notice > i[data-lucide] {
    display: none;
  }
  body.home-redesign .availability-kanaal-chips {
    grid-column: 1;
    gap: 0.5rem;
  }
  body.home-redesign .availability-kanaal-chip {
    padding: 0.45rem 0.95rem;
    font-size: 0.82rem;
  }
}

/* ≤ 420px: compactere chips en tekst */
@media (max-width: 420px) {
  body.home-redesign .availability-appointment-notice {
    padding: 1.25rem 1rem 1rem;
    border-radius: 14px;
  }
  body.home-redesign .availability-appointment-notice__body p {
    font-size: 0.88rem;
  }
  body.home-redesign .availability-appointment-notice__body p:first-child {
    font-size: 0.92rem;
  }
  body.home-redesign .availability-kanaal-chip {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
  }
  body.home-redesign .availability-kanaal-chip i[data-lucide] {
    width: 13px;
    height: 13px;
  }
}

/* ≤ 340px: chips volledig gestapeld */
@media (max-width: 340px) {
  body.home-redesign .availability-kanaal-chips {
    flex-direction: column;
    align-items: flex-start;
  }
  body.home-redesign .availability-kanaal-chip {
    width: 100%;
    justify-content: center;
  }
}

/* Walk-in only notice */
body.home-redesign .availability-walkin-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.9rem;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #14532d;
}

body.home-redesign .availability-walkin-notice > i[data-lucide] {
  width: 18px;
  height: 18px;
  color: #16a34a;
  flex-shrink: 0;
}

/* Social links */
body.home-redesign .hr-hero__social-link:focus-visible {
  outline: 2px solid var(--hr-gold);
  outline-offset: 2px;
  background: var(--hr-gold-xlight);
}

/* Footer links */
body.home-redesign .hr-footer__links a:focus-visible {
  outline: 2px solid var(--hr-gold-light);
  outline-offset: 2px;
  border-radius: var(--hr-radius-sm);
}

/* ============================================================
   TOEGANKELIJKHEID – High contrast mode
   ============================================================ */
@media (prefers-contrast: more) {
  :root {
    --hr-cream: #E8EDF2;
    --hr-gold: #1A5CA8;
    --hr-gold-dark: #0D3F7A;
    --hr-gold-light: #B8D0EC;
    --hr-gold-xlight: #D4E4F7;
    --hr-charcoal: #111827;
    --hr-slate: #1F2937;
    --hr-muted: #374151;
    --hr-border: #9CA3AF;
    --hr-border-gold: rgba(26, 92, 168, 0.50);
    --hr-card-shadow: 0 0 0 1px var(--hr-border);
    --hr-card-shadow-hover: 0 0 0 2px var(--hr-gold);
    --hr-shadow-lg: 0 0 0 1px var(--hr-border);
    --hr-focus-ring: rgba(26, 92, 168, 0.60);
  }

  body.home-redesign {
    font-weight: 500;
  }

  /* Dikkere borders voor duidelijkheid */
  body.home-redesign .hr-action-card,
  body.home-redesign .hr-feature-card,
  body.home-redesign .hr-contact-panel {
    border-width: 2px;
    border-color: var(--hr-border);
  }

  /* Sterkere dividers */
  body.home-redesign .hr-divider {
    height: 3px;
    background: var(--hr-gold);
    opacity: 1 !important;
    animation: none !important;
  }

  /* Grotere focus indicators */
  body.home-redesign *:focus-visible {
    outline-width: 4px;
    box-shadow: 0 0 0 8px var(--hr-focus-ring);
  }

  /* Schaduwen vereenvoudigen tot borders */
  body.home-redesign .hr-navbar.is-scrolled {
    box-shadow: 0 2px 0 0 var(--hr-border);
  }

  /* Knop contrast versterken */
  body.home-redesign .hr-btn--primary,
  body.home-redesign .hr-action-card--primary {
    font-weight: 700;
  }

  /* Geen transparante achtergronden */
  body.home-redesign .hr-hero__text-frame {
    background: rgba(45, 55, 72, 0.40);
    border-width: 2px;
  }

  /* Chips: meer contrast */
  body.home-redesign .hr-chip {
    border-width: 2px;
    font-weight: 600;
  }

  /* Meldingen balk: sterker contrast */
  body.home-redesign .hr-notice-bar {
    border-bottom-width: 2px;
  }

  /* Stats strip: versterkt contrast */
  body.home-redesign .hr-stats-strip {
    border-top: 2px solid var(--hr-border);
    border-bottom: 2px solid var(--hr-border);
  }

  /* Link underlines forceren voor betere herkenning */
  body.home-redesign a:not(.hr-btn):not(.hr-action-card):not(.hr-feature-card):not(.hr-navbar__brand):not(.hr-navbar__cta):not(.hr-mobile-nav__item):not(.hr-mobile-nav__main):not(.hr-skip-link) {
    text-decoration: underline;
  }
}
