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

:root {
  --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --bg: #f5f0e8;
  --bg2: #fffdf9;
  --paper: #faf6ef;
  --ink: #1a1815;
  --txt: #1f1d1a;
  --txt2: #5a5048;
  --txt3: #98897a;
  --brd: #e2dccf;
  --brd2: #cdc3b0;
  --accent: #b8392b;
  --accent2: #1a2b3a;
  --gold: #c9a84a;
  --r: 6px;
  --r2: 10px;
  --shadow: 0 1px 3px rgba(58,42,28,.08), 0 4px 16px rgba(58,42,28,.06);
  --shadow2: 0 4px 12px rgba(58,42,28,.1), 0 16px 40px rgba(58,42,28,.12);
}

body { font-family: var(--font); background: var(--bg); color: var(--txt); font-size: 15.5px; line-height: 1.65; -webkit-font-smoothing: antialiased; }

/* ── HEADER ── */
.site-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--brd);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(255,253,249,.92);
}
.header-inner { max-width: 1180px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; gap: 20px; }
.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.logo span { color: var(--accent); font-style: normal; font-weight: 800; }
.search-wrap { flex: 1; position: relative; max-width: 480px; }
.search-ico { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--txt3); }
.search-wrap input { width: 100%; padding: 10px 14px 10px 38px; border: 1.5px solid var(--brd); border-radius: 4px; font-size: 14px; font-family: var(--font); outline: none; background: var(--bg2); color: var(--txt); transition: border-color .15s; }
.search-wrap input:focus { border-color: var(--accent); background: var(--bg2); }
.search-dropdown { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border: 1.5px solid var(--brd); border-radius: var(--r); box-shadow: var(--shadow2); z-index: 100; display: none; max-height: 320px; overflow-y: auto; }
.search-dropdown.open { display: block; }
.sd-item { padding: 10px 14px; cursor: pointer; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--brd); }
.sd-item:last-child { border-bottom: none; }
.sd-item:hover { background: var(--bg); }
.sd-item .ic { font-size: 16px; width: 22px; text-align: center; }
.sd-item .info h4 { font-size: 13px; font-weight: 600; }
.sd-item .info p { font-size: 11px; color: var(--txt2); }
.sd-empty { padding: 14px; text-align: center; color: var(--txt3); font-size: 13px; }
.header-cta {
  padding: 9px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
  letter-spacing: .02em;
}
.header-cta:hover { background: var(--accent); }

/* ── VIEWS ── */
.view { display: none; }
.view.active { display: block; }

/* ── HERO MAGAZINE ── */
.hero-magazine {
  background: var(--paper);
  color: var(--ink);
  padding: 28px 32px 56px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--brd);
}
.hero-magazine::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: var(--ink);
}
.hero-band {
  max-width: 1180px;
  margin: 0 auto 28px;
  padding-top: 12px;
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt2);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.band-edition { color: var(--accent); }
.band-dot { color: var(--brd2); }
.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 14ch;
}
.hero-headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}
.hero-deck {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--txt2);
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero-search-big {
  position: relative;
  max-width: 620px;
  margin: 0;
}
.hero-search-big span {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
  color: var(--txt3);
}
.hero-search-big input {
  width: 100%;
  padding: 18px 22px 18px 56px;
  border-radius: 4px;
  border: 1.5px solid var(--brd2);
  background: var(--bg2);
  font-size: 16px;
  font-family: var(--font);
  outline: none;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  box-shadow: var(--shadow);
}
.hero-search-big input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,57,43,.12), var(--shadow);
}
.hero-search-big input::placeholder { color: var(--txt3); }

@media (max-width: 700px) {
  .hero-magazine { padding: 22px 22px 40px; }
  .hero-headline { font-size: 38px; max-width: 100%; }
}

/* ── CATEGORIES SECTION ── */
.categories-section { max-width: 1180px; margin: 0 auto; padding: 64px 32px 32px; }
.masonry-section { padding-top: 56px; }
.section-head { margin-bottom: 36px; max-width: 720px; }
.kicker {
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.section-title { font-size: 26px; font-weight: 700; margin-bottom: 14px; color: var(--ink); line-height: 1.15; }
.section-title-serif {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.02em;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-sub {
  text-align: left;
  color: var(--txt2);
  margin: 0;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--serif);
  font-weight: 400;
}

/* Masonry grid via CSS columns (echte masonry zonder JS) */
.masonry-grid {
  column-count: 3;
  column-gap: 22px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.cat-card {
  display: block;
  break-inside: avoid;
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  padding: 0;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  text-decoration: none;
  color: var(--ink);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
}
.cat-card-img {
  width: 100%;
  display: block;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  /* aspect-ratio wordt inline per categorie gezet zodat de masonry varieert */
}
.cat-card-img picture { display: block; width: 100%; height: 100%; }
.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.cat-card:hover .cat-card-img img { transform: scale(1.04); }
.cat-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20,18,15,.5) 100%);
  pointer-events: none;
}
.cat-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 3px;
  z-index: 2;
}
.cat-card-tag .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--cat-color, var(--accent));
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  margin-top: -1px;
}
.cat-card-body { padding: 18px 22px 22px; }
.cat-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.cat-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--txt2);
  margin-bottom: 14px;
}
.cat-card-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .04em;
}
.cat-card-count::after {
  content: '→';
  font-size: 16px;
  transition: transform .2s ease;
}
.cat-card:hover .cat-card-count::after { transform: translateX(4px); }

@media (max-width: 980px) { .masonry-grid { column-count: 2; } }
@media (max-width: 600px) {
  .masonry-grid { column-count: 1; column-gap: 0; }
  .categories-section { padding: 40px 22px 24px; }
}

/* ── INFO STRIP ── */
.info-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 32px;
  max-width: 100%;
}
.info-item { text-align: left; padding: 0 8px; border-left: 2px solid var(--accent); padding-left: 20px; }
.info-icon { font-size: 24px; display: block; margin-bottom: 10px; }
.info-item strong { font-family: var(--serif); font-size: 18px; font-weight: 700; display: block; margin-bottom: 6px; letter-spacing: -.01em; }
.info-item p { font-size: 13.5px; color: rgba(244,237,224,.7); line-height: 1.55; }

/* ── CONTENT WRAP ── */
.content-wrap { max-width: 800px; margin: 0 auto; padding: 32px 24px 64px; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 13px; color: var(--txt3); margin-bottom: 24px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb span { cursor: pointer; }
.breadcrumb span:hover { color: var(--accent); text-decoration: underline; }
.breadcrumb .sep { color: var(--brd); }

/* ── CATEGORY HERO ── */
.cat-hero { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding: 24px; border-radius: var(--r2); background: var(--bg2); border: 1.5px solid var(--brd); }
.cat-hero .big-ic { font-size: 44px; }
.cat-hero h2 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.cat-hero p { font-size: 14px; color: var(--txt2); }

/* ── ARTICLE LIST ── */
.article-list { display: flex; flex-direction: column; gap: 10px; }
.art-item { background: var(--bg2); border: 1.5px solid var(--brd); border-radius: var(--r2); padding: 16px 20px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: all .15s; }
.art-item:hover { border-color: var(--item-color, var(--accent)); box-shadow: 0 0 0 3px color-mix(in srgb, var(--item-color, var(--accent)) 12%, transparent); }
.art-item .left { display: flex; align-items: center; gap: 14px; }
.art-item .ic { font-size: 22px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: color-mix(in srgb, var(--item-color, var(--accent)) 10%, transparent); flex-shrink: 0; }
.art-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.art-item p { font-size: 13px; color: var(--txt2); }
.art-item .arrow { font-size: 20px; color: var(--txt3); }
.badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-left: 8px; }
.badge.info { background: #eff6ff; color: #8c2820; }
.badge.warn { background: #fffbeb; color: #92400e; }
.badge.danger { background: #fef2f2; color: #991b1b; }

/* ── ARTICLE BODY ── */
.art-top { margin-bottom: 24px; }
.art-top h1 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.art-top .meta { font-size: 13px; color: var(--txt3); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.severity-bar { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: var(--r); margin-bottom: 24px; font-size: 14px; font-weight: 600; }
.severity-bar.info { background: #eff6ff; color: #8c2820; border-left: 4px solid var(--accent); }
.severity-bar.warn { background: #fffbeb; color: #92400e; border-left: 4px solid #f59e0b; }
.severity-bar.danger { background: #fef2f2; color: #991b1b; border-left: 4px solid #dc2626; }
.art-desc { background: var(--bg2); border: 1.5px solid var(--brd); border-radius: var(--r2); padding: 18px 20px; margin-bottom: 24px; font-size: 15px; line-height: 1.7; color: var(--txt2); }
.steps-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.step-row { display: flex; gap: 14px; padding: 14px 16px; background: var(--bg2); border: 1.5px solid var(--brd); border-radius: var(--r); margin-bottom: 8px; cursor: pointer; transition: all .15s; align-items: flex-start; }
.step-row:hover { background: #f8f9ff; border-color: #c7d5ff; }
.step-row.done { opacity: .6; }
.step-row.done .step-txt { text-decoration: line-through; }
.step-row.done .step-num { background: #16a34a !important; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-txt { font-size: 14px; line-height: 1.6; padding-top: 3px; }
.tip-box { margin-top: 20px; background: #f0fdf4; border: 1.5px solid #bbf7d0; border-radius: var(--r2); padding: 16px 18px; font-size: 14px; color: #166534; line-height: 1.6; }
.tip-box strong { display: block; margin-bottom: 4px; }
.art-actions { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.btn { padding: 11px 22px; border-radius: 4px; border: 1.5px solid var(--brd); background: var(--bg2); color: var(--txt); font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font); transition: all .15s; }
.btn:hover { background: var(--bg); }
.btn.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn.primary:hover { background: #8c2820; }
.progress-bar-wrap { margin: 16px 0; }
.progress-bar-bg { background: var(--brd); border-radius: 4px; height: 6px; }
.progress-bar-fill { background: #16a34a; border-radius: 4px; height: 6px; transition: width .3s; }
.progress-label { font-size: 12px; color: var(--txt3); margin-top: 4px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.contact-card { background: var(--bg2); border: 1.5px solid var(--brd); border-radius: var(--r2); padding: 24px 20px; position: relative; overflow: hidden; }
.contact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--c, var(--accent)); }
.cc-icon { font-size: 32px; margin-bottom: 12px; }
.contact-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 13px; color: var(--txt2); line-height: 1.6; }
.cc-tag { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700; background: #fffbeb; color: #92400e; padding: 3px 10px; border-radius: 20px; }

/* ── FOOTER ── */
.site-footer { background: #111; color: #fff; padding: 40px 24px; text-align: center; }
.footer-logo { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.site-footer p { font-size: 13px; color: #888; margin-bottom: 16px; }
.footer-links { display: flex; gap: 20px; justify-content: center; }
.footer-links a { color: #aaa; font-size: 13px; text-decoration: none; cursor: pointer; }
.footer-links a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .header-inner { gap: 10px; }
  .header-cta { display: none; }
  .hero { padding: 40px 20px 36px; }
  .hero h1 { font-size: 28px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ── PLATFORM TABS ── */
.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 16px;
  padding: 6px;
  background: var(--bg);
  border: 1px solid var(--brd);
  border-radius: 4px;
  width: fit-content;
  max-width: 100%;
}
.ptab {
  border: none;
  background: transparent;
  padding: 9px 18px;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--txt2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .15s;
  white-space: nowrap;
}
.ptab:hover { color: var(--txt); background: rgba(0,0,0,.04); }
.ptab.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}
.ptab span { font-size: 16px; }

@media (max-width: 540px) {
  .platform-tabs { width: 100%; justify-content: stretch; }
  .ptab { flex: 1; padding: 9px 10px; font-size: 13px; }
  .ptab span { font-size: 14px; }
}

/* ── WIZARD ── */
.wizard-section { max-width: 1180px; margin: -28px auto 56px; padding: 0 32px; position: relative; z-index: 5; }
.wizard-card {
  background: var(--bg2);
  border: 1px solid var(--brd2);
  border-radius: var(--r);
  box-shadow: var(--shadow2);
  padding: 36px 40px;
}
@media (max-width: 700px) {
  .wizard-section { padding: 0 22px; margin-top: -20px; }
}

.wiz-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.wiz-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  background: var(--bg); color: var(--txt3);
  border: 2px solid var(--brd);
  transition: all .2s;
}
.wiz-dot.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.wiz-dot.done { background: var(--accent); color: #fff; border-color: var(--accent); cursor: pointer; }
.wiz-dot.done:hover { transform: scale(1.08); }
.wiz-line { flex: 0 0 40px; height: 2px; background: var(--brd); }
.wiz-line.done { background: var(--accent); }

.wiz-q {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 14px 0 8px;
  color: var(--ink);
  line-height: 1.2;
}
.wiz-sub {
  text-align: center;
  color: var(--txt2);
  font-size: 15.5px;
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
  font-family: var(--serif);
  line-height: 1.55;
}

.wiz-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 13px;
  color: var(--txt3);
  margin-bottom: 12px;
}
.wiz-crumb span:not(.sep):not(.active) { cursor: pointer; }
.wiz-crumb span:not(.sep):not(.active):hover { color: var(--accent); text-decoration: underline; }
.wiz-crumb .sep { color: var(--txt3); }
.wiz-crumb .active { color: var(--txt); font-weight: 600; }

.wiz-grid {
  display: grid;
  gap: 12px;
}
.wiz-grid-12 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.wiz-grid-3  { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.wiz-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg);
  border: 1.5px solid var(--brd);
  border-radius: var(--r);
  text-align: left;
  font-family: var(--font);
  cursor: pointer;
  transition: all .15s;
  border-left: 4px solid var(--c, var(--accent));
}
.wiz-btn:hover {
  background: #fff;
  border-color: var(--c, var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.wiz-ic {
  font-size: 28px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(0,0,0,.04);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.wiz-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.wiz-txt strong { font-size: 15px; font-weight: 700; color: var(--txt); }
.wiz-txt small { font-size: 12.5px; color: var(--txt2); line-height: 1.4; }

.wiz-sub-btn { padding: 18px; }

.wiz-list { display: flex; flex-direction: column; gap: 8px; }
.wiz-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid var(--brd);
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 15px;
  color: var(--txt);
  text-align: left;
  cursor: pointer;
  transition: all .15s;
  border-left: 4px solid var(--c, var(--accent));
}
.wiz-item:hover {
  background: #fff;
  border-color: var(--c, var(--accent));
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.wiz-item-txt { font-weight: 500; }
.wiz-item-arrow { font-size: 22px; color: var(--c, var(--accent)); font-weight: 700; }

.wiz-back {
  margin-top: 18px;
  padding: 9px 16px;
  background: transparent;
  border: 1.5px solid var(--brd);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 13px;
  color: var(--txt2);
  cursor: pointer;
  transition: all .15s;
}
.wiz-back:hover { background: var(--bg); color: var(--txt); border-color: var(--txt2); }

@media (max-width: 600px) {
  .wizard-card { padding: 22px 16px; border-radius: var(--r); }
  .wiz-q { font-size: 20px; }
  .wiz-line { flex: 0 0 24px; }
  .wiz-ic { font-size: 22px; width: 38px; height: 38px; }
  .wiz-grid-12 { grid-template-columns: 1fr 1fr; }
  .wiz-grid-3  { grid-template-columns: 1fr; }
}

/* ── HOME TEXT BLOCKS — magazine columns ── */
.home-text {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 32px 48px;
  background: var(--paper);
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
}
.home-text-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.ht-block {
  position: relative;
  padding-left: 0;
}
.ht-block + .ht-block {
  padding-top: 36px;
  border-top: 1px solid var(--brd);
}
.ht-block h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.015em;
}
.ht-block p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--txt2);
  font-family: var(--serif);
  font-weight: 400;
}
.ht-block p::first-letter { font-weight: 600; }

/* Drop-cap voor het eerste blok */
.ht-block:first-child p::first-letter {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 4.6em;
  float: left;
  line-height: .85;
  margin: 6px 10px 0 0;
  color: var(--accent);
}

@media (max-width: 600px) {
  .home-text { padding: 48px 24px 32px; }
  .ht-block + .ht-block { padding-top: 28px; }
}
