:root {

  --bh-green-900: #0B2F25;
  --bh-green-800: #104535;
  --bh-green-700: #155842;
  --bh-green-600: #1D6A50;
  --bh-green-500: #2C7A5D;

  --bh-gold-500: #D9A441;
  --bh-gold-400: #E4B65B;
  --bh-gold-300: #F0D08A;
  --bh-gold-100: #FBF3DF;

  --bh-gold-text: #9C6317;

  --bh-bg:             #FDFCF9;
  --bh-bg-warm:        #F5F2E9;
  --bh-bg-soft:        #F2EEE4;
  --bh-bg-tint:        #F2EEE4;
  --bh-surface:        #FFFFFF;
  --bh-surface-hover:  #F8F8F5;
  --bh-dark:           var(--bh-green-900);
  --bh-dark-soft:      var(--bh-green-800);

  --bh-primary:       var(--bh-green-700);
  --bh-primary-hover: var(--bh-green-900);
  --bh-primary-light: #EAF5EF;

  --bh-text:           #101916;
  --bh-text-secondary: #53605B;
  --bh-text-muted:     #636E69;
  --bh-text-light:     #A1A9A5;

  --bh-border:        #E4E6E1;
  --bh-border-strong: rgba(16,25,22,0.12);
  --bh-border-control: #6C7972;
  --bh-error:         #BB4545;
  --bh-error-bg:      #FDEEEE;
  --bh-success:       #247B57;
  --bh-success-bg:    #EAF5EF;
  --bh-warn:          #98641A;
  --bh-warn-bg:       #FFF6DF;

  --bh-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --bh-font-head: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --bh-font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --bh-font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, monospace;

  --bh-max:         1280px;
  --bh-max-text:     720px;
  --bh-gutter:       20px;
  --bh-radius-sm:      8px;
  --bh-radius:        12px;
  --bh-radius-lg:     18px;
  --bh-radius-xl:     24px;
  --bh-radius-2xl:    32px;
  --bh-nav-h: 76px;
  --bh-hero-peek: 88px;
  --bh-sidebar-w:    248px;

  --bh-space-xl: 140px;
  --bh-space-lg: 110px;
  --bh-space-md:  80px;
  --bh-space-sm:  56px;

  --bh-ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --bh-ease-fast: 180ms ease;

  --bh-shadow-sm: 0 2px 8px rgba(11,47,37,0.05);
  --bh-shadow:    0 8px 30px rgba(11,47,37,0.06);
  --bh-shadow-lg: 0 14px 40px rgba(11,47,37,0.10);

  --bh-z-nav:     100;
  --bh-z-drawer:  200;
  --bh-z-toast:   300;
}

@media (max-width: 640px) {
  :root {
    --bh-space-xl: 80px;
    --bh-space-lg: 64px;
    --bh-space-md: 48px;
    --bh-space-sm: 36px;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-padding-top: calc(var(--bh-nav-h) + 1rem);
}

body {
  font-family: var(--bh-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bh-text);
  background: var(--bh-bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
fieldset { border: 0; min-width: 0; }
legend { padding: 0; display: block; font-size: .875rem; font-weight: 600; margin-bottom: .5rem; }
::selection { background: color-mix(in srgb, var(--bh-primary) 20%, transparent); }
input, textarea { caret-color: var(--bh-primary); }

:focus-visible { outline: 2px solid var(--bh-primary); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

.bh-skip {
  position: absolute; left: 1rem; top: -100%;
  background: var(--bh-dark); color: #fff;
  padding: .7rem 1.1rem; border-radius: var(--bh-radius);
  z-index: calc(var(--bh-z-drawer) + 10); font-size: .9rem; font-weight: 600;
  transition: top .2s var(--bh-ease);
}
.bh-skip:focus { top: 1rem; }

.bh-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.bh-container {
  width: min(100% - (var(--bh-gutter) * 2), var(--bh-max));
  margin-inline: auto;
}
@media (max-width: 640px) { :root { --bh-gutter: 16px; } }

.bh-section { padding: var(--bh-space-lg) 0; }
.bh-section--md { padding: var(--bh-space-md) 0; }
.bh-section--sm { padding: var(--bh-space-sm) 0; }
.bh-section--alt  { background: var(--bh-bg-soft); }
.bh-section--dark { background: var(--bh-dark); color: var(--bh-text-light); }
.bh-section--dark h1, .bh-section--dark h2,
.bh-section--dark h3, .bh-section--dark h4 { color: #fff; }
.bh-section--dark .bh-eyebrow { color: #9FDBB7; }

.bh-actieve-filters {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.bh-actieve-filters__label {
  font-size: .8rem; font-weight: 700;
  color: var(--bh-text-secondary);
  margin-right: .15rem;
}
.bh-filterchip {
  display: inline-flex; align-items: center; gap: .4rem;
  min-height: 34px;
  padding: .3rem .5rem .3rem .75rem;
  border-radius: 999px;
  background: var(--bh-primary-light);
  border: 1px solid rgba(21,88,66,.22);
  color: var(--bh-primary);
  font-size: .84rem; font-weight: 600;
  transition: background-color .2s var(--bh-ease), border-color .2s var(--bh-ease);
}
.bh-filterchip:hover { background: var(--bh-surface); border-color: var(--bh-primary); }
.bh-filterchip svg { width: 15px; height: 15px; opacity: .75; }
.bh-filterchip:hover svg { opacity: 1; }

.bh-home > section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bh-home > section:not(.bh-hero) {
  min-height: calc(100vh - var(--bh-nav-h));
  min-height: calc(100svh - var(--bh-nav-h));
}

.bh-home > section.bh-section--auto {
  min-height: 0;
  display: block;
}

.bh-home > .bh-hero {
  min-height: calc(100vh - var(--bh-hero-peek));
  min-height: calc(100svh - var(--bh-hero-peek));
}

h1, h2 {
  font-family: var(--bh-font-display);
  font-weight: 700;
  color: var(--bh-text);
}
h3, h4, h5 {
  font-family: var(--bh-font-head);
  font-weight: 800;
  color: var(--bh-text);
}

h1 {
  font-size: clamp(2.25rem, 3.6vw, 3.4rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}

.bh-hero__main h1 {
  font-size: clamp(2.5rem, 4.4vw, 3.9rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.014em;
  text-wrap: pretty;
}

h3 { font-size: 1.35rem; line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: .95rem; font-weight: 700; }

h1 em, h2 em, h3 em { font-style: normal; color: var(--bh-primary); }
.bh-section--dark h1 em, .bh-section--dark h2 em { color: var(--bh-gold-400); }

p  { font-size: 1rem; line-height: 1.65; font-weight: 500; }.bh-lead { font-size: 1.1rem; color: var(--bh-text-secondary); max-width: 56ch; }

.bh-section-head {
  text-align: center;
  max-width: var(--bh-max-text);
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.bh-section-head--center { text-align: center; }

.bh-section-head--sm { margin-bottom: clamp(1.75rem, 3vw, 2.25rem); }
.bh-section-head--sm h2 { font-size: clamp(1.5rem, 2.2vw, 1.85rem); }
.bh-section-head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  text-align: left; gap: 1.5rem;

  max-width: none;
  margin: 0 0 1.75rem;
}
.bh-section-head p {
  color: var(--bh-text-secondary);
  margin-top: 1rem;
  font-size: 1.05rem;
}
.bh-section--dark .bh-section-head p { color: var(--bh-text-light); }

.bh-icon {
  width: 1.25rem; height: 1.25rem;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bh-icon--sm { width: 1rem;   height: 1rem; }
.bh-icon--lg { width: 1.6rem; height: 1.6rem; }

.bh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: 0 22px;
  font-family: var(--bh-font-body);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: var(--bh-radius);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background-color var(--bh-ease-fast),
              border-color var(--bh-ease-fast),
              color var(--bh-ease-fast),
              box-shadow var(--bh-ease-fast),
              transform var(--bh-ease-fast);
}
.bh-btn:active { transform: translateY(1px); }

.bh-btn--accent { background: var(--bh-primary); color: #fff; }
.bh-btn--accent:hover { background: var(--bh-primary-hover); transform: translateY(-1px); }

.bh-btn--gold { background: var(--bh-gold-500); color: var(--bh-green-900); }
.bh-btn--gold:hover { background: var(--bh-gold-400); transform: translateY(-1px); }

.bh-btn--outline { border-color: var(--bh-border-control); color: var(--bh-text); background: transparent; }
.bh-btn--outline:hover { border-color: var(--bh-primary); color: var(--bh-primary); background: var(--bh-primary-light); }

.bh-btn--outline-light { border-color: rgba(255,255,255,0.3); color: #fff; }
.bh-btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.bh-btn--ghost { color: var(--bh-text); }
.bh-btn--ghost:hover { background: var(--bh-bg-soft); }

.bh-btn--light { background: #fff; color: var(--bh-dark); }
.bh-btn--light:hover { background: var(--bh-bg-soft); transform: translateY(-1px); }

.bh-btn--lg    { padding: 0 1.75rem; font-size: 1.02rem; min-height: 56px; }

.bh-btn--sm    { padding: 0 1rem; font-size: .87rem; min-height: 44px; border-radius: var(--bh-radius-sm); }
.bh-btn--block { display: flex; width: 100%; }

.bh-btn[disabled], .bh-btn[aria-disabled="true"] {
  opacity: .45; cursor: not-allowed; pointer-events: none;
}
.bh-btn__arrow { transition: transform .3s var(--bh-ease); }
.bh-btn:hover .bh-btn__arrow { transform: translateX(3px); }

.bh-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .8rem;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  color: var(--bh-text-muted);
}
.bh-chip--accent { background: var(--bh-primary-light); color: var(--bh-primary-hover); border-color: transparent; }
a.bh-chip { color: var(--bh-text); transition: border-color var(--bh-ease-fast), background-color var(--bh-ease-fast), color var(--bh-ease-fast); }

.bh-nav {
  position: sticky;
  top: 0;
  z-index: var(--bh-z-nav);
  height: var(--bh-nav-h);
  background: rgba(250,249,245,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16,25,22,.06);
  transition: background-color .25s var(--bh-ease), border-color .25s var(--bh-ease);
}

.bh-nav--over:not(.is-gescrold) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.bh-nav--over::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: calc(var(--bh-nav-h) + 48px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(250,249,245,.92) 0%, rgba(250,249,245,.55) 55%, rgba(250,249,245,0) 100%);
  opacity: 0;
  transition: opacity .25s var(--bh-ease);
}
.bh-nav--over:not(.is-gescrold)::before { opacity: 1; }
.bh-nav__inner { position: relative; }

.bh-nav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.bh-nav .bh-nav__inner {
  width: 100%;
  max-width: none;
  padding-inline: clamp(16px, 2.2vw, 40px);
}
.bh-nav__links {
  display: flex;
  align-items: center;
  gap: .35rem;
  justify-self: center;
}
.bh-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: .5rem .9rem;
  font-size: .93rem;
  font-weight: 500;

  color: var(--bh-text-secondary);
  border-radius: 8px;
  transition: color .2s var(--bh-ease), background-color .2s var(--bh-ease);
}
.bh-nav__link:hover { color: var(--bh-text); background: var(--bh-bg-soft); }
.bh-nav__link[aria-current="page"] { color: var(--bh-text); font-weight: 700; }
.bh-nav__actions { display: flex; align-items: center; gap: .6rem; justify-self: end; }
.bh-nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--bh-text);
}
.bh-nav__toggle:hover { background: var(--bh-bg-soft); }

.bh-logo { display: inline-flex; align-items: center; gap: .6rem; }

.bh-logo__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  flex: none;
  --merk-huis: var(--bh-dark);
  --merk-teken: var(--bh-bg);
}
.bh-logo__mark svg { width: 34px; height: 34px; }.bh-logo__text { display: flex; flex-direction: column; gap: .1rem; }
.bh-logo__word {
  font-family: var(--bh-font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--bh-text);
  line-height: 1;
}

.bh-logo__tagline { font-size: .68rem; font-weight: 500; color: var(--bh-text-secondary); line-height: 1; white-space: nowrap; }.bh-logo--beeld { display: inline-flex; align-items: center; flex: none; }
.bh-logo--beeld img { display: block; height: 72px; width: auto; max-width: none; }

@media (max-width: 900px) { }

.bh-drawer__backdrop {
  position: fixed; inset: 0;
  background: rgba(15,42,29,0.45);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--bh-ease);
  z-index: var(--bh-z-drawer);
}
.bh-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 86vw);
  background: var(--bh-bg);
  border-left: 1px solid var(--bh-border);
  transform: translateX(100%);
  transition: transform .35s var(--bh-ease);
  z-index: calc(var(--bh-z-drawer) + 1);
  display: flex; flex-direction: column;
  padding: 1.1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}
body.bh-drawer-open .bh-drawer { transform: translateX(0); }
body.bh-drawer-open .bh-drawer__backdrop,
body.bh-app-nav-open .bh-drawer__backdrop { opacity: 1; pointer-events: auto; }
body.bh-drawer-open,
body.bh-app-nav-open { overflow: hidden; }

.bh-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--bh-border);
  margin-bottom: .75rem;
}
.bh-drawer__close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 8px; color: var(--bh-text);
}
.bh-drawer__close:hover { background: var(--bh-bg-soft); }
.bh-drawer__link {
  display: flex; align-items: center; gap: .75rem;
  min-height: 48px;
  padding: .75rem .6rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bh-text);
  border-radius: var(--bh-radius);
  transition: background-color .2s var(--bh-ease);
}
.bh-drawer__link:hover { background: var(--bh-bg-soft); }
.bh-drawer__link svg { color: var(--bh-text-muted); }
.bh-drawer__foot { margin-top: auto; padding-top: 1.25rem; display: grid; gap: .6rem; }

.bh-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.bh-hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 55% at 82% 8%, rgba(31,107,61,0.08), transparent 65%),
    radial-gradient(45% 45% at 6% 90%, rgba(31,107,61,0.06), transparent 60%);
}

.bh-hero--photo {

  margin-top: calc(-1 * var(--bh-nav-h));
  padding: calc(var(--bh-nav-h) + 1.75rem) 0 1.5rem;
}

.bh-hero--photo .bh-hero__bg {
  background-image:
    linear-gradient(90deg,
      var(--bh-bg-warm) 0%,
      var(--bh-bg-warm) 24%,
      rgba(245,242,233,0.82) 40%,
      rgba(245,242,233,0.30) 54%,
      rgba(245,242,233,0) 66%),
    url("../images/hero/home-hero-bg.ea88350203c0.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: center, right center;
  background-size: 100% 100%, cover;
}

@media (max-width: 900px) {
  .bh-hero--photo .bh-hero__bg {
    background-image:
      linear-gradient(180deg,
        var(--bh-bg-warm) 0%,
        var(--bh-bg-warm) 40%,
        rgba(245,242,233,0.86) 52%,
        rgba(245,242,233,0.15) 66%,
        rgba(245,242,233,0) 76%),
      url("../images/hero/home-hero-bg-mobiel.6f0a02fb97c5.webp");
    background-position: center, center bottom;
    background-size: 100% 100%, cover;
  }
}

.bh-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.bh-hero__sub {
  font-size: 1.12rem;
  color: var(--bh-text-secondary);
  margin-top: 1.3rem;
  max-width: 46ch;
  text-wrap: pretty;
}

.bh-hero--photo .bh-hero__grid { grid-template-columns: minmax(0, 740px); }
.bh-hero--photo h1 { max-width: 660px; }
.bh-hero--photo .bh-hero__sub { max-width: 44ch; }

@media (min-width: 901px) {

  .bh-hero--photo .bh-searchband__form { grid-template-columns: 1.6fr 1.35fr 1.05fr auto; }
}
@media (max-width: 900px) {
  .bh-hero--photo .bh-hero__grid { grid-template-columns: 1fr; }
  .bh-hero--photo .bh-hero__sub { max-width: none; }
}

@media (max-width: 640px) {
  .bh-hero--photo { padding: calc(var(--bh-nav-h) + .75rem) 0 .75rem; }
  .bh-searchband--hoofd { margin-top: 1.5rem; padding: 1rem; }
  .bh-hero__snel { margin-top: 1rem; }

  .bh-hero--photo .bh-hero__bg {
    background-image:
      radial-gradient(60% 40% at 80% 6%, rgba(31,107,61,0.10), transparent 70%),
      radial-gradient(50% 35% at 5% 92%, rgba(217,164,65,0.10), transparent 65%);
    background-color: var(--bh-bg-warm);
    background-position: center, center;
    background-size: auto, auto;
  }
}
.bh-hero__snel {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
}
.bh-hero__snel-label {
  font-size: .85rem; font-weight: 600;
  color: var(--bh-text-secondary);
  margin-right: .15rem;
}
.bh-hero__snel a.bh-chip { min-height: 34px; background: rgba(255,255,255,.75); }
.bh-hero__snel a.bh-chip:hover { border-color: var(--bh-primary); color: var(--bh-primary-hover); background: #fff; }.bh-hero__actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 2rem;
}
.bh-hero__proof {
  display: flex; align-items: center; gap: .9rem;
  margin-top: 2rem;
}
.bh-hero__proof-text { font-size: .87rem; color: var(--bh-text-muted); font-weight: 500; }

.bh-hero__visual { position: relative; }

.bh-mascot {
  display: block;
  height: auto;
  max-width: 100%;
}
.bh-mascot--md { width: 170px; }
.bh-mascot--lg { width: 220px; }
.bh-mascot--xl { width: 300px; }

.bh-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.bh-stats--3 { grid-template-columns: repeat(3, 1fr); max-width: 820px; margin-inline: auto; text-align: center; }
.bh-stat__num {
  font-family: var(--bh-font-head);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1;
  color: var(--bh-text);
  font-variant-numeric: tabular-nums;
}
.bh-section--dark .bh-stat__num { color: #fff; }
.bh-stat__label { font-size: .88rem; color: var(--bh-text-muted); margin-top: .5rem; }
.bh-section--dark .bh-stat__label { color: var(--bh-text-light); }

.bh-overnamebalk {
  position: sticky; top: 0; z-index: calc(var(--bh-z-nav) + 5);
  background: var(--bh-error);
  color: #fff;
  font-size: .88rem;
}
.bh-overnamebalk__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
  padding: .6rem 0;
}
.bh-overnamebalk strong { font-weight: 800; }

.bh-beheerkaarten { display: flex; flex-direction: column; gap: 1rem; }
.bh-opdrachtkop {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.bh-opdrachtkop__titel { font-size: 1.02rem; margin: 0 0 .35rem; }
.bh-opdrachtkop__merken { display: flex; gap: .35rem; flex-wrap: wrap; flex: none; }
.bh-panel--zwaar { border-color: color-mix(in srgb, var(--bh-error) 35%, var(--bh-border)); }

.bh-editor__blok { border-top: 1px solid var(--bh-border); }
.bh-editor__blok:first-of-type { border-top: 0; }
.bh-editor__blok > summary {
  display: flex; align-items: center; gap: .6rem;
  padding: .95rem 0;
  cursor: pointer;
  font-weight: 700; font-size: .95rem;
  list-style: none;
  min-height: 44px;
}
.bh-editor__blok > summary::-webkit-details-marker { display: none; }
.bh-editor__blok > summary:hover { color: var(--bh-primary); }
.bh-editor__aantal {
  margin-left: auto;
  font-size: .74rem; font-weight: 700;
  color: var(--bh-text-muted);
  background: var(--bh-bg-soft);
  border-radius: 999px;
  padding: .1rem .5rem;
}
.bh-editor__chevron { color: var(--bh-text-muted); transition: transform .2s var(--bh-ease); }
.bh-editor__blok[open] > summary .bh-editor__chevron { transform: rotate(180deg); }
.bh-editor__blokbody { padding-bottom: 1rem; }

.bh-editor__uitleg {
  font-size: .87rem;
  color: var(--bh-text-secondary);
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bh-border);
}

.bh-beheer { padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem); }
.bh-beheer__kop {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1.25rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.bh-beheer__kop h1 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: .35rem 0 0; }
.bh-beheer__kop p { color: var(--bh-text-secondary); margin: .5rem 0 0; font-size: .95rem; }
.bh-beheer__label {
  font-size: .72rem; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: var(--bh-gold-text);
}
.bh-beheer__nav { display: flex; gap: .35rem; flex-wrap: wrap; }
.bh-beheer__nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: .45rem .95rem;
  border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  color: var(--bh-text-secondary);
  border: 1px solid var(--bh-border);
  background: var(--bh-surface);
}
.bh-beheer__nav a:hover { color: var(--bh-text); border-color: var(--bh-border-strong); }
.bh-beheer__nav a[aria-current="page"] {
  background: var(--bh-dark); border-color: var(--bh-dark); color: #fff;
}
.bh-beheer__grid {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem); align-items: start;
}

.bh-kpi {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .9rem; margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.bh-kpi__kaart {
  display: flex; flex-direction: column; gap: .2rem;
  padding: 1.1rem 1.15rem;
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  color: inherit;
}
a.bh-kpi__kaart:hover { border-color: var(--bh-primary); }
.bh-kpi__kaart--alarm { border-color: color-mix(in srgb, var(--bh-error) 45%, var(--bh-border)); }
.bh-kpi__getal {
  font-family: var(--bh-font-display);
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.bh-kpi__label { font-size: .85rem; font-weight: 700; }
.bh-kpi__extra { font-size: .76rem; color: var(--bh-text-muted); }

.bh-beheerzoek {
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) auto auto;
  gap: .75rem; align-items: end;
  margin-bottom: 1.5rem;
}
.bh-beheerzoek .bh-field { margin-bottom: 0; }
.bh-beheerzoek > button { align-self: end; min-height: 46px; }
.bh-beheerzoek > a { align-self: center; }.bh-tabelwrap {
  overflow-x: auto;
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  background: var(--bh-surface);
}
.bh-tabel { width: 100%; border-collapse: collapse; font-size: .9rem; }
.bh-tabel th, .bh-tabel td {
  text-align: left; padding: .85rem 1rem;
  border-bottom: 1px solid var(--bh-border);
  vertical-align: top;
}
.bh-tabel thead th {
  font-size: .74rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--bh-text-muted);
  background: var(--bh-bg-soft);
  white-space: nowrap;
}
.bh-tabel tbody tr:last-child td { border-bottom: 0; }
.bh-tabel tbody tr:hover { background: var(--bh-surface-hover); }
.bh-tabel__link { font-weight: 700; color: var(--bh-primary); }

.bh-merk {
  display: inline-block; margin-left: .35rem;
  padding: .12rem .5rem;
  border-radius: 999px;
  font-size: .7rem; font-weight: 700;
  background: var(--bh-bg-soft); color: var(--bh-text-secondary);
  white-space: nowrap;
}
.bh-merk--goed { background: var(--bh-success-bg); color: var(--bh-success); }
.bh-merk--fout { background: var(--bh-error-bg); color: var(--bh-error); }
.bh-merk--waarschuwing { background: var(--bh-warn-bg); color: var(--bh-warn); }
.bh-merk--uit { background: var(--bh-bg-soft); color: var(--bh-text-muted); }

.bh-pager {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 1.5rem;
}

.bh-beheerlijst { display: flex; flex-direction: column; }
.bh-beheerrij {
  display: grid; gap: .15rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--bh-border);
  color: inherit;
}
.bh-beheerlijst > :last-child { border-bottom: 0; padding-bottom: 0; }
.bh-beheerlijst > :first-child { padding-top: 0; }
a.bh-beheerrij:hover .bh-beheerrij__naam { color: var(--bh-primary); }
.bh-beheerrij__naam { font-weight: 700; font-size: .92rem; }
.bh-beheerrij__meta { font-size: .8rem; color: var(--bh-text-muted); }
.bh-beheerrij__fout {
  font-size: .78rem; color: var(--bh-error);
  font-family: var(--bh-font-mono);
  margin-top: .25rem;
}

.bh-planlijst { display: flex; flex-direction: column; }
.bh-planrij {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid var(--bh-border);
  font-size: .92rem;
}
.bh-planlijst > :last-child { border-bottom: 0; }
.bh-planrij__aantal { font-weight: 700; }

.bh-veldjes { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.bh-veldje {
  padding: .2rem .6rem; border-radius: 999px;
  font-size: .76rem; font-weight: 600;
  background: var(--bh-success-bg); color: var(--bh-success);
}
.bh-veldje--leeg { background: var(--bh-bg-soft); color: var(--bh-text-muted); }

.bh-tijdlijn { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.bh-tijdlijn li {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: .7rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--bh-border);
  font-size: .88rem;
}
.bh-tijdlijn li:last-child { border-bottom: 0; }
.bh-tijdlijn svg { color: var(--bh-primary); }
.bh-tijdlijn time { font-size: .78rem; color: var(--bh-text-muted); white-space: nowrap; }
.bh-tijdlijn__fout svg { color: var(--bh-error); }

.bh-actieknoppen { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.bh-inlineform { display: inline-block; margin-left: .5rem; }
.bh-terug { margin: -0.5rem 0 1.25rem; }

.bh-profielkop {
  display: flex; align-items: flex-start; gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.bh-profielkop__logo {
  width: 76px; height: 76px; flex: none;
  border-radius: var(--bh-radius);
  border: 1px solid var(--bh-border);
  background: var(--bh-surface);
  overflow: hidden;
  display: grid; place-items: center;
}
.bh-profielkop__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bh-profielkop__pitch {
  margin: .5rem 0 0;
  font-size: 1.02rem;
  color: var(--bh-text-secondary);
  max-width: 52ch;
}
.bh-profiel__leeg { color: var(--bh-text-secondary); }

.bh-dienstenlijst { display: grid; gap: .75rem; margin-top: .9rem; }
.bh-dienst {
  display: grid; gap: .2rem;
  padding: .85rem 1rem;
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  background: var(--bh-surface-hover);
}
.bh-dienst__naam { font-weight: 700; font-size: .95rem; }
.bh-dienst__uitleg { font-size: .88rem; color: var(--bh-text-secondary); }

.bh-werkgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: .9rem;
}
.bh-werk { margin: 0; }
.bh-werk img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  border-radius: var(--bh-radius);
  background: var(--bh-bg-soft);
}
.bh-werk figcaption {
  margin-top: .4rem;
  font-size: .78rem;
  color: var(--bh-text-muted);
  line-height: 1.4;
}

.bh-verhaal {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.bh-verhaal__kop h2 { margin: 0; }
.bh-verhaal__tekst > p {
  color: var(--bh-text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 1.15rem;
  max-width: 60ch;
}
.bh-verhaal__tekst > p:last-child { margin-bottom: 0; }
.bh-citaat {
  margin: 1.75rem 0;
  padding-left: 1.4rem;
  border-left: 1px solid var(--bh-primary);
  font-family: var(--bh-font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.35;
  color: var(--bh-text);
  max-width: 26ch;
}

.bh-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.bh-value__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--bh-primary-light);
  color: var(--bh-primary);
  margin-bottom: 1.1rem;
}
.bh-value h3 { margin-bottom: .5rem; }
.bh-value p { color: var(--bh-text-secondary); font-size: .95rem; }

.bh-step { position: relative; text-align: center; }
.bh-step h3 { margin-bottom: .5rem; }
.bh-step p { color: var(--bh-text-secondary); font-size: .95rem; max-width: 32ch; margin-inline: auto; }
.bh-section--dark .bh-step p { color: var(--bh-text-light); }.bh-cat {
  display: flex; align-items: center; gap: .7rem;
  min-height: 60px;
  padding: .9rem 1rem;
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  font-size: .93rem; font-weight: 600;
  transition: border-color .25s var(--bh-ease), transform .25s var(--bh-ease), box-shadow .25s var(--bh-ease);
}
.bh-cat:hover { border-color: var(--bh-primary); transform: translateY(-2px); box-shadow: var(--bh-shadow-sm); }
.bh-cat svg { color: var(--bh-primary); }

.bh-cat-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.bh-cat-tile {
  display: flex; align-items: center; gap: .85rem;
  padding: .95rem 1.1rem;
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  color: var(--bh-text);
  transition: border-color var(--bh-ease-fast), box-shadow var(--bh-ease-fast), transform var(--bh-ease-fast), scale var(--bh-ease-fast);
}
.bh-cat-tile__tekst { display: flex; flex-direction: column; min-width: 0; }
.bh-cat-tile__name { font-size: .95rem; font-weight: 700; line-height: 1.25; }
.bh-cat-tile__aantal { font-size: .8rem; font-weight: 500; color: var(--bh-text-muted); margin-top: .1rem; }
.bh-cat-tile__pijl { margin-left: auto; flex: none; color: var(--bh-text-muted); transition: transform var(--bh-ease-fast), color var(--bh-ease-fast); }
.bh-cat-tile__icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--bh-primary-light);
  color: var(--bh-primary);
  transition: background-color var(--bh-ease-fast), color var(--bh-ease-fast);
}
.bh-cat-tile__icon .bh-icon { width: 22px; height: 22px; }
.bh-cat-tile:hover { border-color: var(--bh-primary); box-shadow: var(--bh-shadow); transform: translateY(-2px); }
.bh-cat-tile:hover .bh-cat-tile__icon { background: var(--bh-primary); color: #fff; }
.bh-cat-tile:hover .bh-cat-tile__pijl { transform: translateX(3px); color: var(--bh-primary); }
.bh-cat-tile:active { scale: .985; transition-duration: 140ms; }
@media (max-width: 1100px) { .bh-cat-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .bh-cat-tile { flex-direction: column; align-items: flex-start; gap: .6rem; padding: .9rem; }
  .bh-cat-tile__pijl { display: none; }
  .bh-cat-tile__icon { width: 38px; height: 38px; }
  .bh-cat-tile__icon .bh-icon { width: 19px; height: 19px; }
  .bh-cat-tile__name { font-size: .88rem; }
}

.bh-textlink { font-size: .9rem; font-weight: 700; color: var(--bh-primary); display: inline-flex; align-items: center; gap: .4rem; min-height: 44px; }
.bh-hulplink { font-size: .88rem; color: var(--bh-primary); display: inline-flex; align-items: center; }
.bh-contactlijst { flex-direction: column; align-items: flex-start; gap: .7rem; }
.bh-textlink svg { transition: transform var(--bh-ease-fast); }
.bh-textlink:hover svg { transform: translateX(3px); }

.bh-listings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.bh-listings--4col { grid-template-columns: repeat(4, 1fr); }
.bh-listing {
  display: flex; flex-direction: column;
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  overflow: hidden;
  box-shadow: var(--bh-shadow);
  transition: border-color var(--bh-ease-fast), box-shadow var(--bh-ease-fast), transform var(--bh-ease-fast), scale var(--bh-ease-fast);
}
.bh-listing:hover { border-color: var(--bh-border-strong); box-shadow: var(--bh-shadow-lg); transform: translateY(-3px); }
.bh-listing:active { scale: .985; transition-duration: 140ms; }
.bh-listing__photo {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bh-bg-soft);
  display: grid; place-items: center;
  color: var(--bh-text-muted);
  overflow: hidden;
}
.bh-listing__photo img { width: 100%; height: 100%; object-fit: cover; }
.bh-listing__badge {
  position: absolute; top: .7rem; left: .7rem;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--bh-surface);
  border-radius: var(--bh-radius-sm);
  color: var(--bh-primary);
  box-shadow: var(--bh-shadow-sm);
}
.bh-listing__body { padding: 1.25rem 1.4rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.bh-listing__name { font-family: var(--bh-font-head); font-weight: 700; font-size: 1.03rem; line-height: 1.25; }
.bh-listing__meta { display: flex; align-items: center; gap: .5rem; font-size: .83rem; color: var(--bh-text-muted); margin-top: .3rem; }
.bh-listing__tagline { font-size: .9rem; color: var(--bh-text-secondary); margin: .7rem 0 1rem; }.bh-listing__cta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: 44px;
  border: 1.5px solid var(--bh-border);
  border-radius: var(--bh-radius);
  font-size: .87rem; font-weight: 700;
  color: var(--bh-primary);
  transition: border-color var(--bh-ease-fast), background-color var(--bh-ease-fast);
}
.bh-listing:hover .bh-listing__cta { border-color: var(--bh-primary); background: var(--bh-primary-light); }
.bh-listing:hover .bh-listing__cta svg { transform: translateX(3px); }
.bh-listing__cta svg { transition: transform .3s var(--bh-ease); }

.bh-pagination { display: flex; align-items: center; justify-content: center; gap: .4rem; margin-top: 2.5rem; }
.bh-pagination a, .bh-pagination span {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: .88rem; font-weight: 600;
  color: var(--bh-text-muted);
}
.bh-pagination a:hover { background: var(--bh-bg-soft); color: var(--bh-text); }
.bh-pagination a[aria-current="page"] { background: var(--bh-primary); color: #fff; }

.bh-searchband {
  position: relative;
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  box-shadow: var(--bh-shadow-sm);
  padding: 1rem;
}
.bh-searchband__form {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  gap: .6rem;
}

.bh-searchband__form--labeled { align-items: start; }
.bh-searchband__form--gids { grid-template-columns: 1fr auto; }
.bh-searchband__form--gids .bh-field--smalfilter { display: none; }
.bh-searchband__form--labeled .bh-field { margin-bottom: 0; }

.bh-searchband__form--labeled > button {
  align-self: end;
  min-height: 46px;
}

.bh-searchband--hoofd {
  margin-top: 2rem;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: var(--bh-radius-xl);
  box-shadow: var(--bh-shadow-lg);
  transition: box-shadow .18s var(--bh-ease), border-color .18s var(--bh-ease);
}
.bh-searchband--hoofd:focus-within {
  border-color: var(--bh-primary);
  box-shadow: var(--bh-shadow-lg), 0 0 0 4px var(--bh-primary-light);
}
.bh-searchband--hoofd .bh-input,
.bh-searchband--hoofd .bh-select { min-height: 52px; font-size: 1rem; }
.bh-searchband--hoofd .bh-field > label { font-size: .8rem; letter-spacing: .01em; }
.bh-searchband--hoofd > .bh-searchband__form--labeled > button {
  min-height: 52px;
  padding-inline: 1.6rem;
}

.bh-directory-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.bh-filters { position: sticky; top: 1.25rem; }
.bh-filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .25rem; }
.bh-filters__head h2 { font-size: 1.02rem; }
.bh-filters__clear { font-size: .84rem; font-weight: 600; color: var(--bh-text-muted); }
.bh-filters__clear:hover { color: var(--bh-primary); }
.bh-filter-group { border-top: 1px solid var(--bh-border); padding: 1.1rem 0; }
.bh-filter-group > summary, .bh-filter-group__label {
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; font-size: .92rem;
  margin-bottom: .8rem;
  cursor: pointer; list-style: none;
}
.bh-filter-group > summary::-webkit-details-marker { display: none; }
.bh-filter-group__search { margin-bottom: .75rem; }
.bh-filter-row {
  display: flex; align-items: center; gap: .65rem;
  padding: .38rem 0;
  font-size: .87rem; color: var(--bh-text);
}
.bh-filter-row:hover { color: var(--bh-primary-hover); }
.bh-filter-row__box {
  width: 16px; height: 16px; flex: none;
  border: 1.5px solid var(--bh-border);
  border-radius: 4px;
  display: grid; place-items: center;
  color: #fff;
  transition: background-color .15s var(--bh-ease), border-color .15s var(--bh-ease);
}
.bh-filter-row__box svg { width: 11px; height: 11px; }
.bh-filter-row[aria-current="true"] .bh-filter-row__box { background: var(--bh-primary); border-color: var(--bh-primary); }
.bh-filter-row[aria-current="true"] { color: var(--bh-primary-hover); font-weight: 600; }
.bh-filter-row__count { margin-left: auto; color: var(--bh-text-muted); font-size: .8rem; }
.bh-filter-more summary { font-size: .85rem; font-weight: 600; color: var(--bh-primary); cursor: pointer; list-style: none; margin-top: .3rem; }
.bh-filter-more summary::-webkit-details-marker { display: none; }

.bh-input, .bh-select, .bh-textarea {
  width: 100%;
  min-height: 46px;
  padding: .7rem .9rem;
  font-family: var(--bh-font-body);
  font-size: .96rem;
  color: var(--bh-text);
  background: var(--bh-surface);
  border: 1.5px solid var(--bh-border);
  border-radius: 10px;
  transition: border-color .2s var(--bh-ease), box-shadow .2s var(--bh-ease);
}
.bh-input::placeholder { color: var(--bh-text-muted); opacity: .8; }
.bh-input:focus, .bh-select:focus, .bh-textarea:focus {
  outline: none;
  border-color: var(--bh-primary);
  box-shadow: 0 0 0 3px var(--bh-primary-light);
}
.bh-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2366756D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  padding-right: 2.4rem;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.bh-textarea { min-height: 120px; resize: vertical; line-height: 1.6; }

.bh-field { margin-bottom: 1.15rem; }
.bh-field > label {
  display: block;
  font-size: .875rem; font-weight: 700;
  margin-bottom: .4rem;
}
.bh-req { color: var(--bh-error); margin-left: .15rem; }
.bh-field__help { font-size: .82rem; color: var(--bh-text-muted); margin-top: .35rem; }
.bh-field__counter { display: block; font-size: .78rem; color: var(--bh-text-muted); text-align: right; margin-top: .3rem; }
.bh-field__error, .errorlist {
  list-style: none;
  color: var(--bh-error);
  font-size: .85rem;
  margin-top: .35rem;
  padding-left: 0;
}

.bh-check {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .9rem 1rem;
  background: var(--bh-bg-soft);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  cursor: pointer;
  margin-bottom: 1.15rem;
}
.bh-check:hover { border-color: var(--bh-border-strong); }
.bh-check input { margin-top: .2rem; width: 18px; height: 18px; flex: none; accent-color: var(--bh-primary); }
.bh-check__label { font-size: .93rem; font-weight: 600; }
.bh-check__help { font-size: .85rem; color: var(--bh-text-muted); margin-top: .15rem; }

.bh-upload {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  padding: 1.75rem 1.25rem;
  background: var(--bh-bg-soft);
  border: 1.5px dashed var(--bh-border-strong);
  border-radius: var(--bh-radius);
  position: relative;
  transition: border-color var(--bh-ease-fast), background-color var(--bh-ease-fast);
}
.bh-upload:hover { border-color: var(--bh-primary); background: var(--bh-primary-light); }
.bh-upload__icon {
  width: 52px; height: 52px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bh-surface);
  color: var(--bh-primary);
}
.bh-upload__label { display: block; font-size: .95rem; font-weight: 700; }
.bh-upload__hint { display: block; font-size: .82rem; color: var(--bh-text-secondary); margin-top: .25rem; }
.bh-upload__meta { display: block; font-size: .78rem; color: var(--bh-text-muted); margin-top: .3rem; }
.bh-upload input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}

.bh-messages {
  max-width: var(--bh-max);
  margin: 1.25rem auto 0;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid; gap: .6rem;
}
.bh-messages li {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .8rem 1rem;
  border-radius: var(--bh-radius);
  font-size: .92rem;
  border: 1px solid transparent;
}
.bh-messages li.success { background: var(--bh-success-bg); color: var(--bh-success); border-color: rgba(31,107,61,.2); }
.bh-messages li.error   { background: var(--bh-error-bg);   color: var(--bh-error);   border-color: rgba(168,56,46,.2); }
.bh-messages li.warning { background: var(--bh-warn-bg); color: var(--bh-warn); border-color: rgba(138,106,31,.2); }
.bh-messages li.info    { background: var(--bh-primary-light); color: var(--bh-primary-hover); border-color: rgba(31,107,61,.2); }

.bh-pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; align-items: start; }
@media (min-width: 1080px) { .bh-pricing { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.bh-price {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bh-surface);
  border: 1.5px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  padding: 2rem 1.6rem;
}
.bh-price--popular {
  border-color: var(--bh-primary);
  box-shadow: var(--bh-shadow-lg);
  transform: scale(1.035);
  z-index: 1;
}
.bh-price__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: .3rem .85rem;
  background: var(--bh-primary);
  color: #fff;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .03em;
  border-radius: 999px;
  white-space: nowrap;
}
.bh-price__name { font-size: .95rem; font-weight: 700; }
.bh-price__amount {
  font-family: var(--bh-font-display);
  font-weight: 800;
  font-size: 2.6rem; line-height: 1;
  margin: .8rem 0 .3rem;
  color: var(--bh-text);
}
.bh-price__amount small { font-family: var(--bh-font-body); font-weight: 500; font-size: .95rem; color: var(--bh-text-muted); }
.bh-price__lead { font-size: .9rem; color: var(--bh-text-secondary); margin-bottom: 1.4rem; }
.bh-price__features { display: grid; gap: .65rem; margin-bottom: 1.6rem; font-size: .92rem; }
.bh-price__features li { display: flex; align-items: flex-start; gap: .55rem; }
.bh-price__features svg { color: var(--bh-primary); margin-top: .18rem; flex: none; }
.bh-price__features li.is-off { color: var(--bh-text-muted); }
.bh-price__features li.is-off svg { color: var(--bh-border-strong); }
.bh-price > .bh-btn { margin-top: auto; }

.bh-faq { max-width: var(--bh-max-text); margin-inline: auto; }
.bh-faq__item { border-bottom: 1px solid var(--bh-border); }
.bh-faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  width: 100%;
  min-height: 56px;
  padding: 1.2rem 0;
  text-align: left;
  font-size: 1.02rem; font-weight: 700;
  color: var(--bh-text);
  cursor: pointer;
  list-style: none;
}
.bh-faq__icon { transition: transform .3s var(--bh-ease); color: var(--bh-text-muted); flex: none; }

.bh-faq__item[open] .bh-faq__icon { transform: rotate(180deg); }

.bh-notice {
  display: flex; align-items: flex-start; gap: .9rem;
  margin-top: 1.75rem;
  padding: 1.15rem 1.4rem;
  background: var(--bh-bg-soft);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
}
.bh-notice__icon {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bh-surface);
  color: var(--bh-warn);
}
.bh-notice__title { font-weight: 700; font-size: .92rem; margin-bottom: .25rem; }
.bh-notice__text { font-size: .87rem; color: var(--bh-text-secondary); margin: 0; }
.bh-faq__a { padding-bottom: 1.4rem; color: var(--bh-text-secondary); max-width: 62ch; }
.bh-faq__q::-webkit-details-marker { display: none; }
.bh-faq__q::marker { content: ""; }

.bh-cta { text-align: center; }
.bh-cta p { max-width: 52ch; margin: 1.2rem auto 0; }
.bh-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2.2rem; }
.bh-cta__note { margin-top: 1.1rem; font-size: .82rem; color: var(--bh-text-light); }

.bh-footer {
  background: var(--bh-dark);
  color: var(--bh-text-light);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.bh-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.bh-footer__brand { text-align: center; }
.bh-footer__brand .bh-logo--beeld { display: flex; justify-content: center; }
.bh-footer__brand p { margin: 1rem auto 0; font-size: .92rem; max-width: 34ch; }
.bh-footer__uitleg { font-size: .88rem; color: var(--bh-text-light); }
.bh-footer h2 { color: #fff; margin-bottom: 1rem; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.bh-footer li { margin-bottom: .6rem; }
.bh-footer li a {
  font-size: .93rem;
  transition: color .2s var(--bh-ease);
  display: inline-flex; align-items: center; min-height: 28px;
}
.bh-footer li a:hover { color: #fff; }
.bh-footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  padding-top: 1.8rem;
  font-size: .86rem;
}

.bh-newsletter { display: flex; gap: .5rem; margin-top: 1.1rem; }
.bh-newsletter input {
  flex: 1; min-width: 0;
  min-height: 44px;
  padding: 0 .9rem;
  font-family: var(--bh-font-body);
  font-size: .9rem;

  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--bh-radius-sm);
}
.bh-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.bh-newsletter input { caret-color: #fff; }
.bh-newsletter input:focus { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.12); color: #fff; }
.bh-newsletter input:focus-visible { outline: 2px solid rgba(255,255,255,.9); outline-offset: 2px; }
.bh-newsletter button {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  background: var(--bh-primary);
  color: #fff;
  border-radius: var(--bh-radius-sm);
  transition: background-color var(--bh-ease-fast);
}
.bh-newsletter button:hover { background: var(--bh-primary-hover); }

.bh-step-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); text-align: center; }

.bh-step-tile__icon-wrap { display: block; position: relative; width: 72px; height: 72px; margin: 0 auto 1.1rem; }
.bh-step-tile__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bh-primary-light);
  color: var(--bh-primary);
  display: grid; place-items: center;
}
.bh-step-tile__icon .bh-icon { width: 28px; height: 28px; }
.bh-step-tile__num {
  position: absolute; bottom: -2px; left: -2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bh-dark);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--bh-font-head);
  font-weight: 800;
  font-size: .78rem;
  border: 2px solid var(--bh-bg);
}
.bh-step-tile h3 { font-size: 1.02rem; margin-bottom: .4rem; }
.bh-step-tile p { font-size: .88rem; color: var(--bh-text-secondary); max-width: 30ch; margin-inline: auto; }.bh-feature-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); text-align: center; }
.bh-feature-tile__icon {
  width: 60px; height: 60px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--bh-bg-soft);
  color: var(--bh-text);
  display: grid; place-items: center;
}
.bh-feature-tile__icon .bh-icon { width: 24px; height: 24px; }
.bh-feature-tile h2 { font-size: .98rem; font-family: var(--bh-font-head); margin-bottom: .4rem; }
.bh-feature-tile p { font-size: .85rem; color: var(--bh-text-secondary); }

.bh-checklist { display: grid; gap: .7rem; margin-bottom: 1.75rem; }
.bh-checklist li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; }
.bh-checklist svg { color: var(--bh-primary); flex: none; }

.bh-home-cta { overflow: hidden; }
.bh-home-cta__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.bh-home-cta h2 { margin-top: 1rem; max-width: 15ch; }
.bh-home-cta__tekst > p { color: var(--bh-text-secondary); margin-top: .9rem; max-width: 46ch; }

.bh-home-cta__visual { position: relative; display: grid; place-items: center; }
.bh-home-cta__visual::before {
  content: "";
  position: absolute;
  width: 78%; aspect-ratio: 1;
  border-radius: 999px;
  background: var(--bh-surface);
  opacity: .55;
}
.bh-home-cta__visual img { position: relative; width: 100%; height: auto; display: block; }

.bh-benefits { list-style: none; display: flex; flex-direction: column; gap: 1.35rem; margin: 2rem 0 0; padding: 0; }
.bh-benefits li { display: flex; align-items: flex-start; gap: .9rem; }
.bh-benefits__icon {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--bh-surface);
  color: var(--bh-primary);
  box-shadow: var(--bh-shadow-sm);
}
.bh-benefits__icon .bh-icon { width: 19px; height: 19px; }
.bh-benefits li > span:last-child { font-size: .93rem; line-height: 1.55; color: #3E4A45; }
.bh-benefits strong { display: block; font-size: 1rem; font-weight: 700; color: var(--bh-text); margin-bottom: .2rem; }

.bh-home-cta__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.1rem, 2vw, 1.5rem);
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-xl);
}
.bh-home-cta__price { flex: 1 1 auto; max-width: 62ch; font-size: .86rem; line-height: 1.5; color: var(--bh-text-secondary); margin: 0; }
.bh-home-cta__price strong { color: var(--bh-text); font-size: 1rem; }
.bh-home-cta__price span { display: block; margin-top: .2rem; }
.bh-home-cta__actions { flex: 0 0 auto; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }

@media (max-width: 640px) {
  .bh-benefits { gap: 1.1rem; }
  .bh-benefits__icon { width: 38px; height: 38px; }
  
  .bh-home-cta__actions { flex: 1 1 100%; flex-direction: column; align-items: stretch; }
  .bh-home-cta__actions .bh-btn { width: 100%; justify-content: center; }
}

.bh-detail-rows { border-bottom: 1px solid var(--bh-border); }
.bh-detail-row { border-top: 1px solid var(--bh-border); }
.bh-detail-row > summary {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
}
.bh-detail-row > summary::-webkit-details-marker { display: none; }
.bh-detail-row__thumb {
  width: 84px; height: 60px; flex: none;
  border-radius: var(--bh-radius);
  overflow: hidden;
  background: var(--bh-bg-soft);
}
.bh-detail-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.bh-detail-row__num {
  width: 26px; height: 26px; flex: none;
  border-radius: 50%;
  background: var(--bh-dark);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--bh-font-head);
  font-weight: 800; font-size: .78rem;
}
.bh-detail-row__head { flex: 1; min-width: 0; }
.bh-detail-row__head h3 { font-size: 1rem; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.bh-detail-row__chevron { transition: transform .2s var(--bh-ease); flex: none; color: var(--bh-text-muted); }
.bh-detail-row[open] .bh-detail-row__chevron { transform: rotate(180deg); }
.bh-detail-row__body {
  padding: 0 0 1.4rem;
  margin-left: calc(84px + 1.1rem + 26px + 1.1rem);
  color: var(--bh-text-secondary);
  font-size: .92rem;
}

.bh-tier-table { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: start; }
.bh-tier-col {
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  padding: 1.5rem;
  height: 100%;
}
.bh-tier-col--muted { background: var(--bh-bg-soft); }
.bh-tier-col--breed { grid-column: 1 / -1; }
.bh-tier-col__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bh-primary-light);
  color: var(--bh-primary);
  display: grid; place-items: center;
  margin-bottom: .9rem;
}
.bh-tier-col--muted .bh-tier-col__icon { background: var(--bh-surface); color: var(--bh-text-muted); }
.bh-tier-col h3 { font-size: 1rem; margin-bottom: .3rem; }
.bh-tier-col__sub { font-size: .78rem; color: var(--bh-text-muted); margin-bottom: .9rem; }
.bh-tier-col ul { display: grid; gap: .6rem; margin-bottom: 1.1rem; }
.bh-tier-col--breed ul { grid-template-columns: repeat(4, 1fr); gap: .6rem 2rem; }
.bh-tier-col li { display: flex; align-items: flex-start; gap: .5rem; font-size: .86rem; color: var(--bh-text-secondary); }
.bh-tier-col li svg { flex: none; margin-top: .15rem; color: var(--bh-primary); }
.bh-tier-col--muted li svg { color: var(--bh-text-muted); }
.bh-tier-col__price { font-weight: 700; font-size: .88rem; color: var(--bh-text); }

.bh-cta-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.bh-cta-band h2 { font-size: 1.3rem; margin-bottom: .35rem; }
.bh-cta-band p { color: var(--bh-text-secondary); font-size: .92rem; }
.bh-cta-band__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

@media (max-width: 900px) {
}
@media (max-width: 620px) {
}

.bh-app {
  display: grid;
  grid-template-columns: var(--bh-sidebar-w) 1fr;
  min-height: 100vh;

  background: #F5F6F3;
}

.bh-sidebar {
  background: var(--bh-surface);
  border-right: 1px solid var(--bh-border);
  display: flex; flex-direction: column;
  padding: 1.5rem 1.1rem;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.bh-sidebar__brand { padding: .4rem .5rem 1.75rem; }

.bh-sidebar__nav { display: grid; align-content: start; gap: .2rem; flex: 1; }
.bh-sidebar__link {
  display: flex; align-items: center; gap: .75rem;
  min-height: 44px;
  padding: .65rem .8rem;
  border-radius: 10px;
  font-size: .92rem; font-weight: 600;
  color: var(--bh-text-muted);
  transition: background-color .2s var(--bh-ease), color .2s var(--bh-ease);
}
.bh-sidebar__link svg { color: var(--bh-text-muted); transition: color .2s var(--bh-ease); }
.bh-sidebar__link:hover { background: var(--bh-bg-soft); color: var(--bh-text); }
.bh-sidebar__link[aria-current="page"] { background: var(--bh-primary-light); color: var(--bh-primary-hover); }
.bh-sidebar__link[aria-current="page"] svg { color: var(--bh-primary); }
.bh-sidebar__foot { padding-top: 1rem; border-top: 1px solid var(--bh-border); margin-top: 1rem; }
.bh-sidebar__divider { height: 1px; background: var(--bh-border); margin: .6rem .8rem; }

.bh-appmain { min-width: 0; }
.bh-apptop {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--bh-border);
  background: var(--bh-surface);
  position: sticky; top: 0; z-index: 20;
}
.bh-apptop h1 { font-size: 1.4rem; }
.bh-apptop p { color: var(--bh-text-muted); font-size: .88rem; margin-top: .2rem; }
.bh-appbody { padding: clamp(1.5rem, 3vw, 2.5rem); max-width: 1100px; }

.bh-user {
  display: flex; align-items: center; gap: .65rem;
  padding: .4rem .5rem .4rem .4rem;
  border-radius: 999px;
  border: 1px solid var(--bh-border);
}
.bh-user__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bh-primary-light); color: var(--bh-primary-hover);
  display: grid; place-items: center;
  font-family: var(--bh-font-head); font-weight: 700; font-size: .85rem;
  flex: none;
}
.bh-user__name { font-size: .87rem; font-weight: 600; }

.bh-app__toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--bh-text);
}

.bh-statgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-bottom: 1.5rem; }
.bh-statcard {
  display: flex; flex-direction: column;
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  padding: 1.25rem 1.4rem;
}

.bh-statcard__top { display: flex; align-items: flex-start; gap: .9rem; }
.bh-statcard__icon {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bh-primary-light);
  color: var(--bh-primary);
}
.bh-statcard__label { font-size: .8rem; color: var(--bh-text-muted); font-weight: 600; }
.bh-statcard__value { font-family: var(--bh-font-head); font-size: 1.15rem; font-weight: 800; margin-top: .15rem; line-height: 1.25; }
.bh-statcard__meta { font-size: .78rem; color: var(--bh-text-muted); margin-top: .3rem; }
.bh-statcard__foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex; align-items: center; gap: .9rem;
}
.bh-statcard__link { font-size: .82rem; font-weight: 700; color: var(--bh-primary); white-space: nowrap; }
.bh-statcard__link:hover { text-decoration: underline; }

.bh-statcard--warn  .bh-statcard__icon { background: var(--bh-warn-bg);    color: var(--bh-warn); }
.bh-statcard--error .bh-statcard__icon { background: var(--bh-error-bg);   color: var(--bh-error); }
.bh-statcard--ok    .bh-statcard__icon { background: var(--bh-success-bg); color: var(--bh-success); }

.bh-progress { flex: 1; height: 6px; border-radius: 999px; background: var(--bh-bg-soft); overflow: hidden; }
.bh-progress__bar { height: 100%; border-radius: 999px; background: var(--bh-primary); }

.bh-panel {
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  box-shadow: var(--bh-shadow-sm);
  overflow: hidden;
}
.bh-panel + .bh-panel { margin-top: 1.25rem; }
.bh-panel__head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--bh-border);
}
.bh-panel__head h2 { font-family: var(--bh-font-head); font-size: 1rem; font-weight: 800; letter-spacing: -0.01em; }
.bh-panel__body { padding: 1.5rem; }
.bh-panel__foot {
  padding: 1.15rem 1.5rem;
  border-top: 1px solid var(--bh-border);
  background: var(--bh-bg-soft);
}

.bh-actions { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.bh-actions form { display: contents; }

.bh-activity { display: grid; }
.bh-activity__row { display: flex; align-items: flex-start; gap: .8rem; padding: .8rem 0; border-bottom: 1px solid var(--bh-border); }
.bh-activity__row:last-child { border-bottom: 0; padding-bottom: 0; }
.bh-activity__row:first-child { padding-top: 0; }
.bh-activity__icon { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 8px; background: var(--bh-bg-soft); color: var(--bh-primary); }
.bh-activity__text { font-size: .89rem; font-weight: 600; }
.bh-activity__time { font-size: .78rem; color: var(--bh-text-muted); margin-top: .1rem; }

.bh-activity__row--error .bh-activity__icon { background: var(--bh-error-bg); color: var(--bh-error); }
.bh-activity__row--error .bh-activity__text { color: var(--bh-error); }

.bh-statrows { display: grid; gap: .1rem; }
.bh-statrow { padding: .7rem 0; border-bottom: 1px solid var(--bh-border); }
.bh-statrow:last-child { border-bottom: 0; padding-bottom: 0; }
.bh-statrow:first-child { padding-top: 0; }
.bh-statrow__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.bh-statrow__label { font-size: .87rem; color: var(--bh-text-secondary); }
.bh-statrow__value { font-weight: 700; font-size: .92rem; }
.bh-statrow .bh-progress { margin-top: .5rem; }

.bh-cat-layout { display: grid; grid-template-columns: 1fr 260px; gap: clamp(1.5rem, 3vw, 2rem); align-items: start; }

.bh-cat-layout--even { grid-template-columns: 1fr 1fr; }
.bh-sidelist { display: grid; }
.bh-sidelist a {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem 0;
  font-size: .87rem;
  border-bottom: 1px solid var(--bh-border);
}
.bh-sidelist > :last-child { border-bottom: 0; }
.bh-sidelist a:hover { color: var(--bh-primary); }
.bh-sidelist a[aria-current="page"] { font-weight: 700; color: var(--bh-primary); }
.bh-sidelist svg { flex: none; color: var(--bh-text-muted); }
.bh-sidelist__count { margin-left: auto; color: var(--bh-text-muted); font-size: .8rem; }

.bh-sidelist--split { grid-template-columns: 1fr 1fr; column-gap: 1.5rem; }

.bh-projects-layout { display: grid; grid-template-columns: 1fr 300px; gap: 1.25rem; align-items: start; }

.bh-dropzone {
  position: relative;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  background: var(--bh-surface);
  border: 2px dashed var(--bh-border-strong);
  border-radius: var(--bh-radius-lg);
  transition: border-color var(--bh-ease-fast), background-color var(--bh-ease-fast);
}
.bh-dropzone:hover { border-color: var(--bh-primary); background: var(--bh-primary-light); }
.bh-dropzone__icon {
  width: 60px; height: 60px; margin-bottom: .5rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bh-primary-light);
  color: var(--bh-primary);
}
.bh-dropzone__title { font-family: var(--bh-font-head); font-weight: 800; font-size: 1.05rem; }
.bh-dropzone__hint { font-size: .88rem; color: var(--bh-text-secondary); }
.bh-dropzone__meta { font-size: .78rem; color: var(--bh-text-muted); }
.bh-dropzone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

.bh-filelabel { position: relative; overflow: hidden; }
.bh-filelabel input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

.bh-photogrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: 1rem; }
.bh-photo {
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  overflow: hidden;
}
.bh-photo__img { aspect-ratio: 4/3; background: var(--bh-bg-soft); }
.bh-photo__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bh-photo__body { padding: .7rem .8rem .75rem; }
.bh-photo__caption { font-size: .84rem; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bh-photo__foot { display: flex; align-items: center; justify-content: space-between; gap: .4rem; margin-top: .3rem; }
.bh-photo__date { font-size: .75rem; color: var(--bh-text-muted); white-space: nowrap; }
.bh-photo__actions { display: flex; gap: .1rem; flex: none; }
.bh-photo__btn {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 6px;
  color: var(--bh-text-muted);
}
.bh-photo__btn:hover { background: var(--bh-bg-soft); color: var(--bh-text); }
.bh-photo__btn--del:hover { background: var(--bh-error-bg); color: var(--bh-error); }
.bh-photo[draggable="true"] { cursor: grab; }
.bh-photo.is-dragging { opacity: .4; }
.bh-photo.is-over { outline: 2px solid var(--bh-primary); outline-offset: 2px; }

.bh-limitbox {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bh-gold-100);
  border: 1px solid var(--bh-gold-300);
  border-radius: var(--bh-radius-lg);
  padding: 1.4rem;
}
.bh-limitbox__icon {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  color: var(--bh-gold-text);
}
.bh-limitbox__title { font-family: var(--bh-font-head); font-weight: 800; font-size: 1rem; margin-bottom: .25rem; }
.bh-limitbox__text { font-size: .87rem; color: var(--bh-text-secondary); margin-bottom: 1rem; }

.bh-statsgrid { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 1.25rem; align-items: start; }

.bh-bigstats { display: grid; gap: 1.25rem; }
.bh-bigstat { padding-bottom: 1.1rem; border-bottom: 1px solid var(--bh-border); }
.bh-bigstat:last-child { border-bottom: 0; padding-bottom: 0; }
.bh-bigstat__label { font-size: .82rem; color: var(--bh-text-muted); font-weight: 600; }
.bh-bigstat__num { font-family: var(--bh-font-head); font-size: 1.9rem; font-weight: 800; line-height: 1.1; margin-top: .2rem; }
.bh-bigstat__sub { font-size: .78rem; color: var(--bh-text-muted); margin-top: .15rem; }

.bh-statcard__meta { font-size: .78rem; color: var(--bh-text-muted); margin-top: .25rem; }

.bh-ring { position: relative; width: 132px; height: 132px; flex: none; }
.bh-ring svg { transform: rotate(-90deg); }
.bh-ring__track { fill: none; stroke: var(--bh-bg-soft); stroke-width: 12; }
.bh-ring__bar {
  fill: none; stroke: var(--bh-primary); stroke-width: 12; stroke-linecap: round;
  transition: stroke-dashoffset .6s var(--bh-ease);
}
.bh-ring__label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--bh-font-head); font-weight: 800; font-size: 1.5rem;
}
.bh-completeness { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.bh-completeness__text { flex: 1; min-width: 180px; }
.bh-completeness__text p:first-child { font-weight: 700; font-size: .95rem; margin-bottom: .35rem; }
.bh-completeness__text p:last-child { font-size: .86rem; color: var(--bh-text-secondary); }

.bh-checkfields { display: grid; gap: .55rem; margin-top: 1.5rem; }
.bh-checkfield { display: flex; align-items: center; gap: .6rem; font-size: .89rem; }
.bh-checkfield__mark {
  width: 18px; height: 18px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid var(--bh-border-strong);
  color: #fff;
}
.bh-checkfield__mark svg { width: 11px; height: 11px; }
.bh-checkfield--done .bh-checkfield__mark { background: var(--bh-primary); border-color: var(--bh-primary); }
.bh-checkfield--todo { color: var(--bh-text-muted); }

.bh-quickgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: .9rem; }
.bh-quickcard {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .9rem 1rem;
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  background: var(--bh-surface);
  transition: border-color var(--bh-ease-fast), box-shadow var(--bh-ease-fast);
}
.bh-quickcard:hover { border-color: var(--bh-primary); box-shadow: var(--bh-shadow-sm); }
.bh-quickcard__icon {
  width: 32px; height: 32px; flex: none;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--bh-bg-soft);
  color: var(--bh-primary);
}
.bh-quickcard__label { font-size: .86rem; font-weight: 700; display: block; line-height: 1.3; }
.bh-quickcard__sub { font-size: .76rem; color: var(--bh-text-muted); margin-top: .2rem; display: block; line-height: 1.35; }

.bh-dashgrid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.25rem; align-items: start; }

.bh-statuspanel { display: grid; grid-template-columns: 210px 1fr; gap: clamp(1.25rem, 3vw, 2rem); align-items: center; }

.bh-statuspanel--top { align-items: start; }
.bh-statuspanel__visual img { width: 100%; height: auto; display: block; }
.bh-statuspanel__title { font-family: var(--bh-font-head); font-size: 1.25rem; font-weight: 800; margin-bottom: .5rem; }
.bh-statuspanel__text { color: var(--bh-text-secondary); font-size: .93rem; }
.bh-statuspanel__actions { grid-column: 1 / -1; margin-top: .25rem; }

.bh-sitepreview {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  overflow: hidden;
  background: var(--bh-bg-soft);
}

.bh-sitepreview iframe {
  position: absolute; top: 0; left: 0;
  width: 400%; height: 400%;
  border: 0;
  transform: scale(.25);
  transform-origin: top left;
  pointer-events: none;
}

.bh-proband {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; flex-wrap: wrap;
  background: var(--bh-gold-100);
  border: 1px solid var(--bh-gold-300);
  border-radius: var(--bh-radius-lg);
  padding: 1.15rem 1.4rem;
}
.bh-proband__icon {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  color: var(--bh-gold-text);
}
.bh-proband__title { font-weight: 700; font-size: .95rem; margin-bottom: .2rem; }
.bh-proband__text { font-size: .85rem; color: var(--bh-text-secondary); margin: 0; }

.bh-dl { display: grid; grid-template-columns: 160px 1fr; gap: .7rem 1.25rem; font-size: .93rem; }
.bh-dl dt { color: var(--bh-text-muted); font-weight: 500; }
.bh-dl dd { color: var(--bh-text); overflow-wrap: anywhere; }

.bh-status { display: flex; align-items: flex-start; gap: 1rem; }
.bh-status__icon {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
}
.bh-status--pending    .bh-status__icon { background: var(--bh-warn-bg); color: var(--bh-warn); }.bh-status__title { font-weight: 700; font-size: 1.02rem; }
.bh-status__text { color: var(--bh-text-muted); font-size: .93rem; margin-top: .25rem; }

.bh-progress { height: 5px; border-radius: 999px; background: var(--bh-bg-soft); overflow: hidden; margin-top: 1.25rem; }
.bh-progress__bar { height: 100%; width: 34%; border-radius: 999px; background: var(--bh-primary); animation: bh-slide 1.7s var(--bh-ease) infinite; }
@keyframes bh-slide { 0% { transform: translateX(-110%); } 100% { transform: translateX(400%); } }

.bh-tasklist { display: grid; gap: .7rem; margin-top: 1.5rem; font-size: .92rem; }
.bh-tasklist li { display: flex; align-items: center; gap: .6rem; color: var(--bh-text-muted); }
.bh-tasklist svg { color: var(--bh-primary); }

.bh-genlist { display: grid; gap: .1rem; margin-top: 1.5rem; }
.bh-genlist__item {
  display: flex; align-items: center; gap: .7rem;
  padding: .55rem 0;
  font-size: .93rem;
  color: var(--bh-text-light);
  transition: color var(--bh-ease-fast);
}
.bh-genlist__dot {
  width: 20px; height: 20px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--bh-border-strong);
  transition: background-color var(--bh-ease-fast), border-color var(--bh-ease-fast);
}
.bh-genlist__dot svg { width: 12px; height: 12px; color: #fff; opacity: 0; transition: opacity var(--bh-ease-fast); }
.bh-genlist__item.is-done { color: var(--bh-text); }
.bh-genlist__item.is-done .bh-genlist__dot { background: var(--bh-primary); border-color: var(--bh-primary); }
.bh-genlist__item.is-done .bh-genlist__dot svg { opacity: 1; }
.bh-genlist__item.is-active { color: var(--bh-text); font-weight: 600; }
.bh-genlist__item.is-active .bh-genlist__dot { border-color: var(--bh-primary); }
.bh-genlist__item.is-active .bh-genlist__dot::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--bh-primary);
  animation: bh-pulse 1.3s ease-in-out infinite;
}
@keyframes bh-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.75); } }

.bh-spinner {
  width: 18px; height: 18px; flex: none;
  border: 2px solid var(--bh-border-strong);
  border-top-color: var(--bh-primary);
  border-radius: 50%;
  animation: bh-spin .8s linear infinite;
}
@keyframes bh-spin { to { transform: rotate(360deg); } }

.bh-errorbox {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--bh-error-bg);
  border: 1px solid rgba(168,56,46,.2);
  border-radius: var(--bh-radius);
}
.bh-errorbox pre {
  font-family: var(--bh-font-mono);
  font-size: .8rem;
  line-height: 1.55;
  color: var(--bh-error);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  max-height: 220px;
  overflow: auto;
  margin-top: .5rem;
}

.bh-empty { text-align: center; padding: clamp(2rem, 5vw, 3.5rem) 1.5rem; }
.bh-empty__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--bh-primary-light);
  color: var(--bh-primary);
  margin: 0 auto 1.25rem;
}
.bh-empty h2, .bh-empty h3 { font-family: var(--bh-font-head); font-size: 1.15rem; font-weight: 800; }
.bh-empty p { color: var(--bh-text-secondary); margin: .6rem auto 1.6rem; max-width: 44ch; font-size: .95rem; }

.bh-shell { padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem); }
.bh-shell--narrow > .bh-container { max-width: 1120px; }
.bh-page-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.25rem; flex-wrap: wrap;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.bh-page-head h1 { margin-bottom: .45rem; }
.bh-page-head p { color: var(--bh-text-secondary); }

.bh-wizard__steps {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
.bh-wizard__step {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding-inline: .3rem;
}

.bh-wizard__step::after {
  content: "";
  position: absolute; top: 19px; left: 50%; right: -50%;
  height: 2px;
  background: var(--bh-border);
  z-index: 0;
}
.bh-wizard__step:last-child::after { display: none; }
.bh-wizard__step[data-state="done"]::after,
.bh-wizard__step[data-state="current"]::after { background: var(--bh-dark); }
.bh-wizard__dot {
  position: relative; z-index: 1;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bh-surface);
  border: 1.5px solid var(--bh-border);
  font-family: var(--bh-font-head); font-weight: 800; font-size: .92rem;
  color: var(--bh-text-muted);
  margin-bottom: .7rem;
  transition: all .3s var(--bh-ease);
}
.bh-wizard__step[data-state="current"] .bh-wizard__dot { border-color: var(--bh-dark); background: var(--bh-dark); color: #fff; }
.bh-wizard__step[data-state="done"] .bh-wizard__dot { border-color: var(--bh-primary); background: var(--bh-primary); color: #fff; }
.bh-wizard__step-t { display: block; font-size: .8rem; font-weight: 600; color: var(--bh-text-muted); }
.bh-wizard__step[data-state="current"] .bh-wizard__step-t { color: var(--bh-text); font-weight: 700; }

.bh-wizard__panel[hidden] { display: none; }
html.js-wizard [data-wizard-panel]:not([data-active]) { display: none; }
html.js-wizard [data-tips-step]:not([data-active]) { display: none; }
html:not(.js-wizard) .bh-wizard__steps { display: none; }

.bh-wizard__body { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; align-items: start; }

.bh-wizard__nav {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: 1.1rem clamp(1.25rem, 3vw, 2rem);
  background: var(--bh-bg-soft);
  border-top: 1px solid var(--bh-border);
  border-radius: 0 0 var(--bh-radius-lg) var(--bh-radius-lg);
}
.bh-wizard__count { font-size: .88rem; color: var(--bh-text-muted); font-weight: 500; }

.bh-wizard__legend { margin-bottom: 1.6rem; }
.bh-wizard__legend h2 { font-size: 1.35rem; margin-bottom: .35rem; }
.bh-wizard__legend p { color: var(--bh-text-secondary); font-size: .92rem; }

.bh-tips {
  background: var(--bh-bg-soft);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  padding: 1.5rem;
}
.bh-tips__head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.4rem; }
.bh-tips__head h3 { font-size: 1.15rem; }
.bh-tips__icon {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bh-surface);
  color: var(--bh-primary);
}
.bh-tips__list { display: grid; gap: 1.25rem; }
.bh-tip { display: flex; align-items: flex-start; gap: .8rem; }
.bh-tip__icon {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bh-surface);
  color: var(--bh-primary);
}
.bh-tip__title { font-size: .89rem; font-weight: 700; margin-bottom: .2rem; }
.bh-tip__text { font-size: .84rem; color: var(--bh-text-secondary); line-height: 1.5; }

.bh-fieldrow { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }
.bh-fieldrow > * { min-width: 0; }

.bh-tpl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.bh-tpl { position: relative; display: block; cursor: pointer; }
.bh-tpl input { position: absolute; opacity: 0; width: 0; height: 0; }
.bh-tpl__box {
  height: 100%;
  display: flex; flex-direction: column;
  background: var(--bh-surface);
  border: 1.5px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  overflow: hidden;
  transition: border-color .25s var(--bh-ease), box-shadow .25s var(--bh-ease), transform .25s var(--bh-ease);
}
.bh-tpl:hover .bh-tpl__box { border-color: var(--bh-border-strong); transform: translateY(-2px); }
.bh-tpl input:checked + .bh-tpl__box { border-color: var(--bh-primary); box-shadow: 0 0 0 3px var(--bh-primary-light); }
.bh-tpl input:focus-visible + .bh-tpl__box { outline: 2px solid var(--bh-primary); outline-offset: 3px; }
.bh-tpl__preview { aspect-ratio: 4/3; background: var(--bh-bg-soft); display: grid; place-items: center; color: var(--bh-text-muted); overflow: hidden; }
.bh-tpl__preview img { width: 100%; height: 100%; object-fit: cover; }
.bh-tpl__body { padding: 1rem 1.15rem 1.25rem; }
.bh-tpl__name { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .97rem; }
.bh-tpl__desc { font-size: .87rem; color: var(--bh-text-muted); margin-top: .3rem; }
.bh-tpl__check { margin-left: auto; color: var(--bh-primary); opacity: 0; transition: opacity .2s var(--bh-ease); }
.bh-tpl input:checked + .bh-tpl__box .bh-tpl__check { opacity: 1; }

.bh-repeater { display: grid; gap: .8rem; margin-bottom: 1rem; }
.bh-repeater__row {
  display: grid; grid-template-columns: 1.4fr 1fr auto; gap: .6rem;
  padding: .9rem;
  background: var(--bh-bg-soft);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
}
.bh-repeater__remove {
  width: 38px; height: 38px; align-self: center;
  display: grid; place-items: center;
  border-radius: 8px;
  color: var(--bh-text-muted);
}
.bh-repeater__remove:hover { background: var(--bh-error-bg); color: var(--bh-error); }

.bh-review { display: grid; gap: 1rem; }
.bh-review__group {
  background: var(--bh-bg-soft);
  border-radius: var(--bh-radius);
  padding: 1.1rem 1.25rem;
}
.bh-review__group h4 { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--bh-text-muted); margin-bottom: .7rem; }
.bh-review__row { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; padding: .3rem 0; }
.bh-review__row dt { color: var(--bh-text-muted); }
.bh-review__row dd { font-weight: 600; text-align: right; }

.bh-auth {
  max-width: 440px;
  margin: clamp(2rem, 6vw, 4.5rem) auto clamp(3rem, 7vw, 5rem);
  padding-inline: 1.25rem;
}
.bh-auth__card {
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-xl);
  box-shadow: var(--bh-shadow);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.bh-auth__head { text-align: center; margin-bottom: 1.75rem; }
.bh-auth__head h1 { font-size: clamp(1.7rem, 3.5vw, 2.1rem); margin-bottom: .5rem; }
.bh-auth__head p { color: var(--bh-text-secondary); font-size: .95rem; }
.bh-auth__foot { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--bh-border); text-align: center; font-size: .93rem; color: var(--bh-text-muted); }
.bh-auth__foot a { color: var(--bh-primary); font-weight: 700; }
.bh-auth__foot a:hover { text-decoration: underline; }
.bh-auth__perks { display: grid; gap: .55rem; margin-top: 1.75rem; font-size: .89rem; color: var(--bh-text-muted); }
.bh-auth__perks li { display: flex; align-items: center; gap: .5rem; }
.bh-auth__perks svg { color: var(--bh-primary); }

.bh-code-input {
  width: 100%; padding: .9rem 1rem;
  font-family: var(--bh-font-mono); font-size: 1.6rem; font-weight: 600;
  text-align: center; letter-spacing: .5em; text-indent: .5em;
  background: var(--bh-bg-soft); border: 1.5px solid var(--bh-border); border-radius: 10px; color: var(--bh-text);
}
.bh-code-input:focus { outline: none; border-color: var(--bh-primary); box-shadow: 0 0 0 3px var(--bh-primary-light); }

.bh-editorbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  padding-bottom: 1.25rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bh-border);
}
.bh-tabs { display: flex; gap: .3rem; background: var(--bh-bg-soft); padding: .3rem; border-radius: 10px; }
.bh-tabs a, .bh-tabs button {
  padding: .5rem 1rem; border-radius: 7px; font-size: .87rem; font-weight: 600; color: var(--bh-text-muted);
}
.bh-tabs a[aria-current="page"], .bh-tabs button[aria-current="true"] { background: var(--bh-surface); color: var(--bh-text); box-shadow: var(--bh-shadow-sm); }

.bh-editor-grid { display: grid; grid-template-columns: 220px 1fr 1fr; gap: 1.25rem; align-items: start; }
.bh-editor-sections { display: grid; gap: .2rem; position: sticky; top: 1rem; }
.bh-editor-sections a, .bh-editor-sections button {
  display: flex; align-items: center; gap: .6rem;
  min-height: 44px; padding: .6rem .8rem;
  border-radius: 8px; font-size: .88rem; font-weight: 600; color: var(--bh-text-muted); text-align: left; width: 100%;
}
.bh-editor-sections a:hover, .bh-editor-sections button:hover { background: var(--bh-bg-soft); color: var(--bh-text); }
.bh-editor-sections a[aria-current="true"], .bh-editor-sections button[aria-current="true"] { background: var(--bh-primary-light); color: var(--bh-primary-hover); }

html.js-editor [data-editor-section]:not([data-active]) { display: none; }
.bh-editor-sections__group { margin-top: .5rem; }
.bh-editor-sections__group:first-child { margin-top: 0; }
.bh-editor-subs { display: grid; gap: .1rem; margin: .15rem 0 .1rem .9rem; padding-left: .6rem; border-left: 1px solid var(--bh-border); }
.bh-editor-subs span { font-size: .8rem; color: var(--bh-text-muted); padding: .25rem .4rem; }

.bh-editorbar__status {
  display: flex; align-items: center; gap: .5rem;
  margin-left: auto;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: var(--bh-warn-bg);
  color: var(--bh-warn);
  font-size: .8rem; font-weight: 600;

  min-width: 0; flex-shrink: 1;
}

.bh-editorbar__status span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bh-editorbar__status--ok { background: var(--bh-success-bg); color: var(--bh-success); }

.bh-preview-devices { display: flex; gap: .15rem; margin-left: auto; }
.bh-preview-devices button {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 7px;
  color: var(--bh-text-muted);
}
.bh-preview-devices button:hover { background: var(--bh-bg-soft); color: var(--bh-text); }
.bh-preview-devices button[aria-pressed="true"] { background: var(--bh-primary-light); color: var(--bh-primary); }

.bh-livepreview__frame { display: flex; justify-content: center; background: var(--bh-bg-soft); }
.bh-livepreview__frame iframe { transition: width .25s var(--bh-ease); }
.bh-livepreview[data-device="tablet"] iframe { width: 768px; max-width: 100%; }
.bh-livepreview[data-device="mobile"] iframe { width: 390px; max-width: 100%; }

.bh-editor__group {
  font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--bh-text-muted);
  padding: 1.4rem 0 .5rem; border-bottom: 1px solid var(--bh-border); margin-bottom: 1.1rem;
}
.bh-editor__group:first-child { padding-top: 0; }

.bh-livepreview {
  position: sticky; top: 1rem;
  background: var(--bh-bg-soft);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  overflow: hidden;
}
.bh-livepreview__bar { display: flex; align-items: center; gap: .5rem; padding: .6rem .8rem; background: var(--bh-surface); border-bottom: 1px solid var(--bh-border); }
.bh-livepreview__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--bh-border-strong); }
.bh-livepreview__label { margin-left: .3rem; font-size: .74rem; font-weight: 700; color: var(--bh-text-muted); text-transform: uppercase; letter-spacing: .04em; }
.bh-livepreview iframe { width: 100%; height: 560px; border: 0; display: block; background: #fff; }

.bh-savebar {
  position: sticky; bottom: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  box-shadow: 0 -2px 6px rgba(16,25,22,.04), 0 12px 28px rgba(16,25,22,.14);
}
.bh-savebar__note { font-size: .88rem; color: var(--bh-text-secondary); }
.bh-savebar--rustig {
  position: static;
  box-shadow: none;
}

.bh-appbody:has(.bh-savebar) { padding-bottom: 7rem; }

html.js .reveal {
  opacity: 0;
  translate: 0 14px;
  transition: opacity .45s var(--bh-ease) var(--bh-reveal-delay, 0ms),
              translate .45s var(--bh-ease) var(--bh-reveal-delay, 0ms);
}
html.js .reveal.is-visible { opacity: 1; translate: none; }

html.js .bh-listing.reveal,
html.js .bh-cat-tile.reveal {
  transition:
    opacity .45s var(--bh-ease) var(--bh-reveal-delay, 0ms),
    translate .45s var(--bh-ease) var(--bh-reveal-delay, 0ms),
    border-color var(--bh-ease-fast),
    box-shadow var(--bh-ease-fast),
    transform var(--bh-ease-fast),
    scale var(--bh-ease-fast);
}

html.js .reveal-stagger > .reveal:nth-child(1) { --bh-reveal-delay:   0ms; }
html.js .reveal-stagger > .reveal:nth-child(2) { --bh-reveal-delay:  55ms; }
html.js .reveal-stagger > .reveal:nth-child(3) { --bh-reveal-delay: 110ms; }
html.js .reveal-stagger > .reveal:nth-child(4) { --bh-reveal-delay: 165ms; }
html.js .reveal-stagger > .reveal:nth-child(5) { --bh-reveal-delay: 220ms; }
html.js .reveal-stagger > .reveal:nth-child(6) { --bh-reveal-delay: 275ms; }
html.js .reveal-stagger > .reveal:nth-child(7) { --bh-reveal-delay: 330ms; }
html.js .reveal-stagger > .reveal:nth-child(8) { --bh-reveal-delay: 385ms; }

main.legacy { max-width: 480px; margin: 3rem auto; padding: 2rem; background: var(--bh-surface); border: 1px solid var(--bh-border); border-radius: var(--bh-radius-lg); box-shadow: var(--bh-shadow-sm); }
main.legacy.wide { max-width: 760px; }
main.legacy h1 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 1.2rem; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .875rem; font-weight: 700; margin-bottom: .4rem; }
.field input, .field select, .field textarea { width: 100%; min-height: 46px; padding: .7rem .9rem; font-family: var(--bh-font-body); font-size: 1rem; color: var(--bh-text); background: var(--bh-surface); border: 1.5px solid var(--bh-border); border-radius: 10px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--bh-primary); box-shadow: 0 0 0 3px var(--bh-primary-light); }
.field input[type=checkbox] { width: auto; min-height: 0; }

main.legacy button:not(.bh-btn),
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 44px; background: var(--bh-primary); color: #fff; border: 1px solid transparent; padding: .8rem 1.35rem; border-radius: 10px; font-family: var(--bh-font-body); font-size: .95rem; font-weight: 700; cursor: pointer; }
main.legacy button:not(.bh-btn):hover, .btn:hover { background: var(--bh-primary-hover); }
.btn-muted { background: var(--bh-bg-soft); color: var(--bh-text); border-color: var(--bh-border-strong); }
.muted { color: var(--bh-text-muted); font-size: .92rem; }

@media (max-width: 1024px) {
  .bh-values   { grid-template-columns: repeat(2, 1fr); }
  .bh-verhaal { grid-template-columns: 1fr; gap: 1.5rem; }
  .bh-beheer__grid { grid-template-columns: 1fr; }
  .bh-kpi { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bh-beheerzoek { grid-template-columns: 1fr 1fr; }
  .bh-beheerzoek > button, .bh-beheerzoek > a { grid-column: 1 / -1; }
  .bh-werkgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bh-kpi { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bh-beheerzoek { grid-template-columns: 1fr; }
  .bh-listings { grid-template-columns: repeat(2, 1fr); }
  .bh-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bh-editor-grid { grid-template-columns: 180px 1fr; }
  .bh-livepreview { display: none; }
  .bh-app { grid-template-columns: 1fr; }
  .bh-sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: min(280px, 82vw); transform: translateX(-100%); transition: transform .3s var(--bh-ease); z-index: var(--bh-z-drawer); }
  body.bh-app-nav-open .bh-sidebar { transform: translateX(0); box-shadow: var(--bh-shadow-lg); }
  .bh-app__toggle { display: inline-flex; }
}

@media (max-width: 1200px) {

  .bh-logo__tagline { display: none; }
  .bh-nav__links { gap: .1rem; }
}

@media (max-width: 900px) {
  .bh-nav__links { display: none; }
  .bh-nav__toggle { display: flex; }
  .bh-nav__actions { display: none; }

  .bh-nav__inner { grid-template-columns: 1fr auto; }
  .bh-hero__grid { grid-template-columns: 1fr; }
  .bh-hero__visual { order: -1; }
  .bh-searchband__form { grid-template-columns: 1fr 1fr; }
  .bh-searchband__form > :last-child { grid-column: 1 / -1; }
  .bh-pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .bh-price--popular { transform: none; }
  .bh-stats, .bh-stats--3 { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .bh-statgrid { grid-template-columns: 1fr; }
  .bh-wizard__body { grid-template-columns: 1fr; }
  .bh-quickgrid { grid-template-columns: 1fr; }
  .bh-dashgrid { grid-template-columns: 1fr; }
  .bh-statsgrid { grid-template-columns: 1fr; }
  .bh-projects-layout { grid-template-columns: 1fr; }
  .bh-cat-layout { grid-template-columns: 1fr; }
  .bh-photogrid { grid-template-columns: repeat(2, 1fr); }
  .bh-statuspanel { grid-template-columns: 1fr; }
  .bh-statuspanel__visual { max-width: 180px; margin-inline: auto; }
  .bh-cat-tiles { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .bh-listings--4col { grid-template-columns: repeat(2, 1fr); }
  .bh-step-tiles { grid-template-columns: 1fr; gap: 2rem; }
  .bh-home-cta__top { grid-template-columns: 1fr; }
  .bh-home-cta__visual { order: -1; max-width: 420px; margin-inline: auto; }
  .bh-home-cta h2 { max-width: none; }
  .bh-directory-layout { grid-template-columns: 1fr; }
  .bh-filters--dubbel { display: none; }
  .bh-searchband__form--gids { grid-template-columns: 1fr 1fr; }
  .bh-searchband__form--gids .bh-field--smalfilter { display: block; }
  .bh-searchband__form--gids > .bh-field:first-child,
  .bh-searchband__form--gids > button { grid-column: 1 / -1; }

  .bh-directory-layout > .bh-filters { order: 2; }
  .bh-directory-layout > :not(.bh-filters) { order: 1; }
  .bh-filters { position: static; }
  .bh-feature-tiles { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .bh-tier-table { grid-template-columns: repeat(2, 1fr); }
  .bh-tier-col--breed ul { grid-template-columns: repeat(2, 1fr); }
  .bh-detail-row__body { margin-left: 0; }
  .bh-cta-band { flex-direction: column; text-align: center; }
}

@media (max-width: 620px) {
  .bh-values   { grid-template-columns: 1fr; }
  .bh-verhaal { grid-template-columns: 1fr; gap: 1.5rem; }
  .bh-listings { grid-template-columns: 1fr; }
  .bh-listings--4col { grid-template-columns: 1fr; }
  .bh-cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .bh-photogrid { grid-template-columns: 1fr; }
  .bh-feature-tiles { grid-template-columns: 1fr; }
  .bh-tier-table { grid-template-columns: 1fr; }
  .bh-tier-col--breed ul { grid-template-columns: 1fr; }
  .bh-detail-row > summary { flex-wrap: wrap; }
  .bh-searchband__form { grid-template-columns: 1fr; }

  .bh-searchband__form--gids { grid-template-columns: 1fr 1fr; }
  .bh-hero--photo .bh-searchband__form { grid-template-columns: 1fr 1fr; }
  .bh-hero--photo .bh-searchband__form > .bh-field:first-child,
  .bh-hero--photo .bh-searchband__form > button { grid-column: 1 / -1; }
  .bh-footer__grid { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.25rem; }
  .bh-footer__brand,
  .bh-footer__grid > div:last-child { grid-column: 1 / -1; }
  .bh-footer li { margin-bottom: .1rem; }
  .bh-footer__kolom--breed { grid-column: 1 / -1; }
  .bh-footer__lijst--twee {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    column-gap: 1.25rem;
  }
  .bh-hero__actions .bh-btn { flex: 1 1 100%; }
  .bh-tpl-grid { grid-template-columns: 1fr; }
  .bh-fieldrow { grid-template-columns: 1fr; }
  .bh-dl { grid-template-columns: 1fr; gap: .2rem; }
  .bh-dl dd { margin-bottom: .7rem; }
  .bh-wizard__nav { flex-direction: column-reverse; align-items: stretch; }
  .bh-wizard__nav .bh-btn { width: 100%; }
  .bh-wizard__count { text-align: center; }
  main.legacy { margin: 1.5rem 1rem; padding: 1.5rem; }
  .bh-appbody { padding: 1.25rem; }
  .bh-apptop { padding: 1rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  html.js .reveal { opacity: 1; translate: none; --bh-reveal-delay: 0ms; }
}

@media print {
  .bh-nav, .bh-drawer, .bh-drawer__backdrop, .bh-footer, .bh-cta, .bh-sidebar { display: none; }
  body { background: #fff; }
}

@media (max-width: 900px) {
  .bh-filter-row { min-height: 44px; padding-block: .5rem; }
  .bh-filters__clear,
  .bh-section-head > a,

  .bh-footer li a,
  .bh-footer__bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    min-width: 44px;
  }

  .bh-contactlijst a,
.bh-filterchip,
.bh-hulplink { min-height: 44px; }
  .bh-legal li > a[href^="mailto:"] { display: inline-flex; align-items: center; min-height: 44px; }
  .bh-check input[type="checkbox"],
  input[type="checkbox"],
  input[type="radio"] { min-width: 24px; min-height: 24px; }

  .bh-logo { min-height: 44px; }

  .bh-section-head--split { flex-direction: column; align-items: flex-start; gap: .6rem; }

  .bh-photo__btn { min-width: 44px; min-height: 44px; }

  .bh-hero__snel a.bh-chip { min-height: 44px; padding-inline: 1rem; }

  .bh-sidelist a,
  .bh-auth__foot a,
  .bh-statcard__link,
  .bh-tabs a,
  nav[aria-label="Kruimelpad"] a,
  .bh-tasklist a,
  dd a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (hover: none) {
  .bh-listing:hover,
  .bh-cat-tile:hover,
  .bh-btn--accent:hover:not(:active),
  .bh-btn--gold:hover:not(:active),
  .bh-btn--light:hover:not(:active) {
    transform: none;
  }
  .bh-listing:hover .bh-listing__cta svg,
  .bh-cat-tile:hover .bh-cat-tile__pijl,
  .bh-textlink:hover svg,
  .bh-btn:hover .bh-btn__arrow {
    transform: none;
  }
}

.bh-legal { line-height: 1.75; }
.bh-legal h2 { margin: 2.25rem 0 .6rem; font-size: 1.18rem; }
.bh-legal h2:first-child { margin-top: 0; }
.bh-legal h3 { margin: 1.5rem 0 .4rem; font-size: 1rem; color: var(--bh-text-secondary); }
.bh-legal p { margin: 0 0 .9rem; max-width: 68ch; color: var(--bh-text-secondary); }
.bh-legal ul { margin: 0 0 1.1rem; padding-left: 1.1rem; max-width: 68ch; }
.bh-legal li { margin-bottom: .45rem; color: var(--bh-text-secondary); }
.bh-legal strong { color: var(--bh-text); }
.bh-legal code { padding: .1em .35em; border-radius: 4px; background: var(--bh-surface-alt, #F1F3F1);
                 font-size: .92em; }
.bh-legal__tabel { width: 100%; margin: 0 0 1.1rem; border-collapse: collapse; font-size: .94rem; }
.bh-legal__tabel th, .bh-legal__tabel td { padding: .7rem .6rem; text-align: left; vertical-align: top;
                                           border-bottom: 1px solid var(--bh-border); }
.bh-legal__tabel th { font-weight: 700; color: var(--bh-text); }
.bh-legal__tabel td { color: var(--bh-text-secondary); }

@media (max-width: 640px) {
  .bh-legal__tabel, .bh-legal__tabel tbody, .bh-legal__tabel tr, .bh-legal__tabel td { display: block; }
  .bh-legal__tabel thead { display: none; }
  .bh-legal__tabel tr { padding: .6rem 0; border-bottom: 1px solid var(--bh-border); }
  .bh-legal__tabel td { border: 0; padding: .15rem 0; }
  .bh-legal__tabel td:first-child { font-weight: 700; color: var(--bh-text); }
}
.bh-legal__versie { margin-top: 1.1rem; font-size: .85rem; color: var(--bh-text-muted); }
.bh-legal__waarschuwing {
  background: var(--bh-gold-100);
  border-color: color-mix(in srgb, var(--bh-gold-500) 40%, var(--bh-border));
  font-size: .93rem;
}

.bh-danger { border-color: color-mix(in srgb, var(--bh-error) 30%, var(--bh-border)); }
.bh-danger__form { margin-top: 1.1rem; max-width: 340px; }
.bh-btn--gevaar { background: var(--bh-error); color: #fff; }
.bh-btn--gevaar:hover { filter: brightness(1.08); }

.bh-price__actie { display: flex; align-items: center; justify-content: center; gap: .5rem;
                   margin: -.35rem 0 .25rem; font-size: .85rem; }
.bh-price__actie s { color: var(--bh-text-muted); }
.bh-price__korting { padding: .1rem .45rem; border-radius: 999px;
                     background: var(--bh-gold-100); color: var(--bh-gold-text);
                     font-size: .75rem; font-weight: 700; }

.bh-page-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.bh-page-head--split > div { max-width: var(--bh-max-text); }

.bh-soortbar { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.bh-soort {
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 44px; padding: 0 16px; border-radius: 999px;
  border: 1.5px solid var(--bh-border); background: var(--bh-surface);
  font-size: .9rem; font-weight: 600; color: var(--bh-text-secondary);
  transition: border-color var(--bh-ease-fast), color var(--bh-ease-fast);
}
.bh-soort:hover { border-color: var(--bh-border-strong); color: var(--bh-text); }
.bh-soort.is-actief { background: var(--bh-dark); border-color: var(--bh-dark); color: #fff; }

.bh-soort--slot { color: var(--bh-text-muted); border-style: dashed; }
.bh-soortbar__telling { margin-left: auto; font-size: .88rem; color: var(--bh-text-muted); }

.bh-opdrachten { display: grid; gap: .9rem; }
.bh-opdracht {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--bh-surface); border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg); box-shadow: var(--bh-shadow-sm);
  transition: border-color var(--bh-ease-fast), box-shadow var(--bh-ease-fast);
}
.bh-opdracht:hover { border-color: var(--bh-border-strong); box-shadow: var(--bh-shadow); }
.bh-opdracht__body { min-width: 0; }
.bh-opdracht__top { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.bh-opdracht__cat { font-size: .84rem; color: var(--bh-text-muted); }
.bh-opdracht__titel { margin: .55rem 0 0; font-family: var(--bh-font-head); font-size: 1.18rem; font-weight: 800; letter-spacing: -.01em; }
.bh-opdracht__titel a { color: var(--bh-text); }
.bh-opdracht__titel a:hover { color: var(--bh-primary); }
.bh-opdracht__kop { margin: .8rem 0 0; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.15; }
.bh-opdracht__tekst { margin-top: .45rem; max-width: 64ch; font-size: .93rem; color: var(--bh-text-secondary); }
.bh-opdracht__tekst--vol { margin-top: 1.4rem; font-size: 1rem; line-height: 1.75; }
.bh-opdracht__meta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin: .9rem 0 0; padding: 0; list-style: none; font-size: .85rem; color: var(--bh-text-muted); }
.bh-opdracht__meta li { display: flex; align-items: center; gap: .4rem; }
.bh-opdracht__meta--groot { margin-top: 1rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--bh-border); font-size: .88rem; color: var(--bh-text-secondary); }
.bh-opdracht__actie { flex: none; }

.bh-chip--groen { background: var(--bh-primary-light); color: var(--bh-primary); }

.bh-opdracht-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 1.75rem; align-items: start; }
.bh-opdracht-zij { display: grid; gap: 1rem; }
.bh-zij__kop { font-size: 1.05rem; font-weight: 800; margin-bottom: .3rem; }
.bh-zij__voet { display: flex; align-items: center; gap: .6rem; padding: .9rem 1.5rem; background: var(--bh-bg-soft); border-top: 1px solid var(--bh-border); font-size: .85rem; color: var(--bh-text-secondary); }
.bh-zij__ini, .bh-plaatser__ini, .bh-reacties__ini {
  display: grid; place-items: center; flex: none;
  border-radius: var(--bh-radius-sm); background: var(--bh-primary-light);
  color: var(--bh-primary); font-weight: 800;
}
.bh-zij__ini { width: 32px; height: 32px; font-size: .78rem; }
.bh-plaatser { display: flex; align-items: center; gap: .8rem; margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--bh-border); }
.bh-plaatser__ini { width: 42px; height: 42px; border-radius: 50%; font-size: .95rem; }
.bh-plaatser__sub { display: block; font-size: .84rem; color: var(--bh-text-muted); font-weight: 400; }

.bh-reacties { display: grid; gap: .2rem; margin: 0; padding: 0; list-style: none; }
.bh-reacties li { display: flex; align-items: flex-start; gap: .85rem; padding: .8rem 0; border-bottom: 1px solid var(--bh-border); }
.bh-reacties li:last-child { border-bottom: 0; }
.bh-reacties__ini { width: 36px; height: 36px; font-size: .75rem; margin-top: 2px; }
.bh-reacties__body { min-width: 0; flex: 1; }
.bh-reacties__naam { display: block; font-size: .93rem; font-weight: 700; color: var(--bh-text); }
.bh-reacties__bericht { display: block; margin-top: .25rem; font-size: .9rem; color: var(--bh-text-secondary); }
.bh-reacties__bericht--kort { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bh-reacties__wanneer { display: block; margin-top: .35rem; font-size: .8rem; color: var(--bh-text-muted); }
.bh-reacties--compact { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--bh-border); }
.bh-reacties--compact .bh-reacties__wanneer { flex: none; margin-top: 0; align-self: center; }

.bh-eigenaar-acties { display: grid; gap: .6rem; }

.bh-soortkeuze { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; margin: 1.4rem 0 1.6rem; }
.bh-soortkaart { display: block; cursor: pointer; position: relative; }
.bh-soortkaart input { position: absolute; opacity: 0; width: 0; height: 0; }
.bh-soortkaart__box {
  display: block; padding: 1.2rem 1.3rem;
  background: var(--bh-surface); border: 2px solid var(--bh-border);
  border-radius: var(--bh-radius); transition: border-color var(--bh-ease-fast), box-shadow var(--bh-ease-fast);
}
.bh-soortkaart:hover .bh-soortkaart__box { border-color: var(--bh-border-strong); }
.bh-soortkaart input:checked + .bh-soortkaart__box { border-color: var(--bh-primary); box-shadow: 0 0 0 4px var(--bh-primary-light); }
.bh-soortkaart input:focus-visible + .bh-soortkaart__box { outline: 2px solid var(--bh-primary); outline-offset: 2px; }
.bh-soortkaart__top { display: flex; align-items: flex-start; justify-content: space-between; gap: .8rem; }
.bh-soortkaart__ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--bh-radius); background: #F1F3F0; color: var(--bh-text-secondary); }
.bh-soortkaart input:checked + .bh-soortkaart__box .bh-soortkaart__ico { background: var(--bh-primary-light); color: var(--bh-primary); }
.bh-soortkaart__radio { display: block; width: 20px; height: 20px; flex: none; border-radius: 50%; border: 2px solid var(--bh-border); background: var(--bh-surface); }
.bh-soortkaart input:checked + .bh-soortkaart__box .bh-soortkaart__radio { border-color: var(--bh-primary); background: var(--bh-primary); box-shadow: inset 0 0 0 3px #fff; }
.bh-soortkaart__naam { display: block; margin-top: .9rem; font-size: 1.02rem; font-weight: 800; }
.bh-soortkaart__uitleg { display: block; margin-top: .35rem; font-size: .88rem; color: var(--bh-text-secondary); }
.bh-soortkaart__wie { display: block; margin-top: .7rem; font-size: .8rem; color: var(--bh-text-muted); }

.bh-tabbar { display: flex; align-items: center; gap: 1.75rem; border-bottom: 1px solid var(--bh-border); margin-bottom: 1.5rem; }
.bh-tab { display: inline-flex; align-items: center; min-height: 44px; padding: 0 0 .8rem; border-bottom: 2px solid transparent; font-size: .95rem; font-weight: 600; color: var(--bh-text-muted); }
.bh-tab:hover { color: var(--bh-text); }
.bh-tab.is-actief { border-bottom-color: var(--bh-dark); color: var(--bh-text); font-weight: 700; }
.bh-tabbar__actie { margin: 0 0 .5rem auto; }

.bh-mijn-lijst { display: grid; gap: .85rem; }
.bh-mijn-rij { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; }
.bh-mijn-rij__titel { margin: .5rem 0 0; font-family: var(--bh-font-head); font-size: 1.08rem; font-weight: 800; }
.bh-mijn-rij__titel a { color: var(--bh-text); }
.bh-mijn-rij__titel a:hover { color: var(--bh-primary); }
.bh-mijn-rij__tekst { margin-top: .35rem; font-size: .88rem; color: var(--bh-text-secondary); }
.bh-mijn-rij__acties { display: flex; align-items: center; gap: .6rem; flex: none; }

.bh-notice--goud { background: var(--bh-gold-100); border-color: transparent; }
.bh-notice--goud .bh-notice__icon { color: var(--bh-gold-text); }
.bh-notice--waarschuwing { background: var(--bh-warn-bg); border-color: transparent; }
.bh-notice--waarschuwing .bh-notice__icon { color: var(--bh-warn); }

.bh-crumbs { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.4rem; font-size: .86rem; color: var(--bh-text-muted); }
.bh-crumbs a { color: var(--bh-text-muted); }
.bh-crumbs a:hover { color: var(--bh-text); }

@media (max-width: 900px) {
  .bh-opdracht-layout { grid-template-columns: 1fr; }
  .bh-opdracht { flex-direction: column; }
  .bh-opdracht__actie { width: 100%; justify-content: center; }
  .bh-soortkeuze { grid-template-columns: 1fr; }
  .bh-mijn-rij { flex-direction: column; }
  .bh-mijn-rij__acties { width: 100%; }
  .bh-tabbar { flex-wrap: wrap; gap: 1rem; }
  .bh-tabbar__actie { margin-left: 0; width: 100%; }
}

@media (max-width: 900px) {

  .bh-opdracht__titel a,
  .bh-mijn-rij__titel a { display: inline-block; padding-block: .15rem; min-height: 44px; }

  .bh-app__toggle { flex: none; min-width: 44px; min-height: 44px; }
}

.bh-form { display: grid; gap: 1rem; }
.bh-formacties { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: .25rem; }
.bh-help { font-size: .8125rem; line-height: 1.6; color: var(--bh-text-secondary); }

.bh-dienstbeheer { list-style: none; margin: 0; padding: 0; display: grid; gap: .625rem; }
.bh-dienstbeheer__rij {
  display: grid; grid-template-columns: 72px minmax(0, 1fr) auto; gap: 1rem;
  align-items: center; padding: .75rem; background: var(--bh-surface);
  border: 1px solid var(--bh-border); border-radius: var(--bh-radius);
}
.bh-dienstbeheer__rij.is-bewerkt { border-color: var(--bh-primary); box-shadow: 0 0 0 1px var(--bh-primary); }
.bh-dienstbeheer__beeld {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 54px; border-radius: var(--bh-radius-sm);
  background: var(--bh-bg-soft); color: var(--bh-text-secondary); overflow: hidden;
}
.bh-dienstbeheer__beeld img { width: 100%; height: 100%; object-fit: cover; }
.bh-dienstbeheer__tekst { display: grid; gap: .1875rem; min-width: 0; }
.bh-dienstbeheer__tekst b { font-size: .9375rem; font-weight: 700; }
.bh-dienstbeheer__tekst span { font-size: .8125rem; color: var(--bh-text-secondary); }
.bh-dienstbeheer__acties { display: flex; align-items: center; gap: .25rem; }
.bh-dienstbeheer__uitleg { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--bh-border); }

.bh-iconbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-width: 44px; min-height: 44px; padding: 0 .625rem;
  background: var(--bh-surface); border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-sm); color: var(--bh-text);
  font-family: inherit; font-size: .8125rem; cursor: pointer;
}
.bh-iconbtn:hover { background: var(--bh-bg-soft); }
.bh-iconbtn[disabled] { opacity: .4; cursor: default; }
.bh-iconbtn--gevaar { color: var(--bh-danger, #A32B22); }

.bh-photo--hoofd .bh-photo__img { outline: 2px solid var(--bh-primary); outline-offset: -2px; }
.bh-photo__img { position: relative; }
.bh-photo__badge {
  position: absolute; left: .5rem; top: .5rem; padding: .25rem .5rem;
  border-radius: 999px; background: var(--bh-primary); color: #fff;
  font-size: .6875rem; font-weight: 700; letter-spacing: .04em;
}

input[type="file"] {
  min-height: 44px;
  width: 100%;
  padding: .5rem;
  background: var(--bh-surface);
  border: 1px dashed var(--bh-border);
  border-radius: var(--bh-radius-sm);
  font: inherit;
  font-size: .875rem;
  color: var(--bh-text-secondary);
}
input[type="file"]::file-selector-button {
  min-height: 32px;
  margin-right: .75rem;
  padding: 0 .875rem;
  background: var(--bh-bg-soft);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-sm);
  font: inherit;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--bh-text);
  cursor: pointer;
}

label[for$="-clear_id"] {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-right: .5rem;
  font-size: .8125rem;
  color: var(--bh-text-secondary);
}
input[type="checkbox"][id$="-clear_id"] { width: 20px; height: 20px; margin-right: .375rem; }

.bh-wachtend {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin: 0 0 1rem;
  padding: .75rem .875rem;
  background: var(--bh-gold-100);
  border: 1px solid var(--bh-gold-300, #EBD6A6);
  border-radius: var(--bh-radius-sm);
  font-size: .8125rem;
  line-height: 1.55;
  color: var(--bh-text);
}
.bh-wachtend svg { flex: none; margin-top: .125rem; color: var(--bh-gold-text); }

@media (max-width: 900px) {
  .bh-tabel__link,
  .bh-opdrachtkop__titel a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

.bh-lancering {
  background: var(--bh-dark);
  color: var(--bh-text-light);
  border-bottom: 1px solid rgba(217, 164, 65, .28);
}
.bh-lancering__inner {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .5rem 1.25rem;
  padding: .7rem 0;
}
.bh-lancering__merk {
  display: inline-flex; align-items: center; gap: .5rem;
  flex: none;
  font-size: .75rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bh-gold-500);
}
.bh-lancering__stip {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bh-gold-500);
  box-shadow: 0 0 0 0 rgba(217, 164, 65, .55);
  animation: bh-lanceringspuls 2.4s ease-out infinite;
}
@keyframes bh-lanceringspuls {
  0%   { box-shadow: 0 0 0 0 rgba(217, 164, 65, .55); }
  70%  { box-shadow: 0 0 0 7px rgba(217, 164, 65, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 164, 65, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .bh-lancering__stip { animation: none; }
}
.bh-lancering__tekst {
  flex: 1 1 22rem; min-width: 0;
  margin: 0;
  font-size: .875rem; line-height: 1.5;
  color: rgba(255, 255, 255, .88);
}
.bh-lancering__link {
  display: inline-flex; align-items: center; gap: .4rem;
  flex: none; min-height: 44px;
  font-size: .85rem; font-weight: 700;
  color: var(--bh-gold-500); text-decoration: none;
  border-bottom: 1px solid transparent;
}
.bh-lancering__link:hover { border-bottom-color: var(--bh-gold-500); }
.bh-lancering__sluit {
  display: none; align-items: center; justify-content: center;
  flex: none; width: 44px; height: 44px; margin-left: auto;
  background: transparent; border: 0; border-radius: var(--bh-radius-sm);
  color: rgba(255, 255, 255, .7); cursor: pointer;
}
.bh-lancering__sluit:hover { background: rgba(255, 255, 255, .1); color: #fff; }

@media (max-width: 640px) {
  .bh-lancering__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: .25rem .75rem;
    padding: .55rem 0;
  }
  .bh-lancering__merk  { grid-column: 1; grid-row: 1; }
  .bh-lancering__sluit { grid-column: 2; grid-row: 1; margin-left: 0; }
  .bh-lancering__tekst { grid-column: 1 / -1; grid-row: 2; font-size: .8125rem; }
  .bh-lancering__link  { grid-column: 1 / -1; grid-row: 3; font-size: .8125rem; min-height: 40px; }
}

html.lancering-weg .bh-lancering { display: none; }
html.js .bh-lancering__sluit { display: inline-flex; }
