/* ==========================================================================
   Het Huis van de Mede-eigendom — website 1C
   Design system extracted from the Claude Design prototype
   ("Website 1C - Volledige site.dc.html").
   ========================================================================== */

:root {
  /* Palette */
  --ink:        #14161A;
  --ink-panel:  #1D2027;
  --panel:      #23262D;
  --cream:      #F5F1E8;
  --amber:      #E3A72F;
  --rust:       #C8412B;
  --menu:       #F2C81E;
  --green:      #6BCB8B;

  --on-cream-muted: #4A4F57;
  --on-amber-muted: #4A3A12;
  --on-ink-soft:    #CFC9BB;
  --on-ink-muted:   #9A958A;
  --on-ink-faint:   #7E7A70;
  --on-ink-warm:    #E8E3D8;

  --line-light: rgba(245, 241, 232, .18);
  --line-mid:   rgba(245, 241, 232, .25);
  --line-dark:  rgba(20, 22, 26, .15);
  --line-dark-2:rgba(20, 22, 26, .25);

  /* Rhythm — the prototype is drawn at 1440px with a 136px gutter and a
     96px hamburger rail; both stay proportional down to phone widths. */
  --shell:  1440px;
  --gutter: clamp(22px, 9.45vw, 160px);

  /* Wider than the 1440px canvas the design was drawn on, the backgrounds run
     edge to edge while the grid stays centred: --pad is the slack on each side,
     --edge is that slack plus the normal gutter. Below 1440px --pad is 0 and
     everything collapses back to the plain gutter. */
  --pad:  max(0px, (100% - 1800px) / 2);
  --edge: calc(var(--pad) + var(--gutter));

  --rail:   clamp(64px, 6.7vw, 96px);
  --head-h: clamp(78px, 8.05vw, 116px);
  --block:  clamp(56px, 6.1vw, 88px);

  --serif: 'Bitter', Georgia, 'Times New Roman', serif;
  --sans:  'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.shell {
  background: var(--ink);
  position: relative;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--amber);
  color: var(--ink);
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Type scale
   -------------------------------------------------------------------------- */

.eyebrow {
  font-size: clamp(11px, .9vw, 12px);
  font-weight: 600;
  letter-spacing: .26em;
  color: var(--amber);
  text-transform: uppercase;
}

.display {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0;
}

.h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.16;
  margin: 0;
}

.h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 2.55vw, 34px);
  line-height: 1.2;
  margin: 0;
}

.lead {
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--on-ink-soft);
  max-width: 620px;
}

.prose {
  font-size: clamp(15px, 1.12vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--on-cream-muted);
}

/* --------------------------------------------------------------------------
   Buttons and links
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  padding: 17px 30px;
  border: 1.5px solid transparent;
  text-align: center;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn--amber      { background: var(--amber); color: var(--ink); }
.btn--amber:hover{ background: var(--rust); color: var(--cream); }

.btn--ink        { background: var(--ink); color: var(--cream); }
.btn--ink:hover  { background: var(--rust); color: var(--cream); }

.btn--cream      { background: var(--cream); color: var(--rust); }
.btn--cream:hover{ background: var(--amber); color: var(--ink); }

.btn--outline-amber       { border-color: var(--amber); color: var(--amber); }
.btn--outline-amber:hover { background: var(--amber); color: var(--ink); }

.btn--outline-cream       { border-color: var(--cream); color: var(--cream); }
.btn--outline-cream:hover { background: var(--cream); color: var(--rust); }

.btn--outline-ink       { border-color: var(--ink); color: var(--ink); }
.btn--outline-ink:hover { background: var(--ink); color: var(--cream); }

.btn--block { width: 100%; }

/* Underlined text link */
.link-rule {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
}
.link-rule--rust { color: var(--rust); }
.link-rule--ink  { color: var(--ink); }
/* On dark bands the rule keeps the rust underline under amber text. */
.link-rule--amber { color: var(--amber); border-bottom-color: var(--rust); }
.link-rule:hover { opacity: .72; }

.link-caps {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
}
.link-caps--amber { color: var(--amber); }
.link-caps:hover  { color: var(--amber); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  padding-left: var(--pad);
  height: var(--head-h);
  background: var(--ink);
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: center;
}

/* On the homepage only the rail stays pinned; it is lifted out of the flow so
   the hero image runs to the top of the viewport behind it. */
.topbar--rail {
  background: transparent;
  border-bottom: 0;
  margin-bottom: calc(var(--head-h) * -1);
  pointer-events: none;
}
.topbar--rail .rail-btn {
  pointer-events: auto;
  border-bottom: 1px solid var(--line-light);
}

.rail-btn {
  flex: 0 0 auto;
  width: var(--rail);
  height: var(--head-h);
  background: var(--ink);
  border: 0;
  border-right: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.topbar--over .rail-btn { border-bottom: 1px solid var(--line-light); }

.rail-btn__bars {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
}
.rail-btn__bars i {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--cream);
  transition: width .2s ease;
}
.rail-btn__bars i:last-child { width: 21px; background: var(--amber); }
.rail-btn:hover .rail-btn__bars i:last-child { width: 34px; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: clamp(16px, 2.8vw, 40px);
}
.brand:hover { color: inherit; }
.brand svg { flex: 0 0 auto; width: clamp(30px, 2.8vw, 40px); height: auto; }
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(15px, 1.32vw, 19px);
  line-height: 1.15;
  color: var(--cream);
}
.brand__name span { color: var(--amber); }

.topbar__actions {
  margin-left: auto;
  margin-right: calc(var(--pad) + clamp(18px, 3.9vw, 56px));
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__actions .btn { padding: 13px 24px; font-size: 12px; letter-spacing: .16em; }

/* Floating variants: the same wordmark and actions, placed inside the hero. */
.brand--float {
  position: absolute;
  left: calc(var(--pad) + var(--rail) + 40px);
  top: clamp(22px, 3vw, 44px);
  z-index: 30;
  margin-left: 0;
}
.topbar__actions--float {
  position: absolute;
  right: calc(var(--pad) + clamp(18px, 3.9vw, 56px));
  top: clamp(22px, 3.2vw, 46px);
  z-index: 30;
  margin: 0;
}

@media (max-width: 720px) {
  .topbar__actions .link-caps { display: none; }
}
@media (max-width: 640px) {
  .brand--float { left: calc(var(--pad) + var(--rail) + 14px); }
}
@media (max-width: 480px) {
  .brand__name { font-size: 13px; }
  .brand svg { width: 26px; }
  .topbar__actions .btn { padding: 11px 15px; font-size: 11px; letter-spacing: .1em; }
}
@media (max-width: 420px) {
  :root { --rail: 56px; }
  .brand { margin-left: 10px; gap: 8px; }
  .brand svg { width: 22px; }
  .brand__name { font-size: 11px; }
  .topbar__actions { margin-right: 10px; gap: 8px; }
  .topbar__actions .btn { padding: 10px 12px; font-size: 10px; letter-spacing: .06em; }
}

/* --------------------------------------------------------------------------
   Hamburger overlay
   -------------------------------------------------------------------------- */

.menu {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  z-index: 100;
  background: var(--menu);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease;
}
.menu.is-open { opacity: 1; pointer-events: auto; }

.menu__rule {
  position: absolute;
  left: calc(var(--pad) + var(--rail));
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-dark-2);
}

.menu__close {
  position: absolute;
  left: var(--pad);
  top: 0;
  width: var(--rail);
  height: var(--head-h);
  border: 0;
  border-bottom: 1px solid var(--line-dark-2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: var(--ink);
}

.menu__inner {
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--head-h) + 16px) var(--edge) 56px calc(var(--pad) + var(--rail) + 80px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
}

.menu__primary { display: flex; flex-direction: column; gap: 2px; }
.menu__primary a {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 8vw, 76px);
  line-height: 1.06;
  color: var(--ink);
  overflow-wrap: break-word;
}
.menu__primary a:hover,
.menu__secondary a:hover { color: var(--rust); }

.menu__secondary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: clamp(28px, 3.6vw, 52px);
}
.menu__secondary a {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 26px);
  color: var(--ink);
  overflow-wrap: break-word;
}

.menu__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 72px;
  gap: 40px;
}
.menu__aside .btn {
  width: 100%;
  justify-content: space-between;
  padding: 20px 34px;
}
.menu__aside .btn:hover { background: var(--ink); color: var(--amber); }

.menu__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--ink);
}
.menu__meta div { display: flex; flex-direction: column; gap: 10px; }
.menu__meta div + div { font-weight: 500; letter-spacing: .06em; }
.menu__meta span { overflow-wrap: anywhere; }
.menu__meta a:hover { color: var(--rust); }

@media (max-width: 900px) {
  .menu__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: clamp(22px, 7vw, 72px);
    padding-right: clamp(22px, 7vw, 72px);
  }
  .menu__aside { padding-bottom: 32px; gap: 28px; }
  /* The rail rule only makes sense while the content clears the rail. */
  .menu__rule { display: none; }
}

body.menu-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   Bands / sections
   -------------------------------------------------------------------------- */

.band {
  padding: var(--block) var(--edge);
}
.band--ink   { background: var(--ink);   color: var(--cream); }
.band--cream { background: var(--cream); color: var(--ink); }
.band--amber { background: var(--amber); color: var(--ink); }
.band--rust  { background: var(--rust);  color: var(--cream); }

.band--cream .lead,
.band--cream .prose { color: var(--on-cream-muted); }
.band--amber .prose { color: var(--on-amber-muted); }

/* Page intro block shared by every inner page */
.page-head {
  padding: var(--block) var(--edge) clamp(48px, 5.5vw, 80px);
  border-bottom: 1px solid var(--line-light);
}
.page-head .eyebrow { display: block; margin-bottom: 24px; }
.page-head .display { max-width: 900px; }
.page-head .lead { margin: 28px 0 0; }

/* --------------------------------------------------------------------------
   Hero (homepage)
   -------------------------------------------------------------------------- */

@keyframes cinpan {
  0%   { transform: scale(1.06) translate(1.5%, .6%); }
  100% { transform: scale(1.16) translate(-1.8%, -1.2%); }
}
@keyframes cinbreathe {
  0%, 100% { opacity: .75; }
  50%      { opacity: 1; }
}
@keyframes cinsweep {
  0%        { background-position: 180% 0; }
  45%, 100% { background-position: -80% 0; }
}
@keyframes grainshift {
  0%,100% { transform: translate(0, 0); }
  25%     { transform: translate(-2%, 1%); }
  50%     { transform: translate(1%, -2%); }
  75%     { transform: translate(-1%, -1%); }
}

.hero {
  position: relative;
  height: clamp(560px, 59.7vw, 860px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  filter: saturate(.9) contrast(1.05) brightness(.95);
}
.hero__media img {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  /* The hero is far wider than the 16:9 source, so it crops top and bottom.
     Biasing downward keeps the seated figure clear of the darkest part of the
     scrim instead of letting it sink into the gradient. */
  object-position: center 72%;
  animation: cinpan 34s ease-in-out infinite alternate;
  will-change: transform;
}

/* Optional hero video, layered over the still. It stays invisible until it is
   actually playing, so a missing or unsupported file simply leaves the still
   in place instead of flashing an empty box. The video carries its own motion,
   so it does not get the slow pan. */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero__video.is-playing { opacity: 1; }

.hero__layer { position: absolute; inset: 0; pointer-events: none; }

.hero__glow {
  background: radial-gradient(48% 62% at 55% 18%,
    rgba(255,196,102,.22) 0%, rgba(255,170,70,.09) 45%, rgba(0,0,0,0) 74%);
  animation: cinbreathe 11s ease-in-out infinite;
}
.hero__sweep {
  background: linear-gradient(105deg,
    rgba(255,255,255,0) 35%, rgba(255,224,164,.14) 50%, rgba(255,255,255,0) 65%);
  background-size: 260% 100%;
  animation: cinsweep 17s ease-in-out infinite;
}
.hero__grain {
  opacity: .09;
  mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(0deg,  rgba(255,255,255,.5)  0 1px, rgba(0,0,0,0) 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.35) 0 1px, rgba(0,0,0,0) 1px 4px);
  animation: grainshift 1.2s steps(4) infinite;
}
.hero__vignette {
  background: radial-gradient(85% 70% at 60% 34%,
    rgba(0,0,0,0) 22%, rgba(10,8,6,.55) 68%, rgba(6,5,4,.88) 100%);
}
.hero__scrim {
  background: linear-gradient(to bottom,
    rgba(20,22,26,.72) 0%, rgba(20,22,26,.35) 45%, rgba(20,22,26,.92) 100%);
}

.hero__rail {
  position: absolute;
  left: var(--pad);
  top: 0;
  bottom: 0;
  width: var(--rail);
  border-right: 1px solid var(--line-light);
  z-index: 20;
  pointer-events: none;
}

.hero__ghost {
  position: absolute;
  left: calc(var(--pad) + var(--gutter) - 16px);
  bottom: -.23em;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(58px, 10.3vw, 148px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(227,167,47,.35);
  z-index: 10;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero__content {
  position: relative;
  z-index: 25;
  padding: 0 var(--edge) clamp(60px, 6.7vw, 96px) calc(var(--pad) + var(--rail) + 40px);
  width: 100%;
}
.hero__content .eyebrow { display: block; margin-bottom: 26px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.3vw, 62px);
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--cream);
  margin: 0;
  /* Caps the measure without fighting the padding, the way the design did. */
  max-width: 900px;
}

.hero__play {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(24px, 2.8vw, 40px);
  color: var(--on-ink-soft);
}
.hero__play:hover { color: var(--cream); }
.hero__play span:first-child {
  flex: 0 0 auto;
  width: clamp(46px, 4.2vw, 60px);
  height: clamp(46px, 4.2vw, 60px);
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}
.hero__play:hover span:first-child { transform: scale(1.06); }
.hero__play span:last-child { font-size: 14px; font-weight: 500; }

@media (max-width: 600px) {
  .hero__ghost { display: none; }
  .hero__content { padding-left: var(--edge); }
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5.5vw, 80px);
  align-items: start;
}

.split--aside  { grid-template-columns: minmax(0, 1fr) 520px; }
.split--panel  { grid-template-columns: minmax(0, 1fr) 480px; align-items: center; }
.split--wide   { grid-template-columns: minmax(0, 1fr) 560px; align-items: center; }

/* auto-fit rather than a fixed column count: the row fills the width and a
   short list never leaves a stray item alone on the last row. */
.cols-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.cols-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); gap: 40px; }

/* Hairline grids: a 1px background showing through the gaps */
.hairline {
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.hairline > * { background: var(--ink); padding: 44px 40px; }

.band--cream .hairline { background: var(--line-dark); border-color: var(--line-dark); }
.band--cream .hairline > * { background: var(--cream); }

@media (max-width: 1100px) {
  .split--aside, .split--panel, .split--wide { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Homepage — intro + numbered USP strip
   -------------------------------------------------------------------------- */

.intro__statement {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(23px, 2.36vw, 34px);
  line-height: 1.34;
  margin: 0;
}
.intro__body { margin-bottom: 30px; }

.usp {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(48px, 6.1vw, 88px);
  border-top: 1px solid var(--ink);
}
.usp > div { padding: 40px; }
.usp > div:first-child { padding-left: 0; }
.usp > div:last-child  { padding-right: 0; }
.usp > div + div { border-left: 1px solid var(--line-dark); }

.usp__n {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 3.2vw, 46px);
  margin-bottom: 14px;
}
.usp__t {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(19px, 1.53vw, 22px);
  margin-bottom: 10px;
}
.usp__d {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--on-cream-muted);
}

@media (max-width: 860px) {
  .usp { grid-template-columns: 1fr; }
  .usp > div { padding: 32px 0; }
  .usp > div + div { border-left: 0; border-top: 1px solid var(--line-dark); }
}

/* Numbered feature cards (De HUB, SYNAi "zo werkt het", Over ons) */
.feature__n {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 2.8vw, 40px);
  margin-bottom: 16px;
}
.feature__t {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(19px, 1.67vw, 24px);
  margin-bottom: 12px;
}
.feature__d {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-ink-muted);
}
.band--cream .feature__d { color: var(--on-cream-muted); }

.n--rust  { color: var(--rust); }
.n--amber { color: var(--amber); }
.n--ink   { color: var(--ink); }
.n--cream { color: var(--cream); }

/* --------------------------------------------------------------------------
   Section heading with a link on the right
   -------------------------------------------------------------------------- */

.band-title { margin-bottom: clamp(30px, 3.4vw, 48px); }

/* Heading + paragraph pair that introduces a two-column split. */
.copy > .h2 { margin-bottom: 24px; }
.copy > p   { max-width: 480px; margin: 0 0 34px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: clamp(32px, 3.6vw, 52px);
}

/* --------------------------------------------------------------------------
   Theme teaser cards (homepage)
   -------------------------------------------------------------------------- */

.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
}
/* Five themes never tile evenly in two columns, so a lone last card
   stretches across instead of sitting next to a gap. */
.theme-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

.theme-card {
  background: var(--ink);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background-color .18s ease;
}
.theme-card:hover { background: var(--ink-panel); color: inherit; }
.theme-card__t {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--cream);
  margin-bottom: 8px;
}
.theme-card__d { display: block; font-size: 14px; font-weight: 300; color: var(--on-ink-muted); }
.theme-card__arrow { font-size: 22px; color: var(--amber); flex: 0 0 auto; }

@media (max-width: 720px) { .theme-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   SYNAi chat mock
   -------------------------------------------------------------------------- */

.chat {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(22px, 2.1vw, 30px);
}
.chat__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--on-ink-muted);
}
.chat__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}
.chat__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.chat__topic {
  border: 1px solid var(--line-mid);
  color: var(--on-ink-soft);
  font-size: 12px;
  padding: 8px 14px;
}
.chat__topic.is-active { border-color: var(--amber); color: var(--amber); }

.chat__q {
  background: var(--panel);
  color: var(--cream);
  font-size: 14px;
  line-height: 1.55;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.chat__a {
  background: rgba(227, 167, 47, .14);
  border-left: 2px solid var(--amber);
  color: var(--on-ink-warm);
  font-size: 14px;
  line-height: 1.6;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.chat__src {
  font-size: 11px;
  color: var(--amber);
  margin-top: 10px;
  letter-spacing: .1em;
}
.chat__input {
  border: 1px solid rgba(245, 241, 232, .2);
  color: var(--on-ink-faint);
  font-size: 13px;
  padding: 14px 16px;
}

.checklist { display: flex; flex-direction: column; gap: 18px; }
.checklist li {
  display: flex;
  gap: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-cream-muted);
}
.checklist li::before {
  content: '→';
  color: var(--rust);
  font-weight: 700;
  flex: 0 0 auto;
}
.checklist strong { color: var(--ink); font-weight: 600; }

.arrow-list { display: flex; flex-direction: column; gap: 20px; }
.arrow-list li {
  display: flex;
  gap: 14px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}
.arrow-list li::before { content: '→'; font-weight: 700; flex: 0 0 auto; }

ul.checklist, ul.arrow-list, ul.plan__features { list-style: none; margin: 0; padding: 0; }

/* Amber promo block: copy on the left, SYNAi chat mock on the right.
   Used on the homepage and on Word lid. */
.promo .eyebrow { display: block; color: inherit; margin-bottom: 20px; }
.promo__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.47vw, 50px);
  line-height: 1.14;
  margin: 0 0 22px;
}
.promo p { max-width: 480px; margin: 0 0 34px; }

/* --------------------------------------------------------------------------
   Founder split (homepage + Over ons)
   -------------------------------------------------------------------------- */

.founder {
  display: grid;
  grid-template-columns: calc(620px + var(--pad)) minmax(0, 1fr);
  background: var(--cream);
  color: var(--ink);
}
.founder__media {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 39vw, 560px);
  background: var(--ink);
}
.founder__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: grayscale(1);
  position: absolute;
  inset: 0;
}
.founder--tall .founder__media { min-height: clamp(380px, 43vw, 620px); }

.founder__body {
  padding: var(--block) var(--edge) var(--block) clamp(28px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder__body .eyebrow { color: var(--rust); display: block; margin-bottom: 20px; }
.founder__body .h2 { margin-bottom: 22px; }
.founder__body p { max-width: 470px; margin: 0 0 20px; }
.founder__cta { align-self: flex-start; margin-top: 12px; }

@media (max-width: 980px) {
  .founder { grid-template-columns: 1fr; }
  .founder__media { min-height: 340px; }
  .founder__body { padding: var(--block) var(--edge); }
}

/* --------------------------------------------------------------------------
   Call-to-action bands
   -------------------------------------------------------------------------- */

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 60px);
}
.cta__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.16;
  margin: 0 0 14px;
}
.cta__sub { font-size: 16px; font-weight: 300; color: var(--on-amber-muted); }
.cta .btn { flex: 0 0 auto; padding: 18px 32px; }

.cta--center {
  flex-direction: column;
  text-align: center;
}
.cta--center .cta__title { font-size: clamp(32px, 3.75vw, 54px); line-height: 1.12; margin-bottom: 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 820px) {
  .cta { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   Themes page — alternating theme blocks
   -------------------------------------------------------------------------- */

.theme-block__n {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 2.8vw, 40px);
  margin-bottom: 14px;
}
.theme-block__t {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.05vw, 44px);
  line-height: 1.12;
  margin: 0 0 20px;
}
.theme-block p { max-width: 480px; margin: 0 0 30px; }

.linklist { display: flex; flex-direction: column; border-top: 1px solid var(--line-light); }
.band--cream .linklist { border-top-color: var(--line-dark); }

.linklist a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 16px;
  font-weight: 400;
}
.band--cream .linklist a { border-bottom-color: var(--line-dark); }
.linklist a span:last-child { color: var(--amber); flex: 0 0 auto; }
.linklist a:hover { color: var(--amber); }
.band--cream .linklist a:hover { color: var(--rust); }

/* --------------------------------------------------------------------------
   Podcasts
   -------------------------------------------------------------------------- */

.pod-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: clamp(48px, 5vw, 72px);
}
.pod-card { padding: clamp(34px, 3.6vw, 52px) clamp(30px, 3.3vw, 48px); }
.pod-card--ink  { background: var(--ink);  color: var(--cream); }
.pod-card--rust { background: var(--rust); color: var(--cream); }
.pod-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  margin-bottom: 18px;
}
.pod-card--ink .pod-card__label { color: var(--amber); }
.pod-card__t {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 2.64vw, 38px);
  margin: 0 0 14px;
}
.pod-card__d {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}
.pod-card--ink .pod-card__d { color: var(--on-ink-soft); }
.pod-card .btn { padding: 13px 24px; font-size: 12px; }

.ep-list { border-top: 1px solid var(--line-dark); }
.ep {
  display: grid;
  grid-template-columns: 90px 220px minmax(0, 1fr) 80px 40px;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}
.ep:hover { color: inherit; }
.ep:hover .ep__t { color: var(--rust); }
.ep__n   { font-size: 12px; font-weight: 600; letter-spacing: .12em; color: var(--rust); }
.ep__show{ font-size: 13px; font-weight: 500; color: var(--on-ink-muted); }
.ep__t   { font-family: var(--serif); font-weight: 600; font-size: clamp(17px, 1.4vw, 20px); transition: color .18s ease; }
.ep__len { font-size: 13px; color: var(--on-ink-muted); }
.ep__play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* Below the full five-column layout the row reflows to a meta line
   (number · show · length · play) with the title underneath. */
@media (max-width: 1080px) {
  .ep {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
  }
  .ep__n    { order: 1; }
  .ep__show { order: 2; }
  .ep__len  { order: 3; }
  .ep__play { order: 4; margin-left: auto; }
  .ep__t    { order: 5; flex: 1 0 100%; }
}
@media (max-width: 640px) {
  .pod-grid { grid-template-columns: 1fr; }
}

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 22px; }
.video__thumb {
  height: clamp(150px, 14vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video__thumb--panel { background: var(--panel); }
.video__thumb--rust  { background: var(--rust); }
.video__thumb--amber { background: var(--amber); }
.video__thumb span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(245, 241, 232, .9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video__t {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(17px, 1.4vw, 20px);
  margin-top: 18px;
}
.video__meta { font-size: 13px; color: var(--on-ink-muted); margin-top: 8px; }



/* --------------------------------------------------------------------------
   News + events
   -------------------------------------------------------------------------- */

.news-list { border-top: 1px solid var(--line-dark); }
.news {
  display: grid;
  grid-template-columns: 140px 150px minmax(0, 1fr) 40px;
  align-items: start;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}
.news:hover { color: inherit; }
.news:hover .news__t { color: var(--rust); }
.news__date { font-size: 13px; font-weight: 500; color: var(--on-ink-muted); }
.news__cat  { font-size: 11px; font-weight: 600; letter-spacing: .16em; color: var(--rust); }
.news__t {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(19px, 1.67vw, 24px);
  line-height: 1.3;
  display: block;
  transition: color .18s ease;
}
.news__d {
  font-size: 15px;
  font-weight: 300;
  color: var(--on-cream-muted);
  display: block;
  margin-top: 8px;
}
.news__arrow { color: var(--amber); font-size: 20px; }

@media (max-width: 900px) {
  .news {
    grid-template-columns: minmax(0, 1fr) 40px;
    grid-template-areas: 'date arrow' 'cat arrow' 'body arrow';
    gap: 8px 24px;
  }
  .news__date { grid-area: date; }
  .news__cat { grid-area: cat; }
  .news > span:nth-child(3) { grid-area: body; margin-top: 8px; }
  .news__arrow { grid-area: arrow; }
}

.event-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.event {
  border: 1px solid var(--line-light);
  padding: clamp(30px, 3.3vw, 44px) clamp(26px, 3vw, 40px);
}
.event__when {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--amber);
  margin-bottom: 16px;
}
.event__t {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 0 0 12px;
}
.event__d {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-ink-muted);
  margin-bottom: 26px;
}
.event .btn { padding: 13px 24px; font-size: 12px; }

@media (max-width: 720px) { .event-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Over ons — stats
   -------------------------------------------------------------------------- */

.stat__n {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(38px, 3.6vw, 52px);
  color: var(--rust);
  line-height: 1;
}
.stat__d { font-size: 14px; color: var(--on-cream-muted); margin-top: 8px; }

/* --------------------------------------------------------------------------
   Word lid — pricing
   -------------------------------------------------------------------------- */

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.plan {
  border: 1px solid var(--line-dark-2);
  padding: clamp(34px, 3.3vw, 48px) clamp(28px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan--featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.plan__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--amber);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  padding: 8px 16px;
}
.plan__audience {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--on-ink-muted);
  margin-bottom: 20px;
}
.plan--featured .plan__audience { color: var(--amber); }
.plan__price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 3.2vw, 46px);
  line-height: 1;
}
.plan__price small {
  font-size: 18px;
  font-weight: 400;
  color: var(--on-cream-muted);
}
.plan--featured .plan__price small { color: var(--on-ink-muted); }
.plan__d {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-cream-muted);
  margin: 20px 0 30px;
}
.plan--featured .plan__d { color: var(--on-ink-soft); }
.plan__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 36px;
}
.plan__features li::before { content: '→ '; }
.plan .btn { margin-top: auto; padding: 17px 0; width: 100%; }

@media (max-width: 980px) { .plans { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Forms (login + contact)
   -------------------------------------------------------------------------- */

.field { display: block; }
.field__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--on-ink-muted);
  margin-bottom: 8px;
}
.field__input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-mid);
  background: transparent;
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  padding: 16px 18px;
  border-radius: 0;
  appearance: none;
}
.field__input::placeholder,
.field textarea::placeholder { color: var(--on-ink-faint); }
.field__input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--amber); outline: none; }

.band--cream .field__input,
.band--cream .field textarea,
.band--cream .field select {
  border-color: var(--line-dark-2);
  color: var(--ink);
}
.band--cream .field__input::placeholder,
.band--cream .field textarea::placeholder { color: var(--on-ink-muted); }
.band--cream .field__label { color: var(--on-ink-muted); }

.field textarea { min-height: 130px; resize: vertical; }

.field--select { position: relative; }
.field--select::after {
  content: '▾';
  position: absolute;
  right: 18px;
  bottom: 16px;
  pointer-events: none;
  color: var(--on-ink-muted);
}

.form-stack { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) calc(620px + var(--pad));
  min-height: 760px;
}
.login__form {
  padding: clamp(56px, 7.6vw, 110px) clamp(24px, 6.7vw, 96px) clamp(56px, 7.6vw, 110px) var(--edge);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login__form .eyebrow { display: block; margin-bottom: 24px; }
.login__form .display { font-size: clamp(32px, 3.6vw, 52px); margin-bottom: 18px; }
.login__form .lead { max-width: 420px; margin: 0 0 44px; }
.login__fields { max-width: 420px; }
.login__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--on-ink-muted);
  margin-top: 4px;
}
.login__meta a:hover { color: var(--amber); }

.login__aside {
  background: var(--rust);
  color: var(--cream);
  padding: clamp(48px, 7.6vw, 110px) calc(var(--pad) + clamp(28px, 5vw, 72px)) clamp(48px, 7.6vw, 110px) clamp(28px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login__aside .h3 { font-size: clamp(24px, 2.5vw, 36px); line-height: 1.18; margin-bottom: 28px; }

@media (max-width: 980px) {
  .login { grid-template-columns: 1fr; min-height: 0; }
  .login__form { padding: var(--block) var(--edge); }
  .login__aside { padding: var(--block) var(--edge); }
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: clamp(40px, 6.1vw, 88px);
}
.contact-grid .h3 { margin-bottom: 32px; }
.contact-form { max-width: 560px; }

.direct {
  display: flex;
  flex-direction: column;
  gap: 26px;
  border-top: 1px solid var(--line-dark);
  padding-top: 26px;
}
.direct__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--rust);
  margin-bottom: 8px;
}
.direct__value { font-size: 17px; line-height: 1.5; }
.direct__value a:hover { color: var(--rust); }
.direct__note { font-size: 14px; color: var(--on-cream-muted); }

.aside-card {
  background: var(--ink);
  color: var(--cream);
  padding: 32px;
  margin-top: 40px;
}
.aside-card__t {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 12px;
}
.aside-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-ink-soft);
  margin: 0 0 22px;
}
.aside-card .btn { padding: 13px 24px; font-size: 12px; }

@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

.faq { border-top: 1px solid var(--line-light); }
.faq > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(18px, 1.53vw, 22px);
}
.faq span:last-child { color: var(--amber); font-size: 26px; flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--ink);
  padding: 44px var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 12px; color: var(--on-ink-faint); }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13px; color: var(--on-ink-soft); }
.footer__links a:hover { color: var(--amber); }

/* --------------------------------------------------------------------------
   Motion preferences
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__media img { transform: scale(1.06); }
}

/* ==========================================================================
   Componenten uit de klantrevisie
   ========================================================================== */

/* Hero: de derde regel van de titel staat cursief en iets rustiger. */
.hero__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 1.8vw, 26px);
  line-height: 1.3;
  color: var(--on-ink-soft);
  margin: clamp(12px, 1.2vw, 18px) 0 0;
  max-width: 900px;
}

/* --------------------------------------------------------------------------
   Kennispartners
   -------------------------------------------------------------------------- */

.partner-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.partner {
  background: var(--cream);
  aspect-ratio: 5 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Logos are rendered in a single tone so a wall of mixed brand colours does
   not fight the palette; swap the filter for full colour if preferred. */
.partner img {
  max-width: 68%;
  max-height: 56%;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .2s ease;
}
.partner:hover img { filter: none; }
.partner span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
}

.partners__link { margin-top: 18px; }

.partners__cta {
  margin: clamp(28px, 3vw, 40px) 0 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.3;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Lidmaatschapsformules
   -------------------------------------------------------------------------- */

.tiers { display: flex; flex-direction: column; gap: 22px; }

.tier {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  border: 1px solid var(--line-dark-2);
}

.tier__head {
  padding: clamp(30px, 3vw, 44px);
  border-right: 1px solid var(--line-dark-2);
  background: rgba(20, 22, 26, .03);
}
.tier__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.tier__name span { display: block; font-weight: 400; font-size: .62em; color: var(--on-cream-muted); }

.tier__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 10px;
}
.tier__price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1;
  margin: 0;
}
.tier__price small { font-size: 18px; font-weight: 400; color: var(--on-cream-muted); }
.tier__note {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-cream-muted);
  margin: 10px 0 0;
}

.tier__body { padding: clamp(30px, 3vw, 44px); }
/* Cap the measure: the body column gets very wide on large screens and a
   15px line running the full width is unreadable. */
.tier__list, .tier__p, .tier__fn, .office__price { max-width: 74ch; }
.tier__p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-cream-muted);
  margin: 16px 0 0;
}

.tier__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-cream-muted);
}
.tier__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 700;
}
.tier__list strong { color: var(--ink); font-weight: 600; }
.tier__list sup { font-size: .7em; }

.tier__fn {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-ink-muted);
  margin: 22px 0 0;
}

.tier__cta { margin-top: 30px; }

/* Prijsstaffels binnen één formule */
.bands { margin: 22px 0 0; display: flex; flex-direction: column; gap: 16px; }
.band-row { border-top: 1px solid var(--line-dark); padding-top: 14px; }
.band-row dt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.band-row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--on-cream-muted);
}
.band-row strong { color: var(--ink); font-weight: 600; }

/* Kantoorgroottes binnen de professionele formule */
.office + .office { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line-dark); }
.office__t {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.3;
  margin: 0 0 8px;
}
.office__t span { font-weight: 400; font-size: .82em; color: var(--on-cream-muted); }
.office__price {
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-cream-muted);
  margin: 0 0 18px;
}
.office__price strong { color: var(--ink); font-weight: 600; }

.tier--free .tier__head { background: var(--ink); color: var(--cream); border-right-color: var(--ink); }
.tier--free .tier__head .tier__note { color: var(--on-ink-soft); }
.tier--free { border-color: var(--ink); }

@media (max-width: 900px) {
  .tier { grid-template-columns: 1fr; }
  .tier__head { border-right: 0; border-bottom: 1px solid var(--line-dark-2); }
  .tier--free .tier__head { border-bottom-color: var(--ink); }
}

/* --------------------------------------------------------------------------
   Cijferblok: sommige waarden zijn woorden in plaats van getallen
   -------------------------------------------------------------------------- */

.stat__n--word { font-size: clamp(26px, 2.4vw, 36px); line-height: 1.1; }

/* --------------------------------------------------------------------------
   Publicaties: agenda zonder links
   -------------------------------------------------------------------------- */

.linklist--static > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(16px, 1.4vw, 19px);
}
.linklist--static .when {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
}

/* --------------------------------------------------------------------------
   Aankondiging "De HUB opent binnenkort" — tijdelijk, tot de HUB live staat.
   Markup komt uit assets/js/hub-aankondiging.js.
   -------------------------------------------------------------------------- */

.aankondiging {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.aankondiging.is-open { opacity: 1; pointer-events: auto; }
body.aankondiging-open { overflow: hidden; }

.aankondiging__scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 26, .78);
}

.aankondiging__paneel {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: var(--cream);
  color: var(--ink);
  padding: clamp(36px, 5vw, 56px) clamp(24px, 5vw, 56px) clamp(32px, 4vw, 48px);
  transform: translateY(14px);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}
.aankondiging.is-open .aankondiging__paneel { transform: translateY(0); }

.aankondiging__balk {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
  margin-bottom: 26px;
}
.aankondiging__balk i { display: block; width: 8px; }
.aankondiging__balk i:nth-child(1) { height: 14px; background: var(--ink); }
.aankondiging__balk i:nth-child(2) { height: 22px; background: var(--amber); }
.aankondiging__balk i:nth-child(3) { height: 10px; background: var(--rust); }

.aankondiging__sluit {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aankondiging__sluit:hover { color: var(--rust); }

.aankondiging__eyebrow { color: var(--rust); }

.aankondiging__titel {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08;
  margin: 12px 0 16px;
}

.aankondiging__tekst {
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-cream-muted);
  margin: 0 0 24px;
}

.aankondiging__form { display: flex; flex-direction: column; gap: 16px; }
.aankondiging__form .field__label { color: var(--on-cream-muted); }
.aankondiging__form .field__input {
  border-color: var(--line-dark-2);
  color: var(--ink);
}
.aankondiging__form .field__input::placeholder { color: var(--on-ink-muted); }
.aankondiging__form .btn { justify-content: space-between; }
.aankondiging__form .btn[disabled] { opacity: .6; cursor: wait; }

.aankondiging__klein {
  font-size: 12px;
  color: var(--on-cream-muted);
  margin: 0;
}
.aankondiging__klein a { text-decoration: underline; text-underline-offset: 3px; }
.aankondiging__klein a:hover { color: var(--rust); }

.aankondiging__status {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  min-height: 1em;
}
.aankondiging__status:empty { display: none; }
.aankondiging__status.is-fout { color: var(--rust); }
.aankondiging__status.is-info {
  color: var(--ink);
  border-left: 3px solid var(--amber);
  padding-left: 12px;
}

.aankondiging__klaar-titel {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 8px;
}
.aankondiging__klaar .aankondiging__tekst { margin-bottom: 20px; }

@media (prefers-reduced-motion: reduce) {
  .aankondiging, .aankondiging__paneel { transition: none; }
}
@media (max-width: 420px) {
  .aankondiging { padding: 16px; }
  .aankondiging__form .btn { padding: 16px 20px; font-size: 12px; letter-spacing: .1em; }
}
