/* ============================================================
   Hi-fi styles — Variant A production-ready, light theme
   Light Clay base + EF purple accent + pastel orange contrast
   Editable text via .hf-edit class (contentEditable)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.hf {
  --hf-canvas:      #FFFAF0;
  --hf-surface-1:   #FAF5E8;
  --hf-surface-2:   #F5F0E0;
  --hf-surface-3:   #EBE6D6;
  --hf-ink:         #0A0A0A;
  --hf-body:        #3A3A3A;
  --hf-muted:       #6A6A6A;
  --hf-muted-soft:  #9A9A9A;
  --hf-line:        rgba(10,10,10,0.10);
  --hf-line-soft:   rgba(10,10,10,0.06);
  --hf-line-strong: rgba(10,10,10,0.18);

  /* EF purple kept as primary accent (CTA, links) */
  --hf-purple:       #7C5CF5;
  --hf-purple-hi:    #9B82FF;
  --hf-purple-deep:  #5A3DDB;
  --hf-purple-soft:  rgba(124,92,245,0.10);

  /* Pastel orange — Claude-style — for contrast/highlights in display copy */
  --hf-orange:       #D97757;
  --hf-orange-hi:    #E89478;
  --hf-orange-soft:  rgba(217,119,87,0.12);

  --hf-red:          #C44545;
  --hf-green:        #2E9D5C;
  --hf-gold:         #C99935;

  --hf-on-purple:    #FFFFFF;
  --hf-on-orange:    #29150c;

  background: var(--hf-canvas);
  color: var(--hf-ink);
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hf * { box-sizing: border-box; }

/* Soft ambient orange glow at top of hero only */
.hf-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 700px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(217,119,87,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 30% 60%, rgba(124,92,245,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   Editable text — show subtle underline on hover when in edit mode
   ============================================================ */
.hf-edit {
  outline: none;
  border-radius: 4px;
  transition: background-color 120ms, box-shadow 120ms;
  cursor: text;
}
.hf-edit:hover {
  background: rgba(217,119,87,0.06);
  box-shadow: 0 0 0 4px rgba(217,119,87,0.06);
}
.hf-edit:focus {
  background: rgba(217,119,87,0.08);
  box-shadow: 0 0 0 4px rgba(217,119,87,0.10), inset 0 0 0 1px rgba(217,119,87,0.4);
}

/* ============================================================
   Top nav
   ============================================================ */
.hf-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
}
.hf-nav-logo {
  height: 32px;
  display: block;
}
.hf-nav-logo img {
  height: 100%;
  width: auto;
  display: block;
}

/* ============================================================
   Buttons — primary uses purple, ghost uses ink
   ============================================================ */
.hf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.1px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
  white-space: nowrap;
}
.hf-btn-primary {
  background: var(--hf-ink);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(10,10,10,0.18);
}
.hf-btn-primary:hover {
  background: var(--hf-purple);
  box-shadow: 0 10px 32px rgba(124,92,245,0.40);
  transform: translateY(-1px);
}
.hf-btn-primary:active { transform: translateY(0); }

.hf-btn-purple {
  background: var(--hf-purple);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(124,92,245,0.30);
}
.hf-btn-purple:hover {
  background: var(--hf-purple-deep);
  box-shadow: 0 12px 36px rgba(124,92,245,0.50);
  transform: translateY(-1px);
}

.hf-btn-secondary {
  background: transparent;
  color: var(--hf-ink);
  border: 1px solid var(--hf-line-strong);
}
.hf-btn-secondary:hover { background: rgba(10,10,10,0.04); border-color: var(--hf-ink); }

.hf-btn-large {
  height: 56px;
  padding: 0 32px;
  font-size: 16px;
  border-radius: 14px;
}

/* Compact nav button */
.hf-btn-compact {
  height: 40px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 10px;
}

/* ============================================================
   Badges
   ============================================================ */
.hf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(10,10,10,0.06);
  color: var(--hf-ink);
  border: 1px solid var(--hf-line);
}
.hf-badge-orange {
  background: var(--hf-orange-soft);
  color: var(--hf-orange);
  border: 1px solid rgba(217,119,87,0.25);
}
.hf-badge-purple {
  background: var(--hf-purple-soft);
  color: var(--hf-purple-deep);
  border: 1px solid rgba(124,92,245,0.25);
}
.hf-badge-deadline {
  background: var(--hf-ink);
  color: #FFFFFF;
  border: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}
.hf-badge-deadline::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--hf-orange-hi);
  box-shadow: 0 0 0 0 var(--hf-orange-hi);
  animation: hf-pulse 2s infinite;
}
@keyframes hf-pulse {
  0% { box-shadow: 0 0 0 0 rgba(232,148,120,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(232,148,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,148,120,0); }
}

/* ============================================================
   Type
   ============================================================ */
.hf-h1 {
  font-size: 88px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -3.5px;
  color: var(--hf-ink);
  margin: 0;
  text-wrap: balance;
}
.hf-h2 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--hf-ink);
  margin: 0;
  text-wrap: balance;
}
.hf-h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--hf-ink);
  margin: 0;
}
.hf-h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: var(--hf-ink);
  margin: 0;
}
.hf-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hf-muted);
  margin: 0 0 16px;
}
.hf-lead {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--hf-body);
  margin: 0;
  letter-spacing: -0.2px;
}
.hf-body {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--hf-body);
  margin: 0;
}
.hf-small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--hf-muted);
  margin: 0;
}

.hf-orange-text { color: var(--hf-orange); }
.hf-purple-text { color: var(--hf-purple-deep); }
.hf-red-text { color: var(--hf-red); }

/* ============================================================
   Section rhythm
   ============================================================ */
.hf-section {
  position: relative;
  padding: 96px 56px;
  z-index: 1;
}
.hf-section-tight { padding: 64px 56px; }
.hf-container { max-width: 1168px; margin: 0 auto; }

/* ============================================================
   Hero
   ============================================================ */
.hf-hero {
  position: relative;
  padding: 24px 56px 96px;
  text-align: center;
  z-index: 1;
}
.hf-hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hf-hero-h1 {
  max-width: 1000px;
  margin: 0 auto 28px;
}
.hf-hero-sub {
  max-width: 720px;
  margin: 0 auto 44px;
}
.hf-hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}
.hf-hero-deadline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--hf-muted);
  font-weight: 500;
}
.hf-hero-deadline::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--hf-orange);
}

/* Hero video frame */
.hf-video-wrap {
  display: block;
  position: relative;
  max-width: 960px;
  margin: 56px auto 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--hf-surface-2);
  aspect-ratio: 16 / 9;
  box-shadow:
    0 30px 80px rgba(10,10,10,0.18),
    0 0 0 1px var(--hf-line-soft);
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.hf-video-wrap:hover {
  transform: translateY(-2px);
  box-shadow:
    0 40px 100px rgba(10,10,10,0.24),
    0 0 0 1px var(--hf-line);
}
.hf-video-wrap image-slot,
.hf-video-wrap .hf-video-poster {
  width: 100%; height: 100%;
  display: block;
}
.hf-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.hf-video-play {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--hf-ink);
  font-size: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 0 8px rgba(255,255,255,0.18);
  transition: transform 240ms ease, background 240ms ease;
}
.hf-video-wrap:hover .hf-video-play {
  transform: scale(1.08);
  background: var(--hf-orange);
  color: #FFFFFF;
}
.hf-video-caption {
  position: absolute;
  left: 24px; bottom: 24px;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(10,10,10,0.7);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ============================================================
   Thomas section
   ============================================================ */
.hf-thomas {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.hf-thomas-portrait {
  aspect-ratio: 4 / 5;
  background: var(--hf-surface-2);
  position: relative;
}
.hf-thomas-portrait image-slot {
  width: 100%; height: 100%;
  display: block;
}
.hf-thomas-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.hf-stat {
  background: var(--hf-surface-1);
  border: 1px solid var(--hf-line-soft);
  border-radius: 16px;
  padding: 20px 24px;
}
.hf-stat-num {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--hf-ink);
  margin-bottom: 6px;
}
.hf-stat-label {
  font-size: 13px;
  color: var(--hf-muted);
  font-weight: 500;
}
.hf-thomas-handles {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

/* ============================================================
   Compare table — NIET vs WEL (Variant B style)
   ============================================================ */
.hf-compare {
  border-radius: 24px;
  border: 1px solid var(--hf-line);
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(10,10,10,0.04);
}
.hf-compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--hf-line);
}
.hf-compare-header-cell {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hf-compare-header-cell.niet {
  color: var(--hf-red);
  background: rgba(196,69,69,0.04);
  border-right: 1px solid var(--hf-line);
}
.hf-compare-header-cell.wel {
  color: var(--hf-orange);
  background: var(--hf-orange-soft);
}
.hf-compare-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.hf-compare-icon.niet { background: rgba(196,69,69,0.15); color: var(--hf-red); }
.hf-compare-icon.wel  { background: rgba(46,157,92,0.15); color: var(--hf-green); }

.hf-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hf-line-soft);
}
.hf-compare-row:first-child { border-top: none; }
.hf-compare-cell {
  padding: 22px 32px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--hf-body);
}
.hf-compare-cell.niet {
  border-right: 1px solid var(--hf-line-soft);
  color: var(--hf-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(196,69,69,0.18);
  text-decoration-thickness: 1px;
}
.hf-compare-cell.wel {
  color: var(--hf-ink);
  font-weight: 500;
}

/* ============================================================
   Profile (was "Wie zoeken we" — now Variant B style)
   ============================================================ */
.hf-profile {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 48px;
  align-items: stretch;
}
.hf-profile-portrait {
  background: var(--hf-surface-2);
  aspect-ratio: 3 / 4;
  position: relative;
}
.hf-profile-portrait image-slot {
  width: 100%; height: 100%;
  display: block;
}
.hf-profile-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.hf-profile-card {
  background: #FFFFFF;
  border: 1px solid var(--hf-line);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.hf-profile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(10,10,10,0.08);
}
.hf-profile-card-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--hf-orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.hf-profile-card-body { flex: 1; }
.hf-profile-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.hf-profile-card-text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--hf-body);
}

/* ============================================================
   YouTube content section
   ============================================================ */
.hf-yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hf-yt-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  background: var(--hf-surface-1);
  border: 1px solid var(--hf-line-soft);
  transition: transform 240ms ease, box-shadow 240ms ease;
  cursor: pointer;
}
.hf-yt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(10,10,10,0.12);
}
.hf-yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--hf-surface-2);
  overflow: hidden;
}
.hf-yt-thumb image-slot {
  width: 100%; height: 100%;
  display: block;
}
.hf-yt-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}
.hf-yt-card:hover .hf-yt-thumb-overlay { opacity: 1; }
.hf-yt-play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hf-ink);
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hf-yt-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(255,0,0,0.95);
  color: #FFFFFF;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hf-yt-duration {
  position: absolute;
  bottom: 12px; right: 12px;
  padding: 3px 8px;
  background: rgba(0,0,0,0.85);
  color: #FFFFFF;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.hf-yt-meta {
  padding: 18px 20px 20px;
}
.hf-yt-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--hf-ink);
  letter-spacing: -0.2px;
}
.hf-yt-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--hf-muted);
}

/* ============================================================
   Process timeline
   ============================================================ */
.hf-process {
  display: flex;
  flex-direction: column;
  max-width: 800px;
}
.hf-process-step {
  display: grid;
  grid-template-columns: 64px 1fr 120px;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
  border-top: 1px solid var(--hf-line-soft);
}
.hf-process-step:first-child { border-top: none; padding-top: 0; }
.hf-process-step:last-child { padding-bottom: 0; }
.hf-process-num {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--hf-ink);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.hf-process-step:hover .hf-process-num {
  background: var(--hf-orange);
}
.hf-process-num::after {
  content: "";
  position: absolute;
  top: 44px; left: 50%;
  width: 2px; height: calc(100% + 56px);
  background: var(--hf-line);
  transform: translateX(-50%);
}
.hf-process-step:last-child .hf-process-num::after { display: none; }
.hf-process-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.hf-process-body {
  font-size: 15px;
  color: var(--hf-body);
  line-height: 1.55;
}
.hf-process-time {
  text-align: right;
  font-size: 13px;
  color: var(--hf-muted);
  font-weight: 500;
  padding-top: 8px;
}

/* ============================================================
   CTA bands
   ============================================================ */
.hf-cta-band {
  position: relative;
  border-radius: 32px;
  padding: 80px 56px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,119,87,0.12) 0%, transparent 60%),
    var(--hf-surface-1);
  border: 1px solid var(--hf-line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.hf-cta-band-final {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,119,87,0.20) 0%, transparent 65%),
    radial-gradient(ellipse at 50% 100%, rgba(124,92,245,0.10) 0%, transparent 60%),
    #FFFFFF;
  padding: 112px 56px;
}

/* ============================================================
   Footer
   ============================================================ */
.hf-footer {
  border-top: 1px solid var(--hf-line);
  padding: 40px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--hf-muted);
}
.hf-footer-logo { height: 24px; opacity: 0.6; }
.hf-footer-logo img { height: 100%; display: block; }

/* ============================================================
   Section heading group
   ============================================================ */
.hf-section-head {
  margin-bottom: 56px;
  max-width: 800px;
}
.hf-section-head .hf-h2 { margin-bottom: 16px; }
.hf-section-head .hf-lead { color: var(--hf-muted); }

/* image-slot styling overrides for hf */
.hf image-slot {
  --slot-bg: var(--hf-surface-2);
  --slot-fg: var(--hf-muted);
  --slot-border: var(--hf-line);
}

/* Edit-affordance hint: real DOM element placed OUTSIDE overflow-hidden
   image frames, so it's not clipped. Wrap structure:
     .hf-thomas-portrait-wrap (or .hf-profile-portrait-wrap)
       └ .hf-thomas-portrait (overflow:hidden, clipped)
       └ .hf-edit-hint (sibling, visible on wrap hover) */
.hf-thomas-portrait-wrap,
.hf-profile-portrait-wrap {
  position: relative;
}
.hf-edit-hint {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10,10,10,0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 5;
  font-family: 'Inter', sans-serif;
}
.hf-thomas-portrait-wrap:hover .hf-edit-hint,
.hf-profile-portrait-wrap:hover .hf-edit-hint {
  opacity: 1;
}

/* Hero video uploader */
.hf-video-frame {
  max-width: 960px;
  margin: 56px auto 0;
}
.hf-video-frame .hf-video-wrap {
  margin: 0;
  max-width: none;
}
.hf-video-poster-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.hf-video-controls {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
}
.hf-video-upload-btn {
  appearance: none;
  border: 1px solid var(--hf-line-strong);
  background: var(--hf-canvas);
  color: var(--hf-ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 120ms, border-color 120ms;
}
.hf-video-upload-btn:hover {
  background: var(--hf-surface-2);
  border-color: var(--hf-ink);
}
.hf-video-filename {
  font-size: 12px;
  color: var(--hf-muted);
  font-weight: 500;
}
.hf-video-clear-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--hf-muted);
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 6px;
}
.hf-video-clear-btn:hover { color: var(--hf-ink); }
.hf-video-hint {
  font-size: 11px;
  color: var(--hf-muted-soft);
  font-style: italic;
}
.hf-video-url-input {
  flex: 1 1 360px;
  min-width: 280px;
  appearance: none;
  border: 1px solid var(--hf-line-strong);
  background: var(--hf-canvas);
  font-family: inherit;
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--hf-ink);
  outline: none;
}
.hf-video-url-input:focus {
  border-color: var(--hf-purple);
  box-shadow: 0 0 0 3px var(--hf-purple-soft);
}

/* Instagram feed grid */
.hf-ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.hf-ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--hf-surface-2);
  text-decoration: none;
  display: block;
  transition: transform 200ms ease;
}
.hf-ig-tile image-slot {
  width: 100%; height: 100%;
  display: block;
}
.hf-ig-tile:hover { transform: translateY(-2px); }
.hf-ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 50%,
    rgba(0,0,0,0.45) 100%
  );
  opacity: 0;
  transition: opacity 200ms ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px;
  pointer-events: none;
}
.hf-ig-tile:hover .hf-ig-overlay { opacity: 1; }
.hf-ig-icon {
  font-size: 18px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
@media (max-width: 900px) {
  .hf-ig-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Team collage */
.hf-team-collage-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.hf-team-collage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 880px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--hf-surface-2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}
.hf-team-collage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Short-form portrait video frame override */
.hf-video-frame-portrait .hf-video-wrap {
  aspect-ratio: 9 / 16;
  border-radius: 20px;
}
.hf-short-tag-inline {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--hf-orange);
  margin-bottom: 6px;
}

/* Short-form grid (podcast / studio snippets, 9:16) */
.hf-short-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 40px auto 0;
}
.hf-short-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.hf-short-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.hf-short-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 2;
}
.hf-short-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.35), rgba(0,0,0,0));
  pointer-events: none;
}
.hf-short-meta {
  padding: 0 4px;
}

@media (max-width: 600px) {
  .hf-short-grid { grid-template-columns: 1fr; max-width: 360px; }
}


.hf-bottombar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 32px 56px 56px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hf-line);
  background: var(--hf-surface-1);
}


/* ============================================================
   De rol — bridge / responsibilities / fit / clar / comp
   ============================================================ */

/* Bridge diagram: Thomas — JIJ — Creative team */
.hf-bridge {
  display: grid;
  grid-template-columns: 1fr 80px 1.2fr 80px 1fr;
  align-items: center;
  gap: 0;
  margin: 56px 0 80px;
  padding: 36px 32px;
  background: #FFFFFF;
  border: 1px solid var(--hf-line);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(10,10,10,0.04);
}
.hf-bridge-node { text-align: center; }
.hf-bridge-node-label {
  font-family: var(--hf-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--hf-ink);
}
.hf-bridge-node-sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--hf-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hf-bridge-node-pill {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 16px;
  background: var(--hf-orange);
  color: #FFF;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.hf-bridge-you .hf-bridge-node-label { font-size: 28px; }
.hf-bridge-line {
  height: 2px;
  background: linear-gradient(90deg, var(--hf-line) 0%, var(--hf-orange) 50%, var(--hf-line) 100%);
  border-radius: 2px;
}

/* Responsibilities grid */
.hf-resp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.hf-resp-card {
  padding: 32px 28px;
  background: #FFFFFF;
  border: 1px solid var(--hf-line);
  border-radius: 20px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.hf-resp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(10,10,10,0.08);
}
.hf-resp-num {
  font-family: var(--hf-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--hf-orange);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.hf-resp-title {
  font-family: var(--hf-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--hf-ink);
  margin-bottom: 12px;
}
.hf-resp-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--hf-body);
}

/* Fit lists — WEL / NIET side-by-side */
.hf-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.hf-fit-col {
  padding: 36px 32px;
  border-radius: 24px;
  border: 1px solid var(--hf-line);
}
.hf-fit-wel {
  background: var(--hf-orange-soft);
  border-color: rgba(217,119,87,0.35);
}
.hf-fit-niet {
  background: rgba(196,69,69,0.04);
  border-color: rgba(196,69,69,0.18);
}
.hf-fit-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.hf-fit-tick, .hf-fit-cross {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.hf-fit-tick { background: var(--hf-orange); color: #FFF; }
.hf-fit-cross { background: var(--hf-red); color: #FFF; }
.hf-fit-title {
  font-family: var(--hf-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--hf-ink);
}
.hf-fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hf-fit-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 16px;
  line-height: 1.55;
  color: var(--hf-body);
}
.hf-fit-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}
.hf-fit-dot.wel { background: rgba(217,119,87,0.18); color: var(--hf-orange); }
.hf-fit-dot.niet { background: rgba(196,69,69,0.15); color: var(--hf-red); }

/* Clarification block */
.hf-clar {
  margin-bottom: 56px;
  padding: 32px 36px;
  border-left: 3px solid var(--hf-orange);
  background: #FFFFFF;
  border-radius: 0 16px 16px 0;
  border-top: 1px solid var(--hf-line);
  border-right: 1px solid var(--hf-line);
  border-bottom: 1px solid var(--hf-line);
}
.hf-clar-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--hf-orange);
  margin-bottom: 12px;
}
.hf-clar-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--hf-body);
  max-width: 820px;
}

/* Compensation strip */
.hf-comp {
  padding: 40px 40px 36px;
  background: var(--hf-ink);
  color: #FFFFFF;
  border-radius: 24px;
}
.hf-comp-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 20px;
}
.hf-comp-block { text-align: left; }
.hf-comp-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.hf-comp-value {
  font-family: var(--hf-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1;
}
.hf-comp-value .hf-orange-text { color: var(--hf-orange); }
.hf-comp-unit {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-left: 6px;
  letter-spacing: -0.3px;
}
.hf-comp-note {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.hf-comp-plus {
  font-family: var(--hf-display);
  font-size: 40px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.hf-comp-tag {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

@media (max-width: 1000px) {
  .hf-bridge { grid-template-columns: 1fr; gap: 24px; }
  .hf-bridge-line { height: 40px; width: 2px; background: linear-gradient(180deg, var(--hf-line) 0%, var(--hf-orange) 50%, var(--hf-line) 100%); margin: 0 auto; }
  .hf-resp-grid { grid-template-columns: 1fr; }
  .hf-fit { grid-template-columns: 1fr; }
  .hf-comp-row { grid-template-columns: 1fr; }
  .hf-comp-plus { display: none; }
}
