/* ============================================
   Thomas Damen — v2
   ============================================ */

:root {
  --bg: #080406;
  --text: #e8e4df;
  --copper: #A17643;
  --copper-dark: #8a6439;
  --border: rgba(232, 228, 223, 0.06);
  --font-serif: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --font-mono: var(--font-serif);

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Self-hosted fonts (Source Serif 4, latin subset) ── */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/source-serif-4-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-serif-4-latin-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* ── Focus visibility (keyboard nav) ── */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Skip to content ── */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10002;
  padding: 10px 18px;
  background: var(--copper);
  color: var(--bg);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 0.15s var(--ease-out);
}
.skip-link:focus {
  transform: translateY(0);
}
[id="main"]:focus,
[id="bk-stage"]:focus { outline: none; }

/* ── Below-fold render containment (perf) ── */
.hb-case,
.hb-panel {
  content-visibility: auto;
  contain-intrinsic-size: auto 90vh;
}
.hb-faq,
.hb-testimonial {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ── Tactile press feedback ── */
.hb-hero__cta-primary:active,
.hb-hero__cta-secondary:active,
.hb-panel__cta:active,
.hb-pricing__cta:active,
.floating-cta__btn:active,
.nav__lang:active,
.nav__links a:active {
  transform: scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal--scale, .reveal--left, .split-word-inner {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  overflow-x: hidden;
  cursor: none;
}

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

.footer {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  cursor: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--copper);
  color: var(--bg);
}

/* ── Utilities ── */
.label {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.7;
}

.label--section {
  font-size: 12px;
  letter-spacing: 0.16em;
  opacity: 0.78;
  display: block;
  margin-bottom: 16px;
  padding-top: 8px;
}

/* ── Custom Cursor ── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 228, 223, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body:hover .cursor-dot,
body:hover .cursor-ring {
  opacity: 1;
}

a:hover ~ .cursor-ring,
button:hover ~ .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: var(--copper);
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
  body {
    cursor: auto;
  }
  a, button {
    cursor: auto;
  }
}

/* ── Mouse Glow ── */
.mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 118, 67, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0);
}

@media (hover: none) {
  .mouse-glow {
    display: none !important;
  }
}


/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(232, 228, 223, 0.04);
  background: rgba(8, 4, 6, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.3s ease;
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav--scrolled {
  background: rgba(8, 4, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(161, 118, 67, 0.08);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.85;
  transition: opacity 0.15s var(--ease-out);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0 10px;
  margin: 0 -10px;
}

.nav__logo:hover {
  opacity: 1;
  letter-spacing: 0.7em;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.nav__links a:hover {
  opacity: 1;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__lang {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.15s var(--ease-out), transform 0.09s var(--ease-out);
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__lang:hover {
  opacity: 1;
}

.nav__menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 12px;
  margin: -12px;
}

.nav__menu span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text);
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__menu.is-active span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav__menu.is-active span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

@media (max-width: 767px) {
  .nav__links {
    display: none;
  }
  .nav__menu {
    display: flex;
  }
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.mobile-menu a:hover {
  opacity: 1;
  color: var(--copper);
}

/* ── Essay Cards ── */
.essay-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: opacity 0.3s;
}

.essay-card:first-of-type {
  border-top: 1px solid var(--border);
}

.essay-card__number {
  flex-shrink: 0;
  padding-top: 4px;
}

.essay-card__content {
  flex: 1;
  min-width: 0;
}

.essay-card__title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--text);
  line-height: 1.32;
  transition: color 0.3s;
}

.essay-card__teaser {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.55;
  margin-top: 8px;
}

.essay-card__meta {
  display: block;
  margin-top: 8px;
  opacity: 0.25;
}

.essay-card__arrow {
  font-family: var(--font-serif);
  font-size: 18px;
  opacity: 0.35;
  transition: opacity 0.3s, color 0.3s;
  flex-shrink: 0;
  padding-top: 4px;
}

.essay-card:hover .essay-card__title {
  color: var(--copper);
}

.essay-card__cta {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid var(--copper);
  border-radius: 6px;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.essay-card:hover .essay-card__cta {
  background: var(--copper);
  color: var(--bg);
}

@media (max-width: 600px) {
  .essay-card__cta {
    padding: 0 14px;
    min-height: 36px;
    letter-spacing: 0.14em;
  }
}

.essay-card__archive {
  margin-top: 32px;
  padding: 24px 32px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.essay-card__archive a {
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(161, 118, 67, 0.3);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.essay-card__archive a:hover {
  color: var(--text);
  border-bottom-color: rgba(232, 228, 223, 0.6);
}

.essay-card:hover .essay-card__arrow {
  opacity: 1;
  color: var(--copper);
}

/* ── Footer ── */
.footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer__watermark {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-serif);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 700;
  color: var(--text);
  opacity: 0.02;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.footer__col-label {
  margin-bottom: var(--space-xs);
  opacity: 0.5;
}

.footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col a {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.footer__col a:hover {
  opacity: 1;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.5;
  margin-top: 6px;
}

.footer__copy {
  font-family: var(--font-serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.42;
}

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

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.45s var(--ease-expo),
              transform 0.45s var(--ease-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }
.reveal:nth-child(5) { transition-delay: 0.2s; }

/* ── Typewriter cursor fade (JS-injected cursor) ── */
.typewriter-cursor.is-done {
  animation: cursorFade 0.8s ease forwards;
  animation-delay: 1s;
}

@keyframes cursorFade {
  to { opacity: 0; }
}

/* ── Essay Enhancements ── */
.essay-body > p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 3.5em;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--text);
}

.essay-pullquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  line-height: 1.5;
  color: rgba(232, 228, 223, 0.55);
  border-left: 2px solid rgba(161, 118, 67, 0.3);
  padding-left: var(--space-md);
  margin: var(--space-xl) 0;
}

/* ── Utility overrides ── */
.pt-0 { padding-top: 0; }
.pt-120 { padding-top: 120px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ── Floating CTA ── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(8, 4, 6, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(161, 118, 67, 0.25);
  border-radius: 100px;
  padding: 14px 24px;
  transition: border-color 0.15s var(--ease-out), background 0.15s var(--ease-out), transform 0.09s var(--ease-out);
  text-decoration: none;
}

.floating-cta__btn:hover {
  border-color: var(--copper);
  background: rgba(161, 118, 67, 0.08);
}

.floating-cta__arrow {
  transition: transform 0.3s;
}

.floating-cta__btn:hover .floating-cta__arrow {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .floating-cta {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  .floating-cta__btn {
    justify-content: center;
    width: 100%;
  }
}
.d-block { display: block; }

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--copper-dark), var(--copper));
  z-index: 101;
  transition: none;
  pointer-events: none;
}

/* ── Split Text Reveal ── */
.split-word {
  display: inline-block;
  overflow: hidden;
}

.split-word-inner {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s var(--ease-expo),
              opacity 0.4s var(--ease-expo);
}

.split-word-inner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* ── Reveal Variations ── */
.reveal--scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.45s var(--ease-expo),
              transform 0.45s var(--ease-expo);
}

.reveal--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.45s var(--ease-expo),
              transform 0.45s var(--ease-expo);
}

.reveal--left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Page Transitions ── */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: vt-fade-out 0.18s ease forwards;
}

::view-transition-new(root) {
  animation: vt-fade-in 0.22s ease forwards;
}

@keyframes vt-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes vt-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: page-enter 0.4s ease;
}

@keyframes page-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Image Loading ── */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s ease;
}

img[loading="lazy"].is-loaded {
  opacity: 1;
}

img[loading="eager"] {
  opacity: 1;
}

/* ============================================
   HYBRID — portfolio component layer (homepage)
   Toegevoegd 2026-04-30. Work-hero + Case-Film scenes + Poster panels.
   .hb-* prefix om naast bestaande systeem te leven zonder botsing.
   ============================================ */

/* ── HB Hero — Work-style split with portrait ── */
.hb-hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 14vh 24px 10vh;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .hb-hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    padding: 16vh 64px 12vh;
  }
}

.hb-hero__label {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hb-hero__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.hb-hero__name {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text);
  overflow-wrap: break-word;
}

.hb-hero__name em {
  font-style: italic;
  color: var(--copper);
}

/* Grid-kolom van de hero-tekst mag krimpen onder z'n content (anders houdt
   min-width:auto een lange H1 breder dan de viewport en kapt 'ie af op mobiel). */
.hb-hero > div { min-width: 0; }

/* Langere hero-H1's (bv. "Zet AI in om het beste in je mensen te ontketenen.")
   mogen op smal scherm niet afkappen: de clamp-min van 3.5rem is dan te groot. */
@media (max-width: 600px) {
  .hb-hero__name { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  /* Guard: voorkom dat een te brede sectie de hele pagina (en dus de hero-kolom)
     breder dan de viewport maakt, waardoor de H1 afkapt. */
  html, body { overflow-x: hidden; max-width: 100%; }
}

/* Sfeerbanden: foto's als rustige ambient i.p.v. grote statement-blokken */
.hb-sfeer {
  width: 100%;
  height: 38vh;
  min-height: 240px;
  overflow: hidden;
}

.hb-sfeer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.5;
  display: block;
}

.hb-werk-intro {
  text-align: center;
  padding: 56px 24px 8px;
}

.hb-hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  color: rgba(232, 228, 223, 0.78);
  max-width: 38ch;
  margin-bottom: 40px;
}

.hb-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.hb-hero__cta-primary {
  display: inline-block;
  background: var(--copper);
  color: var(--bg);
  padding: 16px 28px;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s var(--ease-out), transform 0.09s var(--ease-out);
}

.hb-hero__cta-primary:hover {
  background: var(--copper-dark);
}

.hb-hero__cta-secondary {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 228, 223, 0.2);
  padding-bottom: 4px;
  transition: color 0.15s var(--ease-out), border-color 0.15s var(--ease-out), transform 0.09s var(--ease-out);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.hb-hero__cta-secondary:hover {
  color: var(--text);
  border-color: var(--copper);
}

.hb-hero__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.hb-hero__photo--landscape {
  aspect-ratio: 3 / 2;
}

/* Hero clients-line (eerder gesproken bij ...) — onder de CTA-row */
.hb-hero__clients {
  margin-top: 32px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.5);
  line-height: 1.6;
}

.hb-hero__clients strong {
  color: var(--copper);
  font-weight: 500;
  margin-right: 10px;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .hb-hero__clients {
    margin-top: 24px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }
}

/* Closing cross-link (subtle path naar /services vanuit content-pagina's) */
.hb-closing__cross {
  margin-top: 32px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(232, 228, 223, 0.55);
}

.hb-closing__cross a {
  color: var(--copper);
  border-bottom: 1px solid rgba(161, 118, 67, 0.4);
  text-decoration: none;
  transition: border-color 0.3s;
}

.hb-closing__cross a:hover {
  border-bottom-color: var(--copper);
}

.hb-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(100%) contrast(1.05);
  display: block;
}

.hb-hero__photo-meta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(8, 4, 6, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 14px;
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.78);
}

.hb-hero__photo-meta strong {
  color: var(--copper);
  font-weight: 500;
  margin-right: 8px;
}

@media (max-width: 600px) {
  .hb-hero {
    padding: 12vh 20px 8vh;
    gap: 40px;
  }
}

/* ── HB Case — Full-bleed photo scene ── */
.hb-case {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  border-top: 1px solid rgba(232, 228, 223, 0.05);
}

.hb-case__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hb-case__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focal, center 40%);
  filter: grayscale(100%) contrast(1.05) brightness(0.7);
  display: block;
}

.hb-case::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 4, 6, 0.4) 0%, transparent 30%, transparent 60%, rgba(8, 4, 6, 0.92) 100%);
  pointer-events: none;
}

.hb-case__meta {
  position: absolute;
  top: 80px;
  left: 32px;
  z-index: 2;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.9);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hb-case__num {
  color: var(--copper);
  font-weight: 500;
}

.hb-case__statement {
  position: absolute;
  bottom: 14vh;
  left: 32px;
  right: 32px;
  z-index: 2;
  max-width: 22ch;
}

.hb-case__statement-h {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hb-case__statement-h em {
  font-style: italic;
  color: var(--copper);
}

.hb-case__caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(232, 228, 223, 0.78);
  max-width: 44ch;
}

.hb-case__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 20px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  text-decoration: none;
  transition: opacity 0.15s var(--ease-out);
}

.hb-case__cta:hover {
  opacity: 0.7;
}

#case-essay .hb-case__statement {
  max-width: 30ch;
}

.hb-case__client {
  position: absolute;
  bottom: 7vh;
  left: 32px;
  z-index: 2;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.5);
}

@media (max-width: 600px) {
  .hb-case__meta {
    top: 60px;
    left: 20px;
    font-size: 10px;
  }
  .hb-case__statement {
    left: 20px;
    right: 20px;
    bottom: 12vh;
  }
  .hb-case__client {
    left: 20px;
    bottom: 5vh;
  }
}

/* ── HB Panel — Display-type statement ── */
.hb-panel {
  min-height: 80vh;
  padding: 14vh 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .hb-panel {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 18vh 64px;
  }
}

.hb-panel__head {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: var(--text);
}

.hb-panel__head em {
  font-style: italic;
  color: var(--copper);
}

.hb-panel__num {
  display: block;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
  opacity: 0.85;
}

.hb-panel__body {
  max-width: 44ch;
}

.hb-panel__price {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--text);
}

.hb-panel__price em {
  font-style: italic;
  color: var(--copper);
}

.hb-panel__body-text {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(232, 228, 223, 0.78);
  margin-bottom: 32px;
}

.hb-panel__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  text-decoration: none;
  margin-right: 24px;
  margin-bottom: 12px;
  transition: opacity 0.15s var(--ease-out), transform 0.09s var(--ease-out);
}

.hb-panel__cta:hover {
  opacity: 0.7;
}

.hb-panel__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

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

@media (max-width: 600px) {
  .hb-panel {
    padding: 10vh 20px;
    gap: 32px;
    min-height: auto;
  }
}

/* ── HB Closing — Contact / Booker CTA ── */
.hb-closing {
  padding: 14vh 32px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
  position: relative;
  z-index: 2;
}

.hb-closing__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
  opacity: 0.85;
}

.hb-closing__h {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
}

.hb-closing__h em {
  font-style: italic;
  color: var(--copper);
}

.hb-closing__sub {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(232, 228, 223, 0.7);
  max-width: 50ch;
  margin: 0 auto 40px;
}

.hb-closing__cta-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hb-closing {
    padding: 10vh 20px;
  }
  .hb-closing__cta-row {
    flex-direction: column;
    gap: 16px;
  }
}

/* ── HB Topics — 4-card grid voor keynote-onderwerpen ── */
.hb-topics {
  padding: 12vh 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.hb-topics__head {
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.hb-topics__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--text);
}

.hb-topics__title em {
  font-style: italic;
  color: var(--copper);
}

.hb-topics__sub {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.5);
}

.hb-topics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 700px) {
  .hb-topics__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hb-topic {
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(232, 228, 223, 0.04), rgba(232, 228, 223, 0.012));
  border: 1px solid rgba(232, 228, 223, 0.08);
  border-radius: 6px;
  position: relative;
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.hb-topic::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(161, 118, 67, 0.5), transparent);
  opacity: 0.6;
}

.hb-topic:hover {
  border-color: rgba(161, 118, 67, 0.35);
  transform: translateY(-3px);
}

.hb-topic__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  opacity: 0.85;
}

.hb-topic__title {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}

.hb-topic__text {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(232, 228, 223, 0.7);
}

@media (max-width: 600px) {
  .hb-topics {
    padding: 8vh 20px;
  }
  .hb-topic {
    padding: 28px 24px;
  }
}

/* ── HB Clients — eerder gesproken bij ── */
.hb-clients {
  padding: 10vh 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.hb-clients__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 36px;
  opacity: 0.85;
}

.hb-clients__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.hb-clients__strip li {
  display: flex;
  align-items: center;
}

.hb-clients__strip img {
  display: block;
  height: clamp(28px, 3.4vw, 40px);
  width: auto;
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hb-clients__strip a:hover img,
.hb-clients__strip img:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.hb-clients__plus {
  margin-top: 28px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.45);
}

.hb-clients__plus span {
  margin: 0 10px;
}

@media (max-width: 600px) {
  .hb-clients {
    padding: 8vh 20px;
  }
  .hb-clients__strip {
    gap: 24px;
  }
  .hb-clients__strip img {
    height: 22px;
  }
}

/* ── HB Testimonial — magazine-style social proof ── */
.hb-testimonial {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 12vh 32px;
}

.hb-testimonial__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 32px;
  opacity: 0.85;
}

.hb-testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.5;
  color: rgba(232, 228, 223, 0.92);
  margin: 0 0 32px;
  padding: 0;
  border: 0;
}

.hb-testimonial__attribution {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 228, 223, 0.1);
}

.hb-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  border: 1px solid rgba(161, 118, 67, 0.35);
  flex-shrink: 0;
}

.hb-testimonial__author {
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(232, 228, 223, 0.78);
  margin: 0;
}

.hb-testimonial__author strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.hb-testimonial__author a {
  color: inherit;
  border-bottom: 1px solid rgba(161, 118, 67, 0.35);
  text-decoration: none;
}

.hb-testimonial__role {
  font-style: italic;
  color: rgba(232, 228, 223, 0.5);
}

@media (max-width: 600px) {
  .hb-testimonial {
    padding: 8vh 20px;
  }
}

/* ── HB FAQ — accordion ── */
.hb-faq {
  padding: 12vh 32px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.hb-faq__head {
  margin-bottom: 48px;
}

.hb-faq__num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
  opacity: 0.85;
  display: block;
}

.hb-faq__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  font-weight: 400;
  color: var(--text);
  max-width: 22ch;
}

.hb-faq__title em {
  font-style: italic;
  color: var(--copper);
}

.hb-faq details {
  border-top: 1px solid rgba(232, 228, 223, 0.08);
  padding: 0;
}

.hb-faq details:last-of-type {
  border-bottom: 1px solid rgba(232, 228, 223, 0.08);
}

.hb-faq summary {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color 0.3s;
  padding: 24px 0;
  min-height: 44px;
}

.hb-faq details[open] summary {
  padding-bottom: 16px;
}

.hb-faq details[open] .hb-faq__answer {
  padding-bottom: 24px;
}

.hb-faq summary::-webkit-details-marker {
  display: none;
}

.hb-faq summary::after {
  content: '+';
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--copper);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.hb-faq details[open] summary::after {
  transform: rotate(45deg);
}

.hb-faq summary:hover {
  color: var(--copper);
}

.hb-faq__answer {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232, 228, 223, 0.7);
  padding: 16px 0 0;
  margin: 0;
  max-width: 60ch;
}

@media (max-width: 600px) {
  .hb-faq {
    padding: 8vh 20px;
  }
  .hb-faq summary {
    font-size: 16px;
  }
}

/* ── HB Pricing — investering blok ── */
/* ─── Wat je krijgt — deliverables-checklist (beslis-surface) ── */

.hb-deliverables {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px 4vh;
  position: relative;
  z-index: 2;
}

.hb-deliverables__inner {
  background: rgba(232, 228, 223, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
}

.hb-deliverables__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.85;
  margin: 0 0 22px;
}

.hb-deliverables__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hb-deliverables__list li {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(232, 228, 223, 0.85);
  padding-left: 30px;
  position: relative;
}

.hb-deliverables__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--copper);
  font-size: 15px;
}

@media (max-width: 640px) {
  .hb-deliverables { padding: 0 20px 2vh; }
  .hb-deliverables__inner { padding: 28px 24px; }
  .hb-deliverables__list li { font-size: 15px; }
}

.hb-pricing {
  padding: 12vh 32px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.hb-pricing__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
  opacity: 0.85;
}

.hb-pricing__price {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}

.hb-pricing__sub {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.55);
  margin-bottom: 36px;
}

.hb-pricing__cta {
  display: inline-block;
  background: var(--copper);
  color: var(--bg);
  padding: 18px 32px;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s var(--ease-out), transform 0.09s var(--ease-out);
}

.hb-pricing__cta:hover {
  background: var(--copper-dark);
}

.hb-pricing__micro {
  display: block;
  margin-top: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: rgba(232, 228, 223, 0.5);
}

@media (max-width: 600px) {
  .hb-pricing {
    padding: 8vh 20px;
  }
}

/* ── HB Cross-sell — kleine link naar andere services ── */
.hb-crosssell {
  padding: 6vh 32px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hb-crosssell__text {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(232, 228, 223, 0.6);
}

.hb-crosssell__text a {
  color: var(--copper);
  border-bottom: 1px solid rgba(161, 118, 67, 0.4);
  text-decoration: none;
  transition: border-color 0.3s;
}

.hb-crosssell__text a:hover {
  border-color: var(--copper);
}

@media (max-width: 600px) {
  .hb-crosssell {
    padding: 4vh 20px;
  }
}

/* ── HB Prose — narrow italic-prose passage (e.g. "Filosofie als gereedschap") ── */
.hb-prose {
  padding: 12vh 32px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.hb-prose__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
  opacity: 0.85;
  display: block;
}

.hb-prose__body {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  color: rgba(232, 228, 223, 0.85);
  max-width: 60ch;
}

.hb-prose__body em {
  color: var(--copper);
  font-style: italic;
}

.hb-prose__body strong {
  color: var(--text);
  font-weight: 500;
  font-style: normal;
}

@media (max-width: 600px) {
  .hb-prose {
    padding: 8vh 20px;
  }
}

/* ── HB Topic — extensions: price + CTA inside topic-card ── */
.hb-topic__price {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.1;
  color: var(--text);
  margin: 14px 0 14px;
}

.hb-topic__price em {
  font-style: italic;
  color: var(--copper);
}

.hb-topic__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.hb-topic__cta:hover {
  opacity: 0.7;
}

/* ── HB Text — narrow column article block (label + h2 + paragraphs) ── */
.hb-text {
  padding: 12vh 32px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.hb-text__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
  opacity: 0.85;
  display: block;
}

.hb-text__h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 22ch;
}

.hb-text__h2 em {
  font-style: italic;
  color: var(--copper);
}

.hb-text__body {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.85;
  color: rgba(232, 228, 223, 0.85);
  max-width: 62ch;
}

.hb-text__body p {
  margin-bottom: 1.4em;
}

.hb-text__body p:last-of-type {
  margin-bottom: 0;
}

.hb-text__body em {
  font-style: italic;
  color: var(--copper);
}

.hb-text__body strong {
  color: var(--text);
  font-weight: 500;
}

.hb-text__body a {
  color: var(--copper);
  border-bottom: 1px solid rgba(161, 118, 67, 0.4);
  text-decoration: none;
  transition: border-color 0.3s;
}

.hb-text__body a:hover {
  border-bottom-color: var(--copper);
}

.hb-text__body p.italic,
.hb-text__body .italic {
  font-style: italic;
  color: rgba(232, 228, 223, 0.78);
}

@media (max-width: 600px) {
  .hb-text {
    padding: 8vh 20px;
  }
}

/* ── HB Facts — Snelle feiten blok (factuele dl voor GEO + boekers) ── */
.hb-facts {
  padding: 12vh 32px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.hb-facts__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
  opacity: 0.85;
  display: block;
}

.hb-facts__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0 0 36px;
}

.hb-facts__title em {
  font-style: italic;
  color: var(--copper);
}

.hb-facts__dl {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 18px 32px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.6;
}

.hb-facts__dt {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.65);
  padding-top: 4px;
  margin: 0;
}

.hb-facts__dd {
  color: var(--text);
  margin: 0;
}

.hb-facts__dd a {
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(161, 118, 67, 0.4);
  transition: border-color 0.3s;
}

.hb-facts__dd a:hover {
  border-color: var(--copper);
}

@media (max-width: 600px) {
  .hb-facts {
    padding: 8vh 20px;
  }
  .hb-facts__dl {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
  .hb-facts__dt {
    padding-top: 16px;
  }
  .hb-facts__dt:first-of-type {
    padding-top: 0;
  }
}

/* HB Topics — 3-col modifier voor service-grid */
@media (min-width: 900px) {
  .hb-topics__grid--three {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}

/* HB Topic chips — expects-tags binnen topic-card */
.hb-topic__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 4px;
}

.hb-topic__chip {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.72;
  border: 1px solid rgba(161, 118, 67, 0.25);
  padding: 5px 10px;
}

/* HB Testimonials set — compact stacked testimonials */
.hb-testi-set {
  padding: 12vh 32px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.hb-testi-set__head {
  margin-bottom: 48px;
}

.hb-testi-set__num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
  opacity: 0.85;
  display: block;
}

.hb-testi-set__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  font-weight: 400;
  color: var(--text);
  max-width: 24ch;
}

.hb-testi-set__title em {
  font-style: italic;
  color: var(--copper);
}

.hb-testi-set__item {
  padding: 32px 0;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.hb-testi-set__item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.hb-testi-set__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(232, 228, 223, 0.85);
  margin-bottom: 18px;
  max-width: 60ch;
}

.hb-testi-set__author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
}

.hb-testi-set__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  border: 1px solid rgba(161, 118, 67, 0.35);
  flex-shrink: 0;
}

.hb-testi-set__role {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(232, 228, 223, 0.5);
  font-weight: 400;
  margin-left: 4px;
}

@media (max-width: 600px) {
  .hb-testi-set {
    padding: 8vh 20px;
  }
}

/* ── HB List — wrapper voor essay-card stack ── */
.hb-list {
  padding: 8vh 32px 4vh;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 600px) {
  .hb-list {
    padding: 6vh 20px 4vh;
  }
}

/* ── HB Essay-detail components ── */
.hb-essay-hero {
  padding: 16vh 32px 6vh;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hb-essay-hero__meta {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.55);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hb-essay-hero__meta::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.hb-essay-hero__num {
  color: var(--copper);
  font-weight: 500;
}

.hb-essay-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 18ch;
}

.hb-essay-hero__title em {
  font-style: italic;
  color: var(--copper);
}

.hb-essay-hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  color: rgba(232, 228, 223, 0.7);
  max-width: 50ch;
}

@media (max-width: 600px) {
  .hb-essay-hero {
    padding: 14vh 20px 4vh;
  }
}

.hb-essay-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 4vh 32px 10vh;
  position: relative;
  z-index: 2;
}

.hb-essay-body p,
.hb-essay-body blockquote {
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}

.hb-essay-body p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.85;
  color: rgba(232, 228, 223, 0.82);
  margin-bottom: 1.4em;
}

.hb-essay-body p:last-child {
  margin-bottom: 0;
}

.hb-essay-body em {
  font-style: italic;
  color: rgba(232, 228, 223, 0.62);
}

.hb-essay-body strong {
  font-weight: 500;
  color: var(--text);
}

.hb-essay-body a {
  color: var(--copper);
  border-bottom: 1px solid rgba(161, 118, 67, 0.4);
  text-decoration: none;
  transition: border-color 0.3s;
}

.hb-essay-body a:hover {
  border-bottom-color: var(--copper);
}

.hb-essay-body > p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 3.8em;
  font-weight: 400;
  font-style: italic;
  float: left;
  line-height: 0.85;
  margin-right: 10px;
  margin-top: 8px;
  color: var(--copper);
}

.hb-essay-body .essay-pullquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 28px);
  font-style: italic;
  line-height: 1.45;
  color: rgba(232, 228, 223, 0.85);
  border-left: 2px solid var(--copper);
  padding-left: var(--space-md);
  margin: var(--space-xl) auto;
  max-width: 56ch;
}

@media (max-width: 600px) {
  .hb-essay-body {
    padding: 3vh 20px 8vh;
  }
}

.hb-essay-next {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 10vh 32px;
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid rgba(232, 228, 223, 0.08);
  position: relative;
  z-index: 2;
  transition: padding-left 0.4s ease;
}

.hb-essay-next:hover {
  padding-left: calc(32px + 12px);
}

.hb-essay-next__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  opacity: 0.85;
  display: block;
}

.hb-essay-next__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--text);
  transition: color 0.3s;
}

.hb-essay-next__title em {
  font-style: italic;
  color: var(--copper);
}

.hb-essay-next:hover .hb-essay-next__title {
  color: var(--copper);
}

@media (max-width: 600px) {
  .hb-essay-next {
    padding: 8vh 20px;
  }
  .hb-essay-next:hover {
    padding-left: calc(20px + 12px);
  }
}
